MCPcopy Create free account
hub / github.com/FEX-Emu/FEX / GetRdReg

Function GetRdReg

FEXCore/Source/Utils/ArchHelpers/Arm64.cpp:110–112  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 2

HandleCAS_NoAtomicsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected