HomeSort by relevance Sort by last modified time
    Searched defs:Known2 (Results 1 - 7 of 7) sorted by null

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DemandedBits.cpp 87 const APInt &AOut, APInt &AB, KnownBits &Known, KnownBits &Known2) {
103 Known2 = KnownBits(BitWidth);
104 computeKnownBits(V2, Known2, DL, 0, &AC, UserI, &DT);
209 AB &= ~Known2.Zero;
213 AB &= ~(Known.Zero & ~Known2.Zero);
225 AB &= ~Known2.One;
229 AB &= ~(Known.One & ~Known2.One);
327 KnownBits Known, Known2;
344 Known, Known2);
BasicAliasAnalysis.cpp     [all...]
ValueTracking.cpp 302 KnownBits &KnownOut, KnownBits &Known2,
310 computeKnownBits(Op1, Known2, Depth + 1, Q);
312 KnownOut = KnownBits::computeForAddSub(Add, NSW, LHSKnown, Known2);
316 KnownBits &Known, KnownBits &Known2,
320 computeKnownBits(Op0, Known2, Depth + 1, Q);
331 bool isKnownNonNegativeOp0 = Known2.isNonNegative();
333 bool isKnownNegativeOp0 = Known2.isNegative();
347 assert(!Known.hasConflict() && !Known2.hasConflict());
350 Known2.countMinLeadingZeros(),
397 APInt Bottom1 = Known2.One
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Lanai/
LanaiISelLowering.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Sparc/
SparcISelLowering.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp 547 KnownBits Known2, KnownOut;
558 Known2.One = cast<ConstantSDNode>(SrcOp)->getAPIntValue();
559 Known2.Zero = ~Known2.One;
562 if (Known2.One.getBitWidth() != BitWidth) {
563 assert(Known2.getBitWidth() > BitWidth &&
565 Known2 = Known2.trunc(BitWidth);
570 Known.One &= Known2.One;
571 Known.Zero &= Known2.Zero
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp     [all...]

Completed in 141 milliseconds