Welcome to mirror list, hosted at ThFree Co, Russian Federation.

FlowControl.cs « System.Reflection.Emit « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b714362cb1166a8bb74ec85d1ab41fa981e1f2b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// FlowControl.cs
//
// (C) 2001 Ximian, Inc.  http://www.ximian.com



namespace System.Reflection.Emit {

	/// <summary>
	///  Describes how an instruction alters the flow of control.
	/// </summary>
	public enum FlowControl {

		/// <summary>
		/// Branch instruction (ex: br, leave).
		/// </summary>
		Branch = 0,

		/// <summary>
		///  Break instruction (ex: break).
		/// </summary>
		Break = 1,

		/// <summary>
		///  Call instruction (ex: jmp, call, callvirt).
		/// </summary>
		Call = 2,

		/// <summary>
		///  Conditional branch instruction (ex: brtrue, brfalse).
		/// </summary>
		Cond_Branch = 3,

		/// <summary>
		///  Changes the behaviour of or provides additional
		///  about a subsequent instruction. 
		///  (ex: prefixes such as volatile, unaligned).
		/// </summary>
		Meta = 4,

		/// <summary>
		///  Transition to the next instruction.
		/// </summary>
		Next = 5,

		/// <summary>
		///  Annotation for ann.phi instruction.
		/// </summary>
		Phi = 6,

		/// <summary>
		///  Return instruction.
		/// </summary>
		Return = 7,

		/// <summary>
		///  Throw instruction.
		/// </summary>
		Throw = 8
	}

}