Home
last modified time | relevance | path

Searched refs:RemovePred (Results 1 – 8 of 8) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/ObjCopy/wasm/
H A DWasmObjcopy.cpp61 SectionPred RemovePred = [](const Section &) { return false; }; in removeSections() local
65 RemovePred = [&Config](const Section &Sec) { in removeSections()
71 RemovePred = [RemovePred](const Section &Sec) { in removeSections()
72 return RemovePred(Sec) || isDebugSection(Sec); in removeSections()
77 RemovePred = [RemovePred](const Section &Sec) { in removeSections()
78 return RemovePred(Sec) || isDebugSection(Sec) || isLinkerSection(Sec) || in removeSections()
84 RemovePred = [&Config](const Section &Sec) { in removeSections()
92 RemovePred = [&Config](const Section &Sec) { in removeSections()
100 RemovePred = [&Config, RemovePred](const Section &Sec) { in removeSections()
105 return RemovePred(Sec); in removeSections()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/ObjCopy/ELF/
H A DELFObjcopy.cpp370 SectionPred RemovePred = [](const SectionBase &) { return false; }; in replaceAndRemoveSections() local
374 RemovePred = [&Config](const SectionBase &Sec) { in replaceAndRemoveSections()
380 RemovePred = [RemovePred](const SectionBase &Sec) { in replaceAndRemoveSections()
381 return isDWOSection(Sec) || RemovePred(Sec); in replaceAndRemoveSections()
385 RemovePred = [RemovePred, &Obj](const SectionBase &Sec) { in replaceAndRemoveSections()
386 return onlyKeepDWOPred(Obj, Sec) || RemovePred(Sec); in replaceAndRemoveSections()
390 RemovePred = [RemovePred, &Obj](const SectionBase &Sec) { in replaceAndRemoveSections()
391 if (RemovePred(Sec)) in replaceAndRemoveSections()
408 RemovePred = [RemovePred](const SectionBase &Sec) { in replaceAndRemoveSections()
409 return RemovePred(Sec) || Sec.ParentSegment == nullptr; in replaceAndRemoveSections()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/ObjCopy/MachO/
H A DMachOObjcopy.cpp56 SectionPred RemovePred = [](const std::unique_ptr<Section> &) { in removeSections() local
61 RemovePred = [&Config, RemovePred](const std::unique_ptr<Section> &Sec) { in removeSections()
68 RemovePred = [RemovePred](const std::unique_ptr<Section> &Sec) { in removeSections()
72 return RemovePred(Sec); in removeSections()
78 RemovePred = [&Config](const std::unique_ptr<Section> &Sec) { in removeSections()
83 return Obj.removeSections(RemovePred); in removeSections()
102 auto RemovePred = [&Config, &MachOConfig, in updateAndRemoveSymbols() local
122 Obj.SymTable.removeSymbols(RemovePred); in updateAndRemoveSymbols()
154 LoadCommandPred RemovePred = [&RPathsToRemove, in processLoadCommands() local
171 if (Error E = Obj.removeLoadCommands(RemovePred)) in processLoadCommands()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGFast.cpp90 void RemovePred(SUnit *SU, const SDep &D) { in RemovePred() function in __anonc41bd3930111::ScheduleDAGFast
295 RemovePred(SU, ChainPred); in CopyAndMoveSuccessors()
301 RemovePred(SU, Pred); in CopyAndMoveSuccessors()
308 RemovePred(SU, Pred); in CopyAndMoveSuccessors()
315 RemovePred(SuccDep, D); in CopyAndMoveSuccessors()
323 RemovePred(SuccDep, D); in CopyAndMoveSuccessors()
368 RemovePred(DelDeps[i].first, DelDeps[i].second); in CopyAndMoveSuccessors()
403 RemovePred(DelDeps[i].first, DelDeps[i].second); in InsertCopiesAndMoveSuccs()
H A DScheduleDAGRRList.cpp241 void RemovePred(SUnit *SU, const SDep &D) { in RemovePred() function in __anonecce62c50111::ScheduleDAGRRList
242 Topo.RemovePred(SU, D.getSUnit()); in RemovePred()
1082 RemovePred(SU, Pred); in TryUnfoldSU()
1087 RemovePred(SU, Pred); in TryUnfoldSU()
1092 RemovePred(SU, Pred); in TryUnfoldSU()
1098 RemovePred(SuccDep, D); in TryUnfoldSU()
1109 RemovePred(SuccDep, D); in TryUnfoldSU()
1214 RemovePred(DelSU, DelD); in CopyAndMoveSuccessors()
1258 RemovePred(DelSU, DelD); in InsertCopiesAndMoveSuccs()
3057 scheduleDAG->RemovePred(SuccSU, Edge); in PrescheduleNodesWithMultipleUses()
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DScheduleDAG.h763 void RemovePred(SUnit *M, SUnit *N);
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DScheduleDAG.cpp566 void ScheduleDAGTopologicalSort::RemovePred(SUnit *M, SUnit *N) { in RemovePred() function in ScheduleDAGTopologicalSort
H A DMachinePipeliner.cpp976 Topo.RemovePred(&I, Deps[i].getSUnit()); in changeDependences()
985 Topo.RemovePred(LastSU, Deps[i].getSUnit()); in changeDependences()