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

  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
BasicBlockUtils.h 47 /// into this vector. If \p KeepOneInputPHIs is true, one-input Phis in
51 bool KeepOneInputPHIs = false);
55 bool KeepOneInputPHIs = false);
61 /// If \p KeepOneInputPHIs is true, one-input Phis in successors of blocks
65 bool KeepOneInputPHIs = false);
68 /// node. If \p KeepOneInputPHIs is true, one-input Phis in successors of
71 bool KeepOneInputPHIs = false);
142 bool KeepOneInputPHIs = false;
162 KeepOneInputPHIs = true;
  /src/external/apache2/llvm/dist/llvm/lib/IR/
BasicBlock.cpp 322 bool KeepOneInputPHIs) {
333 Phi.removeIncomingValue(Pred, !KeepOneInputPHIs);
334 if (KeepOneInputPHIs)
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
BasicBlockUtils.cpp 58 bool KeepOneInputPHIs) {
64 Succ->removePredecessor(BB, KeepOneInputPHIs);
90 bool KeepOneInputPHIs) {
91 DeleteDeadBlocks({BB}, DTU, KeepOneInputPHIs);
95 bool KeepOneInputPHIs) {
106 DetatchDeadBlocks(BBs, DTU ? &Updates : nullptr, KeepOneInputPHIs);
119 bool KeepOneInputPHIs) {
133 DeleteDeadBlocks(DeadBlocks, DTU, KeepOneInputPHIs);
BreakCriticalEdges.cpp 222 DestBB->removePredecessor(TIBB, Options.KeepOneInputPHIs);
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
BasicBlock.h 392 /// If \p KeepOneInputPHIs is true then don't remove PHIs that are left with
395 void removePredecessor(BasicBlock *Pred, bool KeepOneInputPHIs = false);

Completed in 61 milliseconds