Changeset 445 in xtideuniversalbios for trunk/Assembly_Library/Src/Util/Sort.asm


Ignore:
Timestamp:
Aug 29, 2012, 12:59:23 PM (12 years ago)
Author:
krille_n_@…
google:author:
krille_n_@hotmail.com
Message:

Changes:

  • A speed optimization to the eSHL_IM macro for 386 and higher. This change breaks emulation in the sense that the macro will fail when given a memory operand as the first parameter.
  • Memory_SumCXbytesFromESSItoAL now returns with the zero flag set/cleared according to the result.
  • Unrolled all the 8 bit READ transfer loops to do 16 bytes per iteration. Added a new macro (UNROLL_SECTORS_IN_CX_TO_OWORDS) as part of it. Size wise this is expensive but I think it should be worth the ROM space. The WRITE transfer loops were left as is since writes are rare anyway (<10% of all disk I/O IIRC).
  • Minor optimizations and fixes here and there.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Assembly_Library/Src/Util/Sort.asm

    r376 r445  
    77
    88;
    9 ; XTIDE Universal BIOS and Associated Tools 
     9; XTIDE Universal BIOS and Associated Tools
    1010; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2012 by XTIDE Universal BIOS Team.
    1111;
     
    1414; the Free Software Foundation; either version 2 of the License, or
    1515; (at your option) any later version.
    16 ; 
     16;
    1717; This program is distributed in the hope that it will be useful,
    1818; but WITHOUT ANY WARRANTY; without even the implied warranty of
    1919; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    20 ; GNU General Public License for more details.     
     20; GNU General Public License for more details.
    2121; Visit http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
    22 ;       
     22;
    2323
    2424; Algorith is from http://www.algolist.net/Algorithms/Sorting/Quicksort
     
    6262    push    di
    6363    mov     di, cx
    64     shl     cx, 1                       ; Reserve temp and pivot items
     64    eSHL_IM cx, 1                       ; Reserve temp and pivot items
    6565    add     cx, BYTE QSORT_PARAMS_size
    6666    eENTER_STRUCT cx
Note: See TracChangeset for help on using the changeset viewer.