Searched refs:KnownOne2 (Results 1 - 9 of 9) sorted by relevance

/external/llvm/lib/Analysis/
H A DValueTracking.cpp50 APInt &KnownZero2, APInt &KnownOne2,
62 llvm::computeKnownBits(Op1, KnownZero2, KnownOne2, TD, Depth+1);
86 llvm::computeKnownBits(Op1, KnownZero2, KnownOne2, TD, Depth+1);
95 KnownOne |= KnownOne2 & Mask;
117 else if (LHSKnownOne.isNegative() && KnownOne2.isNegative())
121 if (LHSKnownZero.isNegative() && KnownOne2.isNegative())
133 APInt &KnownZero2, APInt &KnownOne2,
137 computeKnownBits(Op0, KnownZero2, KnownOne2, TD, Depth+1);
150 bool isKnownNegativeOp0 = KnownOne2.isNegative();
337 APInt KnownZero2(KnownZero), KnownOne2(KnownOn
48 computeKnownBitsAddSub(bool Add, Value *Op0, Value *Op1, bool NSW, APInt &KnownZero, APInt &KnownOne, APInt &KnownZero2, APInt &KnownOne2, const DataLayout *TD, unsigned Depth) argument
131 computeKnownBitsMul(Value *Op0, Value *Op1, bool NSW, APInt &KnownZero, APInt &KnownOne, APInt &KnownZero2, APInt &KnownOne2, const DataLayout *TD, unsigned Depth) argument
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp407 APInt KnownZero2, KnownOne2, KnownZeroOut, KnownOneOut; local
437 KnownZero2, KnownOne2, TLO, Depth+1))
439 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
445 if ((NewMask & ~KnownZero & KnownOne2) == (~KnownZero & NewMask))
458 KnownOne &= KnownOne2;
468 KnownZero2, KnownOne2, TLO, Depth+1))
470 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
474 if ((NewMask & ~KnownOne2 & KnownZero) == (~KnownOne2 & NewMask))
480 if ((NewMask & ~KnownZero & KnownOne2)
[all...]
H A DSelectionDAG.cpp1931 APInt KnownZero2, KnownOne2;
1942 computeKnownBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1);
1945 KnownOne &= KnownOne2;
1951 computeKnownBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1);
1956 KnownOne |= KnownOne2;
1960 computeKnownBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1);
1963 APInt KnownZeroOut = (KnownZero & KnownZero2) | (KnownOne & KnownOne2);
1965 KnownOne = (KnownZero & KnownOne2) | (KnownOne & KnownZero2);
1971 computeKnownBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1);
1994 computeKnownBits(Op.getOperand(0), KnownZero2, KnownOne2, Dept
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A DAMDILISelLowering.cpp285 APInt KnownOne2; local
299 KnownOne2
303 assert((KnownZero2 & KnownOne2) == 0
306 KnownOne &= KnownOne2;
/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/Transforms/InstCombine/
H A DInstCombineSimplifyDemanded.cpp762 APInt KnownZero2(BitWidth, 0), KnownOne2(BitWidth, 0);
765 KnownZero2, KnownOne2, Depth+1) ||
767 KnownZero2, KnownOne2, Depth+1))
/external/llvm/lib/Target/Sparc/
H A DSparcISelLowering.cpp1717 APInt KnownZero2, KnownOne2; local
1726 DAG.computeKnownBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1);
1729 KnownOne &= KnownOne2;
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp575 APInt KnownZero2, KnownOne2; local
577 DAG.computeKnownBits(Op->getOperand(1), KnownZero2, KnownOne2, Depth + 1);
579 KnownOne &= KnownOne2;
/external/llvm/lib/Target/R600/
H A DAMDGPUISelLowering.cpp2190 APInt KnownOne2; local

Completed in 214 milliseconds