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.dg/   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:     strlenopt-82.c (5.86 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* PR tree-optimization/83821 - local aggregate initialization defeats
   strlen optimization

   Avoid exercising targets other than x86_64 in LP64 mode due to PR 83543
   - strlen of a local array member not optimized on some targets
   { dg-do compile { target { { i?86-*-* x86_64-*-* } && lp64 } } }

   { dg-options "-O2 -Wall -fdump-tree-optimized" } */

#include "strlenopt.h"

#define CAT(x, y) x ## y
#define CONCAT(x, y) CAT (x, y)
#define FAILNAME(name) CONCAT (call_ ## name ##_on_line_, __LINE__)

#define FAIL(name) do {                \
    extern void FAILNAME (name) (void);        \
    FAILNAME (name)();                \
  } while (0)

/* Macro to emit a call to function named
     call_in_true_branch_not_eliminated_on_line_NNN()
   for each call that's expected to be eliminated.  The dg-final
   scan-tree-dump-time directive at the bottom of the test verifies
   that no such call appears in output.  */
#define ELIM(expr) \
  if (!(expr)) FAIL (in_true_branch_not_eliminated); else (void)0

/* Macro to emit a call to a function named
     call_made_in_{true,false}_branch_on_line_NNN()
   for each call that's expected to be retained.  The dg-final
   scan-tree-dump-time directive at the bottom of the test verifies
   that the expected number of both kinds of calls appears in output
   (a pair for each line with the invocation of the KEEP() macro.  */
#define KEEP(expr)                \
  if (expr)                    \
    FAIL (made_in_true_branch);            \
  else                        \
    FAIL (made_in_false_branch)

#define STR10 "0123456789"
#define STR20 STR10 STR10
#define STR30 STR20 STR10
#define STR40 STR20 STR20

void elim_char_array_init_consecutive (void)
{
  char a[][10] = { "1", "12", "123", "1234", "12345", "12345" };

  ELIM (strlen (a[0]) == 1);
  ELIM (strlen (a[1]) == 2);
  ELIM (strlen (a[2]) == 3);
  ELIM (strlen (a[3]) == 4);
  ELIM (strlen (a[4]) == 5);
}

void elim_char_array_cpy_consecutive (void)
{
  char a[5][10];

  strcpy (a[0], "12345");
  strcpy (a[1], "1234");
  strcpy (a[2], "123");
  strcpy (a[3], "12");
  strcpy (a[4], "1");

  ELIM (strlen (a[0]) == 5);
  ELIM (strlen (a[1]) == 4);
  ELIM (strlen (a[2]) == 3);
  ELIM (strlen (a[3]) == 2);
  ELIM (strlen (a[4]) == 1);
}

void elim_clear_char_array_cpy_consecutive (void)
{
  char a[5][10] = { };

  strcpy (a[0], "12345");
  strcpy (a[1], "1234");
  strcpy (a[2], "123");
  strcpy (a[3], "12");
  strcpy (a[4], "1");

  ELIM (strlen (a[0]) == 5);
  ELIM (strlen (a[1]) == 4);
  ELIM (strlen (a[2]) == 3);
  ELIM (strlen (a[3]) == 2);
  ELIM (strlen (a[4]) == 1);
}

struct Consec
{
  char s1[sizeof STR40];
  char s2[sizeof STR40];
  const char *p1;
  const char *p2;
};

void elim_struct_init_consecutive (void)
{
  struct Consec a = { STR10, STR10, STR10, STR10 };

  ELIM (strlen (a.s1) == sizeof STR10 - 1);
  ELIM (strlen (a.s2) == sizeof STR10 - 1);
  ELIM (strlen (a.p1) == sizeof STR10 - 1);
  ELIM (strlen (a.p2) == sizeof STR10 - 1);
}

void elim_struct_array_init_consecutive (void)
{
  struct Consec a[2] = {
    { STR10, STR20, STR30, STR40 },
    { STR40, STR30, STR20, STR10 }
  };

  ELIM (strlen (a[0].s1) == sizeof STR10 - 1);
  ELIM (strlen (a[0].s2) == sizeof STR20 - 1);
  ELIM (strlen (a[0].p1) == sizeof STR30 - 1);
  ELIM (strlen (a[0].p2) == sizeof STR40 - 1);

  ELIM (strlen (a[1].s1) == sizeof STR40 - 1);
  ELIM (strlen (a[1].s2) == sizeof STR30 - 1);
  ELIM (strlen (a[1].p1) == sizeof STR20 - 1);
  ELIM (strlen (a[1].p2) == sizeof STR10 - 1);
}

