small optimization

git-svn-id: svn://kolibrios.org@254 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Sergey Semyonov (Serge) 2006-12-29 07:12:27 +00:00
parent d40f7261aa
commit f5b902bbee
5 changed files with 5 additions and 10 deletions

View File

@ -214,8 +214,7 @@ found:
btr [ebx], eax
mov [mem_block_start],ebx
sub ebx, mem_block_map
shl ebx, 3
add eax,ebx
lea eax,[eax+ebx*8]
shl eax, 5
add eax, [mem_block_arr]
dec [free_blocks]

View File

@ -172,8 +172,7 @@ proc alloc_page
btr [ebx], eax
mov [page_start],ebx
sub ebx, sys_pgmap
shl ebx, 3
add eax,ebx
lea eax, [eax+ebx*8]
shl eax, 12
dec [pg_data.pages_free]
popfd

View File

@ -430,8 +430,7 @@ proc video_alloc
mov [cursor_start],ebx
sub ebx, cursor_map
shl ebx, 3
add eax,ebx
lea eax,[eax+ebx*8]
shl eax,14
add eax, LFBAddress+CURSOR_IMAGE_OFFSET

View File

@ -44,8 +44,7 @@ proc alloc_event
btr [ebx], eax
mov [event_start],ebx
sub ebx, event_map
shl ebx, 3
add eax,ebx
lea eax,[eax+ebx*8]
shl eax,5
add eax, [events]
popfd

View File

@ -282,8 +282,7 @@ proc alloc_cursor
mov [cursor_start],ebx
sub ebx, cursor_map
shl ebx, 3
add eax,ebx
lea eax,[eax+ebx*8]
shl eax,3
lea eax,[cursors+eax+eax*2]