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
b4e23970
Commit
b4e23970
authored
Nov 11, 2013
by
Joern Rennecke
Committed by
Joern Rennecke
Nov 11, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/arc/arc.h (LOGICAL_OP_NON_SHORT_CIRCUIT): Define.
From-SVN: r204666
parent
b11b9adb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
0 deletions
+20
-0
gcc/ChangeLog
+4
-0
gcc/config/arc/arc.h
+16
-0
No files found.
gcc/ChangeLog
View file @
b4e23970
2013
-
11
-
11
Joern
Rennecke
<
joern
.
rennecke
@
embecosm
.
com
>
*
config
/
arc
/
arc
.
h
(
LOGICAL_OP_NON_SHORT_CIRCUIT
):
Define
.
2013
-
11
-
08
Jeff
Law
<
law
@
redhat
.
com
>
*
tree
-
ssa
-
threadupdate
.
c
(
mark_threaded_blocks
):
Truncate
jump
gcc/config/arc/arc.h
View file @
b4e23970
...
...
@@ -1087,6 +1087,22 @@ arc_select_cc_mode (OP, X, Y)
expensive than reg->reg moves. */
#define BRANCH_COST(speed_p, predictable_p) 2
/* Scc sets the destination to 1 and then conditionally zeroes it.
Best case, ORed SCCs can be made into clear - condset - condset.
But it could also end up as five insns. So say it costs four on
average.
These extra instructions - and the second comparison - will also be
an extra cost if the first comparison would have been decisive.
So get an average saving, with a probability of the first branch
beging decisive of p0, we want:
p0 * (branch_cost - 4) > (1 - p0) * 5
??? We don't get to see that probability to evaluate, so we can
only wildly guess that it might be 50%.
??? The compiler also lacks the notion of branch predictability. */
#define LOGICAL_OP_NON_SHORT_CIRCUIT \
(BRANCH_COST (optimize_function_for_speed_p (cfun), \
false) > 9)
/* Nonzero if access to memory by bytes is slow and undesirable.
For RISC chips, it means that access to memory by bytes is no
better than access by words when possible, so grab a whole word
...
...
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