Home
last modified time | relevance | path

Searched refs:refLVal (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/CIR/CodeGen/
H A DCIRGenExpr.cpp1641 Address CIRGenFunction::emitLoadOfReference(LValue refLVal, mlir::Location loc, in emitLoadOfReference() argument
1643 if (refLVal.isVolatile()) in emitLoadOfReference()
1647 builder.create<cir::LoadOp>(loc, refLVal.getAddress().getElementType(), in emitLoadOfReference()
1648 refLVal.getAddress().getPointer()); in emitLoadOfReference()
1652 QualType pointeeType = refLVal.getType()->getPointeeType(); in emitLoadOfReference()
1661 LValue refLVal = makeAddrLValue(refAddr, refTy, LValueBaseInfo(source)); in emitLoadOfReferenceLValue() local
1664 Address pointeeAddr = emitLoadOfReference(refLVal, loc, &pointeeBaseInfo); in emitLoadOfReferenceLValue()
1665 return makeAddrLValue(pointeeAddr, refLVal.getType()->getPointeeType(), in emitLoadOfReferenceLValue()
H A DCIRGenFunction.h988 Address emitLoadOfReference(LValue refLVal, mlir::Location loc,