linux下的C語言開發(AT&T 組合語言)

來源:互聯網
上載者:User

【 聲明:著作權,歡迎轉載,請勿用於商業用途。  聯絡信箱:feixiaoxing @163.com】

    同樣是x86的cpu,但是卻可以用不同形式的組合語言來表示。在window上面我們使用的更多是intel格式的組合語言,而在Linux系統上面使用的更多的常常是AT&T格式的組合語言。那什麼是AT&T格式的彙編代碼呢?我們可以寫一個試試看。

.datamessage: .string "hello!\n"length = . - message.text.global _start_start:movl $length, %edxmovl $message, %ecxmovl $1, %ebxmovl $4, %eaxint $0x80movl $0, %ebxmovl $1, %eaxint $0x80

    這是一個簡單的彙編檔案,我們可以分兩步進行編譯。首先,輸入 as -gstabs -o hello.o hello.s, 接著輸入ld -o hello hello.o即可。為了驗證執行檔案是否正確,可以輸入./hello驗證一下。

    在as命令當中,由於我們使用了-gstabs選項,因此在hello執行檔案中是包含調試資訊的。所以,如果想單步調試的朋友可以輸入gdb hello進行調試。

    那麼,hello執行檔案反組譯碼的代碼又是什麼樣的呢?我們可以輸入objdump -S -d hello查看一下。

08048074 <_start>:.text.global _start_start:        movl $length, %edx 8048074:       ba 08 00 00 00          mov    $0x8,%edx        movl $message, %ecx 8048079:       b9 9c 90 04 08          mov    $0x804909c,%ecx        movl $1, %ebx 804807e:       bb 01 00 00 00          mov    $0x1,%ebx        movl $4, %eax 8048083:       b8 04 00 00 00          mov    $0x4,%eax        int $0x80 8048088:       cd 80                   int    $0x80        movl $0, %ebx 804808a:       bb 00 00 00 00          mov    $0x0,%ebx        movl $1, %eax 804808f:       b8 01 00 00 00          mov    $0x1,%eax        int $0x80 8048094:       cd 80                   int    $0x80        ret 8048096:       c3                      ret    

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.