Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go
Commits
76a763e0
Commit
76a763e0
authored
Aug 07, 2009
by
Russ Cox
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
8 shift bug
R=ken OCL=32882 CL=32882
parent
c30d81bd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
2 deletions
+29
-2
src/cmd/8g/ggen.c
src/cmd/8g/ggen.c
+29
-2
No files found.
src/cmd/8g/ggen.c
View file @
76a763e0
...
...
@@ -499,6 +499,18 @@ ret:
;
}
int
samereg
(
Node
*
a
,
Node
*
b
)
{
if
(
a
->
op
!=
OREGISTER
)
return
0
;
if
(
b
->
op
!=
OREGISTER
)
return
0
;
if
(
a
->
val
.
u
.
reg
!=
b
->
val
.
u
.
reg
)
return
0
;
return
1
;
}
/*
* generate division.
* caller must set:
...
...
@@ -581,7 +593,7 @@ cgen_div(int op, Node *nl, Node *nr, Node *res)
void
cgen_shift
(
int
op
,
Node
*
nl
,
Node
*
nr
,
Node
*
res
)
{
Node
n1
,
n2
;
Node
n1
,
n2
,
cx
,
oldcx
;
int
a
,
w
;
Prog
*
p1
;
uvlong
sc
;
...
...
@@ -611,10 +623,20 @@ cgen_shift(int op, Node *nl, Node *nr, Node *res)
return
;
}
memset
(
&
oldcx
,
0
,
sizeof
oldcx
);
nodreg
(
&
cx
,
types
[
TUINT32
],
D_CX
);
if
(
reg
[
D_CX
]
>
0
&&
!
samereg
(
&
cx
,
res
))
{
regalloc
(
&
oldcx
,
types
[
TUINT32
],
N
);
gmove
(
&
cx
,
&
oldcx
);
}
nodreg
(
&
n1
,
types
[
TUINT32
],
D_CX
);
regalloc
(
&
n1
,
nr
->
type
,
&
n1
);
// to hold the shift type in CX
regalloc
(
&
n2
,
nl
->
type
,
res
);
if
(
samereg
(
&
cx
,
res
))
regalloc
(
&
n2
,
nl
->
type
,
N
);
else
regalloc
(
&
n2
,
nl
->
type
,
res
);
if
(
nl
->
ullman
>=
nr
->
ullman
)
{
cgen
(
nl
,
&
n2
);
cgen
(
nr
,
&
n1
);
...
...
@@ -633,6 +655,11 @@ cgen_shift(int op, Node *nl, Node *nr, Node *res)
}
patch
(
p1
,
pc
);
gins
(
a
,
&
n1
,
&
n2
);
if
(
oldcx
.
op
!=
0
)
{
gmove
(
&
oldcx
,
&
cx
);
regfree
(
&
oldcx
);
}
gmove
(
&
n2
,
res
);
...
...
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