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

References

tools/clang/lib/CodeGen/CodeGenModule.cpp
  185     ObjCRuntime.reset(CreateGNUObjCRuntime(*this));
  192     ObjCRuntime.reset(CreateMacObjCRuntime(*this));
  403   if (ObjCRuntime)
  404     if (llvm::Function *ObjCInitFunction = ObjCRuntime->ModuleInitFunction())
 5322       ObjCRuntime->GenerateProtocol(Proto);
 5329     ObjCRuntime->GenerateCategory(cast<ObjCCategoryImplDecl>(D));
 5336     ObjCRuntime->GenerateClass(OMD);
 5352     ObjCRuntime->RegisterAlias(cast<ObjCCompatibleAliasDecl>(D));
 5740     return ObjCRuntime->GetEHType(Ty);
tools/clang/lib/CodeGen/CodeGenModule.h
  569     if (!ObjCRuntime) createObjCRuntime();
  570     return *ObjCRuntime;
  574   bool hasObjCRuntime() { return !!ObjCRuntime; }