Searched defs:MaskedValueIsZero (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineInternal.h477 bool MaskedValueIsZero(Value *V, const APInt &Mask, unsigned Depth = 0, function in class:llvm::InstCombiner
479 return llvm::MaskedValueIsZero(V, Mask, DL, Depth, AC, CxtI, DT);
/external/llvm/lib/Analysis/
H A DValueTracking.cpp171 static bool MaskedValueIsZero(Value *V, const APInt &Mask, const DataLayout &DL,
174 bool llvm::MaskedValueIsZero(Value *V, const APInt &Mask, const DataLayout &DL, function in class:llvm
177 return ::MaskedValueIsZero(V, Mask, DL, Depth,
1860 bool MaskedValueIsZero(Value *V, const APInt &Mask, const DataLayout &DL, function
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp1949 return MaskedValueIsZero(Op, APInt::getSignBit(BitWidth), Depth);
1952 /// MaskedValueIsZero - Return true if 'V & Mask' is known to be zero. We use
1955 bool SelectionDAG::MaskedValueIsZero(SDValue Op, const APInt &Mask, function in class:SelectionDAG
2663 !MaskedValueIsZero(Op.getOperand(0),

Completed in 543 milliseconds