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
e8265f18
Commit
e8265f18
authored
Jun 03, 2012
by
Shenghou Ma
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
runtime: remove unnecessary macros in vlop_arm.s
R=golang-dev, rsc CC=golang-dev
https://golang.org/cl/6270045
parent
d186d07e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
6 deletions
+3
-6
src/pkg/runtime/vlop_arm.s
src/pkg/runtime/vlop_arm.s
+3
-6
No files found.
src/pkg/runtime/vlop_arm.s
View file @
e8265f18
...
...
@@ -23,9 +23,6 @@
//
OUT
OF
OR
IN
CONNECTION
WITH
THE
SOFTWARE
OR
THE
USE
OR
OTHER
DEALINGS
IN
//
THE
SOFTWARE
.
#define UMULL(Rs,Rm,Rhi,Rlo,S) WORD $((14<<28)|(4<<21)|(S<<20)|(Rhi<<16)|(Rlo<<12)|(Rs<<8)|(9<<4)|Rm)
#define UMLAL(Rs,Rm,Rhi,Rlo,S) WORD $((14<<28)|(5<<21)|(S<<20)|(Rhi<<16)|(Rlo<<12)|(Rs<<8)|(9<<4)|Rm)
#define MUL(Rs,Rm,Rd,S) WORD $((14<<28)|(0<<21)|(S<<20)|(Rd<<16)|(Rs<<8)|(9<<4)|Rm)
arg
=
0
/*
replaced
use
of
R10
by
R11
because
the
former
can
be
the
data
segment
base
register
*/
...
...
@@ -36,10 +33,10 @@ TEXT _mulv(SB), $0
MOVW
8
(
FP
),
R11
/*
h0
*/
MOVW
12
(
FP
),
R4
/*
l1
*/
MOVW
16
(
FP
),
R5
/*
h1
*/
UMULL
(4,
2
,
7
,
6
,
0
)
MUL
(11,
4
,
8
,
0
)
MULLU
R4
,
R2
,
(
R7
,
R6
)
MUL
R11
,
R4
,
R8
ADD
R8
,
R7
MUL
(2,
5
,
8
,
0
)
MUL
R2
,
R5
,
R8
ADD
R8
,
R7
MOVW
R6
,
0
(
R
(
arg
))
MOVW
R7
,
4
(
R
(
arg
))
...
...
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