Searched defs:AndMask (Results 1 - 4 of 4) sorted by relevance

/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.cpp1446 const APInt &AndMask = cast<ConstantInt>(I->getOperand(1))->getValue(); local
1454 // If the AndMask is all zeros for this byte, clear the bit.
1455 APInt MaskB = AndMask & Byte;
1461 // If the AndMask is not all ones for this byte, it's not a bytezap.
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp11259 APInt AndMask = ConstAndRHS->getAPIntValue(); local
11261 DAG.getConstant(AndMask.countLeadingZeros(),
11268 DAG.getConstant(AndMask.getBitWidth()-1,

Completed in 857 milliseconds