<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">Hey All,<div class=""><br class=""></div><div class=""><div class="" style="margin: 0px; line-height: normal;">I’m not sure what to try next here, and could use some advice. For some time — off and on as I have time to get back to it — I’ve been working on switch statements with multiple binding patterns, e.g.:</div></div><div class=""><br class=""></div><div class=""><div class="" style="margin: 0px; line-height: normal;">enum A&lt;T&gt; {</div><div class="" style="margin: 0px; line-height: normal;">&nbsp; case left(a: T, b: T)</div><div class="" style="margin: 0px; line-height: normal;">&nbsp; case right(a: T, b: T)</div><div style="margin: 0px; line-height: normal; min-height: 14px;" class="">&nbsp;&nbsp;<br class="webkit-block-placeholder"></div><div class="" style="margin: 0px; line-height: normal;">&nbsp; var foo: T {</div><div class="" style="margin: 0px; line-height: normal;">&nbsp; &nbsp; switch self {</div><div class="" style="margin: 0px; line-height: normal;">&nbsp; &nbsp; case let .left(a, _), let .right(_, a):</div><div class="" style="margin: 0px; line-height: normal;">&nbsp; &nbsp; &nbsp; return a</div><div class="" style="margin: 0px; line-height: normal;">&nbsp; &nbsp; }</div><div class="" style="margin: 0px; line-height: normal;">&nbsp; }</div><div class="" style="margin: 0px; line-height: normal;">}</div></div><div class=""><br class=""></div><div class="">At some point I’d love to also get to allowing fall through between case blocks with bound variables as well, but first things first. My initial approach was to construct the body of these case blocks as a single basic block with incoming arguments for each bound variable, e.g.:</div><div class="" style="margin: 0px; line-height: normal; min-height: 14px;"><br class=""></div><div class="" style="margin: 0px; line-height: normal;">bb0:</div><div class="" style="margin: 0px; line-height: normal;"><span class="Apple-tab-span" style="white-space: pre;">        </span>switch_enum : $A, case .left: bb1, case .right: bb2</div><div class="" style="margin: 0px; line-height: normal;">bb1:</div><div class="" style="margin: 0px; line-height: normal;"><span class="Apple-tab-span" style="white-space: pre;">        </span>%a1 = tuple_extract $(a: T, b: T), 0</div><div class="" style="margin: 0px; line-height: normal;"><span class="Apple-tab-span" style="white-space: pre;">        </span>br bb3(%a1)</div><div class="" style="margin: 0px; line-height: normal;">bb2:</div><div class="" style="margin: 0px; line-height: normal;"><span class="Apple-tab-span" style="white-space: pre;">        </span>%a2 = tuple_extract $(a: T, b: T), 1</div><div class="" style="margin: 0px; line-height: normal;"><span class="Apple-tab-span" style="white-space: pre;">        </span>br bb3(%a2)</div><div class="" style="margin: 0px; line-height: normal;">bb3(%a: $T):</div><div class="" style="margin: 0px; line-height: normal;"><span class="Apple-tab-span" style="white-space: pre;">        </span>// use %a</div><div class="" style="margin: 0px; line-height: normal; min-height: 14px;"><br class=""></div><div class="" style="margin: 0px; line-height: normal;">This is great unless T is an address-only type (like an unknown generic, as it is in this example code). A stack allocation happens, the actual value is copied in, and then (in bb1 and bb2) that stack value was deallocated, which means passing the value to bb3 breaks the memory management with use-after-free, ick. This was bug SR-2555.&nbsp;</div><div class="" style="margin: 0px; line-height: normal; min-height: 14px;"><br class=""></div><div class="" style="margin: 0px; line-height: normal;">So my next attempt was to pass the address of the value for address-only types:</div><div class="" style="margin: 0px; line-height: normal; min-height: 14px;"><br class=""></div><div class="" style="margin: 0px; line-height: normal;">bb0:</div><div class="" style="margin: 0px; line-height: normal;"><span class="Apple-tab-span" style="white-space: pre;">        </span>switch_enum_address : $*A, case .left: bb1, case .right: bb2</div><div class="" style="margin: 0px; line-height: normal;">bb1:</div><div class="" style="margin: 0px; line-height: normal;"><span class="Apple-tab-span" style="white-space: pre;">        </span>%a1 = tuple_element_addr $(a: T, b: T), 0</div><div class="" style="margin: 0px; line-height: normal;"><span class="Apple-tab-span" style="white-space: pre;">        </span>%s1 = alloc_stack $T</div><div class="" style="margin: 0px; line-height: normal;"><span class="Apple-tab-span" style="white-space: pre;">        </span>copy_addr [take] %a1 to [initialization] %s1</div><div class="" style="margin: 0px; line-height: normal;"><span class="Apple-tab-span" style="white-space: pre;">        </span>br bb3(%s1)</div><div class="" style="margin: 0px; line-height: normal;">bb2:</div><div class="" style="margin: 0px; line-height: normal;"><span class="Apple-tab-span" style="white-space: pre;">        </span>%a2 = tuple_element_addr $(a: T, b: T), 1</div><div class="" style="margin: 0px; line-height: normal;"><span class="Apple-tab-span" style="white-space: pre;">        </span>%s2 = alloc_stack $T</div><div class="" style="margin: 0px; line-height: normal;"><span class="Apple-tab-span" style="white-space: pre;">        </span>copy_addr [take] %a2 to [initialization] %s2</div><div class="" style="margin: 0px; line-height: normal;"><span class="Apple-tab-span" style="white-space: pre;">        </span>br bb3(%s2)</div><div class="" style="margin: 0px; line-height: normal;">bb3(%s: $*T):</div><div class="" style="margin: 0px; line-height: normal;"><span class="Apple-tab-span" style="white-space: pre;">        </span>// use %s as address</div><div class="" style="margin: 0px; line-height: normal;"><span class="Apple-tab-span" style="white-space: pre;">        </span>destroy_addr %s</div><div class="" style="margin: 0px; line-height: normal;"><span class="Apple-tab-span" style="white-space: pre;">        </span>dealloc_stack %s</div><div class="" style="margin: 0px; line-height: normal; min-height: 14px;"><br class=""></div><div class="" style="margin: 0px; line-height: normal;">This requires careful ordering of the stack allocations in each pattern block so that the stack FILO invariant is maintained (in this example there is only one variable “a” but if we needed “b” instead of “_” then we’d have to be sure that each of bb1, bb2 alloc’d stack space for a and b in the same order even though they are in a different order in their respective tuples). But is doable.</div><div class="" style="margin: 0px; line-height: normal; min-height: 14px;"><br class=""></div><div class="" style="margin: 0px; line-height: normal;">Unfortunately, although the result looks like it might be valid SIL, this won’t work. I extended the SILVerifier to deal with stack allocations that were aliased due to being passed as parameters between basic blocks (so that it would know that %s1 and %s were the same and match the allocation of the former to the deallocation of the latter), and that makes SILGen happy.</div><div class="" style="margin: 0px; line-height: normal; min-height: 14px;"><br class=""></div><div class="" style="margin: 0px; line-height: normal;">But this causes IRGen to complain that in the bb3 phi “address has no container” while it is trying to generate IR for the dealloc_stack instruction. If anyone wants to see this the changes are here &lt;<a href="https://github.com/gregomni/swift/tree/switch" class="">https://github.com/gregomni/swift/tree/switch</a>&gt;.</div><div class="" style="margin: 0px; line-height: normal; min-height: 14px;"><br class=""></div><div class="" style="margin: 0px; line-height: normal;">So I backed off, for the moment, to some code which emits the case contents statement(s) multiple times, once for each pattern, as if the programmer had written:</div><div class="" style="margin: 0px; line-height: normal; min-height: 14px;"><br class=""></div><div class="" style="margin: 0px; line-height: normal;">&nbsp; var foo: T {</div><div class="" style="margin: 0px; line-height: normal;">&nbsp; &nbsp; switch self {</div><div class="" style="margin: 0px; line-height: normal;">&nbsp; &nbsp; case let .left(a, _):</div><div class="" style="margin: 0px; line-height: normal;">&nbsp; &nbsp; &nbsp; return a</div><div class="" style="margin: 0px; line-height: normal;">&nbsp; &nbsp; case let .right(_, a):</div><div class="" style="margin: 0px; line-height: normal;">&nbsp; &nbsp; &nbsp; return a</div><div class="" style="margin: 0px; line-height: normal;">&nbsp; &nbsp; }</div><div class="" style="margin: 0px; line-height: normal;">&nbsp; }</div><div class="" style="margin: 0px; line-height: normal; min-height: 14px;"><br class=""></div><div class="" style="margin: 0px; line-height: normal;">This is okay for this example, but obviously isn’t ideal with larger block contents. That got merged to trunk in pull #5094 to fix the bug for now, and that’s where I am today.</div><div class="" style="margin: 0px; line-height: normal; min-height: 14px;"><br class=""></div><div class="" style="margin: 0px; line-height: normal;">Should I:</div><div class="" style="margin: 0px; line-height: normal; min-height: 14px;"><br class=""></div><div class="" style="margin: 0px; line-height: normal;">- Continue down the aliased alloc_stack path and figure out how to make IRGen happy with stack addresses passed as args to BBs? I am - thus far - unfamiliar with IRGen. Any guesses how difficult this would be?</div><div class="" style="margin: 0px; line-height: normal; min-height: 14px;"><br class=""></div><div class="" style="margin: 0px; line-height: normal;">- Hoist stack allocations out of the individual pattern BBs (promising looking in this example, but super messy with lots of cases with differing tuple contents)? This makes the setup easier - alloc_stack the superset of needed things at the top, but the control flow for cleanup potentially hard. Although it seems like SILGen’s Cleanups machinery might actually work for me instead of my having to fight it, as has unfortunately seemed the case so far.&nbsp;</div><div class="" style="margin: 0px; line-height: normal; min-height: 14px;"><br class=""></div><div class="" style="margin: 0px; line-height: normal;">- Try changing over to allocing a box for each address-only arg that I want to pass between BBs? Seems unfortunate to make heap allocations for this (could they be optimized out?), and I’m worried about whether I’d run into further problems continuing to try to ‘join’ multiple allocs to single deallocs this way.</div><div class="" style="margin: 0px; line-height: normal; min-height: 14px;"><br class=""></div><div class="" style="margin: 0px; line-height: normal;">- Use separate strategies for switches containing address-only pattern variables and those which don’t (so that the body block can be shared in the simpler cases but leave the address-only case alone)?</div><div class="" style="margin: 0px; line-height: normal; min-height: 14px;"><br class=""></div><div class="" style="margin: 0px; line-height: normal; min-height: 14px;">- I keep having the nagging feeling that I’m overlooking some easier solution here.</div><div class="" style="margin: 0px; line-height: normal; min-height: 14px;"><br class=""></div><div class="" style="margin: 0px; line-height: normal; min-height: 14px;">Any thoughts greatly appreciated!</div><div class="" style="margin: 0px; line-height: normal; min-height: 14px;"><br class=""></div><div class="" style="margin: 0px; line-height: normal; min-height: 14px;">Thanks,</div><div class="" style="margin: 0px; line-height: normal; min-height: 14px;"><span class="Apple-tab-span" style="white-space: pre;">        </span>- Greg</div><div class=""><br class=""></div></body></html>