struct NonConsec
{
  char s1[sizeof STR40];
  int i1;
  char s2[sizeof STR40];
  int i2;
  const char *p1;
  int i3;
  const char *p2;
  int i4;
};

void elim_struct_init_nonconsecutive (void)
{
  struct NonConsec b = { STR10, 123, STR20, 456, b.s1, 789, b.s2, 123 };

  ELIM (strlen (b.s1) == sizeof STR10 - 1);
  ELIM (strlen (b.s2) == sizeof STR20 - 1);
  ELIM (strlen (b.p1) == sizeof STR10 - 1);
  ELIM (strlen (b.p2) == sizeof STR20 - 1);
}

void elim_struct_assign_tmp_nonconsecutive (void)
{
  struct NonConsec b = { "a", 1, "b", 2, "c", 3, "d", 4 };

  b = (struct NonConsec){ STR10, 123, STR20, 456, STR30, 789, STR40, 123 };

  ELIM (strlen (b.s1) == sizeof STR10 - 1);
  ELIM (strlen (b.s2) == sizeof STR20 - 1);
  ELIM (strlen (b.p1) == sizeof STR30 - 1);
  ELIM (strlen (b.p2) == sizeof STR40 - 1);
}

const struct NonConsec bcst = {
  STR40, -1, STR30, -2, STR20, -3, STR10, -4
};

void elim_struct_assign_cst_nonconsecutive (void)
{
  struct NonConsec b = { "a", 1, "b", 2, "c", 3, "d" };

  b = bcst;

  ELIM (strlen (b.s1) == sizeof STR40 - 1);
  ELIM (strlen (b.s2) == sizeof STR30 - 1);
  ELIM (strlen (b.p1) == sizeof STR20 - 1);
  ELIM (strlen (b.p2) == sizeof STR10 - 1);
}

void elim_struct_copy_cst_nonconsecutive (void)
{
  struct NonConsec b = { "a", 1, "b", 2, "c", 3, "d" };
  memcpy (&b, &bcst, sizeof b);

  /* ELIM (strlen (b.s1) == sizeof STR40 - 1);
     ELIM (strlen (b.s2) == sizeof STR30 - 1); */
  ELIM (strlen (b.p1) == sizeof STR20 - 1);
  ELIM (strlen (b.p2) == sizeof STR10 - 1);
}


#line 1000

int sink (void*);

void keep_init_nonconsecutive (void)
{
  struct NonConsec b = {
    STR10, 123, STR20, 456, b.s1, 789, b.s2,
    sink (&b)
  };

  KEEP (strlen (b.s1) == sizeof STR10 - 1);
  KEEP (strlen (b.s2) == sizeof STR10 - 1);
  KEEP (strlen (b.p1) == sizeof STR10 - 1);
  KEEP (strlen (b.p2) == sizeof STR10 - 1);
}

void keep_assign_tmp_nonconsecutive (void)
{
  struct NonConsec b = { "a", 1, "b", 2, "c", 3, "d", 4 };

  b = (struct NonConsec){
    STR10, 123, STR20, 456, STR30, 789, STR40,
    sink (&b)
  };

  KEEP (strlen (b.s1) == sizeof STR10 - 1);
  KEEP (strlen (b.s2) == sizeof STR20 - 1);
  KEEP (strlen (b.p1) == sizeof STR30 - 1);
  KEEP (strlen (b.p2) == sizeof STR40 - 1);
}

/* { dg-final { scan-tree-dump-times "call_in_true_branch_not_eliminated_" 0 "optimized" } }

   { dg-final { scan-tree-dump-times "call_made_in_true_branch_on_line_1\[0-9\]\[0-9\]\[0-9\]" 8 "optimized" } }
   { dg-final { scan-tree-dump-times "call_made_in_false_branch_on_line_1\[0-9\]\[0-9\]\[0-9\]" 8 "optimized" } } */

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