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
332316cd
Commit
332316cd
authored
Oct 31, 2000
by
Bernd Schmidt
Committed by
Bernd Schmidt
Oct 31, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MMX/SSE bugfixes
From-SVN: r37154
parent
aac31e40
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
39 additions
and
20 deletions
+39
-20
gcc/ChangeLog
+19
-0
gcc/config/i386/i386.c
+5
-5
gcc/config/i386/i386.md
+15
-15
No files found.
gcc/ChangeLog
View file @
332316cd
2000-10-31 Bernd Schmidt <bernds@redhat.co.uk>
* config/i386/i386.c (ix86_init_builtins): Correct return type
building v4hi_ftype_v4hi_int_int tree node.
(ix86_expand_builtin): Use correct operand numbers 0 and 1.
Copy operand 0 into a Pmode register, don't generate a MEM rtx.
* config/i386/i386.md (sse_movntdi): Use mmx register constraint
for operand 1.
(mmx__uavgv8qi3): Correct insn mnemonic.
(mmx_psadbw): Correct insn mnemonic. Use V8QI mode for operands 1 and 2.
(mmx_punpckhwd): Correct insn mnemonic.
(mmx_punpckhdq): Likewise.
(mmx_punpcklwd): Likewise.
(mmx_punpckldq): Likewise.
(prefetch): Use immediare_operand and 'n' constraint for operand 1.
Renumber case labels to match the _mm_prefetch constants defined in
xmmintrin.h.
2000-10-30 Neil Booth <neilb@earthling.net>
* cppfiles.c (stack_include_file): Check for stacked contexts
...
...
gcc/config/i386/i386.c
View file @
332316cd
...
...
@@ -7354,7 +7354,7 @@ ix86_init_builtins ()
tree_cons
(
NULL_TREE
,
integer_type_node
,
endlink
)));
tree
v4hi_ftype_v4hi_int_int
=
build_function_type
(
integer
_type_node
,
=
build_function_type
(
V4HI
_type_node
,
tree_cons
(
NULL_TREE
,
V4HI_type_node
,
tree_cons
(
NULL_TREE
,
integer_type_node
,
tree_cons
(
NULL_TREE
,
...
...
@@ -8155,17 +8155,17 @@ ix86_expand_builtin (exp, target, subtarget, mode, ignore)
arg1
=
TREE_VALUE
(
TREE_CHAIN
(
arglist
));
op0
=
expand_expr
(
arg0
,
NULL_RTX
,
VOIDmode
,
0
);
op1
=
expand_expr
(
arg1
,
NULL_RTX
,
VOIDmode
,
0
);
mode0
=
insn_data
[
icode
].
operand
[
1
].
mode
;
mode1
=
insn_data
[
icode
].
operand
[
2
].
mode
;
mode0
=
insn_data
[
icode
].
operand
[
0
].
mode
;
mode1
=
insn_data
[
icode
].
operand
[
1
].
mode
;
op0
=
gen_rtx_MEM
(
mode0
,
copy_to_mode_reg
(
Pmode
,
op0
));
if
(
!
(
*
insn_data
[
icode
].
operand
[
2
].
predicate
)
(
op1
,
mode1
))
if
(
!
(
*
insn_data
[
icode
].
operand
[
1
].
predicate
)
(
op1
,
mode1
))
{
/* @@@ better error message */
error
(
"selector must be an immediate"
);
return
const0_rtx
;
}
op0
=
copy_to_mode_reg
(
Pmode
,
op0
);
pat
=
GEN_FCN
(
icode
)
(
op0
,
op1
);
if
(
!
pat
)
return
0
;
...
...
gcc/config/i386/i386.md
View file @
332316cd
...
...
@@ -11999,7 +11999,7 @@
(define_insn "sse_movntdi"
[
(set (match_operand:DI 0 "memory_operand" "=m")
(unspec:DI
[
(match_operand:DI 1 "register_operand" "
x
")
]
34))]
(unspec:DI
[
(match_operand:DI 1 "register_operand" "
y
")
]
34))]
"TARGET_SSE"
"movntq
\\
t{%1, %0|%0, %1}"
[
(set_attr "type" "sse")
]
)
...
...
@@ -12773,7 +12773,7 @@
(const_int 1)])))
(const_int 1)))]
"TARGET_SSE"
"pavgb
n
\\
t{%2, %0|%0, %2}"
"pavgb
\\
t{%2, %0|%0, %2}"
[
(set_attr "type" "sse")
]
)
(define_insn "mmx_uavgv4hi3"
...
...
@@ -12788,15 +12788,15 @@
(const_int 1)])))
(const_int 1)))]
"TARGET_SSE"
"pavgw
n
\\
t{%2, %0|%0, %2}"
"pavgw
\\
t{%2, %0|%0, %2}"
[
(set_attr "type" "sse")
]
)
(define_insn "mmx_psadbw"
[
(set (match_operand:V8QI 0 "register_operand" "=y")
(abs:V8QI (minus:V8QI (match_operand:
D
I 1 "register_operand" "0")
(match_operand:
D
I 2 "nonimmediate_operand" "ym"))))]
(abs:V8QI (minus:V8QI (match_operand:
V8Q
I 1 "register_operand" "0")
(match_operand:
V8Q
I 2 "nonimmediate_operand" "ym"))))]
"TARGET_SSE"
"padbw
\\
t{%2, %0|%0, %2}"
"p
s
adbw
\\
t{%2, %0|%0, %2}"
[
(set_attr "type" "sse")
]
)
...
...
@@ -13059,7 +13059,7 @@
(const_int 1)]))
(const_int 5)))]
"TARGET_MMX"
"punpckh
bw
\\
t{%2, %0|%0, %2}"
"punpckh
wd
\\
t{%2, %0|%0, %2}"
[
(set_attr "type" "mmx")
]
)
(define_insn "mmx_punpckhdq"
...
...
@@ -13073,7 +13073,7 @@
(const_int 0)]))
(const_int 1)))]
"TARGET_MMX"
"punpckh
bw
\\
t{%2, %0|%0, %2}"
"punpckh
dq
\\
t{%2, %0|%0, %2}"
[
(set_attr "type" "mmx")
]
)
(define_insn "mmx_punpcklbw"
...
...
@@ -13117,7 +13117,7 @@
(const_int 3)]))
(const_int 5)))]
"TARGET_MMX"
"punpckl
bw
\\
t{%2, %0|%0, %2}"
"punpckl
wd
\\
t{%2, %0|%0, %2}"
[
(set_attr "type" "mmx")
]
)
(define_insn "mmx_punpckldq"
...
...
@@ -13131,7 +13131,7 @@
(const_int 1)]))
(const_int 1)))]
"TARGET_MMX"
"punpckl
bw
\\
t{%2, %0|%0, %2}"
"punpckl
dq
\\
t{%2, %0|%0, %2}"
[
(set_attr "type" "mmx")
]
)
...
...
@@ -13193,20 +13193,20 @@
(define_insn "prefetch"
[
(unspec
[
(match_operand:SI 0 "address_operand" "p")
(match_operand:SI 1 "
address_operand" "p
")] 35)]
(match_operand:SI 1 "
immediate_operand" "n
")] 35)]
"TARGET_SSE"
"
*
{
switch (INTVAL (operands
[
1
]
))
{
case 0:
return
\"
prefetch
t0
\\
t%
0
\"
;
return
\"
prefetch
nta
\\
t%a
0
\"
;
case 1:
return
\"
prefetcht
1
\\
t%
0
\"
;
return
\"
prefetcht
0
\\
t%a
0
\"
;
case 2:
return
\"
prefetcht
2
\\
t%
0
\"
;
return
\"
prefetcht
1
\\
t%a
0
\"
;
case 3:
return
\"
prefetch
nta
\\
t%
0
\"
;
return
\"
prefetch
t2
\\
t%a
0
\"
;
default:
abort ();
}
...
...
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