Changeset 8162
- Timestamp:
- Jan 17, 2008, 6:58:18 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1.2/devel/source/level-0/X86/x86-array.lisp
r7847 r8162 372 372 (jmp-subprim .SParef2)) 373 373 374 (defx86lapfunction %aref3 ((array 0)(i arg_x) (j arg_y) (k arg_z))374 (defx86lapfunction %aref3 ((array 8) #|(ra 0)|# (i arg_x) (j arg_y) (k arg_z)) 375 375 (check-nargs 4) 376 (pop (% ra0)) 376 377 (pop (% temp0)) 377 378 (discard-reserved-frame) 379 (push (% ra0)) 378 380 (jmp-subprim .SParef3)) 379 381 380 (defx86lapfunction %aset2 ((array 0)(i arg_x) (j arg_y) (newval arg_z))382 (defx86lapfunction %aset2 ((array 8) #|(ra 0)|# (i arg_x) (j arg_y) (newval arg_z)) 381 383 (check-nargs 4) 384 (pop (% ra0)) 382 385 (pop (% temp0)) 383 386 (discard-reserved-frame) 387 (push (% ra0)) 384 388 (jmp-subprim .SPaset2)) 385 389 386 (defx86lapfunction %aset3 ((array 8) (i 0)(j arg_x) (k arg_y) (newval arg_z))390 (defx86lapfunction %aset3 ((array 16) (i 8) #|(ra 0)|# (j arg_x) (k arg_y) (newval arg_z)) 387 391 (check-nargs 5) 392 (pop (% ra0)) 388 393 (pop (% temp0)) 389 394 (pop (% temp1)) 390 395 (discard-reserved-frame) 396 (push (% ra0)) 391 397 (jmp-subprim .SPaset3)) 392 398 393 394 395 396 397 398
Note:
See TracChangeset
for help on using the changeset viewer.
