reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/CodeGen/CGExprScalar.cpp
 2828   QualType LHSTy = E->getLHS()->getType();
 2831   if (E->getComputationResultType()->isAnyComplexType())
 2832     return CGF.EmitScalarCompoundAssignWithComplex(E, Result);
 2836   OpInfo.RHS = Visit(E->getRHS());
 2837   OpInfo.Ty = E->getComputationResultType();
 2838   OpInfo.Opcode = E->getOpcode();
 2839   OpInfo.FPFeatures = E->getFPFeatures();
 2840   OpInfo.E = E;
 2842   LValue LHSLV = EmitCheckedLValue(E->getLHS(), CodeGenFunction::TCK_Store);
 2880             EmitScalarConversion(OpInfo.RHS, E->getRHS()->getType(), LHSTy,
 2881                                  E->getExprLoc()),
 2892     OpInfo.LHS = EmitLoadOfLValue(LHSLV, E->getExprLoc());
 2901     OpInfo.LHS = EmitLoadOfLValue(LHSLV, E->getExprLoc());
 2903   SourceLocation Loc = E->getExprLoc();
 2905       EmitScalarConversion(OpInfo.LHS, LHSTy, E->getComputationLHSType(), Loc);
 2912   Result = EmitScalarConversion(Result, E->getComputationResultType(), LHSTy,
 2919         LHSLV, RValue::get(atomicPHI), RValue::get(Result), E->getExprLoc());