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