about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-03-11 20:56:27 -0700
committerKartik Agaram <vc@akkartik.com>2020-03-11 20:56:27 -0700
commitafc0be47a56286385e9747250b724c5497f50559 (patch)
tree9bbef36e9074db0b6ff3479afd792fc78d4db7d7
parent0aa7420745e07f5f721efd75e1f73c8b1ea5aa42 (diff)
downloadmu-afc0be47a56286385e9747250b724c5497f50559.tar.gz
6129
-rw-r--r--mu_instructions4
-rw-r--r--mu_summary3
2 files changed, 5 insertions, 2 deletions
diff --git a/mu_instructions b/mu_instructions
index 9897d6c0..fa696f82 100644
--- a/mu_instructions
+++ b/mu_instructions
@@ -227,6 +227,8 @@ If a record (product) type T was defined to have elements a, b, c, ... of
 types T_a, T_b, T_c, ..., then accessing one of those elements f of type T_f:
 
 var/reg: (addr T_f) <- get var2/reg2: (addr F), f: field name => 8d/copy-addr *(reg2+offset(f))
-                            {.name="get",             .inouts=[reg2, f],                .subx-name="8d/copy-addr",          .rm32="*(" inouts[0] "+" offset(f) ")",     .r32=outputs[0]}
+                            {.name="get",             .inouts=[reg2, f],                .subx-name="8d/copy-address",       .rm32="*(" inouts[0] "+" offset(f) ")",     .r32=outputs[0]}
+var/reg: (addr T_f) <- get var2: (addr F), f: field name
+                            {.name="get",             .inouts=[reg2, f],                .subx-name="8d/copy-address",       .rm32="*(ebp+" inouts[0].stack-offset "+" offset(f) ")",  .r32=outputs[0]}
 
 vim:ft=c:nowrap
diff --git a/mu_summary b/mu_summary
index f15b6bd1..addfa340 100644
--- a/mu_summary
+++ b/mu_summary
@@ -207,5 +207,6 @@ Similarly, conditional loops:
 
 ## User-defined types
 
-  var/reg: (addr T_f) <- get var: (addr T), f
+  var/reg: (addr T_f) <- get var/reg: (addr T), f
     where record (product) type T has elements a, b, c, ... of types T_a, T_b, T_c, ...
+  var/reg: (addr T_f) <- get var: (addr T), f
me the previous revision' href='/gbmor/getwtxt/blame/README.md?h=v0.4.14&id=21939adbd4e727d35eeba83f32ad6aed88a65189'>^
1b2d93c ^
























ef0ee91 ^
1b2d93c ^


ef0ee91 ^
1b2d93c ^
e3a24e2 ^
1b2d93c ^

ef0ee91 ^
1b2d93c ^


cc01a95 ^
ef0ee91 ^
1b2d93c ^






cc01a95 ^
1b2d93c ^

1b2d93c ^


561a63a ^
1b2d93c ^



































561a63a ^
64a508f ^
1b2d93c ^









64a508f ^
1b2d93c ^














ef0ee91 ^
1b2d93c ^


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