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