11 references to EmitBranch
Microsoft.CodeAnalysis (11)
CodeGen\LocalScopeManager.cs (2)
624builder.EmitBranch(ILOpCode.Br, endLabel); 741builder.EmitBranch(ILOpCode.Nop, _endLabel);
CodeGen\SwitchIntegralJumpTableEmitter.cs (8)
133_builder.EmitBranch(ILOpCode.Br, _fallThroughLabel); 352_builder.EmitBranch(ILOpCode.Br, bucketFallThroughLabel); 427_builder.EmitBranch(branchCode, targetLabel, GetReverseBranchCode(branchCode)); 442_builder.EmitBranch(ILOpCode.Brfalse, targetLabel); 447_builder.EmitBranch(ILOpCode.Beq, targetLabel); 487_builder.EmitBranch(ILOpCode.Ble_un, targetLabel, ILOpCode.Bgt_un); 554_builder.EmitBranch(ILOpCode.Ble_un, inRangeLabel, ILOpCode.Bgt_un); 556_builder.EmitBranch(ILOpCode.Br, bucketFallThroughLabel);
CodeGen\SwitchStringJumpTableEmitter.cs (1)
169_builder.EmitBranch(ILOpCode.Br, _fallThroughLabel);