Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/ProfileData/Coverage/
H A DCoverageMapping.cpp194 struct StackElem { in evaluate() struct
204 std::stack<StackElem> CounterStack; in evaluate()
210 StackElem &Current = CounterStack.top(); in evaluate()
227 if (Current.VisitCount == StackElem::KNeverVisited) { in evaluate()
228 CounterStack.push(StackElem{E.LHS}); in evaluate()
229 Current.VisitCount = StackElem::KVisitedOnce; in evaluate()
230 } else if (Current.VisitCount == StackElem::KVisitedOnce) { in evaluate()
232 CounterStack.push(StackElem{E.RHS}); in evaluate()
233 Current.VisitCount = StackElem::KVisitedTwice; in evaluate()
563 struct StackElem { in getMaxCounterID() struct
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyDebugFixup.cpp85 struct StackElem { in runOnMachineFunction() struct
89 std::vector<StackElem> Stack; in runOnMachineFunction()
/freebsd/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBPFAbstractMemberAccess.cpp815 auto StackElem = CallStack.top(); in HasPreserveFieldInfoCall() local
816 if (StackElem.second.Kind == BPFPreserveFieldInfoAI) in HasPreserveFieldInfoCall()
856 auto StackElem = CallStack.top(); in computeBaseAndAccessKey() local
857 Call = StackElem.first; in computeBaseAndAccessKey()
858 CInfo = StackElem.second; in computeBaseAndAccessKey()
938 auto StackElem = CallStack.top(); in computeBaseAndAccessKey() local
939 CInfo = StackElem.second; in computeBaseAndAccessKey()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp1038 const SharingMapTy &StackElem = getStackElemAtLevel(Level); in checkMappableExprComponentListsForDeclAtLevel() local
1039 auto MI = StackElem.MappedExprComponents.find(VD); in checkMappableExprComponentListsForDeclAtLevel()
1040 if (MI != StackElem.MappedExprComponents.end()) in checkMappableExprComponentListsForDeclAtLevel()
1072 const SharingMapTy &StackElem = getTopOfStack(); in getDoacrossDependClauses() local
1073 if (isOpenMPWorksharingDirective(StackElem.Directive)) { in getDoacrossDependClauses()
1074 const DoacrossClauseMapTy &Ref = StackElem.DoacrossDepends; in getDoacrossDependClauses()
1077 return llvm::make_range(StackElem.DoacrossDepends.end(), in getDoacrossDependClauses()
1078 StackElem.DoacrossDepends.end()); in getDoacrossDependClauses()
1083 SharingMapTy &StackElem = getTopOfStack(); in addMappedClassesQualTypes() local
1084 StackElem.MappedClassesQualTypes.insert(QT); in addMappedClassesQualTypes()
[all …]