編輯

共用方式為


LastBranchRecordJump Constructors

Definition

Overloads

LastBranchRecordJump(ReadOnlySpan<Byte>)

Initializes a new instance of the LastBranchRecordJump structure.

LastBranchRecordJump(Address, Address)

Initializes a new instance of the LastBranchRecordJump structure.

LastBranchRecordJump(ReadOnlySpan<Byte>)

Initializes a new instance of the LastBranchRecordJump structure.

public LastBranchRecordJump (ReadOnlySpan<byte> serializedData);
new Microsoft.Windows.EventTracing.Cpu.LastBranchRecordJump : ReadOnlySpan<byte> -> Microsoft.Windows.EventTracing.Cpu.LastBranchRecordJump
Public Sub New (serializedData As ReadOnlySpan(Of Byte))

Parameters

serializedData
ReadOnlySpan<Byte>

The serialized data to use as the contents of the structure.

Remarks

To create serializedData, use the other constructor with Serialize(Span<Byte>).

Applies to

LastBranchRecordJump(Address, Address)

Initializes a new instance of the LastBranchRecordJump structure.

public LastBranchRecordJump (Microsoft.Windows.EventTracing.Address fromInstructionPointer, Microsoft.Windows.EventTracing.Address toInstructionPointer);
new Microsoft.Windows.EventTracing.Cpu.LastBranchRecordJump : Microsoft.Windows.EventTracing.Address * Microsoft.Windows.EventTracing.Address -> Microsoft.Windows.EventTracing.Cpu.LastBranchRecordJump
Public Sub New (fromInstructionPointer As Address, toInstructionPointer As Address)

Parameters

fromInstructionPointer
Address

The virtual address that is the source instruction pointer of the jump.

toInstructionPointer
Address

The virtual address that is the target instruction pointer of the jump.

Applies to