Searched refs:AndMask (Results 1 - 5 of 5) sorted by relevance

/external/llvm/lib/Target/SystemZ/
H A DSystemZISelDAGToDAG.cpp604 uint64_t AndMask = MaskNode->getZExtValue();
605 if (InsertMask & AndMask)
611 if (Used != (AndMask | InsertMask)) {
614 if (Used != (AndMask | InsertMask | KnownZero.getZExtValue()))
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A DAMDILPeepholeOptimizer.cpp743 Constant *AndMask = dyn_cast<Constant>(inst->getOperand(1)); local
746 if (!AndMask || !ShrVal) {
755 ConstantVector *AndMaskVec = dyn_cast<ConstantVector>(AndMask);
790 uint32_t maskVal = (uint32_t)dyn_cast<ConstantInt>(AndMask)->getZExtValue();
/external/mesa3d/src/gallium/drivers/radeon/
H A DAMDILPeepholeOptimizer.cpp743 Constant *AndMask = dyn_cast<Constant>(inst->getOperand(1)); local
746 if (!AndMask || !ShrVal) {
755 ConstantVector *AndMaskVec = dyn_cast<ConstantVector>(AndMask);
790 uint32_t maskVal = (uint32_t)dyn_cast<ConstantInt>(AndMask)->getZExtValue();
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp1347 const APInt &AndMask = cast<ConstantInt>(I->getOperand(1))->getValue(); local
1355 // If the AndMask is all zeros for this byte, clear the bit.
1356 APInt MaskB = AndMask & Byte;
1362 // If the AndMask is not all ones for this byte, it's not a bytezap.
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp9921 APInt AndMask = ConstAndRHS->getAPIntValue(); local
9923 DAG.getConstant(AndMask.countLeadingZeros(),
9930 DAG.getConstant(AndMask.getBitWidth()-1,

Completed in 585 milliseconds