HomeSort by relevance Sort by last modified time
    Searched refs:MinBW (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Analysis/
VectorUtils.cpp 418 uint64_t MinBW = (sizeof(LeaderDemandedBits) * 8) -
421 if (!isPowerOf2_64((uint64_t)MinBW))
422 MinBW = NextPowerOf2(MinBW);
430 if (isa<PHINode>(*MI) && MinBW < (*MI)->getType()->getScalarSizeInBits()) {
443 if (MinBW < Ty->getScalarSizeInBits())
444 MinBWs[cast<Instruction>(*MI)] = MinBW;
  /external/llvm/lib/Transforms/Scalar/
Float2Int.cpp 396 unsigned MinBW = std::max(R.getLower().getMinSignedBits(),
398 DEBUG(dbgs() << "F2I: MinBitwidth=" << MinBW << ", R: " << R << "\n");
408 if (MinBW > MaxRepresentableBits) {
412 if (MinBW > 64) {
419 Type *Ty = (MinBW > 32) ? Type::getInt64Ty(*Ctx) : Type::getInt32Ty(*Ctx);

Completed in 385 milliseconds