1 write to IsLive
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\GCInfo\X86\GCTransition.cs (1)
81IsLive = isLive;
14 references to IsLive
Microsoft.Diagnostics.DataContractReader.Contracts (14)
Contracts\GCInfo\X86\GCInfo.cs (11)
274if (gcTransitionRegister.IsLive == Action.PUSH) 278else if (gcTransitionRegister.IsLive == Action.POP) 531if (registerTransition.IsLive == Action.LIVE && registerTransition.IsThis) 535else if (registerTransition.IsLive == Action.DEAD && registerTransition.Register == thisRegister) 817if (regT.IsLive == Action.LIVE || regT.IsLive == Action.DEAD) 920switch (regT.IsLive) 1086if (regTransition.IsLive == Action.LIVE) 1090else if (regTransition.IsLive == Action.DEAD) 1099else if (regTransition.IsLive == Action.PUSH) 1103else if (regTransition.IsLive == Action.POP)
Contracts\GCInfo\X86\GCTransition.cs (3)
91if (IsLive == Action.LIVE) 95else if (IsLive == Action.DEAD) 101sb.Append((IsLive == Action.PUSH ? "push" : "pop") + $" {Register}");