Lines Matching defs:faulty_instruction
1994 uint32_t faulty_instruction;
1998 faulty_instruction = (uint32_t)(*exception_source);
2000 op_code = (faulty_instruction >> 26) & 0x3f;
2032 op_code = (faulty_instruction >> 19) & 0x3;
2092 unsigned faulty_instruction = *(uint16_t *)pc;
2095 if ((faulty_instruction & 0x3) != 0x3) { // it's a compressed instruction
2098 ((faulty_instruction & 0x3) << 3) | (faulty_instruction >> 13);
2099 unsigned rd = faulty_instruction & 0xF80; // bits 7-11, inclusive
2135 unsigned opcode = faulty_instruction & 0x7f; // lower 7 bits
2136 unsigned funct3 = (faulty_instruction >> 12) & 0x7; // bits 12-14, inclusive