11 references to Switch
Microsoft.CodeAnalysis (6)
CodeGen\BasicBlock.cs (1)
718
this.SetBranchCode(ILOpCode.
Switch
);
CodeGen\ILBuilder.cs (2)
916
case ILOpCode.
Switch
:
920
WriteOpCode(writer, ILOpCode.
Switch
);
CodeGen\ILOpCodeExtensions.cs (3)
75
case ILOpCode.
Switch
:
277
case ILOpCode.
Switch
:
555
case ILOpCode.
Switch
:
Microsoft.CodeAnalysis.Test.Utilities (1)
Metadata\ILBuilderVisualizer.cs (1)
343
case ILOpCode.
Switch
: return "switch";
System.Reflection.Metadata (4)
System\Reflection\Metadata\Ecma335\Encoding\ControlFlowBuilder.cs (2)
129
Debug.Assert(opCode == ILOpCode.
Switch
|| opCode.GetBranchOperandSize() == 4);
132
Debug.Assert(instructionEndDisplacement > 4 && instructionEndDisplacement % 4 == 0 && opCode == ILOpCode.
Switch
);
System\Reflection\Metadata\Ecma335\Encoding\InstructionEncoder.cs (1)
456
OpCode(ILOpCode.
Switch
);
System\Reflection\Metadata\Ecma335\Encoding\SwitchInstructionEncoder.cs (1)
37
_encoder.LabelOperand(ILOpCode.
Switch
, label, _instructionEnd - _encoder.Offset, _ilOffset);