Searched defs:NewWidth (Results 1 - 7 of 7) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp1206 unsigned NewWidth = SrcVT.getStoreSizeInBits(); local
1207 EVT NVT = EVT::getIntegerVT(*DAG.getContext(), NewWidth);
/external/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp271 unsigned NewWidth = V->getType()->getPrimitiveSizeInBits(); local
280 unsigned ExtendedBy = NewWidth - SmallWidth;
289 Offset = Offset.trunc(SmallWidth).sext(NewWidth).zextOrSelf(OldWidth);
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp1649 unsigned NewWidth = CI2->getValue().countTrailingZeros(); local
1650 if (NewWidth != 7 && NewWidth != 15 && NewWidth != 31) return 0;
1653 ++NewWidth;
1655 // Check to see that CI1 is an all-ones value with NewWidth bits.
1656 if (CI1->getBitWidth() == NewWidth ||
1657 CI1->getValue() != APInt::getLowBitsSet(CI1->getBitWidth(), NewWidth))
1676 TI->getType()->getPrimitiveSizeInBits() > NewWidth) return 0;
1684 Type *NewType = IntegerType::get(OrigAdd->getContext(), NewWidth);
[all...]
/external/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp2187 unsigned NewWidth = BitWidth - std::max(LeadingKnownZeros, LeadingKnownOnes); local
2193 if (NewWidth > 0 && NewWidth < BitWidth) {
2195 IntegerType *Ty = IntegerType::get(SI.getContext(), NewWidth);
2202 SI.getContext(), C.getCaseValue()->getValue().trunc(NewWidth)));
H A DInstCombineCompares.cpp2510 unsigned NewWidth = CI2->getValue().countTrailingZeros(); local
2511 if (NewWidth != 7 && NewWidth != 15 && NewWidth != 31) return nullptr;
2514 ++NewWidth;
2516 // Check to see that CI1 is an all-ones value with NewWidth bits.
2517 if (CI1->getBitWidth() == NewWidth ||
2518 CI1->getValue() != APInt::getLowBitsSet(CI1->getBitWidth(), NewWidth))
2524 unsigned NeededSignBits = CI1->getBitWidth() - NewWidth + 1;
2543 if (!TI || TI->getType()->getPrimitiveSizeInBits() > NewWidth)
[all...]
/external/clang/lib/Sema/
H A DSemaDecl.cpp14944 unsigned NewWidth; local
14950 NewWidth = IntWidth;
14962 NewWidth = BestWidth;
14967 InitVal = InitVal.extOrTrunc(NewWidth);
/external/swiftshader/third_party/LLVM/lib/Target/X86/
H A DX86ISelLowering.cpp5850 unsigned NewWidth = (NumElems == 4) ? 2 : 4; local
5860 int Scale = NumElems / NewWidth;

Completed in 823 milliseconds