Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp1175 static unsigned getShiftAmount(uint64_t orgShiftAmount, in getShiftAmount() argument
1178 if (orgShiftAmount < (uint64_t)valueWidth) in getShiftAmount()
1179 return orgShiftAmount; in getShiftAmount()
1182 return (NextPowerOf2(valueWidth-1) - 1) & orgShiftAmount; in getShiftAmount()