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.cpp288 static uint64_t computeBundlePadding(unsigned BundleSize, in computeBundlePadding() argument
291 uint64_t OffsetInBundle = FOffset & (BundleSize - 1); in computeBundlePadding()
312 if (EndOfFragment == BundleSize) in computeBundlePadding()
314 else if (EndOfFragment < BundleSize) in computeBundlePadding()
315 return BundleSize - EndOfFragment; in computeBundlePadding()
317 return 2 * BundleSize - EndOfFragment; in computeBundlePadding()
319 } else if (OffsetInBundle > 0 && EndOfFragment > BundleSize) in computeBundlePadding()
320 return BundleSize - OffsetInBundle; in computeBundlePadding()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanSLP.cpp109 unsigned BundleSize = 0; in addCombined() local
113 BundleSize += T->getScalarSizeInBits(); in addCombined()
115 WidestBundleBits = std::max(WidestBundleBits, BundleSize); in addCombined()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/Disassembler/
H A DHexagonDisassembler.cpp379 auto BundleSize = HexagonMCInstrInfo::bundleSize(MCB); in getSingleInstruction() local
382 if (BundleSize == 0) in getSingleInstruction()
384 else if (BundleSize == 1) in getSingleInstruction()