ホーム › System.Hypervisor › WHV_PROCESSOR_EVENT_COUNTERS
WHV_PROCESSOR_EVENT_COUNTERS
構造体サイズ=各フィールドのバイト数(x64/x86 で異なる場合は x64/x86 と併記)。x64/x86 列=フィールドのバイトオフセット(HSPで dupptr / lpoke / wpoke 等に使用)。
フィールド
| フィールド | 型 | サイズ | x64 | x86 | 説明 |
|---|---|---|---|---|---|
| PageFaultCount | ULONGLONG | 8 | +0 | +0 | 発生したページフォルトの累積回数を示すULONGLONGである。 |
| ExceptionCount | ULONGLONG | 8 | +8 | +8 | 発生した例外の累積回数を示すULONGLONGである。 |
| InterruptCount | ULONGLONG | 8 | +16 | +16 | 発生した割り込みの累積回数を示すULONGLONGである。 |
各言語での定義
#include <windows.h>
// WHV_PROCESSOR_EVENT_COUNTERS (x64 24 / x86 24 バイト)
typedef struct WHV_PROCESSOR_EVENT_COUNTERS {
ULONGLONG PageFaultCount;
ULONGLONG ExceptionCount;
ULONGLONG InterruptCount;
} WHV_PROCESSOR_EVENT_COUNTERS;using System;
using System.Runtime.InteropServices;
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
public struct WHV_PROCESSOR_EVENT_COUNTERS
{
public ulong PageFaultCount;
public ulong ExceptionCount;
public ulong InterruptCount;
}Imports System.Runtime.InteropServices
<StructLayout(LayoutKind.Sequential, CharSet:=CharSet.Unicode)>
Public Structure WHV_PROCESSOR_EVENT_COUNTERS
Public PageFaultCount As ULong
Public ExceptionCount As ULong
Public InterruptCount As ULong
End Structureimport ctypes
from ctypes import wintypes
class WHV_PROCESSOR_EVENT_COUNTERS(ctypes.Structure):
_fields_ = [
("PageFaultCount", ctypes.c_ulonglong),
("ExceptionCount", ctypes.c_ulonglong),
("InterruptCount", ctypes.c_ulonglong),
]#[repr(C)]
pub struct WHV_PROCESSOR_EVENT_COUNTERS {
pub PageFaultCount: u64,
pub ExceptionCount: u64,
pub InterruptCount: u64,
}import "golang.org/x/sys/windows"
type WHV_PROCESSOR_EVENT_COUNTERS struct {
PageFaultCount uint64
ExceptionCount uint64
InterruptCount uint64
}type
WHV_PROCESSOR_EVENT_COUNTERS = record
PageFaultCount: UInt64;
ExceptionCount: UInt64;
InterruptCount: UInt64;
end;const WHV_PROCESSOR_EVENT_COUNTERS = extern struct {
PageFaultCount: u64,
ExceptionCount: u64,
InterruptCount: u64,
};type
WHV_PROCESSOR_EVENT_COUNTERS {.bycopy.} = object
PageFaultCount: uint64
ExceptionCount: uint64
InterruptCount: uint64struct WHV_PROCESSOR_EVENT_COUNTERS
{
ulong PageFaultCount;
ulong ExceptionCount;
ulong InterruptCount;
}HSP用 定義
HSP3.7/3.8 は構造体機能が無いため4byte整数配列(dim)+peek/poke で操作(32/64bitでサイズ・位置が異なる場合はタブで分割)。IronHSP は NSTRUCT(#defstruct/stdim/->)で32/64bit共通。
; HSP3.7/3.8 は構造体機能が無いため、4byte整数の配列変数で操作します。(x64 レイアウト)
; WHV_PROCESSOR_EVENT_COUNTERS サイズ: 24 バイト(x64)
dim st, 6 ; 4byte整数×6(構造体サイズ 24 / 4 切り上げ)
; PageFaultCount : ULONGLONG (+0, 8byte) qpoke st,0,値 / qpeek(st,0) ※IronHSPのみ。3.7/3.8は lpoke st,0,下位 : lpoke st,4,上位
; ExceptionCount : ULONGLONG (+8, 8byte) qpoke st,8,値 / qpeek(st,8) ※IronHSPのみ。3.7/3.8は lpoke st,8,下位 : lpoke st,12,上位
; InterruptCount : ULONGLONG (+16, 8byte) qpoke st,16,値 / qpeek(st,16) ※IronHSPのみ。3.7/3.8は lpoke st,16,下位 : lpoke st,20,上位
; ※4byte境界の整数は添字 st.N(N=オフセット/4)で読み書き可。それ以外は peek/poke 系を使用。; IronHSP は NSTRUCT(構造体)をサポート。32bit/64bit どちらでも同じコードで動作します。
#defstruct global WHV_PROCESSOR_EVENT_COUNTERS
#field int64 PageFaultCount
#field int64 ExceptionCount
#field int64 InterruptCount
#endstruct
stdim st, WHV_PROCESSOR_EVENT_COUNTERS ; NSTRUCT 変数を確保
st->PageFaultCount = 100
mes "PageFaultCount=" + st->PageFaultCount