Searched defs:KnownOne2 (Results 1 - 7 of 7) sorted by relevance

/external/llvm/lib/Transforms/Scalar/
H A DBDCE.cpp64 APInt &KnownZero2, APInt &KnownOne2);
88 APInt &KnownZero2, APInt &KnownOne2) {
107 KnownOne2 = APInt(BitWidth, 0);
108 computeKnownBits(const_cast<Value *>(V2), KnownZero2, KnownOne2, DL,
227 AB &= ~KnownOne2;
231 AB &= ~(KnownOne & ~KnownOne2);
322 APInt KnownZero, KnownOne, KnownZero2, KnownOne2; local
340 KnownZero2, KnownOne2);
84 determineLiveOperandBits(const Instruction *UserI, const Instruction *I, unsigned OperandNo, const APInt &AOut, APInt &AB, APInt &KnownZero, APInt &KnownOne, APInt &KnownZero2, APInt &KnownOne2) argument
/external/mesa3d/src/gallium/drivers/radeon/
H A DAMDILISelLowering.cpp285 APInt KnownOne2; local
299 KnownOne2
303 assert((KnownZero2 & KnownOne2) == 0
306 KnownOne &= KnownOne2;
/external/llvm/lib/Analysis/
H A DValueTracking.cpp193 APInt &KnownZero2, APInt &KnownOne2,
206 computeKnownBits(Op1, KnownZero2, KnownOne2, DL, Depth + 1, Q);
226 computeKnownBits(Op1, KnownZero2, KnownOne2, DL, Depth + 1, Q);
232 std::swap(KnownZero2, KnownOne2);
237 APInt PossibleSumOne = LHSKnownOne + KnownOne2 + CarryIn;
241 APInt CarryKnownOne = PossibleSumOne ^ LHSKnownOne ^ KnownOne2;
245 APInt RHSKnown = KnownZero2 | KnownOne2;
265 else if (LHSKnownOne.isNegative() && KnownOne2.isNegative())
273 APInt &KnownZero2, APInt &KnownOne2,
278 computeKnownBits(Op0, KnownZero2, KnownOne2, D
191 computeKnownBitsAddSub(bool Add, Value *Op0, Value *Op1, bool NSW, APInt &KnownZero, APInt &KnownOne, APInt &KnownZero2, APInt &KnownOne2, const DataLayout &DL, unsigned Depth, const Query &Q) argument
271 computeKnownBitsMul(Value *Op0, Value *Op1, bool NSW, APInt &KnownZero, APInt &KnownOne, APInt &KnownZero2, APInt &KnownOne2, const DataLayout &DL, unsigned Depth, const Query &Q) argument
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp410 APInt KnownZero2, KnownOne2, KnownZeroOut, KnownOneOut; local
440 KnownZero2, KnownOne2, TLO, Depth+1))
442 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
448 if ((NewMask & ~KnownZero & KnownOne2) == (~KnownZero & NewMask))
461 KnownOne &= KnownOne2;
471 KnownZero2, KnownOne2, TLO, Depth+1))
473 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
477 if ((NewMask & ~KnownOne2 & KnownZero) == (~KnownOne2 & NewMask))
483 if ((NewMask & ~KnownZero & KnownOne2)
[all...]
/external/llvm/lib/Target/Sparc/
H A DSparcISelLowering.cpp1720 APInt KnownZero2, KnownOne2; local
1729 DAG.computeKnownBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1);
1732 KnownOne &= KnownOne2;
/external/llvm/lib/Target/R600/
H A DAMDGPUISelLowering.cpp2736 APInt KnownOne2; local
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp716 APInt KnownZero2, KnownOne2; local
718 DAG.computeKnownBits(Op->getOperand(1), KnownZero2, KnownOne2, Depth + 1);
720 KnownOne &= KnownOne2;

Completed in 202 milliseconds