From 41e4cfc33f02cc924f867ad86321591d77891d4c Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Sun, 19 Jan 2020 23:38:06 -0800 Subject: 5904 --- html/apps/mu.subx.html | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'html/apps/*.subx.html') diff --git a/html/apps/mu.subx.html b/html/apps/mu.subx.html index d63f57bf..ba371346 100644 --- a/html/apps/mu.subx.html +++ b/html/apps/mu.subx.html @@ -323,7 +323,7 @@ if ('onhashchange' in window) { 261 0x10/imm32 262 Function-next: # (handle function) 263 0x14/imm32 - 264 Function-size: + 264 Function-size: # (addr int) 265 0x18/imm32/24 266 267 Primitive-name: @@ -344,7 +344,7 @@ if ('onhashchange' in window) { 282 0x1c/imm32 283 Primitive-next: # (handle function) 284 0x20/imm32 - 285 Primitive-size: + 285 Primitive-size: # (addr int) 286 0x24/imm32/36 287 288 Stmt-tag: @@ -381,7 +381,7 @@ if ('onhashchange' in window) { 319 Named-block-statements: # (handle list statement) 320 8/imm32 321 - 322 Stmt-size: + 322 Stmt-size: # (addr int) 323 0x18/imm32 324 325 Var-name: @@ -394,7 +394,7 @@ if ('onhashchange' in window) { 332 0xc/imm32 333 Var-register: 334 0x10/imm32 - 335 Var-size: + 335 Var-size: # (addr int) 336 0x14/imm32 337 338 Any-register: # "*" @@ -407,7 +407,7 @@ if ('onhashchange' in window) { 345 0/imm32 346 List-next: 347 4/imm32 - 348 List-size: + 348 List-size: # (addr int) 349 8/imm32 350 351 # Types are expressed as trees (s-expressions) of type-ids (ints). @@ -420,7 +420,7 @@ if ('onhashchange' in window) { 358 0/imm32 359 Tree-right: # (addr tree type-id) 360 4/imm32 - 361 Tree-size: + 361 Tree-size: # (addr int) 362 8/imm32 363 364 Max-type-id: @@ -1807,7 +1807,7 @@ if ('onhashchange' in window) { 1795 (check-strings-equal %edx "x" "F - test-var-with-type/name") 1796 8b/-> *(eax+4) 2/r32/edx # Var-type 1797 (check-ints-equal *edx 1 "F - test-var-with-type/type") -1798 (check-ints-equal *(edx+4) 0 "F - test-var-with-register-and-trailing-characters/type") +1798 (check-ints-equal *(edx+4) 0 "F - test-var-with-type/type") 1799 # . epilogue 1800 89/<- %esp 5/r32/ebp 1801 5d/pop-to-ebp @@ -1837,7 +1837,7 @@ if ('onhashchange' in window) { 1825 (check-strings-equal %edx "eax" "F - test-var-with-type-and-register/register") 1826 8b/-> *(eax+4) 2/r32/edx # Var-type 1827 (check-ints-equal *edx 1 "F - test-var-with-type-and-register/type") -1828 (check-ints-equal *(edx+4) 0 "F - test-var-with-register-and-trailing-characters/type") +1828 (check-ints-equal *(edx+4) 0 "F - test-var-with-type-and-register/type") 1829 # . epilogue 1830 89/<- %esp 5/r32/ebp 1831 5d/pop-to-ebp @@ -1867,7 +1867,7 @@ if ('onhashchange' in window) { 1855 (check-ints-equal %edx 0 "F - test-var-with-trailing-characters/register") 1856 8b/-> *(eax+4) 2/r32/edx # Var-type 1857 (check-ints-equal *edx 1 "F - test-var-with-trailing-characters/type") -1858 (check-ints-equal *(edx+4) 0 "F - test-var-with-register-and-trailing-characters/type") +1858 (check-ints-equal *(edx+4) 0 "F - test-var-with-trailing-characters/type") 1859 # . epilogue 1860 89/<- %esp 5/r32/ebp 1861 5d/pop-to-ebp -- cgit 1.4.1-2-gfad0 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 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305