Searched defs:ActiveBits (Results 1 - 4 of 4) sorted by relevance

/external/llvm/lib/Support/
H A DAPSInt.cpp34 unsigned ActiveBits = Tmp.getActiveBits(); local
35 if (ActiveBits > 0 && ActiveBits < NumBits)
36 Tmp = Tmp.trunc(ActiveBits);
/external/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp4485 uint32_t ActiveBits = DemandBits.getActiveBits(); local
4497 if (ActiveBits <= 1 || !APIntOps::isMask(ActiveBits, DemandBits) ||
4502 Type *TruncTy = Type::getIntNTy(Ctx, ActiveBits);
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp2428 uint32_t ActiveBits = N1C->getAPIntValue().getActiveBits(); local
2429 if (ActiveBits > 0 && APIntOps::isMask(ActiveBits, N1C->getAPIntValue())){
2430 EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), ActiveBits);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp3011 uint32_t ActiveBits = AndC->getAPIntValue().getActiveBits(); local
3013 if (ActiveBits == 0 || !APIntOps::isMask(ActiveBits, AndC->getAPIntValue()))
3016 ExtVT = EVT::getIntegerVT(*DAG.getContext(), ActiveBits);

Completed in 139 milliseconds