Skip to content

Commit c95c452

Browse files
Merge pull request swiftlang#78996 from aschwaighofer/checked_cast_br_nightmares
SIL: Update formal source type in SimplifyRefCasts when possible
2 parents 19d3987 + 0fe3cf0 commit c95c452

File tree

9 files changed

+32
-5
lines changed

9 files changed

+32
-5
lines changed

SwiftCompilerSources/Sources/Optimizer/InstructionSimplification/SimplifyRefCasts.swift

+7
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,13 @@ private extension UnaryInstruction {
8686
operand.set(to: replacement, context)
8787
}
8888

89+
if let ccb = self as? CheckedCastBranchInst {
90+
// Make sure that updating the formal type with the operand type is
91+
// legal.
92+
if operand.value.type.isLegalFormalType {
93+
ccb.updateSourceFormalTypeFromOperandLoweredType()
94+
}
95+
}
8996
if canEraseInst {
9097
context.erase(instructionIncludingDebugUses: inst)
9198
}

SwiftCompilerSources/Sources/SIL/Instruction.swift

+4
Original file line numberDiff line numberDiff line change
@@ -1696,6 +1696,10 @@ final public class CheckedCastBranchInst : TermInst, UnaryInstruction {
16961696
public var source: Value { operand.value }
16971697
public var successBlock: BasicBlock { bridged.CheckedCastBranch_getSuccessBlock().block }
16981698
public var failureBlock: BasicBlock { bridged.CheckedCastBranch_getFailureBlock().block }
1699+
1700+
public func updateSourceFormalTypeFromOperandLoweredType() {
1701+
bridged.CheckedCastBranch_updateSourceFormalTypeFromOperandLoweredType()
1702+
}
16991703
}
17001704

