8 writes to
Microsoft.CodeAnalysis (8)
CodeGen\BasicBlock.cs (2)
237
this.builder._labelInfos
[
newLabel] = labelInfo.SetTargetOfConditionalBranches();
430
labelInfos
[
label] = info.WithNewTarget(next);
CodeGen\ILBuilder.cs (2)
555
_labelInfos
[
label] = labelInfo.WithNewTarget(targetsTarget);
615
_labelInfos
[
label] = labelInfo.WithNewTarget(targetsTarget);
CodeGen\ILBuilderEmit.cs (3)
141
_labelInfos
[
label] = labelInfo.WithNewTarget(block);
159
_labelInfos
[
label] = new LabelInfo(block, curStack, false);
293
_labelInfos
[
label] = ld.SetTargetOfConditionalBranches();
Compilation\Compilation.cs (1)
3764
_lazyMakeMemberMissingMap
[
member] = true;
8 references to
Microsoft.CodeAnalysis (8)
CodeGen\BasicBlock.cs (4)
201
result = builder._labelInfos
[
BranchLabel].bb;
234
var labelInfo = this.builder._labelInfos
[
newLabel];
426
var info = labelInfos
[
label];
746
branchBlocksBuilder.Add(builder._labelInfos
[
branchLabel].bb);
CodeGen\ILBuilder.cs (2)
528
var labelInfo = _labelInfos
[
label];
582
var labelInfo = _labelInfos
[
label];
CodeGen\ILBuilderEmit.cs (1)
191
Debug.Assert((code != ILOpCode.Nop) || (block == _labelInfos
[
label].bb));
CodeGen\LocalScopeManager.cs (1)
732
Debug.Assert(builder._currentBlock == builder._labelInfos
[
_endLabel].bb);