File: NG4fls.S

package info (click to toggle)
linux 6.12.63-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 1,675,632 kB
  • sloc: ansic: 25,912,022; asm: 269,631; sh: 136,601; python: 65,458; makefile: 55,710; perl: 37,753; xml: 19,284; cpp: 5,895; yacc: 4,927; lex: 2,939; awk: 1,594; sed: 28; ruby: 25
file content (30 lines) | stat: -rw-r--r-- 495 bytes parent folder | download | duplicates (44)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* NG4fls.S: SPARC optimized fls and __fls for T4 and above.
 *
 * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
 */

#include <linux/linkage.h>

#define LZCNT_O0_G2	\
	.word	0x85b002e8

	.text
	.register	%g2, #scratch
	.register	%g3, #scratch

ENTRY(NG4fls)
	LZCNT_O0_G2	!lzcnt	%o0, %g2
	mov	64, %g3
	retl
	 sub	%g3, %g2, %o0
ENDPROC(NG4fls)

ENTRY(__NG4fls)
	brz,pn	%o0, 1f
	LZCNT_O0_G2	!lzcnt	%o0, %g2
	mov	63, %g3
	sub	%g3, %g2, %o0
1:
	retl
	 nop
ENDPROC(__NG4fls)