8 writes to
Microsoft.CodeAnalysis (8)
CodeGen\BasicBlock.cs (2)
237this.builder._labelInfos[newLabel] = labelInfo.SetTargetOfConditionalBranches(); 430labelInfos[label] = info.WithNewTarget(next);
CodeGen\ILBuilder.cs (2)
545_labelInfos[label] = labelInfo.WithNewTarget(targetsTarget); 605_labelInfos[label] = labelInfo.WithNewTarget(targetsTarget);
CodeGen\ILBuilderEmit.cs (3)
149_labelInfos[label] = labelInfo.WithNewTarget(block); 167_labelInfos[label] = new LabelInfo(block, curStack, false); 296_labelInfos[label] = ld.SetTargetOfConditionalBranches();
Compilation\Compilation.cs (1)
3712_lazyMakeMemberMissingMap[member] = true;
8 references to
Microsoft.CodeAnalysis (8)
CodeGen\BasicBlock.cs (4)
201result = builder._labelInfos[BranchLabel].bb; 234var labelInfo = this.builder._labelInfos[newLabel]; 426var info = labelInfos[label]; 746branchBlocksBuilder.Add(builder._labelInfos[branchLabel].bb);
CodeGen\ILBuilder.cs (2)
518var labelInfo = _labelInfos[label]; 572var labelInfo = _labelInfos[label];
CodeGen\ILBuilderEmit.cs (1)
199Debug.Assert((code != ILOpCode.Nop) || (block == _labelInfos[label].bb));
CodeGen\LocalScopeManager.cs (1)
732Debug.Assert(builder._currentBlock == builder._labelInfos[_endLabel].bb);