HomeSort by relevance Sort by last modified time
    Searched refs:addPred (Results 1 - 9 of 9) sorted by null

  /external/llvm/lib/CodeGen/
ScheduleDAGInstrs.cpp 287 UseSU->addPred(Dep);
318 DefSU->addPred(SDep(SU, Kind, /*Reg=*/*Alias));
323 DefSU->addPred(Dep);
402 DefSU->addPred(Dep);
450 SU->addPred(dep);
457 DefI->SU->addPred(SDep(SU, SDep::Anti, Reg));
604 SUb->addPred(SDep(SUa, SDep::MayAliasMem));
637 (*I)->addPred(Dep);
662 SUb->addPred(Dep);
842 ExitSU.addPred(Dep)
    [all...]
ScheduleDAG.cpp 63 /// addPred - This adds the specified edge as a pred of the current node if
66 bool SUnit::addPred(const SDep &D, bool Required) {
75 // Extend the latency if needed. Equivalent to removePred(I) + addPred(D).
518 /// AddPred - Updates the topological ordering to accommodate an edge
520 void ScheduleDAGTopologicalSort::AddPred(SUnit *Y, SUnit *X) {
602 /// create a cycle. If so, it is not safe to call AddPred(TargetSU, SU).
MachineScheduler.cpp 509 Topo.AddPred(SuccSU, PredDep.getSUnit());
511 SuccSU->addPred(PredDep, /*Required=*/!PredDep.isArtificial());
    [all...]
  /external/llvm/include/llvm/CodeGen/
ScheduleDAG.h 405 /// addPred - This adds the specified edge as a pred of the current node if
408 bool addPred(const SDep &D, bool Required = true);
725 /// WillCreateCycle - Return true if addPred(TargetSU, SU) creates a cycle.
728 /// AddPred - Updates the topological ordering to accommodate an edge
730 void AddPred(SUnit *Y, SUnit *X);
  /external/llvm/lib/Target/Hexagon/
HexagonMachineScheduler.cpp 34 SUnits[su].addPred(SDep(LastSequentialCall, SDep::Barrier));
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCOpts.cpp 682 void addPred(BasicBlock *Pred) { Preds.push_back(Pred); }
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGFast.cpp 86 /// AddPred - adds a predecessor edge to SUnit SU.
88 void AddPred(SUnit *SU, const SDep &D) {
89 SU->addPred(D);
307 AddPred(LoadSU, ChainPred);
313 AddPred(LoadSU, Pred);
319 AddPred(NewSU, Pred);
327 AddPred(SuccDep, D);
336 AddPred(SuccDep, D);
342 AddPred(NewSU, D);
361 AddPred(NewSU, *I)
    [all...]
ScheduleDAGSDNodes.cpp 502 if (!SU->addPred(Dep) && !Dep.isCtrl() && OpSU->NumRegDefsLeft > 1) {
    [all...]
ScheduleDAGRRList.cpp 197 /// AddPred - adds a predecessor edge to SUnit SU.
200 void AddPred(SUnit *SU, const SDep &D) {
201 Topo.AddPred(SU, D.getSUnit());
202 SU->addPred(D);
    [all...]

Completed in 320 milliseconds