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

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp     [all...]
  /external/llvm/lib/Analysis/
ValueTracking.cpp 287 APInt LHSKnown = LHSKnownZero | LHSKnownOne;
290 APInt Known = LHSKnown & RHSKnown & CarryKnown;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
ValueTracking.cpp 202 KnownBits LHSKnown(IT->getBitWidth());
204 computeKnownBits(LHS, LHSKnown, DL, 0, AC, CxtI, DT);
206 return (LHSKnown.Zero | RHSKnown.Zero).isAllOnesValue();
308 KnownBits LHSKnown(BitWidth);
309 computeKnownBits(Op0, LHSKnown, Depth + 1, Q);
312 KnownOut = KnownBits::computeForAddSub(Add, NSW, LHSKnown, Known2);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp 581 KnownBits LHSKnown;
583 TLO.DAG.computeKnownBits(Op0, LHSKnown, Depth);
585 if ((LHSKnown.Zero & NewMask) == (~RHSC->getAPIntValue() & NewMask))
590 if (ShrinkDemandedConstant(Op, ~LHSKnown.Zero & NewMask, TLO))
599 LHSKnown.One == ~RHSC->getAPIntValue()) {
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
AMDGPUISelLowering.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/
PPCISelDAGToDAG.cpp     [all...]
PPCISelLowering.cpp     [all...]

Completed in 148 milliseconds