Lines Matching refs:AggregateVal
593 Result.AggregateVal.resize(elemNum); in getConstantValue()
597 Result.AggregateVal[i].IntVal = in getConstantValue()
601 Result.AggregateVal[i] = getConstantValue(ElemUndef); in getConstantValue()
612 Result.AggregateVal.resize(elemNum); in getConstantValue()
615 Result.AggregateVal[i].IntVal = in getConstantValue()
913 Result.AggregateVal.resize(elemNum); in getConstantValue()
919 std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(), in getConstantValue()
926 Result.AggregateVal[i].FloatVal = cast<ConstantFP>( in getConstantValue()
932 Result.AggregateVal[i].FloatVal = CDV->getElementAsFloat(i); in getConstantValue()
941 std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(), in getConstantValue()
948 Result.AggregateVal[i].DoubleVal = cast<ConstantFP>( in getConstantValue()
954 Result.AggregateVal[i].DoubleVal = CDV->getElementAsDouble(i); in getConstantValue()
963 std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(), in getConstantValue()
970 Result.AggregateVal[i].IntVal = cast<ConstantInt>( in getConstantValue()
973 Result.AggregateVal[i].IntVal = in getConstantValue()
980 Result.AggregateVal[i].IntVal = APInt( in getConstantValue()
1054 for (unsigned i = 0; i < Val.AggregateVal.size(); ++i) { in StoreValueToMemory()
1056 *(((double*)Ptr)+i) = Val.AggregateVal[i].DoubleVal; in StoreValueToMemory()
1058 *(((float*)Ptr)+i) = Val.AggregateVal[i].FloatVal; in StoreValueToMemory()
1060 unsigned numOfBytes =(Val.AggregateVal[i].IntVal.getBitWidth()+7)/8; in StoreValueToMemory()
1061 StoreIntToMemory(Val.AggregateVal[i].IntVal, in StoreValueToMemory()
1135 Result.AggregateVal.resize(numElems); in LoadValueFromMemory()
1137 Result.AggregateVal[i].FloatVal = *((float*)Ptr+i); in LoadValueFromMemory()
1140 Result.AggregateVal.resize(numElems); in LoadValueFromMemory()
1142 Result.AggregateVal[i].DoubleVal = *((double*)Ptr+i); in LoadValueFromMemory()
1148 Result.AggregateVal.resize(numElems, intZero); in LoadValueFromMemory()
1150 LoadIntFromMemory(Result.AggregateVal[i].IntVal, in LoadValueFromMemory()