Viewing file: va_arg-5.c (1.68 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* Test AAPCS64 layout and __builtin_va_arg.
This test is focus on certain unnamed homogeneous floating-point aggregate types passed in fp/simd registers. */
/* { dg-do run { target aarch64*-*-* } } */
#ifndef IN_FRAMEWORK #define AAPCS64_TEST_STDARG #define TESTFILE "va_arg-5.c" #include "type-def.h"
struct hfa_fx1_t hfa_fx1 = {12.345f}; struct hfa_fx2_t hfa_fx2 = {123.456f, 234.456f}; struct hfa_dx2_t hfa_dx2 = {234.567, 345.678}; struct hfa_dx4_t hfa_dx4 = {1234.123, 2345.234, 3456.345, 4567.456}; struct hfa_ldx3_t hfa_ldx3 = {123456.7890, 234567.8901, 345678.9012}; struct hfa_ffs_t hfa_ffs; union hfa_union_t hfa_union; struct hfa_f16x2_t hfa_f16x2 = {2.0f, 4.0f}; struct hfa_f16x3_t hfa_f16x3 = {2.0f, 4.0f, 8.0f};
#define HAS_DATA_INIT_FUNC void init_data () { hfa_union.s.a = 37.f; hfa_union.s.b = 38.f; hfa_union.c = 39.f;
hfa_ffs.a = 42.f; hfa_ffs.b = 43.f; hfa_ffs.c.a = 44.f; hfa_ffs.c.b = 45.f; }
#include "abitest.h" #else ARG (int, 1, W0, LAST_NAMED_ARG_ID) DOTS /* HFA passed in fp/simd registers or on stack. */ ANON (struct hfa_dx4_t , hfa_dx4 , D0 , 0) ANON (struct hfa_ldx3_t , hfa_ldx3 , Q4 , 1) ANON (struct hfa_ffs_t , hfa_ffs , STACK , 2) ANON (union hfa_union_t, hfa_union, STACK+16, 3) ANON (struct hfa_fx1_t , hfa_fx1 , STACK+24, 4) ANON (struct hfa_fx2_t , hfa_fx2 , STACK+32, 5) ANON (struct hfa_dx2_t , hfa_dx2 , STACK+40, 6) /* HFA of __fp16 passed on stack, directed __fp16 test is va_arg-10.c. */ ANON (struct hfa_f16x2_t, hfa_f16x2, STACK+56, 7) ANON (struct hfa_f16x3_t, hfa_f16x3, STACK+64, 8) LAST_ANON(double , 1.0 , STACK+72, 9) #endif
|