Lines Matching refs:TotalBytes
1037 unsigned TotalBytes = VT.getStoreSize(); in analyzeArguments() local
1042 TotalBytes += Args[j].VT.getStoreSize(); in analyzeArguments()
1045 TotalBytes = alignTo(TotalBytes, 2); in analyzeArguments()
1047 if (TotalBytes == 0) in analyzeArguments()
1050 unsigned RegIdx = RegLastIdx + TotalBytes; in analyzeArguments()
1088 unsigned TotalBytes = 0; in getTotalArgumentsSizeInBytes() local
1091 TotalBytes += Arg.VT.getStoreSize(); in getTotalArgumentsSizeInBytes()
1093 return TotalBytes; in getTotalArgumentsSizeInBytes()
1103 unsigned TotalBytes = getTotalArgumentsSizeInBytes(Args); in analyzeReturnValues() local
1105 assert(TotalBytes <= 8 && "return values greater than 8 bytes cannot be lowered"); in analyzeReturnValues()
1109 if (TotalBytes > 4) { in analyzeReturnValues()
1110 TotalBytes = 8; in analyzeReturnValues()
1112 TotalBytes = alignTo(TotalBytes, 2); in analyzeReturnValues()
1116 int RegIdx = TotalBytes - 1; in analyzeReturnValues()
1449 unsigned TotalBytes = getTotalArgumentsSizeInBytes(Outs); in CanLowerReturn() local
1450 return TotalBytes <= 8; in CanLowerReturn()