Lines Matching refs:AggregateVal

614         Result.AggregateVal.resize(elemNum);  in getConstantValue()
618 Result.AggregateVal[i].IntVal = in getConstantValue()
622 Result.AggregateVal[i] = getConstantValue(ElemUndef); in getConstantValue()
633 Result.AggregateVal.resize(elemNum); in getConstantValue()
636 Result.AggregateVal[i].IntVal = in getConstantValue()
936 Result.AggregateVal.resize(elemNum); in getConstantValue()
942 std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(), in getConstantValue()
949 Result.AggregateVal[i].FloatVal = cast<ConstantFP>( in getConstantValue()
955 Result.AggregateVal[i].FloatVal = CDV->getElementAsFloat(i); in getConstantValue()
964 std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(), in getConstantValue()
971 Result.AggregateVal[i].DoubleVal = cast<ConstantFP>( in getConstantValue()
977 Result.AggregateVal[i].DoubleVal = CDV->getElementAsDouble(i); in getConstantValue()
986 std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(), in getConstantValue()
993 Result.AggregateVal[i].IntVal = cast<ConstantInt>( in getConstantValue()
996 Result.AggregateVal[i].IntVal = in getConstantValue()
1003 Result.AggregateVal[i].IntVal = APInt( in getConstantValue()
1077 for (unsigned i = 0; i < Val.AggregateVal.size(); ++i) { in StoreValueToMemory()
1079 *(((double*)Ptr)+i) = Val.AggregateVal[i].DoubleVal; in StoreValueToMemory()
1081 *(((float*)Ptr)+i) = Val.AggregateVal[i].FloatVal; in StoreValueToMemory()
1083 unsigned numOfBytes =(Val.AggregateVal[i].IntVal.getBitWidth()+7)/8; in StoreValueToMemory()
1084 StoreIntToMemory(Val.AggregateVal[i].IntVal, in StoreValueToMemory()
1158 Result.AggregateVal.resize(numElems); in LoadValueFromMemory()
1160 Result.AggregateVal[i].FloatVal = *((float*)Ptr+i); in LoadValueFromMemory()
1163 Result.AggregateVal.resize(numElems); in LoadValueFromMemory()
1165 Result.AggregateVal[i].DoubleVal = *((double*)Ptr+i); in LoadValueFromMemory()
1171 Result.AggregateVal.resize(numElems, intZero); in LoadValueFromMemory()
1173 LoadIntFromMemory(Result.AggregateVal[i].IntVal, in LoadValueFromMemory()