forked from KolibriOS/kolibrios
2432006d40
* multi thread program support * MSR protect * fast_call_test update --------------------------- old code: int 0x40 code for Intel SYSENTER: push ebp mov ebp, esp push ..ret_point sysenter ..ret_point: pop edx pop ecx code for AMD SYSCALL: push ecx syscall pop ecx recommendation: use mcall from macros.inc git-svn-id: svn://kolibrios.org@477 a494cfbc-eb01-0410-851d-a64ba20cac60
123 lines
2.0 KiB
NASM
123 lines
2.0 KiB
NASM
;
|
|
; Kolibri Fast Calls test
|
|
;
|
|
; Compile with FASM for Kolibri
|
|
;
|
|
;
|
|
use32
|
|
org 0x0
|
|
db 'MENUET01'
|
|
dd 0x01
|
|
dd START
|
|
dd I_END
|
|
dd 0x1000
|
|
dd 0x1000
|
|
dd 0x0, 0x0
|
|
|
|
include 'macros.inc'
|
|
include 'debug.inc'
|
|
|
|
START: print 'Please wait'
|
|
; ÷åðåç áûñòðûé âûçîâ (SYSENTER)
|
|
__CPU_type equ p6
|
|
test1: mov eax, 1
|
|
cpuid
|
|
test edx, 0x800
|
|
jnz .ok
|
|
dps 'unsupported '
|
|
jmp .end
|
|
.ok:
|
|
xor eax, eax
|
|
cpuid
|
|
rdtsc
|
|
mov [old_tsc], eax
|
|
mov [old_tsc + 4], edx
|
|
|
|
mov ebx, 0x100000
|
|
align 32
|
|
.nxt: mcall 19 ; ôóíêöèÿ ïóñòûøêà
|
|
; ïîðòÿòñÿ ecx, edx
|
|
dec ebx
|
|
jnz .nxt
|
|
|
|
xor eax, eax
|
|
cpuid
|
|
rdtsc
|
|
cmp eax, [old_tsc]
|
|
jnb @f
|
|
dec edx
|
|
@@: sub eax, [old_tsc]
|
|
sub edx, [old_tsc + 4]
|
|
debug_print_hex edx
|
|
debug_print_hex eax
|
|
.end: print ' <- Fast call (SYSENTER)'
|
|
|
|
;----------------------------------------------
|
|
; ÷åðåç áûñòðûé âûçîâ (SYSCALL)
|
|
__CPU_type equ k6
|
|
test2: xor eax, eax
|
|
cpuid
|
|
cmp ecx, "cAMD"
|
|
je .ok
|
|
.nf: dps 'unsupported '
|
|
jmp .end
|
|
.ok: mov eax, 0x80000001
|
|
cpuid
|
|
test edx, 0x800 ; bit_11 - SYSCALL/SYSRET support
|
|
jz .nf
|
|
|
|
xor eax, eax
|
|
cpuid
|
|
rdtsc
|
|
mov [old_tsc], eax
|
|
mov [old_tsc + 4], edx
|
|
|
|
mov ebx, 0x100000
|
|
align 32
|
|
.nxt: mcall 19 ; ôóíêöèÿ ïóñòûøêà
|
|
|
|
dec ebx
|
|
jnz .nxt
|
|
|
|
xor eax, eax
|
|
cpuid
|
|
rdtsc
|
|
cmp eax, [old_tsc]
|
|
jnb @f
|
|
dec edx
|
|
@@: sub eax, [old_tsc]
|
|
sub edx, [old_tsc + 4]
|
|
debug_print_hex edx
|
|
debug_print_hex eax
|
|
.end: print ' <- Fast call (SYSCALL)'
|
|
;----------------------------------------------
|
|
; ÷åðåç øëþç ïðåðûâàíèÿ
|
|
__CPU_type equ p5
|
|
xor eax, eax
|
|
cpuid
|
|
rdtsc
|
|
mov [old_tsc], eax
|
|
mov [old_tsc + 4], edx
|
|
|
|
test3: mov ebx, 0x100000
|
|
align 32
|
|
.nxt: mcall 19 ; ôóíêöèÿ ïóñòûøêà
|
|
dec ebx
|
|
jnz .nxt
|
|
|
|
xor eax, eax
|
|
cpuid
|
|
rdtsc
|
|
cmp eax, [old_tsc]
|
|
jnb @f
|
|
dec edx
|
|
@@: sub eax, [old_tsc]
|
|
sub edx, [old_tsc + 4]
|
|
debug_print_hex edx
|
|
debug_print_hex eax
|
|
print ' <- Interrupt'
|
|
|
|
mcall -1
|
|
;---------------------------------------------
|
|
old_tsc: dd 0, 0
|
|
I_END: |