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
2a0e15d3
Commit
2a0e15d3
authored
Nov 01, 2011
by
Russ Cox
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gc: add error type
R=ken CC=golang-dev
https://golang.org/cl/5331043
parent
b4e35629
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
57 additions
and
4 deletions
+57
-4
src/cmd/gc/export.c
src/cmd/gc/export.c
+1
-2
src/cmd/gc/fmt.c
src/cmd/gc/fmt.c
+3
-0
src/cmd/gc/go.h
src/cmd/gc/go.h
+1
-0
src/cmd/gc/lex.c
src/cmd/gc/lex.c
+38
-0
src/cmd/gc/reflect.c
src/cmd/gc/reflect.c
+13
-1
src/cmd/gc/subr.c
src/cmd/gc/subr.c
+1
-1
No files found.
src/cmd/gc/export.c
View file @
2a0e15d3
...
...
@@ -89,7 +89,6 @@ dumppkg(Pkg *p)
}
static
void
dumpexportconst
(
Sym
*
s
)
{
Node
*
n
;
...
...
@@ -151,7 +150,7 @@ dumpexporttype(Type *t)
if
(
t
==
T
)
return
;
if
(
t
->
printed
||
t
==
types
[
t
->
etype
]
||
t
==
bytetype
||
t
==
runetype
)
if
(
t
->
printed
||
t
==
types
[
t
->
etype
]
||
t
==
bytetype
||
t
==
runetype
||
t
==
errortype
)
return
;
t
->
printed
=
1
;
...
...
src/cmd/gc/fmt.c
View file @
2a0e15d3
...
...
@@ -553,6 +553,9 @@ typefmt(Fmt *fp, Type *t)
t
=
types
[
t
->
etype
];
}
if
(
t
==
errortype
)
return
fmtstrcpy
(
fp
,
"error"
);
// Unless the 'l' flag was specified, if the type has a name, just print that name.
if
(
!
(
fp
->
flags
&
FmtLong
)
&&
t
->
sym
&&
t
->
etype
!=
TFIELD
&&
t
!=
types
[
t
->
etype
])
{
switch
(
fmtmode
)
{
...
...
src/cmd/gc/go.h
View file @
2a0e15d3
...
...
@@ -786,6 +786,7 @@ EXTERN Type* idealstring;
EXTERN
Type
*
idealbool
;
EXTERN
Type
*
bytetype
;
EXTERN
Type
*
runetype
;
EXTERN
Type
*
errortype
;
EXTERN
uchar
simtype
[
NTYPE
];
EXTERN
uchar
isptr
[
NTYPE
];
EXTERN
uchar
isforw
[
NTYPE
];
...
...
src/cmd/gc/lex.c
View file @
2a0e15d3
...
...
@@ -1759,6 +1759,40 @@ static void
lexinit1
(
void
)
{
Sym
*
s
,
*
s1
;
Type
*
t
,
*
f
,
*
rcvr
,
*
in
,
*
out
;
// t = interface { Error() string }
rcvr
=
typ
(
TSTRUCT
);
rcvr
->
type
=
typ
(
TFIELD
);
rcvr
->
type
->
type
=
ptrto
(
typ
(
TSTRUCT
));
rcvr
->
funarg
=
1
;
in
=
typ
(
TSTRUCT
);
in
->
funarg
=
1
;
out
=
typ
(
TSTRUCT
);
out
->
type
=
typ
(
TFIELD
);
out
->
type
->
type
=
types
[
TSTRING
];
out
->
funarg
=
1
;
f
=
typ
(
TFUNC
);
*
getthis
(
f
)
=
rcvr
;
*
getoutarg
(
f
)
=
out
;
*
getinarg
(
f
)
=
in
;
f
->
thistuple
=
1
;
f
->
intuple
=
0
;
f
->
outnamed
=
0
;
f
->
outtuple
=
1
;
t
=
typ
(
TINTER
);
t
->
type
=
typ
(
TFIELD
);
t
->
type
->
sym
=
lookup
(
"Error"
);
t
->
type
->
type
=
f
;
// error type
s
=
lookup
(
"error"
);
s
->
lexical
=
LNAME
;
errortype
=
t
;
errortype
->
sym
=
s
;
s1
=
pkglookup
(
"error"
,
builtinpkg
);
s1
->
lexical
=
LNAME
;
s1
->
def
=
typenod
(
errortype
);
// byte alias
s
=
lookup
(
"byte"
);
...
...
@@ -1821,6 +1855,10 @@ lexfini(void)
if
(
s
->
def
==
N
)
s
->
def
=
typenod
(
bytetype
);
s
=
lookup
(
"error"
);
if
(
s
->
def
==
N
)
s
->
def
=
typenod
(
errortype
);
s
=
lookup
(
"rune"
);
if
(
s
->
def
==
N
)
s
->
def
=
typenod
(
runetype
);
...
...
src/cmd/gc/reflect.c
View file @
2a0e15d3
...
...
@@ -693,8 +693,13 @@ dtypesym(Type *t)
tbase
=
t
->
type
;
dupok
=
tbase
->
sym
==
S
;
if
(
compiling_runtime
&&
(
tbase
==
types
[
tbase
->
etype
]
||
tbase
==
bytetype
||
tbase
==
runetype
))
// int, float, etc
if
(
compiling_runtime
&&
(
tbase
==
types
[
tbase
->
etype
]
||
tbase
==
bytetype
||
tbase
==
runetype
||
tbase
==
errortype
))
{
// int, float, etc
goto
ok
;
}
// named types from other files are defined only by those files
if
(
tbase
->
sym
&&
!
tbase
->
local
)
...
...
@@ -904,6 +909,13 @@ dumptypestructs(void)
dtypesym
(
ptrto
(
types
[
TSTRING
]));
dtypesym
(
ptrto
(
types
[
TUNSAFEPTR
]));
// emit type structs for error and func(error) string.
// The latter is the type of an auto-generated wrapper.
dtypesym
(
ptrto
(
errortype
));
dtypesym
(
functype
(
nil
,
list1
(
nod
(
ODCLFIELD
,
N
,
typenod
(
errortype
))),
list1
(
nod
(
ODCLFIELD
,
N
,
typenod
(
types
[
TSTRING
])))));
// add paths for runtime and main, which 6l imports implicitly.
dimportpath
(
runtimepkg
);
dimportpath
(
mkpkg
(
strlit
(
"main"
)));
...
...
src/cmd/gc/subr.c
View file @
2a0e15d3
...
...
@@ -1483,7 +1483,7 @@ ptrto(Type *t)
Type
*
t1
;
if
(
tptr
==
0
)
fatal
(
"ptrto: n
il
"
);
fatal
(
"ptrto: n
o tptr
"
);
t1
=
typ
(
tptr
);
t1
->
type
=
t
;
t1
->
width
=
widthptr
;
...
...
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