Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVPrepareFunctions.cpp316 Value *FirstShift = nullptr, *SecShift = nullptr; in lowerFunnelShifts() local
320 FirstShift = IRB.CreateLShr(FSHFunc->getArg(1), RotateModVal); in lowerFunnelShifts()
324 FirstShift = IRB.CreateShl(FSHFunc->getArg(0), RotateModVal); in lowerFunnelShifts()
340 IRB.CreateRet(IRB.CreateOr(FirstShift, SecShift)); in lowerFunnelShifts()
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp4935 unsigned FirstShift = Mips::NOP; in expandRotation() local
4964 FirstShift = Mips::SRLV; in expandRotation()
4968 FirstShift = Mips::SLLV; in expandRotation()
4978 TOut.emitRRR(FirstShift, ATReg, SReg, ATReg, Inst.getLoc(), STI); in expandRotation()
4997 unsigned FirstShift = Mips::NOP; in expandRotationImm() local
5028 FirstShift = Mips::SLL; in expandRotationImm()
5032 FirstShift = Mips::SRL; in expandRotationImm()
5041 TOut.emitRRI(FirstShift, ATReg, SReg, ImmValue, Inst.getLoc(), STI); in expandRotationImm()
5060 unsigned FirstShift = Mips::NOP; in expandDRotation() local
5089 FirstShift = Mips::DSRLV; in expandDRotation()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DLangOptions.h778 static constexpr storage_type FirstShift = 0, FirstWidth = 0; variable