17011705
final public class CheckedCastAddrBranchInst : TermInst {

SwiftCompilerSources/Sources/SIL/Type.swift

+2
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,8 @@ public struct Type : CustomStringConvertible, NoReflectionChildren {
104104
public var isBuiltinVector: Bool { bridged.isBuiltinVector() }
105105
public var builtinVectorElementType: Type { bridged.getBuiltinVectorElementType().type }
106106

107+
public var isLegalFormalType: Bool { bridged.isLegalFormalType() }
108+
107109
public func isBuiltinInteger(withFixedWidth width: Int) -> Bool {
108110
bridged.isBuiltinFixedWidthInteger(width)
109111
}

include/swift/SIL/SILBridging.h

+2
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,7 @@ struct BridgedType {
277277
BRIDGED_INLINE bool isBuiltinInteger() const;
278278
BRIDGED_INLINE bool isBuiltinFloat() const;
279279
BRIDGED_INLINE bool isBuiltinVector() const;
280+
BRIDGED_INLINE bool isLegalFormalType() const;
280281
SWIFT_IMPORT_UNSAFE BRIDGED_INLINE BridgedType getBuiltinVectorElementType() const;
281282
BRIDGED_INLINE bool isBuiltinFixedWidthInteger(SwiftInt width) const;
282283
BRIDGED_INLINE bool isExactSuperclassOf(BridgedType t) const;
@@ -810,6 +811,7 @@ struct BridgedInstruction {
810811
SWIFT_IMPORT_UNSAFE BRIDGED_INLINE BridgedBasicBlock CheckedCastBranch_getFailureBlock() const;
811812
SWIFT_IMPORT_UNSAFE BRIDGED_INLINE BridgedBasicBlock CheckedCastAddrBranch_getSuccessBlock() const;
812813
SWIFT_IMPORT_UNSAFE BRIDGED_INLINE BridgedBasicBlock CheckedCastAddrBranch_getFailureBlock() const;
814+
BRIDGED_INLINE void CheckedCastBranch_updateSourceFormalTypeFromOperandLoweredType() const;
813815
BRIDGED_INLINE CastConsumptionKind CheckedCastAddrBranch_getConsumptionKind() const;
814816
SWIFT_IMPORT_UNSAFE BRIDGED_INLINE BridgedSubstitutionMap ApplySite_getSubstitutionMap() const;
815817
SWIFT_IMPORT_UNSAFE BRIDGED_INLINE BridgedCanType ApplySite_getSubstitutedCalleeType() const;

include/swift/SIL/SILBridgingImpl.h

+8
Original file line numberDiff line numberDiff line change
@@ -445,6 +445,10 @@ bool BridgedType::isBuiltinVector() const {
445445
return unbridged().isBuiltinVector();
446446
}
447447

448+
bool BridgedType::isLegalFormalType() const {
449+
return unbridged().getASTType()->isLegalFormalType();
450+
}
451+
448452
BridgedType BridgedType::getBuiltinVectorElementType() const {
449453
return unbridged().getBuiltinVectorElementType();
450454
}
@@ -1504,6 +1508,10 @@ void BridgedInstruction::LoadInst_setOwnership(SwiftInt ownership) const {
15041508
getAs<swift::LoadInst>()->setOwnershipQualifier((swift::LoadOwnershipQualifier)ownership);
15051509
}
15061510

1511+
void BridgedInstruction::CheckedCastBranch_updateSourceFormalTypeFromOperandLoweredType() const {
1512+
getAs<swift::CheckedCastBranchInst>()->updateSourceFormalTypeFromOperandLoweredType();
1513+
}
1514+
15071515
BridgedBasicBlock BridgedInstruction::CheckedCastBranch_getSuccessBlock() const {
15081516
return {getAs<swift::CheckedCastBranchInst>()->getSuccessBB()};
15091517
}

include/swift/SIL/SILInstruction.h

+4
Original file line numberDiff line numberDiff line change
@@ -11032,6 +11032,10 @@ class CheckedCastBranchInst final
1103211032
SILType getSourceLoweredType() const { return getOperand()->getType(); }
1103311033
CanType getSourceFormalType() const { return SrcFormalTy; }
1103411034

11035+
void updateSourceFormalTypeFromOperandLoweredType() {
11036+
SrcFormalTy = getSourceLoweredType().getASTType();
11037+
}
11038+
1103511039
SILType getTargetLoweredType() const { return DestLoweredTy; }
1103611040
CanType getTargetFormalType() const { return DestFormalTy; }
1103711041
};

test/DebugInfo/simplify_checked_cast_br.sil

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class X : B {}
1111

1212
// CHECK-LABEL: sil [ossa] @test_ossa :
1313
// CHECK: %0 = alloc_ref
14-
// CHECK-NEXT: checked_cast_br AnyObject in %0 : $X
14+
// CHECK-NEXT: checked_cast_br X in %0 : $X
1515
// CHECK: bb2([[A:%.*]] : @owned $X):
1616
// CHECK-NEXT: [[U:%.*]] = upcast [[A]] : $X to $B, loc "takethis":1:1
1717
// CHECK-NEXT: [[E:%.*]] = init_existential_ref [[U]] {{.+}}, loc "takethis":1:1

test/SILOptimizer/devirt_covariant_return.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ public class D2: D1 {
235235
// that D2.foo() is inlined thanks to this.
236236
// CHECK-LABEL: sil hidden [noinline] @$s23devirt_covariant_return7driver2ys5Int32VAA2D2CF
237237
// CHECK-NOT: class_method
238-
// CHECK: checked_cast_br [exact] D1 in
238+
// CHECK: checked_cast_br [exact] D2 in
239239
// CHECK: bb2
240240
// CHECK: global_addr
241241
// CHECK: load

test/SILOptimizer/simplify_checked_cast_br.sil

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class X : B {}
1212

1313
// CHECK-LABEL: sil @test_non_ossa :
1414
// CHECK: %0 = alloc_ref
15-
// CHECK: checked_cast_br AnyObject in %0 : $X
15+
// CHECK: checked_cast_br X in %0 : $X
1616
// CHECK: } // end sil function 'test_non_ossa'
1717
sil @test_non_ossa : $@convention(thin) () -> AnyObject {
1818
bb0:
@@ -31,7 +31,7 @@ bb2:
3131

3232
// CHECK-LABEL: sil [ossa] @test_ossa :
3333
// CHECK: %0 = alloc_ref
34-
// CHECK-O-NEXT: checked_cast_br AnyObject in %0 : $X
34+
// CHECK-O-NEXT: checked_cast_br X in %0 : $X
3535
// CHECK-ONONE: checked_cast_br AnyObject in %2 : $AnyObject
3636
// CHECK-O: bb2([[A:%.*]] : @owned $X):
3737
// CHECK-O-NEXT: [[U:%.*]] = upcast [[A]] : $X to $B
@@ -75,7 +75,7 @@ bb2(%7 : @owned $B):
7575

7676
// CHECK-LABEL: sil [ossa] @test_borrow :
7777
// CHECK: %1 = begin_borrow
78-
// CHECK-NEXT: checked_cast_br any P in %1 : $X
78+
// CHECK-NEXT: checked_cast_br X in %1 : $X
7979
// CHECK: bb2([[A:%.*]] : @guaranteed $X):
8080
// CHECK-NEXT: [[U:%.*]] = upcast [[A]] : $X to $B
8181
// CHECK-NEXT: [[E:%.*]] = init_existential_ref [[U]] : $B

0 commit comments

Comments
 (0)