Rediger

Del via


SymAddressKind Enum

Definition

public enum class SymAddressKind
public enum SymAddressKind
[System.Serializable]
public enum SymAddressKind
[System.Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
public enum SymAddressKind
type SymAddressKind = 
[<System.Serializable>]
type SymAddressKind = 
[<System.Serializable>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type SymAddressKind = 
Public Enum SymAddressKind
Inheritance
SymAddressKind
Attributes

Fields

ILOffset 1

A Microsoft intermediate language (MSIL) offset. The addr1 parameter is the MSIL local variable or parameter index.

NativeRVA 2

A native Relevant Virtual Address (RVA). The addr1 parameter is the RVA in the module.

NativeRegister 3

A native register address. The addr1 parameter is the register in which the variable is stored.

NativeRegisterRelative 4

A register-relative address. The addr1 parameter is the register, and the addr2 parameter is the offset.

NativeOffset 5

A native offset. The addr1 parameter is the offset from the start of the parent.

NativeRegisterRegister 6

A register-relative address. The addr1 parameter is the low-order register, and the addr2 parameter is the high-order register.

NativeRegisterStack 7

A register-relative address. The addr1 parameter is the low-order register, the addr2 parameter is the stack register, and the addr3 parameter is the offset from the stack pointer to the high-order part of the value.

NativeStackRegister 8

A register-relative address. The addr1 parameter is the stack register, the addr2 parameter is the offset from the stack pointer to the low-order part of the value, and the addr3 parameter is the high-order register.

BitField 9

A bit field. The addr1 parameter is the position where the field starts, and the addr2 parameter is the field length.

NativeSectionOffset 10

A native section offset. The addr1 parameter is the section, and the addr2 parameter is the offset.

Remarks

The addr1, addr2, and addr3 parameters refer to the address parameters in the ISymbolWriter interface methods.

Applies to

See also