Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Target/SPIRV/
H A DSPIRVPrepareFunctions.cpp239 Value *FirstShift = nullptr, *SecShift = nullptr; in lowerFunnelShifts() local
243 FirstShift = IRB.CreateLShr(FSHFunc->getArg(1), RotateModVal); in lowerFunnelShifts()
247 FirstShift = IRB.CreateShl(FSHFunc->getArg(0), RotateModVal); in lowerFunnelShifts()
263 IRB.CreateRet(IRB.CreateOr(FirstShift, SecShift)); in lowerFunnelShifts()
/openbsd-src/gnu/llvm/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp4907 unsigned FirstShift = Mips::NOP; in expandRotation() local
4936 FirstShift = Mips::SRLV; in expandRotation()
4940 FirstShift = Mips::SLLV; in expandRotation()
4950 TOut.emitRRR(FirstShift, ATReg, SReg, ATReg, Inst.getLoc(), STI); in expandRotation()
4969 unsigned FirstShift = Mips::NOP; in expandRotationImm() local
5000 FirstShift = Mips::SLL; in expandRotationImm()
5004 FirstShift = Mips::SRL; in expandRotationImm()
5013 TOut.emitRRI(FirstShift, ATReg, SReg, ImmValue, Inst.getLoc(), STI); in expandRotationImm()
5032 unsigned FirstShift = Mips::NOP; in expandDRotation() local
5061 FirstShift = Mips::DSRLV; in expandDRotation()
[all …]
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DLangOptions.h668 static constexpr storage_type FirstShift = 0, FirstWidth = 0; variable