Skip to content

Commit e3274b3

Browse files
committed
[region-isolation] Move unhandled pack instructions away from the rest of unhandled instructions.
1 parent 4c7822c commit e3274b3

File tree

1 file changed

+14
-9
lines changed

1 file changed

+14
-9
lines changed

lib/SILOptimizer/Analysis/RegionAnalysis.cpp

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2422,18 +2422,10 @@ CONSTANT_TRANSLATION(LoadUnownedInst, Unhandled)
24222422
CONSTANT_TRANSLATION(ValueMetatypeInst, Unhandled)
24232423
CONSTANT_TRANSLATION(ExistentialMetatypeInst, Unhandled)
24242424
CONSTANT_TRANSLATION(VectorInst, Unhandled)
2425-
CONSTANT_TRANSLATION(TuplePackElementAddrInst, Unhandled)
2426-
CONSTANT_TRANSLATION(TuplePackExtractInst, Unhandled)
2427-
CONSTANT_TRANSLATION(PackElementGetInst, Unhandled)
24282425
CONSTANT_TRANSLATION(InitExistentialValueInst, Unhandled)
24292426
CONSTANT_TRANSLATION(InitExistentialMetatypeInst, Unhandled)
24302427
CONSTANT_TRANSLATION(OpenExistentialMetatypeInst, Unhandled)
24312428
CONSTANT_TRANSLATION(OpenExistentialValueInst, Unhandled)
2432-
CONSTANT_TRANSLATION(OpenPackElementInst, Unhandled)
2433-
CONSTANT_TRANSLATION(PackLengthInst, Unhandled)
2434-
CONSTANT_TRANSLATION(DynamicPackIndexInst, Unhandled)
2435-
CONSTANT_TRANSLATION(PackPackIndexInst, Unhandled)
2436-
CONSTANT_TRANSLATION(ScalarPackIndexInst, Unhandled)
24372429
CONSTANT_TRANSLATION(DifferentiableFunctionInst, Unhandled)
24382430
CONSTANT_TRANSLATION(LinearFunctionInst, Unhandled)
24392431
CONSTANT_TRANSLATION(DifferentiableFunctionExtractInst, Unhandled)
@@ -2446,7 +2438,6 @@ CONSTANT_TRANSLATION(BindMemoryInst, Unhandled)
24462438
CONSTANT_TRANSLATION(RebindMemoryInst, Unhandled)
24472439
CONSTANT_TRANSLATION(ThrowAddrInst, Unhandled)
24482440
CONSTANT_TRANSLATION(AwaitAsyncContinuationInst, Unhandled)
2449-
CONSTANT_TRANSLATION(DeallocPackInst, Unhandled)
24502441
CONSTANT_TRANSLATION(UnmanagedRetainValueInst, Unhandled)
24512442
CONSTANT_TRANSLATION(UnmanagedReleaseValueInst, Unhandled)
24522443
CONSTANT_TRANSLATION(UnmanagedAutoreleaseValueInst, Unhandled)
@@ -2456,7 +2447,21 @@ CONSTANT_TRANSLATION(AssignInst, Unhandled)
24562447
CONSTANT_TRANSLATION(AssignByWrapperInst, Unhandled)
24572448
CONSTANT_TRANSLATION(AssignOrInitInst, Unhandled)
24582449
CONSTANT_TRANSLATION(MarkFunctionEscapeInst, Unhandled)
2450+
2451+
//===---
2452+
// Packs
2453+
//
2454+
2455+
CONSTANT_TRANSLATION(DeallocPackInst, Unhandled)
2456+
CONSTANT_TRANSLATION(DynamicPackIndexInst, Unhandled)
2457+
CONSTANT_TRANSLATION(OpenPackElementInst, Unhandled)
2458+
CONSTANT_TRANSLATION(PackElementGetInst, Unhandled)
24592459
CONSTANT_TRANSLATION(PackElementSetInst, Unhandled)
2460+
CONSTANT_TRANSLATION(PackLengthInst, Unhandled)
2461+
CONSTANT_TRANSLATION(PackPackIndexInst, Unhandled)
2462+
CONSTANT_TRANSLATION(ScalarPackIndexInst, Unhandled)
2463+
CONSTANT_TRANSLATION(TuplePackElementAddrInst, Unhandled)
2464+
CONSTANT_TRANSLATION(TuplePackExtractInst, Unhandled)
24602465

24612466
//===---
24622467
// Apply

0 commit comments

Comments
 (0)