VirtualBox

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

Last change on this file since 48392 was 44528, checked in by vboxsync, 12 years ago

header (C) fixes

  • Property svn:eol-style set to native
File size: 2.6 KB
Line 
1;; @file
2; IPRT - ASMBitFirstSet().
3;
4
5;
6; Copyright (C) 2006-2010 Oracle Corporation
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
26
27;*******************************************************************************
28;* Header Files *
29;*******************************************************************************
30%include "iprt/asmdefs.mac"
31
32BEGINCODE
33
34;;
35; Finds the first set bit in a bitmap.
36;
37; @returns eax Index of the first set bit.
38; @returns eax -1 if no clear bit was found.
39; @param rcx pvBitmap Pointer to the bitmap.
40; @param edx cBits The number of bits in the bitmap. Multiple of 32.
41;
42BEGINPROC_EXPORTED ASMBitFirstSet
43
44 ;if (cBits)
45 or edx, edx
46 jz short .failed
47 ;{
48 push rdi
49
50 ; asm {...}
51 mov rdi, rcx ; rdi = start of scasd
52 mov ecx, edx
53 add ecx, 31 ; 32 bit aligned
54 shr ecx, 5 ; number of dwords to scan.
55 mov rdx, rdi ; rdx = saved pvBitmap
56 xor eax, eax
57 repe scasd ; Scan for the first dword with any set bit.
58 je .failed_restore
59
60 ; find the bit in question
61 lea rdi, [rdi - 4] ; one step back.
62 mov eax, [rdi]
63 sub rdi, rdx
64 shl edi, 3 ; calc bit offset.
65
66 mov ecx, 0ffffffffh
67 bsf ecx, eax
68 add ecx, edi
69 mov eax, ecx
70
71 ; return success
72 pop rdi
73 ret
74
75 ; failure
76 ;}
77 ;return -1;
78.failed_restore:
79 pop rdi
80.failed:
81 mov eax, 0ffffffffh
82 ret
83ENDPROC ASMBitFirstSet
84
85
86
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