| 108 | constexpr uint32_t DMB_LD = 0b1101'0101'0000'0011'0011'0000'1011'1111 | 0b1101'0000'0000; // Inner shareable load |
| 109 | |
| 110 | static constexpr uint32_t GetRdReg(uint32_t Instr) { |
| 111 | return (Instr >> RD_OFFSET) & REGISTER_MASK; |
| 112 | } |
| 113 | |
| 114 | static constexpr uint32_t GetRnReg(uint32_t Instr) { |
| 115 | return (Instr >> RN_OFFSET) & REGISTER_MASK; |
no outgoing calls
no test coverage detected