1 write to BasicBlockIndex
ILCompiler.Compiler (1)
Compiler\Dataflow\ValueNode.cs (1)
59BasicBlockIndex = basicBlockIndex;
6 references to BasicBlockIndex
ILCompiler.Compiler (6)
Compiler\Dataflow\ArrayValue.cs (1)
101newValue.IndexValues.Add(kvp.Key, new ValueBasicBlockPair(kvp.Value.Value.DeepCopy(), kvp.Value.BasicBlockIndex));
Compiler\Dataflow\MethodBodyScanner.cs (2)
234|| existingValue.Value.BasicBlockIndex == curBasicBlock) 262if (existingValue.BasicBlockIndex == curBasicBlock)
Compiler\Dataflow\ValueNode.cs (3)
65public bool Equals(ValueBasicBlockPair other) => Value.Equals(other.Value) && BasicBlockIndex.Equals(other.BasicBlockIndex); 69public override int GetHashCode() => HashUtils.Combine(Value.GetHashCode(), BasicBlockIndex);