Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:APValue

1454   // Now build an APValue representing the std::initializer_list.
1455 APValue initListValue(APValue::UninitStruct(), 0, 2);
1456 APValue &startField = initListValue.getStructField(0);
1457 APValue::LValuePathEntry startOffsetPathEntry;
1459 startField = APValue(APValue::LValueBase(backingArray),
1465 APValue &endField = initListValue.getStructField(1);
1466 APValue::LValuePathEntry endOffsetPathEntry;
1468 endField = APValue(APValue::LValueBase(backingArray),
1473 APValue &sizeField = initListValue.getStructField(1);
1474 sizeField = APValue(llvm::APSInt(numElements));