Lines Matching refs:AggregateVal

604         Result.AggregateVal.resize(elemNum);  in getConstantValue()
608 Result.AggregateVal[i].IntVal = in getConstantValue()
612 Result.AggregateVal[i] = getConstantValue(ElemUndef); in getConstantValue()
625 Result.AggregateVal.resize(elemNum); in getConstantValue()
628 Result.AggregateVal[i].IntVal = in getConstantValue()
637 Result.AggregateVal.resize(elemNum); in getConstantValue()
640 Result.AggregateVal[i].IntVal = in getConstantValue()
950 Result.AggregateVal.resize(elemNum); in getConstantValue()
956 std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(), in getConstantValue()
963 Result.AggregateVal[i].FloatVal = cast<ConstantFP>( in getConstantValue()
969 Result.AggregateVal[i].FloatVal = CDV->getElementAsFloat(i); in getConstantValue()
978 std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(), in getConstantValue()
985 Result.AggregateVal[i].DoubleVal = cast<ConstantFP>( in getConstantValue()
991 Result.AggregateVal[i].DoubleVal = CDV->getElementAsDouble(i); in getConstantValue()
1000 std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(), in getConstantValue()
1007 Result.AggregateVal[i].IntVal = cast<ConstantInt>( in getConstantValue()
1010 Result.AggregateVal[i].IntVal = in getConstantValue()
1017 Result.AggregateVal[i].IntVal = APInt( in getConstantValue()
1070 for (unsigned i = 0; i < Val.AggregateVal.size(); ++i) { in StoreValueToMemory()
1072 *(((double*)Ptr)+i) = Val.AggregateVal[i].DoubleVal; in StoreValueToMemory()
1074 *(((float*)Ptr)+i) = Val.AggregateVal[i].FloatVal; in StoreValueToMemory()
1076 unsigned numOfBytes =(Val.AggregateVal[i].IntVal.getBitWidth()+7)/8; in StoreValueToMemory()
1077 StoreIntToMemory(Val.AggregateVal[i].IntVal, in StoreValueToMemory()
1130 Result.AggregateVal.resize(numElems); in LoadValueFromMemory()
1132 Result.AggregateVal[i].FloatVal = *((float*)Ptr+i); in LoadValueFromMemory()
1135 Result.AggregateVal.resize(numElems); in LoadValueFromMemory()
1137 Result.AggregateVal[i].DoubleVal = *((double*)Ptr+i); in LoadValueFromMemory()
1143 Result.AggregateVal.resize(numElems, intZero); in LoadValueFromMemory()
1145 LoadIntFromMemory(Result.AggregateVal[i].IntVal, in LoadValueFromMemory()