Home
last modified time | relevance | path

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

/external/llvm/include/llvm/Support/
DScaledNumber.h308 int32_t ShiftL = std::min<int32_t>(countLeadingZeros(LDigits), ScaleDiff); in matchScales() local
309 assert(ShiftL < getWidth<DigitsT>() && "can't shift more than width"); in matchScales()
311 int32_t ShiftR = ScaleDiff - ShiftL; in matchScales()
318 LDigits <<= ShiftL; in matchScales()
321 LScale -= ShiftL; in matchScales()
/external/swiftshader/third_party/LLVM/lib/Target/MBlaze/
DMBlazeInstrInfo.td606 def ShiftL : MBlazePseudo<(outs GPR:$dst),
608 "; ShiftL PSEUDO!",
749 def : Pat<(shl GPR:$L, GPR:$R), (ShiftL GPR:$L, GPR:$R)>;
DMBlazeISelLowering.cpp221 case MBlaze::ShiftL: in EmitInstrWithCustomInserter()
318 if (MI->getOpcode() == MBlaze::ShiftL) in EmitCustomShift()