Searched refs:RemovePred (Results 1 – 7 of 7) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/ |
H A D | ELFObjcopy.cpp | 207 Object &Obj, SectionPred &RemovePred, in replaceDebugSections() argument 234 RemovePred = [ShouldReplace, RemovePred](const SectionBase &Sec) { in replaceDebugSections() 235 return ShouldReplace(Sec) || RemovePred(Sec); in replaceDebugSections() 343 SectionPred RemovePred = [](const SectionBase &) { return false; }; in replaceAndRemoveSections() local 347 RemovePred = [&Config](const SectionBase &Sec) { in replaceAndRemoveSections() 353 RemovePred = [RemovePred](const SectionBase &Sec) { in replaceAndRemoveSections() 354 return isDWOSection(Sec) || RemovePred(Sec); in replaceAndRemoveSections() 358 RemovePred = [RemovePred, &Obj](const SectionBase &Sec) { in replaceAndRemoveSections() 359 return onlyKeepDWOPred(Obj, Sec) || RemovePred(Sec); in replaceAndRemoveSections() 363 RemovePred = [RemovePred, &Obj](const SectionBase &Sec) { in replaceAndRemoveSections() [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/MachO/ |
H A D | MachOObjcopy.cpp | 53 SectionPred RemovePred = [](const std::unique_ptr<Section> &) { in removeSections() local 58 RemovePred = [&Config, RemovePred](const std::unique_ptr<Section> &Sec) { in removeSections() 65 RemovePred = [RemovePred](const std::unique_ptr<Section> &Sec) { in removeSections() 69 return RemovePred(Sec); in removeSections() 75 RemovePred = [&Config](const std::unique_ptr<Section> &Sec) { in removeSections() 80 return Obj.removeSections(RemovePred); in removeSections() 97 auto RemovePred = [Config, &Obj](const std::unique_ptr<SymbolEntry> &N) { in updateAndRemoveSymbols() local 113 Obj.SymTable.removeSymbols(RemovePred); in updateAndRemoveSymbols() 145 LoadCommandPred RemovePred = [&RPathsToRemove, in processLoadCommands() local 162 if (Error E = Obj.removeLoadCommands(RemovePred)) in processLoadCommands()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
H A D | ScheduleDAGFast.cpp | 94 void RemovePred(SUnit *SU, const SDep &D) { in RemovePred() function in __anon50dbaec70111::ScheduleDAGFast 299 RemovePred(SU, ChainPred); in CopyAndMoveSuccessors() 305 RemovePred(SU, Pred); in CopyAndMoveSuccessors() 312 RemovePred(SU, Pred); in CopyAndMoveSuccessors() 319 RemovePred(SuccDep, D); in CopyAndMoveSuccessors() 327 RemovePred(SuccDep, D); in CopyAndMoveSuccessors() 372 RemovePred(DelDeps[i].first, DelDeps[i].second); in CopyAndMoveSuccessors() 407 RemovePred(DelDeps[i].first, DelDeps[i].second); in InsertCopiesAndMoveSuccs()
|
H A D | ScheduleDAGRRList.cpp | 241 void RemovePred(SUnit *SU, const SDep &D) { in RemovePred() function in __anona8f1daf90111::ScheduleDAGRRList 242 Topo.RemovePred(SU, D.getSUnit()); in RemovePred() 1079 RemovePred(SU, Pred); in TryUnfoldSU() 1084 RemovePred(SU, Pred); in TryUnfoldSU() 1089 RemovePred(SU, Pred); in TryUnfoldSU() 1095 RemovePred(SuccDep, D); in TryUnfoldSU() 1106 RemovePred(SuccDep, D); in TryUnfoldSU() 1211 RemovePred(DelDep.first, DelDep.second); in CopyAndMoveSuccessors() 1255 RemovePred(DelDep.first, DelDep.second); in InsertCopiesAndMoveSuccs() 3038 scheduleDAG->RemovePred(SuccSU, Edge); in PrescheduleNodesWithMultipleUses()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
H A D | ScheduleDAG.h | 764 void RemovePred(SUnit *M, SUnit *N);
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
H A D | ScheduleDAG.cpp | 566 void ScheduleDAGTopologicalSort::RemovePred(SUnit *M, SUnit *N) { in RemovePred() function in ScheduleDAGTopologicalSort
|
H A D | MachinePipeliner.cpp | 956 Topo.RemovePred(&I, Deps[i].getSUnit()); in changeDependences() 965 Topo.RemovePred(LastSU, Deps[i].getSUnit()); in changeDependences()
|