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

References

tools/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp
 4736   if (VD && VD->hasAttr<OMPAllocateDeclAttr>()) {
 4736   if (VD && VD->hasAttr<OMPAllocateDeclAttr>()) {
 4737     const auto *A = VD->getAttr<OMPAllocateDeclAttr>();
 4751       llvm::Type *VarTy = CGF.ConvertTypeForMem(VD->getType());
 4755           llvm::Constant::getNullValue(VarTy), VD->getName(),
 4758       CharUnits Align = CGM.getContext().getDeclAlign(VD);
 4763       llvm::Type *VarTy = CGF.ConvertTypeForMem(VD->getType());
 4767           llvm::Constant::getNullValue(VarTy), VD->getName(),
 4770       CharUnits Align = CGM.getContext().getDeclAlign(VD);
 4776       llvm::Type *VarTy = CGF.ConvertTypeForMem(VD->getType());
 4780           llvm::Constant::getNullValue(VarTy), VD->getName());
 4781       CharUnits Align = CGM.getContext().getDeclAlign(VD);
 4791   VD = VD->getCanonicalDecl();
 4791   VD = VD->getCanonicalDecl();
 4795   auto VDI = I->getSecond().LocalVarData.find(VD);
 4798   if (VD->hasAttrs()) {
 4799     for (specific_attr_iterator<OMPReferencedVarAttr> IT(VD->attr_begin()),
 4800          E(VD->attr_end());