Home
last modified time | relevance | path

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

/external/swiftshader/third_party/subzero/src/
DIceTargetLoweringMIPS32.h110 return FixedAllocaOffset - MaxOutArgsSizeBytes; in getFrameFixedAllocaOffset()
113 uint32_t maxOutArgsSizeBytes() const override { return MaxOutArgsSizeBytes; } in maxOutArgsSizeBytes()
118 return CurrentOffset + MaxOutArgsSizeBytes; in getFramePointerOffset()
838 uint32_t MaxOutArgsSizeBytes = 0; variable
DIceTargetLoweringARM32.h141 return FixedAllocaSizeBytes - (SpillAreaSizeBytes - MaxOutArgsSizeBytes); in getFrameFixedAllocaOffset()
143 uint32_t maxOutArgsSizeBytes() const override { return MaxOutArgsSizeBytes; } in maxOutArgsSizeBytes()
1229 uint32_t MaxOutArgsSizeBytes = 0; variable
DIceTargetLoweringX86Base.h186 return MaxOutArgsSizeBytes; in maxOutArgsSizeBytes()
189 MaxOutArgsSizeBytes = std::max(MaxOutArgsSizeBytes, Size); in updateMaxOutArgsSizeBytes()
1091 uint32_t MaxOutArgsSizeBytes = 0; variable
DIceTargetLoweringMIPS32.cpp842 MaxOutArgsSizeBytes = MinNeededOutArgsBytes; in findMaxStackOutArgsSize()
850 MaxOutArgsSizeBytes = std::max(MaxOutArgsSizeBytes, OutArgsSizeBytes); in findMaxStackOutArgsSize()
854 CurrentAllocaOffset = MaxOutArgsSizeBytes; in findMaxStackOutArgsSize()
1619 SpillAreaSizeBytes += MaxOutArgsSizeBytes * (VariableAllocaUsed ? 0 : 1); in addProlog()
1623 (VariableAllocaUsed ? VariableAllocaAlignBytes : MaxOutArgsSizeBytes)); in addProlog()
1713 MaxOutArgsSizeBytes; in addProlog()
1726 << " outgoing args size = " << MaxOutArgsSizeBytes << " bytes\n" in addProlog()
3539 Sandboxer(this).addiu_sp(-MaxOutArgsSizeBytes); in lowerCall()
3555 Sandboxer(this).addiu_sp(MaxOutArgsSizeBytes); in lowerCall()
DIceTargetLoweringARM32.cpp844 MaxOutArgsSizeBytes = MinNeededOutArgsBytes; in findMaxStackOutArgsSize()
852 MaxOutArgsSizeBytes = std::max(MaxOutArgsSizeBytes, OutArgsSizeBytes); in findMaxStackOutArgsSize()
1601 SpillAreaSizeBytes += MaxOutArgsSizeBytes; in addProlog()
1605 StackSize = applyStackAlignment(StackSize + MaxOutArgsSizeBytes); in addProlog()
1669 MaxOutArgsSizeBytes; in addProlog()
1682 << " outgoing args size = " << MaxOutArgsSizeBytes << " bytes\n" in addProlog()
2273 if (MaxOutArgsSizeBytes != 0) { in lowerAlloca()
2276 Ctx->getConstantInt32(MaxOutArgsSizeBytes), Legal_Reg | Legal_Flex); in lowerAlloca()
3749 if (ParameterAreaSizeBytes > MaxOutArgsSizeBytes) { in lowerCall()