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

  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/FuzzMutate/
OperationsTest.cpp 203 auto *CondBr = cast<BranchInst>(BB1->getTerminator());
204 EXPECT_THAT(CondBr->getCondition(), Eq(Cond));
205 ASSERT_THAT(CondBr->getNumSuccessors(), Eq(2u));
206 ASSERT_THAT(CondBr->getSuccessor(0), Eq(BB1));
207 auto *BB2 = CondBr->getSuccessor(1);
  /external/tensorflow/tensorflow/compiler/xla/service/llvm_ir/
ir_builder_mixin.h 90 llvm::BranchInst* CondBr(Args&&... args) {
  /external/llvm/lib/Transforms/Scalar/
JumpThreading.cpp 812 BranchInst *CondBr = dyn_cast<BranchInst>(BB->getTerminator());
814 if (CondBr && CondConst && CondBr->isConditional()) {
817 CondConst, CondBr);
821 CondBr->getSuccessor(ToRemove)->removePredecessor(BB, true);
822 BranchInst::Create(CondBr->getSuccessor(ToKeep), CondBr);
823 CondBr->eraseFromParent();
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
JumpThreading.cpp 730 BranchInst *CondBr = dyn_cast<BranchInst>(BB->getTerminator());
733 if (CondBr && CondConst && CondBr->isConditional() && PI != PE &&
756 CondBr->getSuccessor(ToRemove)->removePredecessor(BB, true);
757 BranchInst::Create(CondBr->getSuccessor(ToKeep), CondBr);
758 CondBr->eraseFromParent();
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
JumpThreading.cpp 183 // [Branch CondBr]
204 BranchInst *CondBr = dyn_cast<BranchInst>(BB->getTerminator());
205 if (!CondBr)
210 if (!CondBr->extractProfMetadata(TrueWeight, FalseWeight))
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
SIInstrInfo.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]

Completed in 286 milliseconds