Home
last modified time | relevance | path

Searched refs:faulty_instruction (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_linux.cpp1982 uint32_t faulty_instruction; in GetWriteFlag() local
1986 faulty_instruction = (uint32_t)(*exception_source); in GetWriteFlag()
1988 op_code = (faulty_instruction >> 26) & 0x3f; in GetWriteFlag()
2020 op_code = (faulty_instruction >> 19) & 0x3; in GetWriteFlag()
2080 unsigned faulty_instruction = *(uint16_t *)pc; in GetWriteFlag() local
2083 if ((faulty_instruction & 0x3) != 0x3) { // it's a compressed instruction in GetWriteFlag()
2086 ((faulty_instruction & 0x3) << 3) | (faulty_instruction >> 13); in GetWriteFlag()
2087 unsigned rd = faulty_instruction & 0xF80; // bits 7-11, inclusive in GetWriteFlag()
2123 unsigned opcode = faulty_instruction & 0x7f; // lower 7 bits in GetWriteFlag()
2124 unsigned funct3 = (faulty_instruction >> 12) & 0x7; // bits 12-14, inclusive in GetWriteFlag()