Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. CL-USER> (declaim (optimize (speed 3) (safety 0)))
  2. NIL
  3. CL-USER> (disassemble (lambda (arr off) (aref (the simple-vector arr) off)))
  4. ; disassembly for (LAMBDA (ARR OFF))
  5. ; Size: 11 bytes. Origin: #x1002920DA9
  6. ; A9: 488B54B801 MOV RDX, [RAX+RDI*4+1] ; no-arg-parsing entry point
  7. ; AE: 488BE5 MOV RSP, RBP
  8. ; B1: F8 CLC
  9. ; B2: 5D POP RBP
  10. ; B3: C3 RET
  11. NIL
  12. CL-USER>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement