6

私は再びアセンブリ言語を学習していますが、これまでに経験した唯一の問題は C の呼び出しでした。私が持っている本は 32 ビット向けで、64 ビットで作業しています。どうやら呼び出し規約に大きな違いがあり、http://www.x86-64.org/documentationサイトはダウンしています。そのため、いくつかの掘り下げ/テスト、C でのダミー プログラムのコンパイル、およびこれに 3 日間を費やした後、他の人の役に立てば私の発見を投稿すると思いました。

RAX に浮動小数点数を指定する必要がありますか? スタック パディングの「シャドウ スペース」は 16 ビットですか、それとも 32 ビットですか? このマクロは、小さなプログラムで通用するスタックを整列させるためのものですか? コードを align で NOP パディングできることは知っていますが、スタック フレームについてはわかりませんでした。

; pf.asm compiled with 'nasm -o pf.o -f elf64 -g -F stabs'
; linked with 'gcc -o pf pf.o'
; 64-bit Bodhi (ubuntu) linux

%include "amd64_abi.mac"
[SECTION .data]
First_string:   db "First string.",10,"%s", "%d is an integer. So is %d",10
                db "Floats XMM0:%5.7f  XMM1:%.6le  XMM2:%lg",10,0  
Second_String:  db "This is the second string... %s's are not interpreted here.",10
                db " Neither are %d's nor %f's. 'Cause it is a passed value.", 10, 0
; Just a regular string for insert.
[SECTION .bss]
[SECTION .text]
EXTERN printf
GLOBAL main
main:
_preserve_64AMD_ABI_regs ; Saves RBP, RBX, R12-R15
mov rdi, First_string   ; Start of string to be formatted. Null terminated
mov rsi, Second_String  ; String addy of first %s in main string. Not interpretted
mov rcx, 0456           ; Second Integer (Register is specific for ordered arguments.)
mov rdx, 0123           ; First integer (Order of assignment does not matter.)
                        ; Order of Integer/Pointer Registers:
                        ; $1:RDI   $2:RSI   $3:RDX   $4:RCX   $5:R8   $6:R9

mov rax,0AABBCCh         ; Test value to be stored in xmm0
cvtsi2sd xmm0, rax      ; Convert quad to scalar double
mov rax,003333h         ; Test value to be stored in xmm1
cvtsi2sd xmm1, rax      ; Convert quad to scalar double
cvtsi2sd xmm2, rax      ; Convert quad to scalar double
divsd xmm2, xmm0        ; Divide scalar double

sub rsp, 16             ; Allocates 16 byte shadow memory
_prealign_stack_to16    ; Move to the lower end 16byte boundry (Seg-Fault otherwise)
;    mov rax, 3             ; Count of xmm registers used for floats. ?!needed?!
Before_Call:
call printf             ; Send the formatted string to C-printf
_return_aligned_stack   ; Returns RSP to the previous alignment
add rsp, 16             ; reallocate shadow memory

_restore_64AMD_ABI_regs_RET
; Ends pf.asm

; amd64_abi.mac
; Aligns stack (RSP) to 16 byte boundry, padding needed amount in rbx
%macro _preserve_64AMD_ABI_regs 0
push rbp
mov rbp, rsp
push rbx
push r12
push r13
push r14
push r15
%endmacro

%macro _restore_64AMD_ABI_regs_RET 0
pop r15
pop r14
pop r13
pop r12
pop rbx
mov rsp, rbp
pop rbp
ret
%endmacro

%macro _prealign_stack_to16 0
mov rbx, 0Fh            ; Bit mask for low 4-bits 10000b = 16 :: 01111b = 15b
and rbx, rsp            ; get bits 0-3 into rbx
sub rsp, rbx            ; remove them from rsp, rounding down to multiple of 16 (10h)
%endmacro

; De-aligns stack (RSP)from 16 byte boundry using saved rbx offset
%macro _return_aligned_stack 0
add rsp, rbx
%endmacro

出力: 最初の文字列。これは 2 番目の文字列です... %s はここでは解釈されません。%d でも %f でもありません。渡された値だからです。123 は整数です。456 Floats XMM0:11189196.0000000 XMM1:1.310700e+04 XMM2:0.0011714 も同様です。

リソース: System V ABI v0.96: http://www.uclibc.org/docs/psABI-x86_64.pdf (x86-64.org サイトでは利用できません) アセンブリ言語のステップ バイ ステップ。Jeff Duntemann 第 12 章 Intel 64 ビット命令セット。http://www.intel.com/content/www/us/en/processors/architectures-software-developer-manuals.html

4

1 に答える 1