Searched refs:getKnownBits (Results 1 - 4 of 4) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DGISelKnownBits.h61 KnownBits getKnownBits(Register R);
62 KnownBits getKnownBits(Register R, const APInt &DemandedElts,
65 // Calls getKnownBits for first operand def of MI.
66 KnownBits getKnownBits(MachineInstr &MI);
74 return Mask.isSubsetOf(getKnownBits(Val).Zero);
H A DCombinerHelper.h68 GISelKnownBits *getKnownBits() const { function in class:llvm::CombinerHelper
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DGISelKnownBits.cpp51 KnownBits GISelKnownBits::getKnownBits(MachineInstr &MI) { function in class:GISelKnownBits
54 return getKnownBits(MI.getOperand(0).getReg());
57 KnownBits GISelKnownBits::getKnownBits(Register R) { function in class:GISelKnownBits
61 return getKnownBits(R, DemandedElts);
64 KnownBits GISelKnownBits::getKnownBits(Register R, const APInt &DemandedElts, function in class:GISelKnownBits
82 return getKnownBits(R).Zero;
85 APInt GISelKnownBits::getKnownOnes(Register R) { return getKnownBits(R).One; }
480 KnownBits Known = getKnownBits(R, DemandedElts, Depth);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUPostLegalizerCombiner.cpp144 return Helper.getKnownBits()->maskedValueIsZero(SrcReg, Mask);

Completed in 381 milliseconds