!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: nginx/1.23.4. PHP/5.6.40-65+ubuntu20.04.1+deb.sury.org+1 

uname -a: Linux foro-restaurado-2 5.15.0-1040-oracle #46-Ubuntu SMP Fri Jul 14 21:47:21 UTC 2023
aarch64
 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/home/scripts/pba/phc-read-only/src/optimize/ssa/   drwxrwxr-x
Free 83.25 GB of 96.73 GB (86.06%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     SSA_name.cpp (1.69 KB)      -rw-rw-r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*
 * phc -- the open source PHP compiler
 * 
 * Name for something in SSA form.
 */

#include "process_ir/General.h"
#include "SSA_name.h"
#include "lib/String.h"
#include "optimize/wpa/Points_to.h"

using namespace std;
using namespace MIR;

SSA_name::SSA_name ()
: ssa_version (0)
{
}

SSA_name::SSA_name (string name)
: name (name)
, ssa_version (0)
{
}

bool
SSA_name::operator== (const SSA_name& other) const
{
    return this->str () == other.str ();
}

bool
SSA_name::operator!= (const SSA_name& other) const
{
    return not (operator== (other));
}

size_t
SSA_name::hash () const
{
    return std::tr1::hash<string>() (this->str ());
}

string
SSA_name::str () const
{
    stringstream ss;
    ss << name;

    if (ssa_version)
        ss << "__v" << ssa_version;

    return ss.str ();
}

string
SSA_name::get_name () const
{
    return name;
}

int
SSA_name::get_version () const
{
    return ssa_version;
}

void
SSA_name::drop_ssa_version ()
{
    this->ssa_version = 0;
}

void
SSA_name::set_version (int version)
{
    this->ssa_version = version;
}

bool SSA_name::is_starred() const {
    return boost::starts_with(name, "*_");
}

/*
 * This functions builds an Index_node based on the current SSA name.
 * This is considered to be a dangerous conversion, and its use
 * is highly discouraged.
 */
Index_node *SSA_name::reverse() const {
  // Do not build starred index nodes.
  string n = is_starred() ? name.substr(2) : name;

  // Seek the last delimiter.
  size_t idx = n.rfind("::");
  phc_optimization_assertion(idx != string::npos);

  // Split between the storage node and the index node.
  string storage = n.substr(0, idx);
  string index = n.substr(idx + 2);

  // Return the correspondent index node.
  return (new Index_node(storage, index));
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by HackingTool | HackingTool | Generation time: 0.0043 ]--