Lines Matching refs:TotalBytes
1100 unsigned TotalBytes = VT.getStoreSize(); in analyzeArguments() local
1105 TotalBytes += Args[j].VT.getStoreSize(); in analyzeArguments()
1108 TotalBytes = alignTo(TotalBytes, 2); in analyzeArguments()
1110 if (TotalBytes == 0) in analyzeArguments()
1113 unsigned RegIdx = RegLastIdx + TotalBytes; in analyzeArguments()
1152 unsigned TotalBytes = 0; in getTotalArgumentsSizeInBytes() local
1155 TotalBytes += Arg.VT.getStoreSize(); in getTotalArgumentsSizeInBytes()
1157 return TotalBytes; in getTotalArgumentsSizeInBytes()
1167 unsigned TotalBytes = getTotalArgumentsSizeInBytes(Args); in analyzeReturnValues() local
1169 assert(TotalBytes <= 8 && in analyzeReturnValues()
1185 if (TotalBytes > 4) { in analyzeReturnValues()
1186 TotalBytes = 8; in analyzeReturnValues()
1188 TotalBytes = alignTo(TotalBytes, 2); in analyzeReturnValues()
1192 int RegIdx = TotalBytes - 1; in analyzeReturnValues()
1527 unsigned TotalBytes = getTotalArgumentsSizeInBytes(Outs); in CanLowerReturn() local
1528 return TotalBytes <= 8; in CanLowerReturn()