xref: /onnv-gate/usr/src/cmd/fps/fptest/visfps.il (revision 7186:e728311aafb0)
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
12 *
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21
22/*
23 * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
24 * Use is subject to license terms.
25 */
26
27#pragma ident	"%Z%%M%	%I%	%E% SMI"
28
29#ifdef __lint
30
31/*ARGSUSED*/
32unsigned long
33setgsr(unsigned long arg1)
34{
35
36	return (0);
37}
38
39#else
40
41.inline setgsr
42	rd	%gsr,%o1
43	wr	%o0,%gsr
44	mov	%o1,%o0
45.end
46
47#endif
48
49#ifdef __lint
50
51/*ARGSUSED*/
52float
53fpackfix(double arg1)
54{
55	return (0);
56}
57
58#else
59
60.inline	fpackfix
61	fpackfix	%f0,%f0
62.end
63
64#endif
65
66#ifdef __lint
67
68/*ARGSUSED*/
69unsigned long
70fcmpne16(double arg1, double arg2)
71{
72	return (0);
73}
74
75#else
76
77.inline	fcmpne16
78	fcmpne16	%f0,%f2,%o0
79.end
80
81#endif
82
83#ifdef __lint
84
85/*ARGSUSED*/
86unsigned long
87fcmpgt16(double arg1, double arg2)
88{
89	return (0);
90}
91
92#else
93
94.inline	fcmpgt16
95	fcmpgt16	%f0,%f2,%o0
96.end
97
98#endif
99