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

Software: Apache/2.4.18 (Ubuntu). PHP/7.0.33-0ubuntu0.16.04.16 

uname -a: Linux digifus 3.13.0-57-generic #95-Ubuntu SMP Fri Jun 19 09:28:15 UTC 2015 x86_64 

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

Safe-mode: OFF (not secure)

/usr/src/linux-headers-3.13.0-61/arch/frv/include/asm/   drwxr-xr-x
Free 9.6 GB of 29.4 GB (32.65%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     irqflags.h (3.71 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* FR-V interrupt handling
 *
 * Copyright (C) 2010 Red Hat, Inc. All Rights Reserved.
 * Written by David Howells (dhowells@redhat.com)
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public Licence
 * as published by the Free Software Foundation; either version
 * 2 of the Licence, or (at your option) any later version.
 */

#ifndef _ASM_IRQFLAGS_H
#define _ASM_IRQFLAGS_H

/*
 * interrupt flag manipulation
 * - use virtual interrupt management since touching the PSR is slow
 *   - ICC2.Z: T if interrupts virtually disabled
 *   - ICC2.C: F if interrupts really disabled
 * - if Z==1 upon interrupt:
 *   - C is set to 0
 *   - interrupts are really disabled
 *   - entry.S returns immediately
 * - uses TIHI (TRAP if Z==0 && C==0) #2 to really reenable interrupts
 *   - if taken, the trap:
 *     - sets ICC2.C
 *     - enables interrupts
 */
static inline void arch_local_irq_disable(void)
{
    /* set Z flag, but don't change the C flag */
    asm volatile("    andcc    gr0,gr0,gr0,icc2    \n"
             :
             :
             : "memory", "icc2"
             );
}

static inline void arch_local_irq_enable(void)
{
    /* clear Z flag and then test the C flag */
    asm volatile("  oricc    gr0,#1,gr0,icc2        \n"
             "    tihi    icc2,gr0,#2        \n"
             :
             :
             : "memory", "icc2"
             );
}

static inline unsigned long arch_local_save_flags(void)
{
    unsigned long flags;

    asm volatile("movsg ccr,%0"
             : "=r"(flags)
             :
             : "memory");

    /* shift ICC2.Z to bit 0 */
    flags >>= 26;

    /* make flags 1 if interrupts disabled, 0 otherwise */
    return flags & 1UL;

}

static inline unsigned long arch_local_irq_save(void)
{
    unsigned long flags = arch_local_save_flags();
    arch_local_irq_disable();
    return flags;
}

static inline void arch_local_irq_restore(unsigned long flags)
{
    /* load the Z flag by turning 1 if disabled into 0 if disabled
     * and thus setting the Z flag but not the C flag */
    asm volatile("  xoricc    %0,#1,gr0,icc2        \n"
             /* then trap if Z=0 and C=0 */
             "    tihi    icc2,gr0,#2        \n"
             :
             : "r"(flags)
             : "memory", "icc2"
             );

}

static inline bool arch_irqs_disabled_flags(unsigned long flags)
{
    return flags;
}

static inline bool arch_irqs_disabled(void)
{
    return arch_irqs_disabled_flags(arch_local_save_flags());
}

/*
 * real interrupt flag manipulation
 */
#define __arch_local_irq_disable()            \
do {                            \
    unsigned long psr;                \
    asm volatile("    movsg    psr,%0        \n"    \
             "    andi    %0,%2,%0    \n"    \
             "    ori    %0,%1,%0    \n"    \
             "    movgs    %0,psr        \n"    \
             : "=r"(psr)            \
             : "i" (PSR_PIL_14), "i" (~PSR_PIL)    \
             : "memory");            \
} while (0)

#define __arch_local_irq_enable()            \
do {                            \
    unsigned long psr;                \
    asm volatile("    movsg    psr,%0        \n"    \
             "    andi    %0,%1,%0    \n"    \
             "    movgs    %0,psr        \n"    \
             : "=r"(psr)            \
             : "i" (~PSR_PIL)            \
             : "memory");            \
} while (0)

#define __arch_local_save_flags(flags)        \
do {                        \
    typecheck(unsigned long, flags);    \
    asm("movsg psr,%0"            \
        : "=r"(flags)            \
        :                    \
        : "memory");            \
} while (0)

#define    __arch_local_irq_save(flags)            \
do {                            \
    unsigned long npsr;                \
    typecheck(unsigned long, flags);        \
    asm volatile("    movsg    psr,%0        \n"    \
             "    andi    %0,%3,%1    \n"    \
             "    ori    %1,%2,%1    \n"    \
             "    movgs    %1,psr        \n"    \
             : "=r"(flags), "=r"(npsr)        \
             : "i" (PSR_PIL_14), "i" (~PSR_PIL)    \
             : "memory");            \
} while (0)

#define    __arch_local_irq_restore(flags)            \
do {                            \
    typecheck(unsigned long, flags);        \
    asm volatile("    movgs    %0,psr        \n"    \
             :                    \
             : "r" (flags)            \
             : "memory");            \
} while (0)

#define __arch_irqs_disabled()            \
    ((__get_PSR() & PSR_PIL) >= PSR_PIL_14)

#endif /* _ASM_IRQFLAGS_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 KaizenLouie | C99Shell Github | Generation time: 0.0059 ]--