Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(159)

Side by Side Diff: src/pkg/reflect/makefunc.go

Issue 7906043: code review 7906043: reflect: implement method values (Closed)
Patch Set: diff -r 322613c55f76 https://code.google.com/p/go/ Created 12 years ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/pkg/reflect/deepequal.go ('k') | src/pkg/reflect/value.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 The Go Authors. All rights reserved. 1 // Copyright 2012 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style 2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file. 3 // license that can be found in the LICENSE file.
4 4
5 // MakeFunc implementation. 5 // MakeFunc implementation.
6 6
7 package reflect 7 package reflect
8 8
9 import ( 9 import (
10 "unsafe" 10 "unsafe"
(...skipping 30 matching lines...) Expand all
41 // of how to use MakeFunc to build a swap function for different types. 41 // of how to use MakeFunc to build a swap function for different types.
42 // 42 //
43 func MakeFunc(typ Type, fn func(args []Value) (results []Value)) Value { 43 func MakeFunc(typ Type, fn func(args []Value) (results []Value)) Value {
44 if typ.Kind() != Func { 44 if typ.Kind() != Func {
45 panic("reflect: call of MakeFunc with non-Func type") 45 panic("reflect: call of MakeFunc with non-Func type")
46 } 46 }
47 47
48 t := typ.common() 48 t := typ.common()
49 ftyp := (*funcType)(unsafe.Pointer(t)) 49 ftyp := (*funcType)(unsafe.Pointer(t))
50 50
51 » // indirect Go func value (dummy) to obtain 51 » // Indirect Go func value (dummy) to obtain
52 » // actual code address. (A Go func is a pointer 52 » // actual code address. (A Go func value is a pointer
53 // to a C function pointer. http://golang.org/s/go11func.) 53 // to a C function pointer. http://golang.org/s/go11func.)
54 dummy := makeFuncStub 54 dummy := makeFuncStub
55 code := **(**uintptr)(unsafe.Pointer(&dummy)) 55 code := **(**uintptr)(unsafe.Pointer(&dummy))
56 56
57 impl := &makeFuncImpl{code: code, typ: ftyp, fn: fn} 57 impl := &makeFuncImpl{code: code, typ: ftyp, fn: fn}
58 58
59 return Value{t, unsafe.Pointer(impl), flag(Func) << flagKindShift} 59 return Value{t, unsafe.Pointer(impl), flag(Func) << flagKindShift}
60 } 60 }
61 61
62 // makeFuncStub is an assembly function that is the code half of 62 // makeFuncStub is an assembly function that is the code half of
63 // the function returned from MakeFunc. It expects a *callReflectFunc 63 // the function returned from MakeFunc. It expects a *callReflectFunc
64 // as its context register, and its job is to invoke callReflect(ctxt, frame) 64 // as its context register, and its job is to invoke callReflect(ctxt, frame)
65 // where ctxt is the context register and frame is a pointer to the first 65 // where ctxt is the context register and frame is a pointer to the first
66 // word in the passed-in argument frame. 66 // word in the passed-in argument frame.
67 func makeFuncStub() 67 func makeFuncStub()
68
69 type methodValue struct {
70 fn uintptr
71 method int
72 rcvr Value
73 }
74
75 // makeMethodValue converts v from the rcvr+method index representation
76 // of a method value to an actual method func value, which is
77 // basically the receiver value with a special bit set, into a true
78 // func value - a value holding an actual func. The output is
79 // semantically equivalent to the input as far as the user of package
80 // reflect can tell, but the true func representation can be handled
81 // by code like Convert and Interface and Assign.
82 func makeMethodValue(op string, v Value) Value {
83 if v.flag&flagMethod == 0 {
84 panic("reflect: internal error: invalid use of makePartialFunc")
85 }
86
87 // Ignoring the flagMethod bit, v describes the receiver, not the method type.
88 fl := v.flag & (flagRO | flagAddr | flagIndir)
89 fl |= flag(v.typ.Kind()) << flagKindShift
90 rcvr := Value{v.typ, v.val, fl}
91
92 // v.Type returns the actual type of the method value.
93 funcType := v.Type().(*rtype)
94
95 // Indirect Go func value (dummy) to obtain
96 // actual code address. (A Go func value is a pointer
97 // to a C function pointer. http://golang.org/s/go11func.)
98 dummy := methodValueCall
99 code := **(**uintptr)(unsafe.Pointer(&dummy))
100
101 fv := &methodValue{
102 fn: code,
103 method: int(v.flag) >> flagMethodShift,
104 rcvr: rcvr,
105 }
106
107 // Cause panic if method is not appropriate.
108 // The panic would still happen during the call if we omit this,
109 // but we want Interface() and other operations to fail early.
110 methodReceiver(op, fv.rcvr, fv.method)
111
112 return Value{funcType, unsafe.Pointer(fv), v.flag&flagRO | flag(Func)<<f lagKindShift}
113 }
114
115 // methodValueCall is an assembly function that is the code half of
116 // the function returned from makeMethodValue. It expects a *methodValue
117 // as its context register, and its job is to invoke callMethod(ctxt, frame)
118 // where ctxt is the context register and frame is a pointer to the first
119 // word in the passed-in argument frame.
120 func methodValueCall()
OLDNEW
« no previous file with comments | « src/pkg/reflect/deepequal.go ('k') | src/pkg/reflect/value.go » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b