]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/alpha/ffs.S
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / sysdeps / alpha / ffs.S
CommitLineData
b168057a 1/* Copyright (C) 1996-2015 Free Software Foundation, Inc.
0c9f45ab 2 Contributed by David Mosberger (davidm@cs.arizona.edu).
db31c863 3 This file is part of the GNU C Library.
0c9f45ab 4
db31c863 5 The GNU C Library is free software; you can redistribute it and/or
3214b89b
AJ
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
0c9f45ab 9
db31c863
UD
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
3214b89b 13 Lesser General Public License for more details.
0c9f45ab 14
3214b89b 15 You should have received a copy of the GNU Lesser General Public
ab84e3ff
PE
16 License along with the GNU C Library. If not, see
17 <http://www.gnu.org/licenses/>. */
0c9f45ab
RM
18
19/* Finds the first bit set in an integer. Optimized for the Alpha
db31c863 20 architecture. */
0c9f45ab
RM
21
22#include <sysdep.h>
0c9f45ab 23
db31c863
UD
24 .set noreorder
25 .set noat
0c9f45ab 26
e0c9758c 27
b8b84ae2 28ENTRY(__ffs)
60c74cf0
UD
29#ifdef PROF
30 ldgp gp, 0(pv)
31 lda AT, _mcount
32 jsr AT, (AT), _mcount
33 .prologue 1
e0c9758c
UD
34 zap $16, 0xF0, $16
35 br $ffsl..ng
60c74cf0 36#else
0c9f45ab 37 .prologue 0
e0c9758c
UD
38 zap $16, 0xF0, $16
39 # FALLTHRU
60c74cf0 40#endif
e0c9758c 41END(__ffs)
0c9f45ab 42
e0c9758c
UD
43 .align 4
44ENTRY(ffsl)
45#ifdef PROF
46 ldgp gp, 0(pv)
47 lda AT, _mcount
48 jsr AT, (AT), _mcount
49 .prologue 1
50$ffsl..ng:
51#else
52 .prologue 0
53#endif
54 not $16, $1 # e0 :
55 ldi $2, -1 # .. e1 :
56 cmpbge $1, $2, $3 # e0 : bit N == 1 for byte N == 0
57 clr $0 # .. e1 :
58 addq $3, 1, $4 # e0 :
59 bic $4, $3, $3 # e1 : bit N == 1 for first byte N != 0
60 and $3, 0xF0, $4 # e0 :
61 and $3, 0xCC, $5 # .. e1 :
62 and $3, 0xAA, $6 # e0 :
63 cmovne $4, 4, $0 # .. e1 :
64 cmovne $5, 2, $5 # e0 :
65 cmovne $6, 1, $6 # .. e1 :
66 addl $0, $5, $0 # e0 :
67 addl $0, $6, $0 # e1 : $0 == N
68 extbl $16, $0, $1 # e0 : $1 == byte N
69 ldi $2, 1 # .. e1 :
70 negq $1, $3 # e0 :
71 and $3, $1, $3 # e1 : bit N == least bit set of byte N
72 and $3, 0xF0, $4 # e0 :
73 and $3, 0xCC, $5 # .. e1 :
74 and $3, 0xAA, $6 # e0 :
75 cmovne $4, 5, $2 # .. e1 :
76 cmovne $5, 2, $5 # e0 :
77 cmovne $6, 1, $6 # .. e1 :
78 s8addl $0, $2, $0 # e0 : mult byte ofs by 8 and sum
79 addl $5, $6, $5 # .. e1 :
80 addl $0, $5, $0 # e0 :
81 nop # .. e1 :
82 cmoveq $16, 0, $0 # e0 : trap input == 0 case.
83 ret # .. e1 : 18
84
85END(ffsl)
0c9f45ab 86
b8b84ae2 87weak_alias (__ffs, ffs)
5bb43a43 88libc_hidden_def (__ffs)
38c0241e 89libc_hidden_builtin_def (ffs)
e0c9758c
UD
90weak_extern (ffsl)
91weak_alias (ffsl, ffsll)