Home
last modified time | relevance | path

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

/external/llvm/lib/MC/
DMCFragment.cpp194 uint64_t BundleSize = Assembler.getBundleAlignSize(); in computeBundlePadding() local
195 assert(BundleSize > 0 && in computeBundlePadding()
197 uint64_t BundleMask = BundleSize - 1; in computeBundlePadding()
219 if (EndOfFragment == BundleSize) in computeBundlePadding()
221 else if (EndOfFragment < BundleSize) in computeBundlePadding()
222 return BundleSize - EndOfFragment; in computeBundlePadding()
224 return 2 * BundleSize - EndOfFragment; in computeBundlePadding()
226 } else if (OffsetInBundle > 0 && EndOfFragment > BundleSize) in computeBundlePadding()
227 return BundleSize - OffsetInBundle; in computeBundlePadding()
/external/swiftshader/third_party/subzero/src/
DIceTargetLoweringX8632.cpp295 const SizeT BundleSize = in lowerIndirectJump() local
297 _and(JumpTarget, Ctx->getConstantInt32(~(BundleSize - 1))); in lowerIndirectJump()
353 const SizeT BundleSize = in emitCallToTarget() local
355 _and(CallTargetVar, Ctx->getConstantInt32(~(BundleSize - 1))); in emitCallToTarget()
DIceTargetLoweringX8664.cpp608 const SizeT BundleSize = in lowerIndirectJump() local
610 _and(T, Ctx->getConstantInt32(~(BundleSize - 1))); in lowerIndirectJump()
672 const SizeT BundleSize = in emitCallToTarget() local
674 _and(T, Ctx->getConstantInt32(~(BundleSize - 1))); in emitCallToTarget()
724 const SizeT BundleSize = in emitSandboxedReturn() local
726 _and(T_ecx, Ctx->getConstantInt32(~(BundleSize - 1))); in emitSandboxedReturn()
DIceCfgNode.cpp1162 BundleSize(1 << Asm->getBundleAlignLog2Bytes()), in BundleEmitHelper()
1163 BundleMaskLo(BundleSize - 1), BundleMaskHi(~BundleMaskLo) {} in BundleEmitHelper()
1223 intptr_t PadToNextBundle = BundleSize - getPreAlignment(); in padToNextBundle()
1237 Asm->padWithNop(BundleSize - Offset); in padForAlignToEnd()
1248 Asm->padWithNop(BundleSize - Offset); in padForPadToEnd()
1265 const intptr_t BundleSize; member in Ice::__anon9a3d25040611::BundleEmitHelper
/external/llvm/lib/Target/Hexagon/Disassembler/
DHexagonDisassembler.cpp199 auto BundleSize = HexagonMCInstrInfo::bundleSize(MCB); in getSingleInstruction() local
202 if (BundleSize == 0) in getSingleInstruction()
204 else if (BundleSize == 1) in getSingleInstruction()