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
5a815b93
Commit
5a815b93
authored
Feb 17, 2012
by
Ian Lance Taylor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
compiler: Fix backend representation for interface methods.
From-SVN: r184348
parent
7a6cb708
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
2 deletions
+29
-2
gcc/go/gofrontend/types.cc
+29
-2
No files found.
gcc/go/gofrontend/types.cc
View file @
5a815b93
...
...
@@ -6886,10 +6886,37 @@ get_backend_interface_fields(Gogo* gogo, Interface_type* type,
p
!=
type
->
methods
()
->
end
();
++
p
,
++
i
)
{
// The type of the method in Go only includes the parameters.
// The actual method also has a receiver, which is always a
// pointer. We need to add that pointer type here in order to
// generate the correct type for the backend.
Function_type
*
ft
=
p
->
type
()
->
function_type
();
go_assert
(
ft
->
receiver
()
==
NULL
);
const
Typed_identifier_list
*
params
=
ft
->
parameters
();
Typed_identifier_list
*
mparams
=
new
Typed_identifier_list
();
if
(
params
!=
NULL
)
mparams
->
reserve
(
params
->
size
()
+
1
);
Type
*
vt
=
Type
::
make_pointer_type
(
Type
::
make_void_type
());
mparams
->
push_back
(
Typed_identifier
(
""
,
vt
,
ft
->
location
()));
if
(
params
!=
NULL
)
{
for
(
Typed_identifier_list
::
const_iterator
pp
=
params
->
begin
();
pp
!=
params
->
end
();
++
pp
)
mparams
->
push_back
(
*
pp
);
}
Typed_identifier_list
*
mresults
=
(
ft
->
results
()
==
NULL
?
NULL
:
ft
->
results
()
->
copy
());
Function_type
*
mft
=
Type
::
make_function_type
(
NULL
,
mparams
,
mresults
,
ft
->
location
());
mfields
[
i
].
name
=
Gogo
::
unpack_hidden_name
(
p
->
name
());
mfields
[
i
].
btype
=
(
use_placeholder
?
p
->
type
()
->
get_backend_placeholder
(
gogo
)
:
p
->
type
()
->
get_backend
(
gogo
));
?
mft
->
get_backend_placeholder
(
gogo
)
:
mft
->
get_backend
(
gogo
));
mfields
[
i
].
location
=
loc
;
// Sanity check: the names should be sorted.
go_assert
(
p
->
name
()
>
last_name
);
...
...
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