Home
last modified time | relevance | path

Searched refs:AlignmentParam (Results 1 – 4 of 4) sorted by relevance

/external/swiftshader/third_party/subzero/src/
DIceCfg.cpp1024 uint32_t AlignmentParam = Alloca->getAlignInBytes(); in processAllocas() local
1025 if (AlignmentParam > StackAlignment) in processAllocas()
1075 uint32_t AlignmentParam = Alloca->getAlignInBytes(); in processAllocas() local
1078 AlignmentParam = std::max(AlignmentParam, 1u); in processAllocas()
1079 assert(llvm::isPowerOf2_32(AlignmentParam)); in processAllocas()
1080 if (HasDynamicAllocation && AlignmentParam > StackAlignment) { in processAllocas()
1087 MaxAlignment = std::max(AlignmentParam, MaxAlignment); in processAllocas()
DIceTargetLoweringMIPS32.cpp2386 const uint32_t AlignmentParam = std::max(1u, Instr->getAlignInBytes()); in lowerAlloca() local
2389 assert(llvm::isPowerOf2_32(AlignmentParam)); in lowerAlloca()
2393 std::max(AlignmentParam, MIPS32_STACK_ALIGNMENT_BYTES); in lowerAlloca()
2437 VariableAllocaAlignBytes = AlignmentParam; in lowerAlloca()
2451 legalizeToReg(Ctx->getConstantInt32(-AlignmentParam), Legal_Reg); in lowerAlloca()
DIceTargetLoweringARM32.cpp2220 const uint32_t AlignmentParam = std::max(1u, Instr->getAlignInBytes()); in lowerAlloca() local
2223 assert(llvm::isPowerOf2_32(AlignmentParam)); in lowerAlloca()
2227 std::max(AlignmentParam, ARM32_STACK_ALIGNMENT_BYTES); in lowerAlloca()
DIceTargetLoweringX86BaseImpl.h1467 const uint32_t AlignmentParam = std::max(1u, Instr->getAlignInBytes());
1470 assert(llvm::isPowerOf2_32(AlignmentParam));
1474 std::max(AlignmentParam, Traits::X86_STACK_ALIGNMENT_BYTES);