44 references to Nop
Microsoft.AspNetCore.Http.Extensions.Tests (4)
RequestDelegateFactoryTests.cs (2)
335
new object[] { (Action<HttpContext, ILOpCode[]>)Store, new[] { "Nop" }, new[] { ILOpCode.
Nop
} },
386
new object[] { (Action<HttpContext, ILOpCode>)Store, "Nop", ILOpCode.
Nop
},
RequestDelegateGenerator\RequestDelegateCreationTests.Arrays.cs (1)
142
new object[] { "ILOpCode[]", new[] { "Nop" }, new[] { ILOpCode.
Nop
} },
RequestDelegateGenerator\RequestDelegateCreationTests.TryParse.cs (1)
53
new object[] { "ILOpCode", "Nop", ILOpCode.
Nop
},
Microsoft.CodeAnalysis (28)
CodeGen\BasicBlock.cs (10)
248
=> (this.BranchLabel != null) && (this.BranchCode != ILOpCode.
Nop
);
363
Debug.Assert(BranchCode != ILOpCode.
Nop
, "Nop branches should not have labels");
394
next.BranchCode == ILOpCode.
Nop
&&
414
this.SetBranch(null, ILOpCode.
Nop
);
452
if (revBrOp != ILOpCode.
Nop
)
500
this.SetBranch(null, ILOpCode.
Nop
);
532
this.SetBranch(null, ILOpCode.
Nop
);
579
if (result != ILOpCode.
Nop
)
617
case ILOpCode.
Nop
:
663
this.BranchCode = ILOpCode.
Nop
;
CodeGen\ILBuilder.cs (8)
157
_lastCompleteBlock.BranchCode == ILOpCode.
Nop
&&
291
if (branchCode == ILOpCode.
Nop
&& block.Type == BlockType.Normal)
532
case ILOpCode.
Nop
:
592
case ILOpCode.
Nop
:
751
current.SetBranch(null, ILOpCode.
Nop
);
767
if ((block.BranchCode != ILOpCode.
Nop
) || (block.BranchLabel == null))
913
case ILOpCode.
Nop
:
1109
EmitOpCode(ILOpCode.
Nop
);
CodeGen\ILBuilderEmit.cs (7)
173
internal void EmitBranch(ILOpCode code, object label, ILOpCode revOpCode = ILOpCode.
Nop
)
175
bool validOpCode = (code == ILOpCode.
Nop
) || code.IsBranch();
178
Debug.Assert(revOpCode == ILOpCode.
Nop
|| revOpCode.IsBranch());
199
Debug.Assert((code != ILOpCode.
Nop
) || (block == _labelInfos[label].bb));
203
if (code != ILOpCode.
Nop
)
624
ILOpCode code = ILOpCode.
Nop
;
639
if (code != ILOpCode.
Nop
)
CodeGen\ILOpCodeExtensions.cs (2)
193
case ILOpCode.
Nop
:
476
case ILOpCode.
Nop
:
CodeGen\LocalScopeManager.cs (1)
741
builder.EmitBranch(ILOpCode.
Nop
, _endLabel);
Microsoft.CodeAnalysis.CSharp (5)
CodeGen\CodeGenerator.cs (3)
392
_builder.EmitOpCode(ILOpCode.
Nop
);
415
_builder.EmitOpCode(ILOpCode.
Nop
);
466
_builder.EmitOpCode(ILOpCode.
Nop
);
CodeGen\EmitExpression.cs (1)
4111
_builder.EmitOpCode(ILOpCode.
Nop
);
CodeGen\EmitStatement.cs (1)
140
_builder.EmitOpCode(ILOpCode.
Nop
);
Microsoft.CodeAnalysis.Test.Utilities (2)
Metadata\ILBuilderVisualizer.cs (2)
215
if (block.BranchCode != ILOpCode.
Nop
)
275
case ILOpCode.
Nop
: return "nop";
Microsoft.CodeAnalysis.VisualBasic (5)
CodeGen\CodeGenerator.vb (2)
253
_builder.EmitOpCode(ILOpCode.
Nop
)
272
_builder.EmitOpCode(ILOpCode.
Nop
)
CodeGen\EmitExpression.vb (1)
1149
_builder.EmitOpCode(ILOpCode.
Nop
)
CodeGen\EmitStatement.vb (2)
93
_builder.EmitOpCode(ILOpCode.
Nop
)
1209
_builder.EmitOpCode(ILOpCode.
Nop
)