Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
b73f6494
Commit
b73f6494
authored
Nov 20, 2001
by
Aldy Hernandez
Committed by
Aldy Hernandez
Nov 20, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcc.c-dg/altivec.c: New.
From-SVN: r47191
parent
1578fa95
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
86 additions
and
0 deletions
+86
-0
gcc/testsuite/ChangeLog
+4
-0
gcc/testsuite/gcc.dg/altivec-1.c
+82
-0
No files found.
gcc/testsuite/ChangeLog
View file @
b73f6494
2001-11-19 Aldy Hernandez <aldyh@redhat.com>
* gcc.dg/altivec-1.c: New.
2001-11-19 Neil Booth <neil@daikokuya.demon.co.uk>
* gcc.dg/cpp/fpreprocessed.c: New test case.
...
...
gcc/testsuite/gcc.dg/altivec-1.c
0 → 100644
View file @
b73f6494
/* { dg-do run { target powerpc-*altivec powerpc-*-*-*altivec } } */
/* { dg-options "-maltivec" } */
/* Program to test PowerPC AltiVec instructions. */
/* These macros are not analogous to the overloaded functions
described in Motorola's AltiVec Programming Interface Manual.
These are just here for readability. Eventually we'll get the
overloaded functions implemented in an <altivec.h>. */
#define vec_load(src) \
__builtin_altivec_ld_internal ((int *) src)
#define vec_store(dst, src) \
__builtin_altivec_st_internal ((int *) dst, (int4) src)
#define vec_add_int4(x, y) \
__builtin_altivec_vaddsws (x, y)
#define vec_add_float4(x, y) \
__builtin_altivec_vaddfp (x, y)
#define vec_average_int4(x, y) \
__builtin_altivec_vavgsw (x, y)
typedef
int
int4
__attribute__
((
mode
(
V4SI
)));
typedef
float
float4
__attribute__
((
mode
(
V4SF
)));
int
a1
[
4
]
__attribute__
((
aligned
(
16
)))
=
{
100
,
200
,
300
,
400
};
int
a2
[
4
]
__attribute__
((
aligned
(
16
)))
=
{
500
,
600
,
700
,
800
};
int
a3
[
4
]
__attribute__
((
aligned
(
16
)));
int
addi
[
4
]
=
{
600
,
800
,
1000
,
1200
};
int
avgi
[
4
]
=
{
300
,
400
,
500
,
600
};
float
f1
[
4
]
__attribute__
((
aligned
(
16
)))
=
{
1
.
0
,
2
.
0
,
3
.
0
,
4
.
0
};
float
f2
[
4
]
__attribute__
((
aligned
(
16
)))
=
{
5
.
0
,
6
.
0
,
7
.
0
,
8
.
0
};
float
f3
[
4
]
__attribute__
((
aligned
(
16
)));
float
addf
[
4
]
=
{
6
.
0
,
8
.
0
,
10
.
0
,
12
.
0
};
int4
i
,
j
,
k
;
float4
f
,
g
,
h
;
void
compare_int4
(
int
*
a
,
int
*
b
)
{
int
i
;
for
(
i
=
0
;
i
<
4
;
++
i
)
if
(
a
[
i
]
!=
b
[
i
])
exit
(
1
);
}
void
compare_float4
(
float
*
a
,
float
*
b
)
{
int
i
;
for
(
i
=
0
;
i
<
4
;
++
i
)
if
(
a
[
i
]
!=
b
[
i
])
exit
(
1
);
}
main
()
{
i
=
vec_load
(
a1
);
j
=
vec_load
(
a2
);
k
=
vec_add_int4
(
i
,
j
);
vec_store
(
a3
,
k
);
compare_int4
(
a3
,
addi
);
k
=
vec_average_int4
(
i
,
j
);
vec_store
(
a3
,
k
);
compare_int4
(
a3
,
avgi
);
f
=
(
float4
)
vec_load
(
f1
);
g
=
(
float4
)
vec_load
(
f2
);
h
=
vec_add_float4
(
f
,
g
);
vec_store
(
f3
,
h
);
compare_float4
(
f3
,
addf
);
exit
(
0
);
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment