VirtualBox

source: vbox/trunk/src/VBox/Runtime/win/amd64/ASMBitFirstSet.asm@ 9230

Last change on this file since 9230 was 8255, checked in by vboxsync, 17 years ago

rebranding, eol

  • Property svn:eol-style set to native
File size: 2.8 KB
Line 
1;; @file
2; IPRT - ASMBitFirstSet().
3;
4
5;
6; Copyright (C) 2006-2007 Sun Microsystems, Inc.
7;
8; This file is part of VirtualBox Open Source Edition (OSE), as
9; available from http://www.virtualbox.org. This file is free software;
10; you can redistribute it and/or modify it under the terms of the GNU
11; General Public License (GPL) as published by the Free Software
12; Foundation, in version 2 as it comes in the "COPYING" file of the
13; VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14; hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15;
16; The contents of this file may alternatively be used under the terms
17; of the Common Development and Distribution License Version 1.0
18; (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19; VirtualBox OSE distribution, in which case the provisions of the
20; CDDL are applicable instead of those of the GPL.
21;
22; You may elect to license modified versions of this file under the
23; terms and conditions of either the GPL or the CDDL or both.
24;
25; Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
26; Clara, CA 95054 USA or visit http://www.sun.com if you need
27; additional information or have any questions.
28;
29
30
31;*******************************************************************************
32;* Header Files *
33;*******************************************************************************
34%include "iprt/asmdefs.mac"
35
36BEGINCODE
37
38;;
39; Finds the first set bit in a bitmap.
40;
41; @returns eax Index of the first set bit.
42; @returns eax -1 if no clear bit was found.
43; @param rcx pvBitmap Pointer to the bitmap.
44; @param edx cBits The number of bits in the bitmap. Multiple of 32.
45;
46BEGINPROC_EXPORTED ASMBitFirstSet
47
48 ;if (cBits)
49 or edx, edx
50 jz short .failed
51 ;{
52 push rdi
53
54 ; asm {...}
55 mov rdi, rcx ; rdi = start of scasd
56 mov ecx, edx
57 add ecx, 31 ; 32 bit aligned
58 shr ecx, 5 ; number of dwords to scan.
59 mov rdx, rdi ; rdx = saved pvBitmap
60 xor eax, eax
61 repe scasd ; Scan for the first dword with any set bit.
62 je .failed_restore
63
64 ; find the bit in question
65 lea rdi, [rdi - 4] ; one step back.
66 mov eax, [rdi]
67 sub rdi, rdx
68 shl edi, 3 ; calc bit offset.
69
70 mov ecx, 0ffffffffh
71 bsf ecx, eax
72 add ecx, edi
73 mov eax, ecx
74
75 ; return success
76 pop rdi
77 ret
78
79 ; failure
80 ;}
81 ;return -1;
82.failed_restore:
83 pop rdi
84.failed:
85 mov eax, 0ffffffffh
86 ret
87ENDPROC ASMBitFirstSet
88
89
90
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette