Home
last modified time | relevance | path

Searched refs:BundleSize (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCAssembler.cpp357 static uint64_t computeBundlePadding(unsigned BundleSize, in computeBundlePadding() argument
360 uint64_t OffsetInBundle = FOffset & (BundleSize - 1); in computeBundlePadding()
381 if (EndOfFragment == BundleSize) in computeBundlePadding()
383 else if (EndOfFragment < BundleSize) in computeBundlePadding()
384 return BundleSize - EndOfFragment; in computeBundlePadding()
386 return 2 * BundleSize - EndOfFragment; in computeBundlePadding()
388 } else if (OffsetInBundle > 0 && EndOfFragment > BundleSize) in computeBundlePadding()
389 return BundleSize - OffsetInBundle; in computeBundlePadding()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanSLP.cpp53 unsigned BundleSize = 0; in addCombined() local
57 BundleSize += T->getScalarSizeInBits(); in addCombined()
59 WidestBundleBits = std::max(WidestBundleBits, BundleSize); in addCombined()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/Disassembler/
H A DHexagonDisassembler.cpp311 auto BundleSize = HexagonMCInstrInfo::bundleSize(MCB); in getSingleInstruction() local
314 if (BundleSize == 0) in getSingleInstruction()
316 else if (BundleSize == 1) in getSingleInstruction()