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
abff6b5f
Commit
abff6b5f
authored
Dec 22, 2010
by
Ian Lance Taylor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid infinite recursion looking up method in invalid recursive type.
From-SVN: r168186
parent
7cfc62ba
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
12 deletions
+37
-12
gcc/go/gofrontend/types.cc
+35
-10
gcc/go/gofrontend/types.h
+2
-2
No files found.
gcc/go/gofrontend/types.cc
View file @
abff6b5f
...
@@ -7622,13 +7622,14 @@ Type::bind_field_or_method(Gogo* gogo, const Type* type, Expression* expr,
...
@@ -7622,13 +7622,14 @@ Type::bind_field_or_method(Gogo* gogo, const Type* type, Expression* expr,
bool
receiver_can_be_pointer
=
(
expr
->
type
()
->
points_to
()
!=
NULL
bool
receiver_can_be_pointer
=
(
expr
->
type
()
->
points_to
()
!=
NULL
||
expr
->
is_addressable
());
||
expr
->
is_addressable
());
std
::
vector
<
const
Named_type
*>
seen
;
bool
is_method
=
false
;
bool
is_method
=
false
;
bool
found_pointer_method
=
false
;
bool
found_pointer_method
=
false
;
std
::
string
ambig1
;
std
::
string
ambig1
;
std
::
string
ambig2
;
std
::
string
ambig2
;
if
(
Type
::
find_field_or_method
(
type
,
name
,
receiver_can_be_pointer
,
NULL
,
if
(
Type
::
find_field_or_method
(
type
,
name
,
receiver_can_be_pointer
,
&
is_method
,
&
found_pointer
_method
,
&
seen
,
NULL
,
&
is
_method
,
&
ambig1
,
&
ambig2
))
&
found_pointer_method
,
&
ambig1
,
&
ambig2
))
{
{
Expression
*
ret
;
Expression
*
ret
;
if
(
!
is_method
)
if
(
!
is_method
)
...
@@ -7704,13 +7705,16 @@ Type::bind_field_or_method(Gogo* gogo, const Type* type, Expression* expr,
...
@@ -7704,13 +7705,16 @@ Type::bind_field_or_method(Gogo* gogo, const Type* type, Expression* expr,
// ambiguity. If a method is found, sets *IS_METHOD to true;
// ambiguity. If a method is found, sets *IS_METHOD to true;
// otherwise, if a field is found, set it to false. If
// otherwise, if a field is found, set it to false. If
// RECEIVER_CAN_BE_POINTER is false, then the receiver is a value
// RECEIVER_CAN_BE_POINTER is false, then the receiver is a value
// whose address can not be taken. When returning false, this sets
// whose address can not be taken. SEEN is used to avoid infinite
// *FOUND_POINTER_METHOD if we found a method we couldn't use because
// recursion on invalid types.
// it requires a pointer. LEVEL is used for recursive calls, and can
// be NULL for a non-recursive call. When this function returns false
// When returning false, this sets *FOUND_POINTER_METHOD if we found a
// because it finds that the name is ambiguous, it will store a path
// method we couldn't use because it requires a pointer. LEVEL is
// to the ambiguous names in *AMBIG1 and *AMBIG2. If the name is not
// used for recursive calls, and can be NULL for a non-recursive call.
// found at all, *AMBIG1 and *AMBIG2 will be unchanged.
// When this function returns false because it finds that the name is
// ambiguous, it will store a path to the ambiguous names in *AMBIG1
// and *AMBIG2. If the name is not found at all, *AMBIG1 and *AMBIG2
// will be unchanged.
// This function just returns whether or not there is a field or
// This function just returns whether or not there is a field or
// method, and whether it is a field or method. It doesn't build an
// method, and whether it is a field or method. It doesn't build an
...
@@ -7723,6 +7727,7 @@ bool
...
@@ -7723,6 +7727,7 @@ bool
Type
::
find_field_or_method
(
const
Type
*
type
,
Type
::
find_field_or_method
(
const
Type
*
type
,
const
std
::
string
&
name
,
const
std
::
string
&
name
,
bool
receiver_can_be_pointer
,
bool
receiver_can_be_pointer
,
std
::
vector
<
const
Named_type
*>*
seen
,
int
*
level
,
int
*
level
,
bool
*
is_method
,
bool
*
is_method
,
bool
*
found_pointer_method
,
bool
*
found_pointer_method
,
...
@@ -7749,6 +7754,17 @@ Type::find_field_or_method(const Type* type,
...
@@ -7749,6 +7754,17 @@ Type::find_field_or_method(const Type* type,
// else.
// else.
*
found_pointer_method
=
true
;
*
found_pointer_method
=
true
;
}
}
for
(
std
::
vector
<
const
Named_type
*>::
const_iterator
p
=
seen
->
begin
();
p
!=
seen
->
end
();
++
p
)
{
if
(
*
p
==
nt
)
{
// We've already seen this type when searching for methods.
return
false
;
}
}
}
}
// Interface types can have methods.
// Interface types can have methods.
...
@@ -7768,6 +7784,9 @@ Type::find_field_or_method(const Type* type,
...
@@ -7768,6 +7784,9 @@ Type::find_field_or_method(const Type* type,
if
(
fields
==
NULL
)
if
(
fields
==
NULL
)
return
false
;
return
false
;
if
(
nt
!=
NULL
)
seen
->
push_back
(
nt
);
int
found_level
=
0
;
int
found_level
=
0
;
bool
found_is_method
=
false
;
bool
found_is_method
=
false
;
std
::
string
found_ambig1
;
std
::
string
found_ambig1
;
...
@@ -7780,6 +7799,8 @@ Type::find_field_or_method(const Type* type,
...
@@ -7780,6 +7799,8 @@ Type::find_field_or_method(const Type* type,
if
(
pf
->
field_name
()
==
name
)
if
(
pf
->
field_name
()
==
name
)
{
{
*
is_method
=
false
;
*
is_method
=
false
;
if
(
nt
!=
NULL
)
seen
->
pop_back
();
return
true
;
return
true
;
}
}
...
@@ -7800,6 +7821,7 @@ Type::find_field_or_method(const Type* type,
...
@@ -7800,6 +7821,7 @@ Type::find_field_or_method(const Type* type,
bool
subfound
=
Type
::
find_field_or_method
(
fnt
,
bool
subfound
=
Type
::
find_field_or_method
(
fnt
,
name
,
name
,
receiver_can_be_pointer
,
receiver_can_be_pointer
,
seen
,
&
sublevel
,
&
sublevel
,
&
sub_is_method
,
&
sub_is_method
,
found_pointer_method
,
found_pointer_method
,
...
@@ -7856,6 +7878,9 @@ Type::find_field_or_method(const Type* type,
...
@@ -7856,6 +7878,9 @@ Type::find_field_or_method(const Type* type,
// FOUND_AMBIG2 are not empty. If we found the field, FOUND_LEVEL
// FOUND_AMBIG2 are not empty. If we found the field, FOUND_LEVEL
// is not 0 and FOUND_AMBIG1 and FOUND_AMBIG2 are empty.
// is not 0 and FOUND_AMBIG1 and FOUND_AMBIG2 are empty.
if
(
nt
!=
NULL
)
seen
->
pop_back
();
if
(
found_level
==
0
)
if
(
found_level
==
0
)
return
false
;
return
false
;
else
if
(
!
found_ambig1
.
empty
())
else
if
(
!
found_ambig1
.
empty
())
...
...
gcc/go/gofrontend/types.h
View file @
abff6b5f
...
@@ -1067,8 +1067,8 @@ class Type
...
@@ -1067,8 +1067,8 @@ class Type
static
bool
static
bool
find_field_or_method
(
const
Type
*
type
,
const
std
::
string
&
name
,
find_field_or_method
(
const
Type
*
type
,
const
std
::
string
&
name
,
bool
receiver_can_be_pointer
,
bool
receiver_can_be_pointer
,
int
*
level
,
bool
*
is_method
,
std
::
vector
<
const
Named_type
*>*
,
int
*
level
,
bool
*
found_pointer_method
,
bool
*
is_method
,
bool
*
found_pointer_method
,
std
::
string
*
ambig1
,
std
::
string
*
ambig2
);
std
::
string
*
ambig1
,
std
::
string
*
ambig2
);
// Get a tree for a type without looking in the hash table for
// Get a tree for a type without looking in the hash table for
...
...
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