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
3bc97c56
Commit
3bc97c56
authored
Mar 27, 1997
by
Stan Cox
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(zero_extendhisi2+[12]): use true_regnum instead of REGN
From-SVN: r13808
parent
d5c65c96
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
9 deletions
+5
-9
gcc/config/i386/i386.md
+5
-9
No files found.
gcc/config/i386/i386.md
View file @
3bc97c56
...
...
@@ -1816,7 +1816,7 @@
(const_int 0))
(set (strict_low_part (match_dup 2))
(match_dup 1))]
"operands
[
2
]
= gen_rtx (REG, HImode,
REGNO
(operands
[
0
]
));")
"operands
[
2
]
= gen_rtx (REG, HImode,
true_regnum
(operands
[
0
]
));")
(define_split
...
...
@@ -1828,7 +1828,7 @@
(set (match_dup 0)
(and:SI (match_dup 0)
(const_int 65535)))]
"operands
[
2
]
= gen_rtx (REG, HImode,
REGNO
(operands
[
0
]
));")
"operands
[
2
]
= gen_rtx (REG, HImode,
true_regnum
(operands
[
0
]
));")
(define_insn "zero_extendqihi2"
[
(set (match_operand:HI 0 "register_operand" "=q,&q,?r")
...
...
@@ -1989,18 +1989,14 @@
(define_split
[
(set (match_operand:SI 0 "register_operand" "")
(zero_extend:SI (match_operand:QI 1 "register_operand" "")))]
"reload_completed && TARGET_ZERO_EXTEND_WITH_AND"
"reload_completed && TARGET_ZERO_EXTEND_WITH_AND
&& ! reg_overlap_mentioned_p (operands
[
0
]
, operands
[
1
]
)"
[
(set (match_dup 0)
(match_dup 2))
(set (match_dup 0)
(and:SI (match_dup 0)
(const_int 255)))]
"if (GET_CODE (operands
[
1
]
) == SUBREG && SUBREG_WORD (operands
[
1
]
) == 0)
operands
[
1
]
= SUBREG_REG (operands
[
1
]
);
if (GET_CODE (operands
[
1
]
) != REG
|| REGNO (operands
[
0
]
) == REGNO (operands
[
1
]
))
FAIL;
operands
[
2
]
= gen_rtx (REG, SImode, REGNO (operands
[
1
]
));")
"operands
[
2
]
= gen_rtx (REG, SImode, true_regnum (operands
[
1
]
));")
(define_insn "zero_extendsidi2"
[
(set (match_operand:DI 0 "nonimmediate_operand" "=r,?r,?m")
...
...
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