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
5f18389f
Commit
5f18389f
authored
Sep 27, 2013
by
Ian Lance Taylor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
reflect: Copy stack values onto heap in amd64 MakeFunc.
From-SVN: r202995
parent
a84dbde7
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
libgo/go/reflect/makefuncgo_amd64.go
+8
-2
No files found.
libgo/go/reflect/makefuncgo_amd64.go
View file @
5f18389f
...
...
@@ -431,8 +431,14 @@ argloop:
func
amd64Memarg
(
in
[]
Value
,
ap
uintptr
,
rt
*
rtype
)
([]
Value
,
uintptr
)
{
ap
=
align
(
ap
,
ptrSize
)
ap
=
align
(
ap
,
uintptr
(
rt
.
align
))
p
:=
Value
{
rt
,
unsafe
.
Pointer
(
ap
),
flag
(
rt
.
Kind
()
<<
flagKindShift
)
|
flagIndir
}
in
=
append
(
in
,
p
)
// We have to copy the argument onto the heap in case the
// function hangs onto the reflect.Value we pass it.
p
:=
unsafe_New
(
rt
)
memmove
(
p
,
unsafe
.
Pointer
(
ap
),
rt
.
size
)
v
:=
Value
{
rt
,
p
,
flag
(
rt
.
Kind
()
<<
flagKindShift
)
|
flagIndir
}
in
=
append
(
in
,
v
)
ap
+=
rt
.
size
return
in
,
ap
}
...
...
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