27 lines
291 B
C#
27 lines
291 B
C#
|
namespace dnlib.IR {
|
|||
|
public enum IRFamily {
|
|||
|
Unspec,
|
|||
|
PushOrPopVariable,
|
|||
|
LoadOrSet,
|
|||
|
LoadAddress,
|
|||
|
LoadIndirect,
|
|||
|
StoreIndirect,
|
|||
|
LoadConstant,
|
|||
|
Call,
|
|||
|
Ret,
|
|||
|
Branch,
|
|||
|
BinOp,
|
|||
|
UnOp,
|
|||
|
Conv,
|
|||
|
Obj,
|
|||
|
Cast,
|
|||
|
Box,
|
|||
|
Exception,
|
|||
|
Field,
|
|||
|
Array,
|
|||
|
Compare,
|
|||
|
Ldftn,
|
|||
|
Ref,
|
|||
|
}
|
|||
|
}
|