Lines Matching refs:TotalBytes
1269 unsigned TotalBytes = VT.getStoreSize(); in analyzeArguments() local
1274 TotalBytes += Args[j].VT.getStoreSize(); in analyzeArguments()
1277 TotalBytes = alignTo(TotalBytes, 2); in analyzeArguments()
1279 if (TotalBytes == 0) in analyzeArguments()
1282 unsigned RegIdx = RegLastIdx + TotalBytes; in analyzeArguments()
1321 unsigned TotalBytes = 0; in getTotalArgumentsSizeInBytes() local
1324 TotalBytes += Arg.VT.getStoreSize(); in getTotalArgumentsSizeInBytes()
1326 return TotalBytes; in getTotalArgumentsSizeInBytes()
1336 unsigned TotalBytes = getTotalArgumentsSizeInBytes(Args); in analyzeReturnValues() local
1339 assert(TotalBytes <= 4 && in analyzeReturnValues()
1342 assert(TotalBytes <= 8 && in analyzeReturnValues()
1358 if (TotalBytes > 4) { in analyzeReturnValues()
1359 TotalBytes = 8; in analyzeReturnValues()
1361 TotalBytes = alignTo(TotalBytes, 2); in analyzeReturnValues()
1365 int RegIdx = TotalBytes - 1; in analyzeReturnValues()
1703 unsigned TotalBytes = getTotalArgumentsSizeInBytes(Outs); in CanLowerReturn() local
1704 return TotalBytes <= (unsigned)(Subtarget.hasTinyEncoding() ? 4 : 8); in CanLowerReturn()