Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
golang
Project
Project
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
golang
Commits
49f74948
Commit
49f74948
authored
May 02, 2009
by
Ken Thompson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
code optmization
drip init function if it doesnt do anything R=r OCL=28180 CL=28180
parent
1ed7f181
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
0 deletions
+37
-0
dcl.c
src/cmd/gc/dcl.c
+37
-0
No files found.
src/cmd/gc/dcl.c
View file @
49f74948
...
@@ -1259,6 +1259,40 @@ mixed:
...
@@ -1259,6 +1259,40 @@ mixed:
// return (8)
// return (8)
// }
// }
int
anyinit
(
Node
*
n
)
{
uint32
h
;
Sym
*
s
;
// are there any init statements
if
(
n
!=
N
)
return
1
;
// is this main
if
(
strcmp
(
package
,
"main"
)
==
0
)
return
1
;
// is there an explicit init function
snprint
(
namebuf
,
sizeof
(
namebuf
),
"init·%s"
,
filename
);
s
=
lookup
(
namebuf
);
if
(
s
->
oname
!=
N
)
return
1
;
// are there any imported init functions
for
(
h
=
0
;
h
<
NHASH
;
h
++
)
for
(
s
=
hash
[
h
];
s
!=
S
;
s
=
s
->
link
)
{
if
(
s
->
name
[
0
]
!=
'I'
||
strncmp
(
s
->
name
,
"Init·"
,
6
)
!=
0
)
continue
;
if
(
s
->
oname
==
N
)
continue
;
return
1
;
}
// then none
return
0
;
}
void
void
fninit
(
Node
*
n
)
fninit
(
Node
*
n
)
{
{
...
@@ -1272,6 +1306,9 @@ fninit(Node *n)
...
@@ -1272,6 +1306,9 @@ fninit(Node *n)
return
;
return
;
}
}
if
(
!
anyinit
(
n
))
return
;
r
=
N
;
r
=
N
;
// (1)
// (1)
...
...
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