!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/usr/src/linux-headers-5.15.0-151/arch/parisc/include/asm/   drwxr-xr-x
Free 28.34 GB of 117.98 GB (24.02%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     special_insns.h (1.52 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __PARISC_SPECIAL_INSNS_H
#define __PARISC_SPECIAL_INSNS_H

#define lpa(va)    ({                    \
    unsigned long pa;                \
    __asm__ __volatile__(                \
        "copy %%r0,%0\n"            \
        "8:\tlpa %%r0(%1),%0\n"            \
        "9:\n"                    \
        ASM_EXCEPTIONTABLE_ENTRY(8b, 9b)    \
        : "=&r" (pa)                \
        : "r" (va)                \
        : "memory"                \
    );                        \
    pa;                        \
})

#define lpa_user(va)    ({                \
    unsigned long pa;                \
    __asm__ __volatile__(                \
        "copy %%r0,%0\n"            \
        "8:\tlpa %%r0(%%sr3,%1),%0\n"        \
        "9:\n"                    \
        ASM_EXCEPTIONTABLE_ENTRY(8b, 9b)    \
        : "=&r" (pa)                \
        : "r" (va)                \
        : "memory"                \
    );                        \
    pa;                        \
})

#define mfctl(reg)    ({        \
    unsigned long cr;        \
    __asm__ __volatile__(        \
        "mfctl " #reg ",%0" :    \
         "=r" (cr)        \
    );                \
    cr;                \
})

#define mtctl(gr, cr) \
    __asm__ __volatile__("mtctl %0,%1" \
        : /* no outputs */ \
        : "r" (gr), "i" (cr) : "memory")

/* these are here to de-mystefy the calling code, and to provide hooks */
/* which I needed for debugging EIEM problems -PB */
#define get_eiem() mfctl(15)
static inline void set_eiem(unsigned long val)
{
    mtctl(val, 15);
}

#define mfsp(reg)    ({        \
    unsigned long cr;        \
    __asm__ __volatile__(        \
        "mfsp " #reg ",%0" :    \
         "=r" (cr)        \
    );                \
    cr;                \
})

#define mtsp(val, cr) \
    { if (__builtin_constant_p(val) && ((val) == 0)) \
     __asm__ __volatile__("mtsp %%r0,%0" : : "i" (cr) : "memory"); \
    else \
     __asm__ __volatile__("mtsp %0,%1" \
        : /* no outputs */ \
        : "r" (val), "i" (cr) : "memory"); }

#endif /* __PARISC_SPECIAL_INSNS_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.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0034 ]--