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

OpCodeType.cs « System.Reflection.Emit « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2733369ecbe5df3071083622e7c5a5043c35fb18 (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
// OpCodeType.cs
//
// (C) 2001 Ximian, Inc.  http://www.ximian.com


namespace System.Reflection.Emit {

	/// <summary>
	///  Describes the types of MSIL instructions.
	/// </summary>
	public enum OpCodeType {

		/// <summary>
		///  "Ignorable" instruction.
		///  Such instruction are used to supply
		///  additional information to particular
		///  MSIL processor.
		/// </summary>
		Annotation = 0,

		/// <summary>
		///  Denotes "shorthand" instruction.
		///  Such instructions take less space
		///  than their full-size equivalents
		///  (ex. ldarg.0 vs. ldarg 0).
		/// </summary>
		Macro = 1,

		/// <summary>
		///  Denotes instruction reserved for internal use.
		/// </summary>
		Nternal = 2,

		/// <summary>
		///  Denotes instruction to deal with objects.
		///  (ex. ldobj).
		/// </summary>
		Objmodel = 3,

		/// <summary>
		/// </summary>
		Prefix = 4,

		/// <summary>
		/// </summary>
		Primitive = 5
	}

}