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
f203c520
Commit
f203c520
authored
Dec 30, 1998
by
Jeffrey A Law
Committed by
Jeff Law
Dec 30, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* i386.md (doubleword shifts): Avoid namespace pollution.
From-SVN: r24448
parent
de2c54aa
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
9 deletions
+19
-9
gcc/ChangeLog
+4
-0
gcc/config/i386/i386.md
+15
-9
No files found.
gcc/ChangeLog
View file @
f203c520
Wed
Dec
30
23
:
38
:
55
1998
Jeffrey
A
Law
(
law
@cygnus
.
com
)
*
i386
.
md
(
doubleword
shifts
)
:
Avoid
namespace
pollution
.
Wed
Dec
30
23
:
00
:
28
1998
David
O
'
Brien
<
obrien
@NUXI
.
com
>
*
configure
.
in
(
FreeBSD
ELF
)
:
Needs
special
crt
files
.
...
...
gcc/config/i386/i386.md
View file @
f203c520
...
...
@@ -4701,11 +4701,13 @@ byte_xor_operation:
output_asm_insn (AS3_SHIFT_DOUBLE (shld%L3,%0,%2,%3), xops);
output_asm_insn (AS2 (sal%L2,%0,%2), xops);
output_asm_insn (AS2 (test%B0,%1,%b0), xops);
asm_fprintf (asm_out_file, \"\\tje %LLASHLDI%d\\n\", ashldi_label_number);
fputs (\"\\tje \", asm_out_file);
ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, \"LASHLDI\", ashldi_label_number);
fputs (\"\\n\", asm_out_file);
output_asm_insn (AS2 (mov%L3,%2,%3), xops); /* Fast shift by 32 */
output_asm_insn (AS2 (xor%L2,%2,%2), xops);
asm_fprintf (asm_out_file, \"%LLASHLDI%d:\\n\", ashldi_label_number++
);
ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, \"LASHLDI\", ashldi_label_number
);
ashldi_label_number++;
RET;
}")
...
...
@@ -4889,12 +4891,14 @@ byte_xor_operation:
output_asm_insn (AS3_SHIFT_DOUBLE (shrd%L2,%0,%3,%2), xops);
output_asm_insn (AS2 (sar%L3,%0,%3), xops);
output_asm_insn (AS2 (test%B0,%1,%b0), xops);
asm_fprintf (asm_out_file,
\"\\
tje %LLASHRDI%d
\\
n
\"
, ashrdi_label_number);
fputs (
\"\\
tje
\"
, asm_out_file);
ASM_OUTPUT_INTERNAL_LABEL (asm_out_file,
\"
LASHRDI
\"
, ashrdi_label_number);
fputs (
\"\\
n
\"
, asm_out_file);
xops
[
1
]
= GEN_INT (31);
output_asm_insn (AS2 (mov%L2,%3,%2), xops);
output_asm_insn (AS2 (sar%L3,%1,%3), xops); /
* shift by 32 *
/
asm_fprintf (asm_out_file,
\"
%LLASHRDI%d:
\\
n
\"
, ashrdi_label_number++
);
ASM_OUTPUT_INTERNAL_LABEL (asm_out_file,
\"
LASHRDI
\"
, ashrdi_label_number
);
ashrdi_label_number++;
RET;
}")
...
...
@@ -5053,11 +5057,13 @@ byte_xor_operation:
output_asm_insn (AS3_SHIFT_DOUBLE (shrd%L2,%0,%3,%2), xops);
output_asm_insn (AS2 (shr%L3,%0,%3), xops);
output_asm_insn (AS2 (test%B0,%1,%b0), xops);
asm_fprintf (asm_out_file, \"\\tje %LLLSHRDI%d\\n\", lshrdi_label_number);
fputs (\"\\tje \", asm_out_file);
ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, \"LLSHRDI\", lshrdi_label_number);
fputs (\"\\n\", asm_out_file);
output_asm_insn (AS2 (mov%L2,%3,%2), xops); /* Fast shift by 32 */
output_asm_insn (AS2 (xor%L3,%3,%3), xops);
asm_fprintf (asm_out_file, \"%LLLSHRDI%d:\\n\", lshrdi_label_number++
);
ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, \"LLSHRDI\", lshrdi_label_number
);
lshrdi_label_number++;
RET;
}")
...
...
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