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.cpp309 Value *FirstShift = nullptr, *SecShift = nullptr; in lowerFunnelShifts() local
313 FirstShift = IRB.CreateLShr(FSHFunc->getArg(1), RotateModVal); in lowerFunnelShifts()
317 FirstShift = IRB.CreateShl(FSHFunc->getArg(0), RotateModVal); in lowerFunnelShifts()
333 IRB.CreateRet(IRB.CreateOr(FirstShift, SecShift)); in lowerFunnelShifts()
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp4878 unsigned FirstShift = Mips::NOP; in expandRotation() local
4907 FirstShift = Mips::SRLV; in expandRotation()
4911 FirstShift = Mips::SLLV; in expandRotation()
4921 TOut.emitRRR(FirstShift, ATReg, SReg, ATReg, Inst.getLoc(), STI); in expandRotation()
4940 unsigned FirstShift = Mips::NOP; in expandRotationImm() local
4971 FirstShift = Mips::SLL; in expandRotationImm()
4975 FirstShift = Mips::SRL; in expandRotationImm()
4984 TOut.emitRRI(FirstShift, ATReg, SReg, ImmValue, Inst.getLoc(), STI); in expandRotationImm()
5003 unsigned FirstShift = Mips::NOP; in expandDRotation() local
5032 FirstShift = Mips::DSRLV; in expandDRotation()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DLangOptions.h880 static constexpr storage_type FirstShift = 0, FirstWidth = 0; variable