Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Target/SPIRV/
H A DSPIRVPrepareFunctions.cpp175 Value *FirstShift = nullptr, *SecShift = nullptr; in lowerFunnelShifts() local
179 FirstShift = IRB.CreateLShr(FSHFunc->getArg(1), RotateModVal); in lowerFunnelShifts()
183 FirstShift = IRB.CreateShl(FSHFunc->getArg(0), RotateModVal); in lowerFunnelShifts()
199 IRB.CreateRet(IRB.CreateOr(FirstShift, SecShift)); in lowerFunnelShifts()
/llvm-project-15.0.7/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp4865 unsigned FirstShift = Mips::NOP; in expandRotation() local
4894 FirstShift = Mips::SRLV; in expandRotation()
4898 FirstShift = Mips::SLLV; in expandRotation()
4927 unsigned FirstShift = Mips::NOP; in expandRotationImm() local
4958 FirstShift = Mips::SLL; in expandRotationImm()
4962 FirstShift = Mips::SRL; in expandRotationImm()
4990 unsigned FirstShift = Mips::NOP; in expandDRotation() local
5019 FirstShift = Mips::DSRLV; in expandDRotation()
5023 FirstShift = Mips::DSLLV; in expandDRotation()
5095 FirstShift = Mips::DSLL; in expandDRotationImm()
[all …]
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DLangOptions.h638 static constexpr storage_type FirstShift = 0, FirstWidth = 0; variable