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/simd/   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:     vminmaxnm_1.c (4.55 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* Test the `v[min|max]{nm}{q}_f*' AArch64 SIMD intrinsic.  */

/* { dg-do run } */
/* { dg-options "-O2" } */

#include "arm_neon.h"

extern void abort ();

#define CHECK(R, E) \
  {\
    if (__builtin_memcmp (&R, &E, sizeof (R)) != 0)\
      abort ();\
  }

int
main (int argc, char **argv)
{
  /* v{min|max}nm_f32 normal.  */
  float32x2_t f32x2_input1 = vdup_n_f32 (-1.0);
  float32x2_t f32x2_input2 = vdup_n_f32 (0.0);
  float32x2_t f32x2_exp_minnm  = vdup_n_f32 (-1.0);
  float32x2_t f32x2_exp_maxnm  = vdup_n_f32 (0.0);
  float32x2_t f32x2_ret_minnm  = vminnm_f32 (f32x2_input1, f32x2_input2);
  float32x2_t f32x2_ret_maxnm  = vmaxnm_f32 (f32x2_input1, f32x2_input2);

  CHECK (f32x2_ret_minnm, f32x2_exp_minnm);
  CHECK (f32x2_ret_maxnm, f32x2_exp_maxnm);

  /* v{min|max}nm_f32 NaN.  */
  f32x2_input1 = vdup_n_f32 (__builtin_nanf (""));
  f32x2_input2 = vdup_n_f32 (1.0);
  f32x2_exp_minnm  = vdup_n_f32 (1.0);
  f32x2_exp_maxnm  = vdup_n_f32 (1.0);
  f32x2_ret_minnm  = vminnm_f32 (f32x2_input1, f32x2_input2);
  f32x2_ret_maxnm  = vmaxnm_f32 (f32x2_input1, f32x2_input2);

  CHECK (f32x2_ret_minnm, f32x2_exp_minnm);
  CHECK (f32x2_ret_maxnm, f32x2_exp_maxnm);

  /* v{min|max}nmq_f32 normal.  */
  float32x4_t f32x4_input1 = vdupq_n_f32 (-1024.0);
  float32x4_t f32x4_input2 = vdupq_n_f32 (77.0);
  float32x4_t f32x4_exp_minnm  = vdupq_n_f32 (-1024.0);
  float32x4_t f32x4_exp_maxnm  = vdupq_n_f32 (77.0);
  float32x4_t f32x4_ret_minnm  = vminnmq_f32 (f32x4_input1, f32x4_input2);
  float32x4_t f32x4_ret_maxnm  = vmaxnmq_f32 (f32x4_input1, f32x4_input2);

  CHECK (f32x4_ret_minnm, f32x4_exp_minnm);
  CHECK (f32x4_ret_maxnm, f32x4_exp_maxnm);

  /* v{min|max}nmq_f32 NaN.  */
  f32x4_input1 = vdupq_n_f32 (-__builtin_nanf (""));
  f32x4_input2 = vdupq_n_f32 (-1.0);
  f32x4_exp_minnm  = vdupq_n_f32 (-1.0);
  f32x4_exp_maxnm  = vdupq_n_f32 (-1.0);
  f32x4_ret_minnm  = vminnmq_f32 (f32x4_input1, f32x4_input2);
  f32x4_ret_maxnm  = vmaxnmq_f32 (f32x4_input1, f32x4_input2);

  CHECK (f32x4_ret_minnm, f32x4_exp_minnm);
  CHECK (f32x4_ret_maxnm, f32x4_exp_maxnm);

  /* v{min|max}nm_f64 normal.  */
  float64x1_t f64x1_input1 = vdup_n_f64 (1.23);
  float64x1_t f64x1_input2 = vdup_n_f64 (4.56);
  float64x1_t f64x1_exp_minnm  = vdup_n_f64 (1.23);
  float64x1_t f64x1_exp_maxnm  = vdup_n_f64 (4.56);
  float64x1_t f64x1_ret_minnm  = vminnm_f64 (f64x1_input1, f64x1_input2);
  float64x1_t f64x1_ret_maxnm  = vmaxnm_f64 (f64x1_input1, f64x1_input2);
  CHECK (f64x1_ret_minnm, f64x1_exp_minnm);
  CHECK (f64x1_ret_maxnm, f64x1_exp_maxnm);

  /* v{min|max}_f64 normal.  */
  float64x1_t f64x1_exp_min  = vdup_n_f64 (1.23);
  float64x1_t f64x1_exp_max  = vdup_n_f64 (4.56);
  float64x1_t f64x1_ret_min  = vmin_f64 (f64x1_input1, f64x1_input2);
  float64x1_t f64x1_ret_max  = vmax_f64 (f64x1_input1, f64x1_input2);
  CHECK (f64x1_ret_min, f64x1_exp_min);
  CHECK (f64x1_ret_max, f64x1_exp_max);

  /* v{min|max}nmq_f64 normal.  */
  float64x2_t f64x2_input1 = vdupq_n_f64 (1.23);
  float64x2_t f64x2_input2 = vdupq_n_f64 (4.56);
  float64x2_t f64x2_exp_minnm  = vdupq_n_f64 (1.23);
  float64x2_t f64x2_exp_maxnm  = vdupq_n_f64 (4.56);
  float64x2_t f64x2_ret_minnm  = vminnmq_f64 (f64x2_input1, f64x2_input2);
  float64x2_t f64x2_ret_maxnm  = vmaxnmq_f64 (f64x2_input1, f64x2_input2);
  CHECK (f64x2_ret_minnm, f64x2_exp_minnm);
  CHECK (f64x2_ret_maxnm, f64x2_exp_maxnm);

  /* v{min|max}nm_f64 NaN.  */
  f64x1_input1 = vdup_n_f64 (-__builtin_nanf (""));
  f64x1_input2 = vdup_n_f64 (1.0);
  f64x1_exp_minnm  = vdup_n_f64 (1.0);
  f64x1_exp_maxnm  = vdup_n_f64 (1.0);
  f64x1_ret_minnm  = vminnm_f64 (f64x1_input1, f64x1_input2);
  f64x1_ret_maxnm  = vmaxnm_f64 (f64x1_input1, f64x1_input2);

  CHECK (f64x1_ret_minnm, f64x1_exp_minnm);
  CHECK (f64x1_ret_maxnm, f64x1_exp_maxnm);

  /* v{min|max}_f64 NaN.  */
  f64x1_input1 = vdup_n_f64 (-__builtin_nanf (""));
  f64x1_input2 = vdup_n_f64 (1.0);
  f64x1_exp_minnm  = vdup_n_f64 (-__builtin_nanf (""));
  f64x1_exp_maxnm  = vdup_n_f64 (-__builtin_nanf (""));
  f64x1_ret_minnm  = vmin_f64 (f64x1_input1, f64x1_input2);
  f64x1_ret_maxnm  = vmax_f64 (f64x1_input1, f64x1_input2);

  CHECK (f64x1_ret_minnm, f64x1_exp_minnm);
  CHECK (f64x1_ret_maxnm, f64x1_exp_maxnm);

  /* v{min|max}nmq_f64 NaN.  */
  f64x2_input1 = vdupq_n_f64 (-__builtin_nan (""));
  f64x2_input2 = vdupq_n_f64 (1.0);
  f64x2_exp_minnm  = vdupq_n_f64 (1.0);
  f64x2_exp_maxnm  = vdupq_n_f64 (1.0);
  f64x2_ret_minnm  = vminnmq_f64 (f64x2_input1, f64x2_input2);
  f64x2_ret_maxnm  = vmaxnmq_f64 (f64x2_input1, f64x2_input2);

  CHECK (f64x2_ret_minnm, f64x2_exp_minnm);
  CHECK (f64x2_ret_maxnm, f64x2_exp_maxnm);

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