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

References

tools/clang/lib/CodeGen/CodeGenModule.cpp
  210     OpenMPRuntime.reset(new CGOpenMPRuntimeNVPTX(*this));
  214       OpenMPRuntime.reset(new CGOpenMPSIMDRuntime(*this));
  216       OpenMPRuntime.reset(new CGOpenMPRuntime(*this));
  371   if (OpenMPRuntime)
  372     OpenMPRuntime->clear();
  412   if (OpenMPRuntime) {
  414             OpenMPRuntime->emitRequiresDirectiveRegFun()) {
  417     OpenMPRuntime->createOffloadEntriesAndInfoMetadata();
  418     OpenMPRuntime->clear();
 2126     if (LangOpts.OpenMP && OpenMPRuntime && OpenMPRuntime->emitTargetGlobal(D))
 2126     if (LangOpts.OpenMP && OpenMPRuntime && OpenMPRuntime->emitTargetGlobal(D))
 2462     if (OpenMPRuntime && OpenMPRuntime->emitTargetGlobal(GD))
 2462     if (OpenMPRuntime && OpenMPRuntime->emitTargetGlobal(GD))
 2536   if (LangOpts.OpenMP && isa<FunctionDecl>(Global) && OpenMPRuntime &&
 2537       OpenMPRuntime->emitDeclareVariant(GD, /*IsForDefinition=*/false))
 2748          OpenMPRuntime && "Expected OpenMP device mode.");
 3089     if (getLangOpts().OpenMPIsDevice && OpenMPRuntime &&
 3090         !OpenMPRuntime->markAsGlobalTarget(GD) && FD->isDefined() &&
 3105     if (LangOpts.OpenMP && OpenMPRuntime)
 3106       (void)OpenMPRuntime->emitDeclareVariant(GD, /*IsForDefinition=*/true);
 3747     if (OpenMPRuntime->hasAllocateAttributeForGlobalVar(D, AS))
 3867   if (LangOpts.OpenMPIsDevice && OpenMPRuntime &&
 3868       OpenMPRuntime->emitTargetGlobalVariable(D))
 4386   if (LangOpts.OpenMP && OpenMPRuntime &&
 4387       OpenMPRuntime->emitDeclareVariant(GD, /*IsForDefinition=*/true))
tools/clang/lib/CodeGen/CodeGenModule.h
  584     assert(OpenMPRuntime != nullptr);
  585     return *OpenMPRuntime;