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
09eeca5e
Commit
09eeca5e
authored
Jul 08, 2004
by
John David Anglin
Committed by
John David Anglin
Jul 08, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* pa.md (prefetch_32, prefetch_64): Simplify constraint checks.
From-SVN: r84310
parent
ef22126d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
12 deletions
+10
-12
gcc/ChangeLog
+4
-0
gcc/config/pa/pa.md
+6
-12
No files found.
gcc/ChangeLog
View file @
09eeca5e
2004-07-08 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
* pa.md (prefetch_32, prefetch_64): Simplify constraint checks.
2004-07-08 Zack Weinberg <zack@codesourcery.com>
* c-decl.c (static_ctors, static_dtors): Make static.
...
...
gcc/config/pa/pa.md
View file @
09eeca5e
...
...
@@ -9393,12 +9393,9 @@ add,l %2,%3,%3\;bv,n %%r0(%3)"
(match_operand:DI 2 "const_int_operand" "n,n"))]
"TARGET_64BIT
&& (operands
[
2
]
!= const0_rtx
|| REG_P (XEXP (operands
[
0
]
, 0))
|| IS_INDEX_ADDR_P (XEXP (operands
[
0
]
, 0))
|| (GET_CODE (XEXP (operands
[
0
]
, 0)) == PLUS
&& REG_P (XEXP (XEXP (operands
[
0
]
, 0), 0))
&& GET_CODE (XEXP (XEXP (operands
[
0
]
, 0), 1)) == CONST_INT
&& VAL_5_BITS_P (XEXP (XEXP (operands
[
0
]
, 0), 1))))"
|| GET_CODE (XEXP (operands
[
0
]
, 0)) != PLUS
|| GET_CODE (XEXP (XEXP (operands
[
0
]
, 0), 1)) != CONST_INT
|| VAL_5_BITS_P (XEXP (XEXP (operands
[
0
]
, 0), 1)))"
{
/
*
The SL completor indicates good spatial locality but poor temporal
locality. The ldw instruction with a target of general register 0
...
...
@@ -9448,12 +9445,9 @@ add,l %2,%3,%3\;bv,n %%r0(%3)"
(match_operand:SI 2 "const_int_operand" "n,n"))]
"TARGET_PA_20
&& (operands
[
2
]
!= const0_rtx
|| REG_P (XEXP (operands
[
0
]
, 0))
|| IS_INDEX_ADDR_P (XEXP (operands
[
0
]
, 0))
|| (GET_CODE (XEXP (operands
[
0
]
, 0)) == PLUS
&& REG_P (XEXP (XEXP (operands
[
0
]
, 0), 0))
&& GET_CODE (XEXP (XEXP (operands
[
0
]
, 0), 1)) == CONST_INT
&& VAL_5_BITS_P (XEXP (XEXP (operands
[
0
]
, 0), 1))))"
|| GET_CODE (XEXP (operands
[
0
]
, 0)) != PLUS
|| GET_CODE (XEXP (XEXP (operands
[
0
]
, 0), 1)) != CONST_INT
|| VAL_5_BITS_P (XEXP (XEXP (operands
[
0
]
, 0), 1)))"
{
/
*
The SL completor indicates good spatial locality but poor temporal
locality. The ldw instruction with a target of general register 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