タグ付けされた質問 「gas」

4
Gnu Assembler(GAS)のCFIディレクティブは何のために使用されますか?
すべての行の後.CFIディレクティブがあるように思えるし、また、これらの元の広いvaritiesがあります。、 .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 ret .cfi_endproc .LFE0: .size main, .-main .globl func .type func, @function func: .LFB1: .cfi_startproc pushq %rbp .cfi_def_cfa_offset 16 movq %rsp, …
118 assembly  gas 
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.