Lines Matching refs:TotalBytes
1253 unsigned TotalBytes = VT.getStoreSize(); in analyzeArguments() local
1258 TotalBytes += Args[j].VT.getStoreSize(); in analyzeArguments()
1261 TotalBytes = alignTo(TotalBytes, 2); in analyzeArguments()
1263 if (TotalBytes == 0) in analyzeArguments()
1266 unsigned RegIdx = RegLastIdx + TotalBytes; in analyzeArguments()
1305 unsigned TotalBytes = 0; in getTotalArgumentsSizeInBytes() local
1308 TotalBytes += Arg.VT.getStoreSize(); in getTotalArgumentsSizeInBytes()
1310 return TotalBytes; in getTotalArgumentsSizeInBytes()
1320 unsigned TotalBytes = getTotalArgumentsSizeInBytes(Args); in analyzeReturnValues() local
1323 assert(TotalBytes <= 4 && in analyzeReturnValues()
1326 assert(TotalBytes <= 8 && in analyzeReturnValues()
1342 if (TotalBytes > 4) { in analyzeReturnValues()
1343 TotalBytes = 8; in analyzeReturnValues()
1345 TotalBytes = alignTo(TotalBytes, 2); in analyzeReturnValues()
1349 int RegIdx = TotalBytes - 1; in analyzeReturnValues()
1687 unsigned TotalBytes = getTotalArgumentsSizeInBytes(Outs); in CanLowerReturn() local
1688 return TotalBytes <= (unsigned)(Subtarget.hasTinyEncoding() ? 4 : 8); in CanLowerReturn()