Searched refs:Log2_32_Ceil (Results 1 - 24 of 24) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLegalizeMutations.cpp51 std::max(1u << Log2_32_Ceil(Ty.getScalarSizeInBits()), Min);
61 std::max(1u << Log2_32_Ceil(VecTy.getNumElements()), Min);
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DValueTypes.h337 return getIntegerVT(Context, 1 << Log2_32_Ceil(BitWidth));
384 unsigned Pow2NElts = 1 << Log2_32_Ceil(NElts);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
H A DSmallPtrSet.cpp30 CurArraySize = Size > 16 ? 1 << (Log2_32_Ceil(Size) + 1) : 32;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCWinCOFFStreamer.cpp288 << Log2_32_Ceil(ByteAlignment);
/freebsd-12-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DAsmWriterEmitter.cpp331 unsigned AsmStrBits = Log2_32_Ceil(MaxStringIdx+2);
351 unsigned NumBits = Log2_32_Ceil(UniqueOperandCommands.size());
436 unsigned NumBits = Log2_32_Ceil(Commands.size());
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DDenseMap.h798 NewNumBuckets = std::max(64, 1 << (Log2_32_Ceil(OldNumEntries) + 1));
1068 NewNumBuckets = 1 << (Log2_32_Ceil(OldSize) + 1);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeTypes.cpp1000 Log2_32_Ceil(Op.getValueType().getSizeInBits());
H A DLegalizeIntegerTypes.cpp406 ShiftVT.getSizeInBits() < Log2_32_Ceil(VT.getSizeInBits()))
3369 Log2_32_Ceil(VT.getScalarSizeInBits()) &&
H A DTargetLowering.cpp3183 N0.getValueSizeInBits() > Log2_32_Ceil(CTPOP.getValueSizeInBits()))) {
H A DSelectionDAG.cpp5243 assert(N2.getValueSizeInBits() >= Log2_32_Ceil(N1.getValueSizeInBits()) &&
H A DSelectionDAGBuilder.cpp3191 else if (ShiftSize >= Log2_32_Ceil(Op2.getValueSizeInBits()))
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DMachineValueType.h415 unsigned Pow2NElts = 1 << Log2_32_Ceil(NElts);
H A DMathExtras.h597 /// Ex. Log2_32_Ceil(32) == 5, Log2_32_Ceil(1) == 0, Log2_32_Ceil(6) == 3
598 inline unsigned Log2_32_Ceil(uint32_t Value) { function
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.cpp1040 return Log2_32_Ceil(getTypes().size() + 1);
H A DBitcodeWriter.cpp1215 Log2_32_Ceil(MaxGlobalType+1)));
1226 Log2_32_Ceil(MaxEncAlignment+1)));
1232 Log2_32_Ceil(SectionMap.size()+1)));
2284 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, Log2_32_Ceil(LastVal+1)));
3431 Log2_32_Ceil(VE.getTypes().size() + 1)));
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64LegalizerInfo.cpp512 << Log2_32_Ceil(Ty.getSizeInBits() + 1);
/freebsd-12-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DCommonArgs.cpp1127 return Value ? llvm::Log2_32_Ceil(std::min(Value, 65536u)) : Value;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyISelLowering.cpp331 assert(BitWidth >= Log2_32_Ceil(VT.getSizeInBits()) &&
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPULegalizerInfo.cpp1092 unsigned NewSizeInBits = 1 << Log2_32_Ceil(Ty.getSizeInBits() + 1);
H A DSIISelLowering.cpp915 Pow2Elts = 1 << Log2_32_Ceil(NumElts + AdditionalElts);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp1010 return Log2_32_Ceil((TypeSize + 7) / 8);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp2010 APInt Op2Demanded = APInt::getLowBitsSet(BitWidth, Log2_32_Ceil(BitWidth));
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DInstructionSimplify.cpp1277 unsigned NumValidShiftBits = Log2_32_Ceil(Known.getBitWidth());
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp3752 int64_t BitSize = (int64_t)1 << Log2_32_Ceil(NumSignificantBits);

Completed in 411 milliseconds