Lines Matching refs:AggregateVal

613         Result.AggregateVal.resize(elemNum);  in getConstantValue()
617 Result.AggregateVal[i].IntVal = in getConstantValue()
621 Result.AggregateVal[i] = getConstantValue(ElemUndef); in getConstantValue()
632 Result.AggregateVal.resize(elemNum); in getConstantValue()
635 Result.AggregateVal[i].IntVal = in getConstantValue()
935 Result.AggregateVal.resize(elemNum); in getConstantValue()
941 std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(), in getConstantValue()
948 Result.AggregateVal[i].FloatVal = cast<ConstantFP>( in getConstantValue()
954 Result.AggregateVal[i].FloatVal = CDV->getElementAsFloat(i); in getConstantValue()
963 std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(), in getConstantValue()
970 Result.AggregateVal[i].DoubleVal = cast<ConstantFP>( in getConstantValue()
976 Result.AggregateVal[i].DoubleVal = CDV->getElementAsDouble(i); in getConstantValue()
985 std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(), in getConstantValue()
992 Result.AggregateVal[i].IntVal = cast<ConstantInt>( in getConstantValue()
995 Result.AggregateVal[i].IntVal = in getConstantValue()
1002 Result.AggregateVal[i].IntVal = APInt( in getConstantValue()
1050 for (unsigned i = 0; i < Val.AggregateVal.size(); ++i) { in StoreValueToMemory()
1052 *(((double*)Ptr)+i) = Val.AggregateVal[i].DoubleVal; in StoreValueToMemory()
1054 *(((float*)Ptr)+i) = Val.AggregateVal[i].FloatVal; in StoreValueToMemory()
1056 unsigned numOfBytes =(Val.AggregateVal[i].IntVal.getBitWidth()+7)/8; in StoreValueToMemory()
1057 StoreIntToMemory(Val.AggregateVal[i].IntVal, in StoreValueToMemory()
1104 Result.AggregateVal.resize(numElems); in LoadValueFromMemory()
1106 Result.AggregateVal[i].FloatVal = *((float*)Ptr+i); in LoadValueFromMemory()
1109 Result.AggregateVal.resize(numElems); in LoadValueFromMemory()
1111 Result.AggregateVal[i].DoubleVal = *((double*)Ptr+i); in LoadValueFromMemory()
1117 Result.AggregateVal.resize(numElems, intZero); in LoadValueFromMemory()
1119 LoadIntFromMemory(Result.AggregateVal[i].IntVal, in LoadValueFromMemory()