HomeSort by relevance Sort by last modified time
    Searched defs:Taken (Results 1 - 6 of 6) sorted by null

  /external/llvm/lib/Analysis/
BlockFrequencyInfoImpl.cpp 411 BlockMass Taken = D.takeMass(W.Amount);
413 Working[W.TargetNode.Index].getMass() += Taken;
414 DEBUG(debugAssign(*this, D, W.TargetNode, Taken, nullptr));
423 OuterLoop->BackedgeMass[OuterLoop->getHeaderIndex(W.TargetNode)] += Taken;
424 DEBUG(debugAssign(*this, D, W.TargetNode, Taken, "back"));
430 OuterLoop->Exits.push_back(std::make_pair(W.TargetNode, Taken));
431 DEBUG(debugAssign(*this, D, W.TargetNode, Taken, "exit"));
790 BlockMass Taken = D.takeMass(W.Amount);
792 Working[W.TargetNode.Index].getMass() = Taken;
793 DEBUG(debugAssign(*this, D, W.TargetNode, Taken, nullptr))
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
BranchProbabilityInfo.cpp 183 // leads directly to Return Instruction will not be taken.
241 BasicBlock *Taken = BI->getSuccessor(0);
250 std::swap(Taken, NonTaken);
252 BP->setEdgeWeight(BB, Taken, PH_TAKEN_WEIGHT);
258 // as taken, exiting edges as not-taken.
372 BasicBlock *Taken = BI->getSuccessor(0);
376 std::swap(Taken, NonTaken);
378 BP->setEdgeWeight(BB, Taken, ZH_TAKEN_WEIGHT);
  /external/llvm/include/llvm/Analysis/
ScalarEvolution.h 276 /// Note that this does not imply that X is equal to the backedge taken
278 /// predicated backedge taken count of X, we only guarantee that {0,+,1} has
525 /// branch condition evaluates to the not-taken path. This is a temporary
679 EdgeInfo(BasicBlock *Block, const SCEV *Taken, SCEVUnionPredicate &P) :
680 ExitBlock(Block), Taken(Taken), Pred(std::move(P)) {}
686 const SCEV *Taken;
688 /// The SCEV predicated associated with Taken. If Pred doesn't evaluate
689 /// to true, the information in Taken is not valid (or equivalent with
694 /// Information about the backedge-taken count of a loop. This currentl
    [all...]
  /external/regex-re2/lib/codereview/
codereview.py 822 cl.files = ChangedFiles(ui, repo, pats, taken=Taken(ui, repo))
846 def ChangedFiles(ui, repo, pats, taken=None):
847 taken = taken or {}
857 if f in taken:
858 ui.warn("warning: %s already in CL %s\n" % (f, taken[f].name))
865 if taken:
866 l = Sub(l, taken.keys())
876 def Taken(ui, repo)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
LoopStrengthReduce.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp     [all...]

Completed in 691 milliseconds