mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
694 B
30 lines
694 B
using System; |
|
using System.Collections.Generic; |
|
using System.Linq; |
|
using System.Text; |
|
using System.Threading.Tasks; |
|
|
|
namespace ICSharpCode.Decompiler.IL |
|
{ |
|
/// <summary> |
|
/// A type for the purpose of stack analysis. |
|
/// </summary> |
|
public enum StackType |
|
{ |
|
Unknown, |
|
/// <summary>32-bit integer</summary> |
|
I4, |
|
/// <summary>64-bit integer</summary> |
|
I8, |
|
/// <summary>native-size integer</summary> |
|
I, |
|
/// <summary>Floating point number</summary> |
|
F, |
|
/// <summary>Another stack type. Includes objects, value types, function pointers, ...</summary> |
|
O, |
|
/// <summary>A managed pointer</summary> |
|
Ref, |
|
/// <summary>Represents the lack of a stack slot</summary> |
|
Void |
|
} |
|
}
|
|
|