1 write to bb
Microsoft.CodeAnalysis (1)
CodeGen\LabelInfo.cs (1)
45
this.
bb
= bb;
10 references to bb
Microsoft.CodeAnalysis (10)
CodeGen\BasicBlock.cs (4)
201
result = builder._labelInfos[BranchLabel].
bb
;
427
if (info.
bb
== this)
462
Debug.Assert(!builder._labelInfos.Values.Any(li => li.
bb
== toRemove),
746
branchBlocksBuilder.Add(builder._labelInfos[branchLabel].
bb
);
CodeGen\ILBuilder.cs (2)
519
var targetBlock = labelInfo.
bb
;
579
var targetBlock = labelInfo.
bb
;
CodeGen\ILBuilderEmit.cs (2)
135
Debug.Assert(labelInfo.
bb
== null, "duplicate use of a label");
199
Debug.Assert((code != ILOpCode.Nop) || (block == _labelInfos[label].
bb
));
CodeGen\LabelInfo.cs (1)
56
return new LabelInfo(this.
bb
, this.stack, true);
CodeGen\LocalScopeManager.cs (1)
732
Debug.Assert(builder._currentBlock == builder._labelInfos[_endLabel].
bb
);