Searched refs:Zeros (Results 1 - 9 of 9) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DScaledNumber.cpp65 if (int Zeros = countLeadingZeros(Dividend64)) {
66 Shift -= Zeros;
67 Dividend64 <<= Zeros; local
87 if (int Zeros = countTrailingZeros(Divisor)) {
88 Shift -= Zeros;
89 Divisor >>= Zeros; local
97 if (int Zeros = countLeadingZeros(Dividend)) {
98 Shift -= Zeros;
99 Dividend <<= Zeros; local
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/Disassembler/
H A DPPCDisassembler.cpp314 unsigned Zeros = countTrailingZeros(Imm);
315 assert(Zeros < 8 && "Invalid CR bit value");
317 Inst.addOperand(MCOperand::createReg(CRRegs[7 - Zeros]));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonConstPropagation.cpp409 bool evaluateCLBr(const RegisterSubReg &R1, bool Zeros, bool Ones,
411 bool evaluateCLBi(const APInt &A1, bool Zeros, bool Ones, APInt &Result);
412 bool evaluateCTBr(const RegisterSubReg &R1, bool Zeros, bool Ones,
414 bool evaluateCTBi(const APInt &A1, bool Zeros, bool Ones, APInt &Result);
1663 bool MachineConstEvaluator::evaluateCLBr(const RegisterSubReg &R1, bool Zeros, argument
1675 evaluateCLBi(A, Zeros, Ones, CA);
1684 bool MachineConstEvaluator::evaluateCLBi(const APInt &A1, bool Zeros, argument
1687 if (!Zeros && !Ones)
1690 if (Zeros && (Count == 0))
1698 bool MachineConstEvaluator::evaluateCTBr(const RegisterSubReg &R1, bool Zeros, argument
1719 evaluateCTBi(const APInt &A1, bool Zeros, bool Ones, APInt &Result) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCUDANV.cpp84 llvm::Constant *Zeros[] = {llvm::ConstantInt::get(SizeTy, 0), local
99 ConstStr.getPointer(), Zeros);
H A DCGObjCGNU.cpp208 Array.getPointer(), Zeros);
230 ConstStr, Zeros);
335 llvm::Constant *Zeros[2]; member in class:__anon381::CGObjCGNU
1451 TypesGlobal, Zeros);
2149 Zeros[0] = llvm::ConstantInt::get(LongTy, 0);
2150 Zeros[1] = Zeros[0];
3544 llvm::Constant *offsetPointerIndexes[] = {Zeros[0],
3575 NULLPtr, NULLPtr, 0x12L, ClassName.c_str(), nullptr, Zeros[0],
3712 Zeros[
[all...]
H A DCodeGenModule.cpp4681 llvm::Constant *Zeros[] = { Zero, Zero }; local
4754 : llvm::ConstantExpr::getGetElementPtr(Ty, C, Zeros);
4811 llvm::ConstantExpr::getGetElementPtr(GV->getValueType(), GV, Zeros);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DIRBuilder.h2689 Value *Zeros = ConstantAggregateZero::get(VectorType::get(I32Ty, NumElts)); local
2690 return CreateShuffleVector(V, Undef, Zeros, Name + ".splat");
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp10287 uint64_t Zeros = 0;
10295 Zeros |= (uint64_t)1 << i;
10305 if (isPowerOf2_64(NonZeros) && Zeros != 0 && NonZeros > Zeros &&
10324 SDValue Vec = Zeros ? DAG.getConstant(0, dl, ResVT) : DAG.getUNDEF(ResVT);
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp11865 unsigned Zeros = Imm.countLeadingZeros() + Imm.countTrailingZeros();
11866 return Imm.getBitWidth() - Zeros > 8;

Completed in 276 milliseconds