/external/llvm/include/llvm/CodeGen/ |
FunctionLoweringInfo.h | 103 APInt KnownOne, KnownZero; 104 LiveOutInfo() : NumSignBits(0), IsValid(true), KnownOne(1, 0), 173 const APInt &KnownZero, const APInt &KnownOne) { 175 if (NumSignBits == 1 && KnownZero == 0 && KnownOne == 0) 181 LOI.KnownOne = KnownOne;
|
/external/llvm/lib/Analysis/ |
ConstantFolding.cpp | 569 APInt KnownOne = KnownOne0 & KnownOne1; 570 if ((KnownZero | KnownOne).isAllOnesValue()) { 571 return ConstantInt::get(Op0->getType(), KnownOne); [all...] |
/external/llvm/lib/Target/R600/ |
AMDGPUISelDAGToDAG.cpp | 765 APInt KnownZero, KnownOne; 768 if (TLI->SimplifyDemandedBits(Op, Demanded, KnownZero, KnownOne, TLO)) { 790 APInt KnownOne; 791 CurDAG->ComputeMaskedBits(Op, KnownZero, KnownOne);
|
/external/llvm/lib/Target/SystemZ/ |
SystemZISelDAGToDAG.cpp | 612 APInt KnownZero, KnownOne; 613 CurDAG->ComputeMaskedBits(Op.getOperand(0), KnownZero, KnownOne); 672 APInt KnownZero, KnownOne; 673 CurDAG->ComputeMaskedBits(Input, KnownZero, KnownOne); 697 APInt KnownZero, KnownOne; 698 CurDAG->ComputeMaskedBits(Input, KnownZero, KnownOne); 699 Mask &= ~KnownOne.getZExtValue(); [all...] |
SystemZISelLowering.cpp | [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
SelectionDAGISel.cpp | 541 APInt KnownOne; 570 CurDAG->ComputeMaskedBits(Src, KnownZero, KnownOne); 571 FuncInfo->AddLiveOutRegInfo(DestReg, NumSignBits, KnownZero, KnownOne); [all...] |
TargetLowering.cpp | 348 /// analyze the expression and return a mask of KnownOne and KnownZero bits for 354 APInt &KnownOne, 364 KnownZero = KnownOne = APInt(BitWidth, 0); 369 // If not at the root, Just compute the KnownZero/KnownOne bits to 371 TLO.DAG.ComputeMaskedBits(Op, KnownZero, KnownOne, Depth); 390 KnownOne = cast<ConstantSDNode>(Op)->getAPIntValue(); 391 KnownZero = ~KnownOne; 412 KnownOne, TLO, Depth+1)) 414 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); 422 if ((NewMask & ~KnownZero2 & KnownOne) == (~KnownZero2 & NewMask) [all...] |
LegalizeIntegerTypes.cpp | [all...] |
SelectionDAG.cpp | [all...] |
DAGCombiner.cpp | 698 APInt KnownZero, KnownOne; 699 if (!TLI.SimplifyDemandedBits(Op, Demanded, KnownZero, KnownOne, TLO)) [all...] |
/external/llvm/lib/Target/X86/ |
X86ISelDAGToDAG.cpp | [all...] |
X86ISelLowering.cpp | [all...] |
/external/llvm/lib/Target/XCore/ |
XCoreISelLowering.cpp | 368 APInt KnownZero, KnownOne; 369 DAG.ComputeMaskedBits(Value, KnownZero, KnownOne); [all...] |
/external/llvm/lib/Target/ARM/ |
ARMISelLowering.cpp | [all...] |