mirror of
https://github.com/ptitSeb/box64.git
synced 2024-11-23 14:39:57 +00:00
9191c993b1
* [DYNAREC][WIP] Fix x87cache issues Co-authored-by fanwj@mail.ustc.edu.cn * Check x87cache is full before push, is it working? * Fixed a typo * Update dynarec_arm64_helper.h * Review * Update test25
48 lines
1.0 KiB
C
48 lines
1.0 KiB
C
#include <stdio.h>
|
|
// Build with `gcc -march=core2 -O2 test25.c -o test25`
|
|
|
|
asm(
|
|
"foo: \n\t"
|
|
"flds 0(%rdi) \n\t"
|
|
"flds 4(%rdi) \n\t"
|
|
"flds 8(%rdi) \n\t"
|
|
"flds 12(%rdi) \n\t"
|
|
"flds 16(%rdi) \n\t"
|
|
"flds 20(%rdi) \n\t"
|
|
"flds 24(%rdi) \n\t"
|
|
"flds 28(%rdi) \n\t"
|
|
"cmp $0, %rdi \n\t"
|
|
"je 1f \n\t"
|
|
"jne 1f \n\t"
|
|
"flds 32(%rdi) \n\t"
|
|
"flds 36(%rdi) \n\t"
|
|
"1: \n\t"
|
|
"fstps 0(%rsi) \n\t"
|
|
"fstps 4(%rsi) \n\t"
|
|
"fstps 8(%rsi) \n\t"
|
|
"fstps 12(%rsi) \n\t"
|
|
"fstps 16(%rsi) \n\t"
|
|
"fstps 20(%rsi) \n\t"
|
|
"fstps 24(%rsi) \n\t"
|
|
"fstps 28(%rsi) \n\t"
|
|
"je 1f \n\t"
|
|
"jne 1f \n\t"
|
|
"fstps 32(%rdi) \n\t"
|
|
"fstps 36(%rdi) \n\t"
|
|
"1: \n\t"
|
|
"ret \n\t"
|
|
);
|
|
|
|
extern void foo(float* src, float* dst);
|
|
|
|
int main(void)
|
|
{
|
|
float src[10] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
|
|
float dst[10] = { 0 };
|
|
foo(src, dst);
|
|
for (int i = 0; i < 10; ++i) {
|
|
printf("%f\n", dst[i]);
|
|
}
|
|
return 0;
|
|
}
|