Searched refs:opShift (Results 1 - 1 of 1) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeEmitterGen.cpp218 int opShift; local
238 opShift = beginVarBit - N + 1;
239 opMask <<= opShift; local
241 opShift = beginInstBit - beginVarBit;
245 if (opShift > 0) {
246 Case += " op <<= " + itostr(opShift) + ";\n";
247 } else if (opShift < 0) {
248 Case += " op >>= " + itostr(-opShift) + ";\n";
252 if (opShift > 0) {
254 itostr(opShift)
[all...]

Completed in 101 milliseconds