• Home
  • Raw
  • Download

Lines Matching refs:AggregateVal

611         Result.AggregateVal.resize(elemNum);  in getConstantValue()
615 Result.AggregateVal[i].IntVal = in getConstantValue()
619 Result.AggregateVal[i] = getConstantValue(ElemUndef); in getConstantValue()
630 Result.AggregateVal.resize(elemNum); in getConstantValue()
633 Result.AggregateVal[i].IntVal = in getConstantValue()
930 Result.AggregateVal.resize(elemNum); in getConstantValue()
936 std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(), in getConstantValue()
943 Result.AggregateVal[i].FloatVal = cast<ConstantFP>( in getConstantValue()
949 Result.AggregateVal[i].FloatVal = CDV->getElementAsFloat(i); in getConstantValue()
958 std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(), in getConstantValue()
965 Result.AggregateVal[i].DoubleVal = cast<ConstantFP>( in getConstantValue()
971 Result.AggregateVal[i].DoubleVal = CDV->getElementAsDouble(i); in getConstantValue()
980 std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(), in getConstantValue()
987 Result.AggregateVal[i].IntVal = cast<ConstantInt>( in getConstantValue()
990 Result.AggregateVal[i].IntVal = in getConstantValue()
997 Result.AggregateVal[i].IntVal = APInt( in getConstantValue()
1071 for (unsigned i = 0; i < Val.AggregateVal.size(); ++i) { in StoreValueToMemory()
1073 *(((double*)Ptr)+i) = Val.AggregateVal[i].DoubleVal; in StoreValueToMemory()
1075 *(((float*)Ptr)+i) = Val.AggregateVal[i].FloatVal; in StoreValueToMemory()
1077 unsigned numOfBytes =(Val.AggregateVal[i].IntVal.getBitWidth()+7)/8; in StoreValueToMemory()
1078 StoreIntToMemory(Val.AggregateVal[i].IntVal, in StoreValueToMemory()
1152 Result.AggregateVal.resize(numElems); in LoadValueFromMemory()
1154 Result.AggregateVal[i].FloatVal = *((float*)Ptr+i); in LoadValueFromMemory()
1157 Result.AggregateVal.resize(numElems); in LoadValueFromMemory()
1159 Result.AggregateVal[i].DoubleVal = *((double*)Ptr+i); in LoadValueFromMemory()
1165 Result.AggregateVal.resize(numElems, intZero); in LoadValueFromMemory()
1167 LoadIntFromMemory(Result.AggregateVal[i].IntVal, in LoadValueFromMemory()