Stream: cranelift

Topic: Confused about live range representation (GenericLiveRange t


view this post on Zulip osa1 (Jun 03 2020 at 21:05):

I'm looking at the type GenericLiveRange and I'm confused about how it's used.
If I have a a program like:

b0:
    i0: ...
    i1: if ... then jmp b1 else jmp b2

b1:
    ...
    i10: jmp b3

b2:
    i20: ... use i0 ...
    i21: jmp b4

b4:
    ...

How is live range of i0 represented in this type?


Last updated: Oct 23 2024 at 20:03 UTC