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)
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)
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)
518
var labelInfo = _labelInfos
[
label];
572
var labelInfo = _labelInfos
[
label];
CodeGen\ILBuilderEmit.cs (1)
199
Debug.Assert((code != ILOpCode.Nop) || (block == _labelInfos
[
label].bb));
CodeGen\LocalScopeManager.cs (1)
732
Debug.Assert(builder._currentBlock == builder._labelInfos
[
_endLabel].bb);