Home
last modified time | relevance | path

Searched refs:getDebugInfo (Results 1 – 25 of 33) sorted by relevance

12

/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DCodeGenOptions.h448 return getDebugInfo() >= codegenoptions::DebugInfoConstructor; in hasReducedDebugInfo()
453 return getDebugInfo() >= codegenoptions::UnusedTypeInfo; in hasMaybeUnusedDebugInfo()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/
H A DGlobalVariable.h185 void getDebugInfo(SmallVectorImpl<DIGlobalVariableExpression *> &GVs) const;
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDecl.cpp106 if (CGDebugInfo *DI = getDebugInfo()) in EmitDecl()
111 if (CGDebugInfo *DI = getDebugInfo()) in EmitDecl()
134 if (CGDebugInfo *DI = getDebugInfo()) in EmitDecl()
138 if (CGDebugInfo *DI = getDebugInfo()) in EmitDecl()
142 if (CGDebugInfo *DI = getDebugInfo()) in EmitDecl()
150 if (CGDebugInfo *DI = getDebugInfo()) in EmitDecl()
175 if (CGDebugInfo *DI = getDebugInfo()) in EmitDecl()
468 CGDebugInfo *DI = getDebugInfo(); in EmitStaticVarDecl()
1432 auto *DI = getDebugInfo(); in EmitAutoVarAlloca()
2579 if (CGDebugInfo *DI = getDebugInfo()) { in EmitParmDecl()
H A DCodeGenFunction.cpp354 if (CGDebugInfo *DI = getDebugInfo()) { in FinishFunction()
373 if (CGDebugInfo *DI = getDebugInfo()) { in FinishFunction()
397 if (CGDebugInfo *DI = getDebugInfo()) in FinishFunction()
982 if (CGDebugInfo *DI = getDebugInfo()) { in StartFunction()
1186 if (CGDebugInfo *DI = getDebugInfo()) in StartFunction()
2285 if (CGDebugInfo *Dbg = getDebugInfo()) in EmitDeclRefExprDbgValue()
2666 if (CGDebugInfo *DI = getDebugInfo()) in SourceLocToDebugLoc()
H A DCGExpr.cpp3626 if (!ArrayBase || !CGF.getDebugInfo()) in IsPreserveAIArrayBase()
3696 DbgInfo = CGF.getDebugInfo()->getOrCreateStandaloneType(*arrayType, loc); in emitArraySubscriptGEP()
4247 llvm::DIType *DbgInfo = CGF.getDebugInfo()->getOrCreateStandaloneType( in emitPreserveStructAccess()
4295 (!getDebugInfo() || !rec->hasAttr<BPFPreserveAccessIndexAttr>())) { in EmitLValueForField()
4300 llvm::DIType *DbgInfo = getDebugInfo()->getOrCreateRecordType( in EmitLValueForField()
4389 (getDebugInfo() && rec->hasAttr<BPFPreserveAccessIndexAttr>())) { in EmitLValueForField()
4391 llvm::DIType *DbgInfo = getDebugInfo()->getOrCreateStandaloneType(base.getType(), in EmitLValueForField()
4404 (!getDebugInfo() || !rec->hasAttr<BPFPreserveAccessIndexAttr>())) in EmitLValueForField()
5308 if (CGDebugInfo *DI = getDebugInfo()) { in EmitCall()
H A DCGCoroutine.cpp605 CGDebugInfo *DI = getDebugInfo(); in EmitCoroutineBody()
H A DCGDebugInfo.cpp67 : CGM(CGM), DebugKind(CGM.getCodeGenOpts().getDebugInfo()), in CGDebugInfo()
95 auto *DI = CGF->getDebugInfo(); in init()
130 if (!CGF.getDebugInfo()) { in ApplyDebugLocation()
149 if (!CGF.getDebugInfo()) { in ApplyInlineDebugLocation()
153 auto &DI = *CGF.getDebugInfo(); in ApplyInlineDebugLocation()
165 auto &DI = *CGF->getDebugInfo(); in ~ApplyInlineDebugLocation()
2227 if (CGM.getCodeGenOpts().getDebugInfo() <= in addHeapAllocSiteMetadata()
H A DCGExprCXX.cpp1650 if (getDebugInfo()) in EmitCXXNewExpr()
1652 getDebugInfo()->addHeapAllocSiteMetadata(newCall, allocType, in EmitCXXNewExpr()
H A DCodeGenAction.cpp965 if (CI.getCodeGenOpts().getDebugInfo() != codegenoptions::NoDebugInfo && in CreateASTConsumer()
H A DCGStmt.cpp43 if (CGDebugInfo *DI = getDebugInfo()) { in EmitStopPoint()
616 if (CGDebugInfo *DI = getDebugInfo()) { in EmitLabel()
H A DCGVTables.cpp1012 CodeGenOpts.getDebugInfo() != codegenoptions::NoDebugInfo) && in getVTableLinkage()
H A DCodeGenFunction.h906 if (CGDebugInfo *DI = CGF.getDebugInfo())
918 if (CGDebugInfo *DI = CGF.getDebugInfo())
1926 CGDebugInfo *getDebugInfo() {
H A DCGBlocks.cpp1412 if (CGDebugInfo *DI = getDebugInfo()) { in setBlockContextParameter()
1580 if (CGDebugInfo *DI = getDebugInfo()) { in GenerateBlockFunction()
H A DBackendUtil.cpp826 if (CodeGenOpts.getDebugInfo() == codegenoptions::NoDebugInfo) in CreatePasses()
H A DCGCall.cpp4233 if ((disabledDebugInfo = isa<CXXDefaultArgExpr>(E) && CGF.getDebugInfo())) in DisableDebugLocationUpdates()
5305 if (getDebugInfo() && TargetDecl && in EmitCall()
5307 getDebugInfo()->addHeapAllocSiteMetadata(CI, RetTy->getPointeeType(), Loc); in EmitCall()
H A DCGObjC.cpp1718 CGDebugInfo *DI = getDebugInfo(); in EmitObjCForCollectionStmt()
3624 CGDebugInfo *DI = getDebugInfo(); in EmitObjCAutoreleasePoolStmt()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DConstantMerge.cpp82 From->getDebugInfo(MDs); in copyDebugLocMetadata()
H A DStripSymbols.cpp319 GV.getDebugInfo(GVEs); in stripDeadDebugInfoImpl()
H A DGlobalOpt.cpp479 GV->getDebugInfo(GVs); in transferSRADebugInfo()
1178 GV->getDebugInfo(GVs); in TryToShrinkGlobalToBoolean()
/freebsd-13.1/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DFrontendActions.cpp171 (CI.getCodeGenOpts().getDebugInfo() != codegenoptions::NoDebugInfo)); in CreateASTConsumer()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionParser.cpp1057 should_create_file |= m_compiler->getCodeGenOpts().getDebugInfo() == in ParseInternal()
/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DMetadata.cpp1549 void GlobalVariable::getDebugInfo( in getDebugInfo() function in GlobalVariable
H A DCore.cpp1280 GV->getDebugInfo(GVEs); in LLVMGetDebugLocDirectory()
1304 GV->getDebugInfo(GVEs); in LLVMGetDebugLocFilename()
1327 GV->getDebugInfo(GVEs); in LLVMGetDebugLocLine()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBTFDebug.cpp1172 Global.getDebugInfo(GVs); in processGlobals()
/freebsd-13.1/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInvocation.cpp1631 Opts.getDebugInfo() == codegenoptions::LimitedDebugInfo) in ParseCodeGenArgs()
1634 Opts.getDebugInfo() == codegenoptions::DebugInfoConstructor) in ParseCodeGenArgs()
1936 if (NeedLocTracking && Opts.getDebugInfo() == codegenoptions::NoDebugInfo) in ParseCodeGenArgs()

12