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
04a8ee2f
Commit
04a8ee2f
authored
Oct 21, 1996
by
Torbjorn Granlund
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(emit_store_flag_force): New function.
From-SVN: r12987
parent
17964a96
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
0 deletions
+37
-0
gcc/expmed.c
+37
-0
No files found.
gcc/expmed.c
View file @
04a8ee2f
...
...
@@ -4260,6 +4260,43 @@ emit_store_flag (target, code, op0, op1, mode, unsignedp, normalizep)
return
tem
;
}
/* Like emit_store_flag, but always succeeds. */
rtx
emit_store_flag_force
(
target
,
code
,
op0
,
op1
,
mode
,
unsignedp
,
normalizep
)
rtx
target
;
enum
rtx_code
code
;
rtx
op0
,
op1
;
enum
machine_mode
mode
;
int
unsignedp
;
int
normalizep
;
{
rtx
tem
,
label
;
/* First see if emit_store_flag can do the job. */
tem
=
emit_store_flag
(
target
,
code
,
op0
,
op1
,
mode
,
unsignedp
,
normalizep
);
if
(
tem
!=
0
)
return
tem
;
if
(
normalizep
==
0
)
normalizep
=
1
;
/* If this failed, we have to do this with set/compare/jump/set code. */
if
(
GET_CODE
(
target
)
!=
REG
||
reg_mentioned_p
(
target
,
op0
)
||
reg_mentioned_p
(
target
,
op1
))
target
=
gen_reg_rtx
(
GET_MODE
(
target
));
emit_move_insn
(
target
,
const0_rtx
);
tem
=
compare_from_rtx
(
op0
,
op1
,
code
,
unsignedp
,
mode
,
NULL_RTX
,
0
);
if
(
GET_CODE
(
tem
)
==
CONST_INT
)
return
tem
;
label
=
gen_label_rtx
();
if
(
bcc_gen_fctn
[(
int
)
code
]
==
0
)
abort
();
emit_jump_insn
((
*
bcc_gen_fctn
[(
int
)
code
])
(
label
));
emit_move_insn
(
target
,
const1_rtx
);
emit_label
(
label
);
...
...
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