Lines Matching refs:opcode
59 dlx_get_opcode (opcode) in dlx_get_opcode() argument
60 unsigned long opcode; in dlx_get_opcode()
62 return (unsigned char) ((opcode >> 26) & 0x3F);
66 dlx_get_rs1 (opcode) in dlx_get_rs1() argument
67 unsigned long opcode; in dlx_get_rs1()
69 return (unsigned char) ((opcode >> 21) & 0x1F);
73 dlx_get_rs2 (opcode) in dlx_get_rs2() argument
74 unsigned long opcode; in dlx_get_rs2()
76 return (unsigned char) ((opcode >> 16) & 0x1F);
80 dlx_get_rdR (opcode) in dlx_get_rdR() argument
81 unsigned long opcode; in dlx_get_rdR()
83 return (unsigned char) ((opcode >> 11) & 0x1F);
87 dlx_get_func (opcode) in dlx_get_func() argument
88 unsigned long opcode; in dlx_get_func()
90 return (unsigned char) (opcode & 0x7FF);
94 dlx_get_imm16 (opcode) in dlx_get_imm16() argument
95 unsigned long opcode; in dlx_get_imm16()
97 return (unsigned long) (opcode & 0xFFFF);
101 dlx_get_imm26 (opcode) in dlx_get_imm26() argument
102 unsigned long opcode; in dlx_get_imm26()
104 return (unsigned long) (opcode & 0x03FFFFFF);
210 unsigned long opcode; member
230 if (dlx_load_opcode[idx].opcode == opc)
261 unsigned long opcode; member
275 if (dlx_store_opcode[idx].opcode == opc)
295 unsigned long opcode; member
332 if (dlx_aluI_opcode[idx].opcode == opc)
354 unsigned long opcode; member
367 if (dlx_br_opcode[idx].opcode == opc)
392 unsigned long opcode; member
408 if (dlx_jmp_opcode[idx].opcode == opc)
433 unsigned long opcode; member
445 if (dlx_jr_opcode[idx].opcode == opc)