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