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
c367d1b7
Commit
c367d1b7
authored
May 08, 2009
by
Rob Pike
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move sys.Reflect and sys.Unreflect into unsafe.
R=rsc DELTA=19 (4 added, 5 deleted, 10 changed) OCL=28563 CL=28566
parent
d4fa2538
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
14 additions
and
15 deletions
+14
-15
builtin.c.boot
src/cmd/gc/builtin.c.boot
+2
-2
sys.go
src/cmd/gc/sys.go
+0
-3
unsafe.go
src/cmd/gc/unsafe.go
+2
-0
all_test.go
src/lib/reflect/all_test.go
+1
-1
value.go
src/lib/reflect/value.go
+3
-3
iface.c
src/runtime/iface.c
+5
-5
convert.go
test/convert.go
+1
-1
No files found.
src/cmd/gc/builtin.c.boot
View file @
c367d1b7
...
...
@@ -56,8 +56,6 @@ char *sysimport =
"func sys.arrays2d (old *any, nel int) (ary []any)\n"
"func sys.closure ()\n"
"func sys.Breakpoint ()\n"
"func sys.Reflect (i interface { }) (? uint64, ? string, ? bool)\n"
"func sys.Unreflect (? uint64, ? string, ? bool) (ret interface { })\n"
"var sys.Args []string\n"
"var sys.Envs []string\n"
"func sys.Gosched ()\n"
...
...
@@ -72,5 +70,7 @@ char *unsafeimport =
"func unsafe.Offsetof (? any) (? int)\n"
"func unsafe.Sizeof (? any) (? int)\n"
"func unsafe.Alignof (? any) (? int)\n"
"func unsafe.Reflect (i interface { }) (? uint64, ? string, ? bool)\n"
"func unsafe.Unreflect (? uint64, ? string, ? bool) (ret interface { })\n"
"\n"
"$$\n";
src/cmd/gc/sys.go
View file @
c367d1b7
...
...
@@ -77,9 +77,6 @@ func closure(); // has args, but compiler fills in
func
Breakpoint
();
func
Reflect
(
i
interface
{
})
(
uint64
,
string
,
bool
);
func
Unreflect
(
uint64
,
string
,
bool
)
(
ret
interface
{
});
var
Args
[]
string
;
var
Envs
[]
string
;
...
...
src/cmd/gc/unsafe.go
View file @
c367d1b7
...
...
@@ -9,3 +9,5 @@ type Pointer *any;
func
Offsetof
(
any
)
int
;
func
Sizeof
(
any
)
int
;
func
Alignof
(
any
)
int
;
func
Reflect
(
i
interface
{
})
(
uint64
,
string
,
bool
);
func
Unreflect
(
uint64
,
string
,
bool
)
(
ret
interface
{
});
src/lib/reflect/all_test.go
View file @
c367d1b7
...
...
@@ -314,7 +314,7 @@ func TestInterfaceValue(t *testing.T) {
i3
:=
v2
.
Interface
();
if
f
,
ok
:=
i3
.
(
float
);
!
ok
{
a
,
typ
,
c
:=
sys
.
Reflect
(
i3
);
a
,
typ
,
c
:=
unsafe
.
Reflect
(
i3
);
t
.
Error
(
"v2.Interface() did not return float, got "
,
typ
);
}
}
...
...
src/lib/reflect/value.go
View file @
c367d1b7
...
...
@@ -62,12 +62,12 @@ func (c *commonValue) Interface() interface {} {
case
c
.
typ
.
Kind
()
==
InterfaceKind
:
i
=
*
(
*
interface
{})(
c
.
addr
);
case
c
.
typ
.
Size
()
>
8
:
// TODO(rsc): how do we know it is 8?
i
=
sys
.
Unreflect
(
uint64
(
uintptr
(
c
.
addr
)),
c
.
typ
.
String
(),
true
);
i
=
unsafe
.
Unreflect
(
uint64
(
uintptr
(
c
.
addr
)),
c
.
typ
.
String
(),
true
);
default
:
if
uintptr
(
c
.
addr
)
==
0
{
panicln
(
"reflect: address 0 for"
,
c
.
typ
.
String
());
}
i
=
sys
.
Unreflect
(
uint64
(
uintptr
(
*
(
*
Addr
)(
c
.
addr
))),
c
.
typ
.
String
(),
false
);
i
=
unsafe
.
Unreflect
(
uint64
(
uintptr
(
*
(
*
Addr
)(
c
.
addr
))),
c
.
typ
.
String
(),
false
);
}
return
i
;
}
...
...
@@ -902,7 +902,7 @@ func copyArray(dst ArrayValue, src ArrayValue, n int) {
// NewValue creates a new Value from the interface{} object provided.
func
NewValue
(
e
interface
{})
Value
{
value
,
typestring
,
indir
:=
sys
.
Reflect
(
e
);
value
,
typestring
,
indir
:=
unsafe
.
Reflect
(
e
);
typ
,
ok
:=
typecache
[
typestring
];
if
!
ok
{
typ
=
ParseTypeString
(
""
,
typestring
);
...
...
src/runtime/iface.c
View file @
c367d1b7
...
...
@@ -560,7 +560,7 @@ sys·printinter(Iface i)
}
void
sys
·
Reflect
(
Iface
i
,
uint64
retit
,
String
rettype
,
bool
retindir
)
unsafe
·
Reflect
(
Iface
i
,
uint64
retit
,
String
rettype
,
bool
retindir
)
{
int32
wid
;
...
...
@@ -602,7 +602,7 @@ extern int32 ngotypesigs;
// on the fake signature are:
//
// (1) any interface conversion using the signature will fail
// (2) calling
sys
.Reflect() returns the args to unreflect
// (2) calling
unsafe
.Reflect() returns the args to unreflect
// (3) the right algorithm type is used, for == and map insertion
//
// (1) is ensured by the fact that we allocate a new Sigt,
...
...
@@ -757,7 +757,7 @@ findtype(String type, bool indir)
void
sys
·
Unreflect
(
uint64
it
,
String
type
,
bool
indir
,
Iface
ret
)
unsafe
·
Unreflect
(
uint64
it
,
String
type
,
bool
indir
,
Iface
ret
)
{
Sigt
*
sigt
;
...
...
@@ -767,8 +767,8 @@ sys·Unreflect(uint64 it, String type, bool indir, Iface ret)
goto
out
;
if
(
type
.
len
>
10
&&
mcmp
(
type
.
str
,
(
byte
*
)
"interface "
,
10
)
==
0
)
{
printf
(
"
sys
.Unreflect: cannot put %S in interface
\n
"
,
type
);
throw
(
"
sys
.Unreflect"
);
printf
(
"
unsafe
.Unreflect: cannot put %S in interface
\n
"
,
type
);
throw
(
"
unsafe
.Unreflect"
);
}
// if we think the type should be indirect
...
...
test/convert.go
View file @
c367d1b7
...
...
@@ -9,7 +9,7 @@ package main
import
"unsafe"
func
typeof
(
x
interface
{})
string
{
val
,
typ
,
indir
:=
sys
.
Reflect
(
x
);
val
,
typ
,
indir
:=
unsafe
.
Reflect
(
x
);
return
typ
;
}
...
...
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