HomeSort by: relevance | last modified time | path
    Searched refs:RemovePred (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/
ELFObjcopy.cpp 207 Object &Obj, SectionPred &RemovePred,
234 RemovePred = [ShouldReplace, RemovePred](const SectionBase &Sec) {
235 return ShouldReplace(Sec) || RemovePred(Sec);
343 SectionPred RemovePred = [](const SectionBase &) { return false; };
347 RemovePred = [&Config](const SectionBase &Sec) {
353 RemovePred = [RemovePred](const SectionBase &Sec) {
354 return isDWOSection(Sec) || RemovePred(Sec);
358 RemovePred = [RemovePred, &Obj](const SectionBase &Sec)
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/MachO/
MachOObjcopy.cpp 53 SectionPred RemovePred = [](const std::unique_ptr<Section> &) {
58 RemovePred = [&Config, RemovePred](const std::unique_ptr<Section> &Sec) {
65 RemovePred = [RemovePred](const std::unique_ptr<Section> &Sec) {
69 return RemovePred(Sec);
74 // Overwrite RemovePred because --only-section takes priority.
75 RemovePred = [&Config](const std::unique_ptr<Section> &Sec) {
80 return Obj.removeSections(RemovePred);
97 auto RemovePred = [Config, &Obj](const std::unique_ptr<SymbolEntry> &N)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGFast.cpp 92 /// RemovePred - removes a predecessor edge from SUnit SU.
94 void RemovePred(SUnit *SU, const SDep &D) {
95 SU->removePred(D);
299 RemovePred(SU, ChainPred);
305 RemovePred(SU, Pred);
312 RemovePred(SU, Pred);
319 RemovePred(SuccDep, D);
327 RemovePred(SuccDep, D);
372 RemovePred(DelDeps[i].first, DelDeps[i].second);
407 RemovePred(DelDeps[i].first, DelDeps[i].second)
    [all...]
ScheduleDAGRRList.cpp 238 /// RemovePred - removes a predecessor edge from SUnit SU.
241 void RemovePred(SUnit *SU, const SDep &D) {
242 Topo.RemovePred(SU, D.getSUnit());
243 SU->removePred(D);
1079 RemovePred(SU, Pred);
1084 RemovePred(SU, Pred);
1089 RemovePred(SU, Pred);
1095 RemovePred(SuccDep, D);
1106 RemovePred(SuccDep, D);
1211 RemovePred(DelDep.first, DelDep.second)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
ScheduleDAG.h 394 void removePred(const SDep &D);
764 void RemovePred(SUnit *M, SUnit *N);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
ScheduleDAG.cpp 116 // removePred(PredDep) + addPred(D).
175 void SUnit::removePred(const SDep &D) {
566 void ScheduleDAGTopologicalSort::RemovePred(SUnit *M, SUnit *N) {
MachinePipeliner.cpp 914 I.removePred(RemoveDeps[i]);
956 Topo.RemovePred(&I, Deps[i].getSUnit());
957 I.removePred(Deps[i]);
965 Topo.RemovePred(LastSU, Deps[i].getSUnit());
966 LastSU->removePred(Deps[i]);
1212 SU->removePred(D);

Completed in 71 milliseconds