Lines Matching +full:0 +full:x001f0000
6 #define MAJOR_OP 0xfc000000
7 #define LDA_OP 0x20000000
8 #define STQ_OP 0xb4000000
9 #define BR_OP 0xc0000000
11 #define STK_ALLOC_1 0x23de8000 /* lda $30,-X($30) */
12 #define STK_ALLOC_1M 0xffff8000
13 #define STK_ALLOC_2 0x43c0153e /* subq $30,X,$30 */
14 #define STK_ALLOC_2M 0xffe01fff
16 #define MEM_REG 0x03e00000
17 #define MEM_BASE 0x001f0000
18 #define MEM_OFF 0x0000ffff
19 #define MEM_OFF_SIGN 0x00008000
20 #define BASE_SP 0x001e0000
35 ((((instr)(INSTR) ^ 0x60000000) < 0x20000000) & \
36 (((instr)(INSTR) & 0x0c000000) != 0)))
44 "pv ", "at ", "gp ", "sp ", "0"
51 instr * ret_pc = 0; in display_stored_regs()
62 printk("\t\t%s / 0x%016lx\n", reg_name[reg], value); in display_stored_regs()
87 return (*prologue_pc >> 13) & 0xff; in stack_increment()