-
Notifications
You must be signed in to change notification settings - Fork 127
/
lesson8.slide
243 lines (116 loc) · 4.85 KB
/
lesson8.slide
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
Generics in Go
Lesson 8
30 May 2024
Tags: golang, go
Pavel Tišnovský
Red Hat, Inc.
https://github.com/RedHatOfficial/GoCourse
@RedHat
* Sources
- [[https://github.com/RedHatOfficial/GoCourse]]
.image ./common/qr_address.png
* Gophers
#The Go gopher was designed by Renee French. (http://reneefrench.blogspot.com/)
#Source https://golang.org/doc/gopher/fiveyears.jpg
#The design and this image is licensed under the Creative Commons 3.0 Attributions license.
.image ./common/fiveyears.jpg _ 900
* Generics in Go
* Why generics?
- to be able to create something similar to Numpy in Go
- true abstract data types
- lists
- trees
- priority queues
- ...
* Non-generic functions
.play lesson8/01_print.go
* Overloaded function in Go?
.play lesson8/02_print_overload.go
* No automatic type conversions
.play lesson8/03_print_no_conversion.go
* Generics implemented in runtime
.play lesson8/04_print_interface.go
* Generic function
.play lesson8/05_generic_print.go
* Selection of generic function
.play lesson8/06_type_parameter.go
* Compilation type checks
.play lesson8/07_type_parameter_check.go
* Concrete comparable interface
.play lesson8/08_comparable.go
* Problem with overloading
.play lesson8/09_comparable_variable_types.go
* Generic comparable interface
.play lesson8/10_compare_type_parameters.go
* Compile time or runtime?
- Python
.code lesson8/Test.py
* Compile time or runtime?
- Python
.code lesson8/Test.py.asm
* Compile time or runtime?
- Java
.code lesson8/Test.java
* Compile time or runtime?
.code lesson8/Test.java.asm / public static void main/,/^}/
* Generic comparable interface (again)
.play lesson8/10_compare_type_parameters.go
* Compile time or runtime?
- go
- interface{} - runtime
- type parameters - compile time
$ go tool compile -S 08_comparable.go > 08_comparable.s
$ go tool compile -S 10_compare_type_parameters.go > 10_compare_type_parameters.s
* Compiled concrete function
"".compare STEXT nosplit size=7 args=0x10 locals=0x0 funcid=0x0 align=0x0
0x0000 00000 (08_comparable.go:7) TEXT "".compare(SB), NOSPLIT|ABIInternal, $0-16
0x0000 00000 (08_comparable.go:7) PCDATA $3, $1
0x0000 00000 (08_comparable.go:8) CMPQ BX, AX
0x0003 00003 (08_comparable.go:8) SETGT AL
0x0006 00006 (08_comparable.go:8) RET
* Compiled generic function
"".compare[go.shape.int_0] STEXT dupok nosplit size=7 args=0x18 locals=0x0 funcid=0x0 align=0x0
0x0000 00000 (10_compare_type_parameters.go:11) TEXT "".compare[go.shape.int_0](SB), DUPOK|NOSPLIT|ABIInternal, $0-24
0x0000 00000 (10_compare_type_parameters.go:11) PCDATA $3, $1
0x0000 00000 (10_compare_type_parameters.go:12) CMPQ CX, BX
0x0003 00003 (10_compare_type_parameters.go:12) SETGT AL
0x0006 00006 (10_compare_type_parameters.go:12) RET
"".compare[go.shape.float64_0] STEXT dupok nosplit size=8 args=0x18 locals=0x0 funcid=0x0 align=0x0
0x0000 00000 (10_compare_type_parameters.go:11) TEXT "".compare[go.shape.float64_0](SB), DUPOK|NOSPLIT|ABIInternal, $0-24
0x0000 00000 (10_compare_type_parameters.go:11) PCDATA $3, $1
0x0000 00000 (10_compare_type_parameters.go:12) UCOMISD X0, X1
0x0004 00004 (10_compare_type_parameters.go:12) SETHI AL
0x0007 00007 (10_compare_type_parameters.go:12) RET
"".compare[go.shape.string_0] STEXT dupok size=120 args=0x28 locals=0x28 funcid=0x0 align=0x0
0x0000 00000 (10_compare_type_parameters.go:11) TEXT "".compare[go.shape.string_0](SB), DUPOK|ABIInternal, $40-40
0x0000 00000 (10_compare_type_parameters.go:11) CMPQ SP, 16(R14)
0x0004 00004 (10_compare_type_parameters.go:11) PCDATA $0, $-2
0x0004 00004 (10_compare_type_parameters.go:11) JLS 63
...
...
0x002a 00042 (10_compare_type_parameters.go:12) PCDATA $1, $1
0x002a 00042 (10_compare_type_parameters.go:12) CALL runtime.cmpstring(SB)
...
...
0x003e 00062 (10_compare_type_parameters.go:12) RET
* "Universal numeric" data type?
.play lesson8/11_add_int.go
* "Universal numeric" data type?
.play lesson8/12_add_type_parameters.go
* No automatic type conversion (1/2)
.play lesson8/13_add_type_parameters.go /^package main/,/^func main/
* No automatic type conversion (2/2)
.play lesson8/13_add_type_parameters.go /^func main/,/^}/
* Type approximations (1/2)
.play lesson8/14_add_type_parameters.go /^package main/,/^func main/
* Type approximations (2/2)
.play lesson8/14_add_type_parameters.go /^func main/,/^}/
* Concrete "pow" function
.play lesson8/21_pow_floats_B.go
* Generic "pow" function
.play lesson8/22_pow_generic_B.go
* Generic method vs. generic function
.play lesson8/34_whats_better.go
* Generic linked list implementation
.play lesson8/35_list.go