Home
last modified time | relevance | path

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

/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/
DTargetInfo.cpp553 unsigned &FreeRegs) const;
561 ABIArgInfo classifyArgumentType(QualType RetTy, unsigned &FreeRegs,
563 bool shouldUseInReg(QualType Ty, unsigned &FreeRegs,
809 unsigned &FreeRegs) const { in getIndirectResult()
811 if (FreeRegs) { in getIndirectResult()
812 --FreeRegs; // Non byval indirects just use one pointer. in getIndirectResult()
846 bool X86_32ABIInfo::shouldUseInReg(QualType Ty, unsigned &FreeRegs, in shouldUseInReg() argument
859 if (SizeInRegs > FreeRegs) { in shouldUseInReg()
860 FreeRegs = 0; in shouldUseInReg()
864 FreeRegs -= SizeInRegs; in shouldUseInReg()
[all …]