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

  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
StringRefTest.cpp 984 StringRef Taken = Test.take_front(5);
985 EXPECT_EQ(Taken, "Strin");
987 Taken = Test.take_back(5);
988 EXPECT_EQ(Taken, ":Take");
990 Taken = Test.take_front(Test.size());
991 EXPECT_EQ(Taken, Test);
993 Taken = Test.take_back(Test.size());
994 EXPECT_EQ(Taken, Test);
996 Taken = Test.take_front(0);
997 EXPECT_TRUE(Taken.empty())
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
LoopDeletion.cpp 105 // branch, with the loop's preheader as not-taken.
107 BasicBlock *Taken, *NotTaken;
110 m_Br(m_ConstantInt(Cond), Taken, NotTaken)))
113 std::swap(Taken, NotTaken);
114 if (Taken == Preheader)
119 // All the predecessors have the loop preheader as not-taken target.
LoopStrengthReduce.cpp     [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/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
BlockFrequencyInfoImpl.cpp 437 BlockMass Taken = D.takeMass(W.Amount);
439 Working[W.TargetNode.Index].getMass() += Taken;
440 LLVM_DEBUG(debugAssign(*this, D, W.TargetNode, Taken, nullptr));
449 OuterLoop->BackedgeMass[OuterLoop->getHeaderIndex(W.TargetNode)] += Taken;
450 LLVM_DEBUG(debugAssign(*this, D, W.TargetNode, Taken, "back"));
456 OuterLoop->Exits.push_back(std::make_pair(W.TargetNode, Taken));
457 LLVM_DEBUG(debugAssign(*this, D, W.TargetNode, Taken, "exit"));
831 BlockMass Taken = D.takeMass(W.Amount);
833 Working[W.TargetNode.Index].getMass() = Taken;
834 LLVM_DEBUG(debugAssign(*this, D, W.TargetNode, Taken, nullptr))
    [all...]
  /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...]
ScalarEvolution.cpp 117 cl::desc("Verify ScalarEvolution's backedge taken counts (slow)"));
    [all...]
  /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/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/
HexagonInstrInfo.cpp     [all...]
  /external/boringssl/src/ssl/test/runner/
cipher_suites.go 431 // A list of the possible cipher suite ids. Taken from
  /external/syzkaller/vendor/golang.org/x/net/http2/
ciphers.go 7 // A list of the possible cipher suite ids. Taken from
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
LoopStrengthReduce.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp     [all...]

Completed in 406 milliseconds