Lines Matching refs:AggregateVal

615         Result.AggregateVal.resize(elemNum);  in getConstantValue()
619 Result.AggregateVal[i].IntVal = in getConstantValue()
623 Result.AggregateVal[i] = getConstantValue(ElemUndef); in getConstantValue()
637 Result.AggregateVal.resize(elemNum); in getConstantValue()
640 Result.AggregateVal[i].IntVal = in getConstantValue()
943 Result.AggregateVal.resize(elemNum); in getConstantValue()
949 std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(), in getConstantValue()
956 Result.AggregateVal[i].FloatVal = cast<ConstantFP>( in getConstantValue()
962 Result.AggregateVal[i].FloatVal = CDV->getElementAsFloat(i); in getConstantValue()
971 std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(), in getConstantValue()
978 Result.AggregateVal[i].DoubleVal = cast<ConstantFP>( in getConstantValue()
984 Result.AggregateVal[i].DoubleVal = CDV->getElementAsDouble(i); in getConstantValue()
993 std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(), in getConstantValue()
1000 Result.AggregateVal[i].IntVal = cast<ConstantInt>( in getConstantValue()
1003 Result.AggregateVal[i].IntVal = in getConstantValue()
1010 Result.AggregateVal[i].IntVal = APInt( in getConstantValue()
1058 for (unsigned i = 0; i < Val.AggregateVal.size(); ++i) { in StoreValueToMemory()
1060 *(((double*)Ptr)+i) = Val.AggregateVal[i].DoubleVal; in StoreValueToMemory()
1062 *(((float*)Ptr)+i) = Val.AggregateVal[i].FloatVal; in StoreValueToMemory()
1064 unsigned numOfBytes =(Val.AggregateVal[i].IntVal.getBitWidth()+7)/8; in StoreValueToMemory()
1065 StoreIntToMemory(Val.AggregateVal[i].IntVal, in StoreValueToMemory()
1115 Result.AggregateVal.resize(numElems); in LoadValueFromMemory()
1117 Result.AggregateVal[i].FloatVal = *((float*)Ptr+i); in LoadValueFromMemory()
1120 Result.AggregateVal.resize(numElems); in LoadValueFromMemory()
1122 Result.AggregateVal[i].DoubleVal = *((double*)Ptr+i); in LoadValueFromMemory()
1128 Result.AggregateVal.resize(numElems, intZero); in LoadValueFromMemory()
1130 LoadIntFromMemory(Result.AggregateVal[i].IntVal, in LoadValueFromMemory()