C# 클래스 AsmResolver.X86.X86Formatter

Provides a base for a generic IX86Formatter implementation.
상속: IX86Formatter
파일 보기 프로젝트 열기: JerreS/AsmResolver

공개 메소드들

메소드 설명
FormatByte ( byte value ) : string

Formats a byte constant to a readable string.

FormatDword ( uint value ) : string

Formats a dword constant to a readable string.

FormatFword ( ulong value ) : string

Formats a fword constant to a readable string.

FormatMnemonic ( X86Mnemonic mnemonic ) : string
FormatOffset ( int value ) : string

Formats an offset to a readable string.

FormatOperand ( X86Operand operand ) : string
FormatOperandUsagePrefix ( X86OperandUsage operandUsage ) : string

Formats a operand usage to a readable string.

FormatQword ( ulong value ) : string

Formats a qword constant to a readable string.

FormatRegister ( X86Register value ) : string

Formats a x86 register to a readable string.

FormatWord ( ushort value ) : string

Formats a word constant to a readable string.

비공개 메소드들

메소드 설명
FormatValue ( object value ) : string

메소드 상세

FormatByte() 공개 추상적인 메소드

Formats a byte constant to a readable string.
public abstract FormatByte ( byte value ) : string
value byte The constant to format.
리턴 string

FormatDword() 공개 추상적인 메소드

Formats a dword constant to a readable string.
public abstract FormatDword ( uint value ) : string
value uint The constant to format.
리턴 string

FormatFword() 공개 추상적인 메소드

Formats a fword constant to a readable string.
public abstract FormatFword ( ulong value ) : string
value ulong The constant to format.
리턴 string

FormatMnemonic() 공개 메소드

public FormatMnemonic ( X86Mnemonic mnemonic ) : string
mnemonic X86Mnemonic
리턴 string

FormatOffset() 공개 추상적인 메소드

Formats an offset to a readable string.
public abstract FormatOffset ( int value ) : string
value int The constant to format.
리턴 string

FormatOperand() 공개 메소드

public FormatOperand ( X86Operand operand ) : string
operand X86Operand
리턴 string

FormatOperandUsagePrefix() 공개 추상적인 메소드

Formats a operand usage to a readable string.
public abstract FormatOperandUsagePrefix ( X86OperandUsage operandUsage ) : string
operandUsage X86OperandUsage The operand usage to format.
리턴 string

FormatQword() 공개 추상적인 메소드

Formats a qword constant to a readable string.
public abstract FormatQword ( ulong value ) : string
value ulong The constant to format.
리턴 string

FormatRegister() 공개 추상적인 메소드

Formats a x86 register to a readable string.
public abstract FormatRegister ( X86Register value ) : string
value X86Register The register to format.
리턴 string

FormatWord() 공개 추상적인 메소드

Formats a word constant to a readable string.
public abstract FormatWord ( ushort value ) : string
value ushort The constant to format.
리턴 string