Skip to content

NativeArchitecture

Namespace: Dotsider.Core.Analysis.Models

Assembly: Dotsider.Core.dll

The instruction-set architecture a native code window is decoded as. Carried on NativeSymbolInfo from the real image (or the selected fat-Mach-O slice) so the disassembler never has to guess from an ambiguous machine string.

public enum NativeArchitecture

ARM 32-bit (Thumb-2). Disassembly supported.

Returns: NativeArchitecture

Arm32 = 4

AArch64 (ARM64). Disassembly supported.

Returns: NativeArchitecture

Arm64 = 2

LoongArch 64-bit. Disassembly supported.

Returns: NativeArchitecture

LoongArch64 = 6

RISC-V 64-bit. Disassembly supported.

Returns: NativeArchitecture

RiscV64 = 5

The architecture could not be determined (managed or unrecognized image).

Returns: NativeArchitecture

Unknown = 0

WebAssembly 32-bit. Disassembly supported.

Returns: NativeArchitecture

Wasm32 = 7

x86-64 (AMD64 / Intel 64). Disassembly supported.

Returns: NativeArchitecture

X64 = 1

x86 (32-bit). Disassembly supported.

Returns: NativeArchitecture

X86 = 3