Lines Matching defs:faulty_instruction
1982 uint32_t faulty_instruction;
1986 faulty_instruction = (uint32_t)(*exception_source);
1988 op_code = (faulty_instruction >> 26) & 0x3f;
2020 op_code = (faulty_instruction >> 19) & 0x3;
2080 unsigned faulty_instruction = *(uint16_t *)pc;
2083 if ((faulty_instruction & 0x3) != 0x3) { // it's a compressed instruction
2086 ((faulty_instruction & 0x3) << 3) | (faulty_instruction >> 13);
2087 unsigned rd = faulty_instruction & 0xF80; // bits 7-11, inclusive
2123 unsigned opcode = faulty_instruction & 0x7f; // lower 7 bits
2124 unsigned funct3 = (faulty_instruction >> 12) & 0x7; // bits 12-14, inclusive