Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntimeGPU.cpp1016 auto I = Rt.FunctionGlobalizedDecls.try_emplace(CGF.CurFn).first; in emitTeamsOutlinedFunction()
1047 const auto I = FunctionGlobalizedDecls.find(CGF.CurFn); in emitGenericVarsProlog()
1048 if (I == FunctionGlobalizedDecls.end()) in emitGenericVarsProlog()
1107 const auto I = FunctionGlobalizedDecls.find(CGF.CurFn); in isDelayedVariableLengthDecl()
1108 if (I == FunctionGlobalizedDecls.end()) in isDelayedVariableLengthDecl()
1155 const auto I = FunctionGlobalizedDecls.find(CGF.CurFn); in emitGenericVarsEpilog()
1156 if (I != FunctionGlobalizedDecls.end()) { in emitGenericVarsEpilog()
1983 assert(FunctionGlobalizedDecls.count(CGF.CurFn) == 0 && in emitFunctionProlog()
2015 auto I = FunctionGlobalizedDecls.try_emplace(CGF.CurFn).first; in emitFunctionProlog()
2090 auto I = FunctionGlobalizedDecls.find(CGF.CurFn); in getAddressOfLocalVariable()
[all …]
H A DCGOpenMPRuntimeGPU.h385 llvm::SmallDenseMap<llvm::Function *, FunctionData> FunctionGlobalizedDecls; variable