Advertisement
fsb4000

Visual C++ asm

Sep 2nd, 2020
371
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. ; Listing generated by Microsoft (R) Optimizing Compiler Version 19.28.29213.0
  2.  
  3. include listing.inc
  4.  
  5. INCLUDELIB LIBCMT
  6. INCLUDELIB OLDNAMES
  7.  
  8. PUBLIC ?GetTestValueProxy@@YA?AUTestType@@XZ ; GetTestValueProxy
  9. EXTRN ?GetTestValue@@YA?AUTestType@@XZ:PROC ; GetTestValue
  10. ; COMDAT pdata
  11. pdata SEGMENT
  12. $pdata$?GetTestValueProxy@@YA?AUTestType@@XZ DD imagerel $LN4
  13. DD imagerel $LN4+23
  14. DD imagerel $unwind$?GetTestValueProxy@@YA?AUTestType@@XZ
  15. pdata ENDS
  16. ; COMDAT xdata
  17. xdata SEGMENT
  18. $unwind$?GetTestValueProxy@@YA?AUTestType@@XZ DD 020601H
  19. DD 030023206H
  20. xdata ENDS
  21. ; Function compile flags: /Ogtpy
  22. ; COMDAT ?GetTestValueProxy@@YA?AUTestType@@XZ
  23. _TEXT SEGMENT
  24. $T1 = 48
  25. ?GetTestValueProxy@@YA?AUTestType@@XZ PROC ; GetTestValueProxy, COMDAT
  26. ; File C:\Dev\STL\playground\main.cpp
  27. ; Line 9
  28. $LN4:
  29. push rbx
  30. sub rsp, 32 ; 00000020H
  31. mov rbx, rcx
  32. ; Line 10
  33. call ?GetTestValue@@YA?AUTestType@@XZ ; GetTestValue
  34. mov rax, rbx
  35. ; Line 11
  36. add rsp, 32 ; 00000020H
  37. pop rbx
  38. ret 0
  39. ?GetTestValueProxy@@YA?AUTestType@@XZ ENDP ; GetTestValueProxy
  40. _TEXT ENDS
  41. END
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement