4
Gnu Assembler (GAS) में CFI के निर्देश किसके लिए उपयोग किए जाते हैं?
हर पंक्ति के बाद एक .CFI निर्देश लगता है और इन पूर्व। .cfi_startproc, .cfi_endprocआदि की व्यापक विविधताएं हैं । यहां और अधिक । .file "temp.c" .text .globl main .type main, @function main: .LFB0: .cfi_startproc pushq %rbp .cfi_def_cfa_offset 16 movq %rsp, %rbp .cfi_offset 6, -16 .cfi_def_cfa_register 6 movl $0, %eax leave …