Searched defs:MaskedValueIsZero (Results 1 - 3 of 3) sorted by relevance
/external/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineInternal.h | 477 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 D | ValueTracking.cpp | 208 static bool MaskedValueIsZero(Value *V, const APInt &Mask, const DataLayout &DL, 211 bool llvm::MaskedValueIsZero(Value *V, const APInt &Mask, const DataLayout &DL, function in class:llvm 214 return ::MaskedValueIsZero(V, Mask, DL, Depth, 2129 bool MaskedValueIsZero(Value *V, const APInt &Mask, const DataLayout &DL, function
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAG.cpp | 2034 return MaskedValueIsZero(Op, APInt::getSignBit(BitWidth), Depth); 2037 /// MaskedValueIsZero - Return true if 'V & Mask' is known to be zero. We use 2040 bool SelectionDAG::MaskedValueIsZero(SDValue Op, const APInt &Mask, function in class:SelectionDAG 2784 !MaskedValueIsZero(Op.getOperand(0),
|
Completed in 82 milliseconds