MCPcopy Create free account
hub / github.com/F-Stack/f-stack / cpuid_count

Function cpuid_count

freebsd/amd64/include/cpufunc.h:118–124  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

116}
117
118static __inline void
119cpuid_count(u_int ax, u_int cx, u_int *p)
120{
121 __asm __volatile("cpuid"
122 : "=a" (p[0]), "=b" (p[1]), "=c" (p[2]), "=d" (p[3])
123 : "0" (ax), "c" (cx));
124}
125
126static __inline void
127enable_intr(void)

Callers 6

vmm_host_state_initFunction · 0.50
x86_emulate_cpuidFunction · 0.50
fpuinit_bsp1Function · 0.50
fpuinit_bsp2Function · 0.50
fpuinitstateFunction · 0.50
sgx_get_epc_areaFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected