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()
626 Result.AggregateVal.resize(elemNum); in getConstantValue()
629 Result.AggregateVal[i].IntVal = in getConstantValue()
932 Result.AggregateVal.resize(elemNum); in getConstantValue()
938 std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(), in getConstantValue()
945 Result.AggregateVal[i].FloatVal = cast<ConstantFP>( in getConstantValue()
951 Result.AggregateVal[i].FloatVal = CDV->getElementAsFloat(i); in getConstantValue()
960 std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(), in getConstantValue()
967 Result.AggregateVal[i].DoubleVal = cast<ConstantFP>( in getConstantValue()
973 Result.AggregateVal[i].DoubleVal = CDV->getElementAsDouble(i); in getConstantValue()
982 std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(), in getConstantValue()
989 Result.AggregateVal[i].IntVal = cast<ConstantInt>( in getConstantValue()
992 Result.AggregateVal[i].IntVal = in getConstantValue()
999 Result.AggregateVal[i].IntVal = APInt( in getConstantValue()
1047 for (unsigned i = 0; i < Val.AggregateVal.size(); ++i) { in StoreValueToMemory()
1049 *(((double*)Ptr)+i) = Val.AggregateVal[i].DoubleVal; in StoreValueToMemory()
1051 *(((float*)Ptr)+i) = Val.AggregateVal[i].FloatVal; in StoreValueToMemory()
1053 unsigned numOfBytes =(Val.AggregateVal[i].IntVal.getBitWidth()+7)/8; in StoreValueToMemory()
1054 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()