Home
last modified time | relevance | path

Searched refs:DebugVariablesStack (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DDroppedVariableStats.cpp29 DebugVariablesStack.push_back({DenseMap<const Function *, DebugVariables>()}); in setup()
34 assert(!DebugVariablesStack.empty() && in cleanup()
37 DebugVariablesStack.pop_back(); in cleanup()
113 for (auto &DebugVariablesMap : llvm::drop_end(DebugVariablesStack)) in removeVarFromAllSets()
H A DDroppedVariableStatsIR.cpp58 auto &DebugVariables = DebugVariablesStack.back()[F]; in runOnFunction()
69 DebugVariables &DbgVariables = DebugVariablesStack.back()[F]; in calculateDroppedVarStatsOnFunction()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DDroppedVariableStatsMIR.cpp38 auto &DebugVariables = DebugVariablesStack.back()[&MF->getFunction()]; in runOnMachineFunction()
49 DebugVariables &DbgVariables = DebugVariablesStack.back()[Func]; in calculateDroppedVarStatsOnMachineFunction()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DDroppedVariableStats.h69 SmallVector<DenseMap<const Function *, DebugVariables>> DebugVariablesStack; variable