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

  /external/llvm/lib/MC/
MCFragment.cpp 194 uint64_t BundleSize = Assembler.getBundleAlignSize();
195 assert(BundleSize > 0 &&
197 uint64_t BundleMask = BundleSize - 1;
219 if (EndOfFragment == BundleSize)
221 else if (EndOfFragment < BundleSize)
222 return BundleSize - EndOfFragment;
223 else { // EndOfFragment > BundleSize
224 return 2 * BundleSize - EndOfFragment;
226 } else if (OffsetInBundle > 0 && EndOfFragment > BundleSize)
227 return BundleSize - OffsetInBundle
    [all...]
  /external/swiftshader/third_party/subzero/src/
IceTargetLoweringX8632.cpp 295 const SizeT BundleSize =
297 _and(JumpTarget, Ctx->getConstantInt32(~(BundleSize - 1)));
353 const SizeT BundleSize =
355 _and(CallTargetVar, Ctx->getConstantInt32(~(BundleSize - 1)));
IceTargetLoweringX8664.cpp 608 const SizeT BundleSize =
610 _and(T, Ctx->getConstantInt32(~(BundleSize - 1)));
672 const SizeT BundleSize =
674 _and(T, Ctx->getConstantInt32(~(BundleSize - 1)));
724 const SizeT BundleSize =
726 _and(T_ecx, Ctx->getConstantInt32(~(BundleSize - 1)));
IceCfgNode.cpp     [all...]
  /external/llvm/lib/Target/Hexagon/Disassembler/
HexagonDisassembler.cpp 199 auto BundleSize = HexagonMCInstrInfo::bundleSize(MCB);
202 if (BundleSize == 0)
204 else if (BundleSize == 1)
396 HexagonMCInstrInfo::bundleSize(MCB));
410 MCB, HexagonMCInstrInfo::bundleSize(MCB))) {
630 MCB, HexagonMCInstrInfo::bundleSize(MCB));
    [all...]

Completed in 128 milliseconds