Viewing file: ext_f64.c (1.33 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* { dg-final { check-function-bodies "**" "" "-DCHECK_ASM" } } */
#include "test_sve_acle.h"
/* ** ext_0_f64_tied1: ** ext z0\.b, z0\.b, z1\.b, #0 ** ret */ TEST_UNIFORM_Z (ext_0_f64_tied1, svfloat64_t, z0 = svext_f64 (z0, z1, 0), z0 = svext (z0, z1, 0))
/* ** ext_0_f64_tied2: ** mov (z[0-9]+)\.d, z0\.d ** movprfx z0, z1 ** ext z0\.b, z0\.b, \1\.b, #0 ** ret */ TEST_UNIFORM_Z (ext_0_f64_tied2, svfloat64_t, z0 = svext_f64 (z1, z0, 0), z0 = svext (z1, z0, 0))
/* ** ext_0_f64_untied: ** movprfx z0, z1 ** ext z0\.b, z0\.b, z2\.b, #0 ** ret */ TEST_UNIFORM_Z (ext_0_f64_untied, svfloat64_t, z0 = svext_f64 (z1, z2, 0), z0 = svext (z1, z2, 0))
/* ** ext_1_f64: ** movprfx z0, z1 ** ext z0\.b, z0\.b, z2\.b, #8 ** ret */ TEST_UNIFORM_Z (ext_1_f64, svfloat64_t, z0 = svext_f64 (z1, z2, 1), z0 = svext (z1, z2, 1))
/* ** ext_2_f64: ** movprfx z0, z1 ** ext z0\.b, z0\.b, z2\.b, #16 ** ret */ TEST_UNIFORM_Z (ext_2_f64, svfloat64_t, z0 = svext_f64 (z1, z2, 2), z0 = svext (z1, z2, 2))
/* ** ext_3_f64: ** movprfx z0, z1 ** ext z0\.b, z0\.b, z2\.b, #24 ** ret */ TEST_UNIFORM_Z (ext_3_f64, svfloat64_t, z0 = svext_f64 (z1, z2, 3), z0 = svext (z1, z2, 3))
/* ** ext_31_f64: ** movprfx z0, z1 ** ext z0\.b, z0\.b, z2\.b, #248 ** ret */ TEST_UNIFORM_Z (ext_31_f64, svfloat64_t, z0 = svext_f64 (z1, z2, 31), z0 = svext (z1, z2, 31))
|