Home
last modified time | relevance | path

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

/frameworks/libs/binary_translation/backend/include/berberis/backend/common/
Dmachine_ir.h121 uint64_t reg_mask; member
123 const MachineReg regs[sizeof(reg_mask) * CHAR_BIT];
127 [[nodiscard]] bool HasReg(MachineReg r) const { return reg_mask & (uint64_t{1} << r.reg()); } in HasReg()
130 return (reg_mask & other->reg_mask) == reg_mask; in IsSubsetOf()
136 auto mask = reg_mask & other->reg_mask; in GetIntersection()
137 if (mask == reg_mask) { in GetIntersection()
140 if (mask == other->reg_mask) { in GetIntersection()