Searched refs:RefLVal (Results 1 – 4 of 4) sorted by relevance
/external/llvm-project/clang/lib/CodeGen/ |
D | CGExpr.cpp | 2477 CodeGenFunction::EmitLoadOfReference(LValue RefLVal, in EmitLoadOfReference() argument 2481 Builder.CreateLoad(RefLVal.getAddress(*this), RefLVal.isVolatile()); in EmitLoadOfReference() 2482 CGM.DecorateInstructionWithTBAA(Load, RefLVal.getTBAAInfo()); in EmitLoadOfReference() 2485 RefLVal.getType()->getPointeeType(), PointeeBaseInfo, PointeeTBAAInfo, in EmitLoadOfReference() 2490 LValue CodeGenFunction::EmitLoadOfReferenceLValue(LValue RefLVal) { in EmitLoadOfReferenceLValue() argument 2493 Address PointeeAddr = EmitLoadOfReference(RefLVal, &PointeeBaseInfo, in EmitLoadOfReferenceLValue() 2495 return MakeAddrLValue(PointeeAddr, RefLVal.getType()->getPointeeType(), in EmitLoadOfReferenceLValue() 4402 LValue RefLVal = in EmitLValueForField() local 4405 RefLVal.getQuals().addVolatile(); in EmitLValueForField() 4406 addr = EmitLoadOfReference(RefLVal, &FieldBaseInfo, &FieldTBAAInfo); in EmitLValueForField()
|
D | CodeGenFunction.h | 2412 Address EmitLoadOfReference(LValue RefLVal, 2415 LValue EmitLoadOfReferenceLValue(LValue RefLVal); 2419 LValue RefLVal = MakeAddrLValue(RefAddr, RefTy, LValueBaseInfo(Source), 2421 return EmitLoadOfReferenceLValue(RefLVal);
|
D | CGOpenMPRuntime.cpp | 933 LValue RefLVal = CGF.MakeAddrLValue(BaseLV.getAddress(CGF), BaseTy); in loadToBegin() local 934 BaseLV = CGF.EmitLoadOfReferenceLValue(RefLVal); in loadToBegin() 3765 LValue RefLVal = in emitTaskPrivateMappingFunction() local 3768 RefLVal.getAddress(CGF), RefLVal.getType()->castAs<PointerType>()); in emitTaskPrivateMappingFunction()
|
/external/clang/lib/CodeGen/ |
D | CGOpenMPRuntime.cpp | 3483 auto RefLVal = CGF.MakeAddrLValue(CGF.GetAddrOfLocalVar(VD), VD->getType()); in emitTaskPrivateMappingFunction() local 3485 RefLVal.getAddress(), RefLVal.getType()->castAs<PointerType>()); in emitTaskPrivateMappingFunction()
|