Files
27Aug2021-Cpp2IL-Dump/mscorlib/System/Reflection/Emit/OpCode.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

108 lines
3.5 KiB
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Reflection.Emit
{
/// <summary>Describes an intermediate language (IL) instruction.</summary>
// Token: 0x02000278 RID: 632
[Token(Token = "0x2000278")]
[ComVisible(true)]
public struct OpCode
{
// Token: 0x060016D8 RID: 5848 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60016D8")]
[Address(RVA = "0x30C6A50", Offset = "0x30C5A50", VA = "0x1830C6A50")]
internal OpCode(int p, int q)
{
}
/// <summary>Returns the generated hash code for this <see langword="Opcode" />.</summary>
/// <returns>The hash code for this instance.</returns>
// Token: 0x060016D9 RID: 5849 RVA: 0x00010110 File Offset: 0x0000E310
[Token(Token = "0x60016D9")]
[Address(RVA = "0x30C6A10", Offset = "0x30C5A10", VA = "0x1830C6A10", Slot = "2")]
public override int GetHashCode()
{
return 0;
}
/// <summary>Tests whether the given object is equal to this <see langword="Opcode" />.</summary>
/// <param name="obj">The object to compare to this object.</param>
/// <returns>
/// <see langword="true" /> if <paramref name="obj" /> is an instance of <see langword="Opcode" /> and is equal to this object; otherwise, <see langword="false" />.</returns>
// Token: 0x060016DA RID: 5850 RVA: 0x00010128 File Offset: 0x0000E328
[Token(Token = "0x60016DA")]
[Address(RVA = "0x30C6980", Offset = "0x30C5980", VA = "0x1830C6980", Slot = "0")]
public override bool Equals(object obj)
{
return default(bool);
}
/// <summary>Returns this <see langword="Opcode" /> as a <see cref="T:System.String" />.</summary>
/// <returns>A string containing the name of this <see langword="Opcode" />.</returns>
// Token: 0x060016DB RID: 5851 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60016DB")]
[Address(RVA = "0x30C6A40", Offset = "0x30C5A40", VA = "0x1830C6A40", Slot = "3")]
public override string ToString()
{
return null;
}
/// <summary>The name of the intermediate language (IL) instruction.</summary>
/// <returns>Read-only. The name of the IL instruction.</returns>
// Token: 0x170002AE RID: 686
// (get) Token: 0x060016DC RID: 5852 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x170002AE")]
public string Name
{
[Token(Token = "0x60016DC")]
[Address(RVA = "0x30C6A90", Offset = "0x30C5A90", VA = "0x1830C6A90")]
get
{
return null;
}
}
// Token: 0x04000B8D RID: 2957
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
[Token(Token = "0x4000B8D")]
internal byte op1;
// Token: 0x04000B8E RID: 2958
[global::Cpp2IlInjected.FieldOffset(Offset = "0x1")]
[Token(Token = "0x4000B8E")]
internal byte op2;
// Token: 0x04000B8F RID: 2959
[global::Cpp2IlInjected.FieldOffset(Offset = "0x2")]
[Token(Token = "0x4000B8F")]
private byte push;
// Token: 0x04000B90 RID: 2960
[global::Cpp2IlInjected.FieldOffset(Offset = "0x3")]
[Token(Token = "0x4000B90")]
private byte pop;
// Token: 0x04000B91 RID: 2961
[global::Cpp2IlInjected.FieldOffset(Offset = "0x4")]
[Token(Token = "0x4000B91")]
private byte size;
// Token: 0x04000B92 RID: 2962
[global::Cpp2IlInjected.FieldOffset(Offset = "0x5")]
[Token(Token = "0x4000B92")]
private byte type;
// Token: 0x04000B93 RID: 2963
[global::Cpp2IlInjected.FieldOffset(Offset = "0x6")]
[Token(Token = "0x4000B93")]
private byte args;
// Token: 0x04000B94 RID: 2964
[global::Cpp2IlInjected.FieldOffset(Offset = "0x7")]
[Token(Token = "0x4000B94")]
private byte flow;
}
}