!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/   drwxrwxr-x
Free 83.21 GB of 96.73 GB (86.02%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     Abstract_value.h (1.82 KB)      -rw-rw-r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*
 * phc -- the open source PHP compiler
 * See doc/license/README.license for licensing information
 *
 * Abstract values fetch their results from optimizations, and are then read
 * by (possibly other) optimizations to perform their analyses.
 *
 * For example, we might be able to say that an int times 1 is an int, but
 * not than an int times and int is an int.
 *
 */

#ifndef PHC_ABSTRACT_VALUE_H
#define PHC_ABSTRACT_VALUE_H

#include "process_ir/debug.h"

#include "lib/Object.h"
#include "lib/Set.h"
#include "lib/String.h"

namespace MIR { class Literal; }

typedef Set<string> Types;

class Abstract_value : virtual public GC_obj
{
public:
    const MIR::Literal* const lit;
    const Types* const types;

public:
    Abstract_value (const MIR::Literal* lit);
    Abstract_value (const Types* types);

    // An unknown type is awful.
    static Abstract_value* unknown ();

    // These could have a truth value incorporated - for now just use the
    // constant.
    bool known_true () const;
    bool known_false () const;

    bool equals (const Abstract_value* absval) const;
    Abstract_value* clone () const;

    void dump (std::ostream& os = cdebug) const;

private:
    Abstract_value (const MIR::Literal*, const Types* types);
};

namespace Type_info
{
    void dump_types (std::ostream& os, const Types* types);
    Types* get_type (const MIR::Literal* lit);
    Types* get_all_scalar_types ();
    bool is_scalar (string type);

    // Given a set of types, we want to know which types are scalars, which is
    // an array, and which are objects. These return new sets with only the
    // appropriate types in them.
    // TODO: all this time I've been ignoring resources!!
    Types* get_scalar_types (const Types*);
    Types* get_array_types (const Types*); // can only be "array" or empty
    Types* get_object_types (const Types*); // anything thats not covered above.
}




#endif // PHC_ABSTRACT_VALUE_H

:: 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.0047 ]--