Lines Matching defs:msbit
87 uint32_t msbit;
89 if (!llvm::to_integer(msbit_str, msbit) ||
92 llvm::inconvertibleErrorCode(), "msbit (%s) or lsbit (%s) are invalid",
95 if (msbit <= lsbit)
97 "msbit (%u) must be greater than lsbit (%u)",
98 msbit, lsbit);
100 const uint32_t msbyte = msbit / 8;
111 if (msbit > max_bit)
114 "msbit (%u) must be less than the bitsize of the register \"%s\" (%u)",
115 msbit, reg_name_str.str().c_str(), max_bit);