سؤال

وإذا كان لدي شيء من هذا القبيل مشغل منطقي == (uint128 CONST وس، uint128 CONST & Y)؛ كيف يمكنني الحصول على جدب لتفكيك ذلك؟

هل كانت مفيدة؟

المحلول

(gdb) p 'operator==(uint128 const&,uint128 const&)'
$1 = {bool (const uint128 &, const uint128 &)} 0x401040 <operator==(uint128 const&, uint128 const&)>
(gdb) disassemble $1
Dump of assembler code for function _ZeqRK7uint128S1_:
0x00401040 <_ZeqRK7uint128S1_+0>:       push   %ebp
... (elided)
0x00401066 <_ZeqRK7uint128S1_+38>:      ret    
End of assembler dump.
(gdb) 
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top