Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:RefLVal

2473 CodeGenFunction::EmitLoadOfReference(LValue RefLVal,
2477 Builder.CreateLoad(RefLVal.getAddress(*this), RefLVal.isVolatile());
2478 CGM.DecorateInstructionWithTBAA(Load, RefLVal.getTBAAInfo());
2481 RefLVal.getType()->getPointeeType(), PointeeBaseInfo, PointeeTBAAInfo,
2486 LValue CodeGenFunction::EmitLoadOfReferenceLValue(LValue RefLVal) {
2489 Address PointeeAddr = EmitLoadOfReference(RefLVal, &PointeeBaseInfo,
2491 return MakeAddrLValue(PointeeAddr, RefLVal.getType()->getPointeeType(),
4414 LValue RefLVal =
4417 RefLVal.getQuals().addVolatile();
4418 addr = EmitLoadOfReference(RefLVal, &FieldBaseInfo, &FieldTBAAInfo);