Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCRegisterInfo.h625 static constexpr unsigned RegUnitBits = 12; variable
638 unsigned FirstRU = RU & ((1u << RegUnitBits) - 1); in MCRegUnitIterator()
639 unsigned Offset = RU >> RegUnitBits; in MCRegUnitIterator()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DRegisterInfoEmitter.cpp972 constexpr unsigned RegUnitBits = 12; in runMCDesc() local
973 assert(isUInt<RegUnitBits>(FirstRU) && "Too many regunits"); in runMCDesc()
974 assert(isUInt<32 - RegUnitBits>(Offset) && "Offset is too big"); in runMCDesc()
978 << (Offset << RegUnitBits | FirstRU) << ", " in runMCDesc()