Home
last modified time | relevance | path

Searched refs:brInst (Results 1 – 13 of 13) sorted by relevance

/dports/devel/intel-graphics-compiler/intel-graphics-compiler-igc-1.0.9636/IGC/Compiler/Optimizer/OpenCLPasses/OpenCLPrintf/
H A DOpenCLPrintfResolution.cpp554 BranchInst* brInst = BranchInst::Create(bblockTrue, bblockFalse, cmp1, currentBBlock); in expandPrintfCall() local
555 brInst->setDebugLoc(m_DL); in expandPrintfCall()
619 brInst = BranchInst::Create(bblockJoin, bblockTrue); in expandPrintfCall()
620 brInst->setDebugLoc(m_DL); in expandPrintfCall()
640 brInst = BranchInst::Create(bblockErrorString, bblockFalseJoin, cmp2, bblockFalse); in expandPrintfCall()
641 brInst->setDebugLoc(m_DL); in expandPrintfCall()
652 brInst = BranchInst::Create(bblockFalseJoin, bblockErrorString); in expandPrintfCall()
653 brInst->setDebugLoc(m_DL); in expandPrintfCall()
657 brInst = BranchInst::Create(bblockJoin, bblockFalseJoin); in expandPrintfCall()
658 brInst->setDebugLoc(m_DL); in expandPrintfCall()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/mlir/lib/Target/LLVMIR/
H A DConvertFromLLVMIR.cpp596 auto *brInst = cast<llvm::BranchInst>(inst); in processInstruction() local
598 brInst->isConditional() ? "llvm.cond_br" : "llvm.br"); in processInstruction()
599 if (brInst->isConditional()) { in processInstruction()
600 Value condition = processValue(brInst->getCondition()); in processInstruction()
607 for (int i : llvm::seq<int>(0, brInst->getNumSuccessors())) { in processInstruction()
608 auto *succ = brInst->getSuccessor(i); in processInstruction()
610 if (failed(processBranchArgs(brInst, succ, blockArguments))) in processInstruction()
617 if (brInst->isConditional()) { in processInstruction()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/mlir/lib/Target/LLVMIR/
H A DConvertFromLLVMIR.cpp601 auto *brInst = cast<llvm::BranchInst>(inst); in processInstruction() local
603 brInst->isConditional() ? "llvm.cond_br" : "llvm.br"); in processInstruction()
604 if (brInst->isConditional()) { in processInstruction()
605 Value condition = processValue(brInst->getCondition()); in processInstruction()
612 for (int i : llvm::seq<int>(0, brInst->getNumSuccessors())) { in processInstruction()
613 auto *succ = brInst->getSuccessor(i); in processInstruction()
615 if (failed(processBranchArgs(brInst, succ, blockArguments))) in processInstruction()
622 if (brInst->isConditional()) { in processInstruction()
/dports/devel/llvm12/llvm-project-12.0.1.src/mlir/lib/Target/LLVMIR/
H A DConvertFromLLVMIR.cpp596 auto *brInst = cast<llvm::BranchInst>(inst); in processInstruction() local
598 brInst->isConditional() ? "llvm.cond_br" : "llvm.br"); in processInstruction()
599 if (brInst->isConditional()) { in processInstruction()
600 Value condition = processValue(brInst->getCondition()); in processInstruction()
607 for (int i : llvm::seq<int>(0, brInst->getNumSuccessors())) { in processInstruction()
608 auto *succ = brInst->getSuccessor(i); in processInstruction()
610 if (failed(processBranchArgs(brInst, succ, blockArguments))) in processInstruction()
617 if (brInst->isConditional()) { in processInstruction()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/mlir/lib/Target/LLVMIR/
H A DConvertFromLLVMIR.cpp481 auto *brInst = cast<llvm::BranchInst>(inst); in processInstruction() local
483 brInst->isConditional() ? "llvm.cond_br" : "llvm.br"); in processInstruction()
485 if (brInst->isConditional()) in processInstruction()
486 ops.push_back(processValue(brInst->getCondition())); in processInstruction()
489 for (auto *succ : llvm::reverse(brInst->successors())) in processInstruction()
490 state.addSuccessor(blocks[succ], processBranchArgs(brInst, succ)); in processInstruction()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/mlir/lib/Target/LLVMIR/
H A DConvertFromLLVMIR.cpp666 auto *brInst = cast<llvm::BranchInst>(inst); in processInstruction() local
668 brInst->isConditional() ? "llvm.cond_br" : "llvm.br"); in processInstruction()
669 if (brInst->isConditional()) { in processInstruction()
670 Value condition = processValue(brInst->getCondition()); in processInstruction()
677 for (int i : llvm::seq<int>(0, brInst->getNumSuccessors())) { in processInstruction()
678 auto *succ = brInst->getSuccessor(i); in processInstruction()
680 if (failed(processBranchArgs(brInst, succ, blockArguments))) in processInstruction()
687 if (brInst->isConditional()) { in processInstruction()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/mlir/lib/Target/LLVMIR/
H A DConvertFromLLVMIR.cpp616 auto *brInst = cast<llvm::BranchInst>(inst); in processInstruction() local
618 brInst->isConditional() ? "llvm.cond_br" : "llvm.br"); in processInstruction()
619 if (brInst->isConditional()) { in processInstruction()
620 Value condition = processValue(brInst->getCondition()); in processInstruction()
627 for (int i : llvm::seq<int>(0, brInst->getNumSuccessors())) { in processInstruction()
628 auto *succ = brInst->getSuccessor(i); in processInstruction()
630 if (failed(processBranchArgs(brInst, succ, blockArguments))) in processInstruction()
637 if (brInst->isConditional()) { in processInstruction()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/mlir/lib/Target/LLVMIR/
H A DConvertFromLLVMIR.cpp615 auto *brInst = cast<llvm::BranchInst>(inst); in processInstruction() local
617 brInst->isConditional() ? "llvm.cond_br" : "llvm.br"); in processInstruction()
618 if (brInst->isConditional()) { in processInstruction()
619 Value condition = processValue(brInst->getCondition()); in processInstruction()
626 for (int i : llvm::seq<int>(0, brInst->getNumSuccessors())) { in processInstruction()
627 auto *succ = brInst->getSuccessor(i); in processInstruction()
629 if (failed(processBranchArgs(brInst, succ, blockArguments))) in processInstruction()
636 if (brInst->isConditional()) { in processInstruction()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/mlir/lib/Target/LLVMIR/
H A DConvertFromLLVMIR.cpp615 auto *brInst = cast<llvm::BranchInst>(inst); in processInstruction() local
617 brInst->isConditional() ? "llvm.cond_br" : "llvm.br"); in processInstruction()
618 if (brInst->isConditional()) { in processInstruction()
619 Value condition = processValue(brInst->getCondition()); in processInstruction()
626 for (int i : llvm::seq<int>(0, brInst->getNumSuccessors())) { in processInstruction()
627 auto *succ = brInst->getSuccessor(i); in processInstruction()
629 if (failed(processBranchArgs(brInst, succ, blockArguments))) in processInstruction()
636 if (brInst->isConditional()) { in processInstruction()
/dports/devel/llvm13/llvm-project-13.0.1.src/mlir/lib/Target/LLVMIR/
H A DConvertFromLLVMIR.cpp615 auto *brInst = cast<llvm::BranchInst>(inst); in processInstruction() local
617 brInst->isConditional() ? "llvm.cond_br" : "llvm.br"); in processInstruction()
618 if (brInst->isConditional()) { in processInstruction()
619 Value condition = processValue(brInst->getCondition()); in processInstruction()
626 for (int i : llvm::seq<int>(0, brInst->getNumSuccessors())) { in processInstruction()
627 auto *succ = brInst->getSuccessor(i); in processInstruction()
629 if (failed(processBranchArgs(brInst, succ, blockArguments))) in processInstruction()
636 if (brInst->isConditional()) { in processInstruction()
/dports/devel/intel-graphics-compiler/intel-graphics-compiler-igc-1.0.9636/IGC/Compiler/CISACodeGen/
H A DWIAnalysis.cpp1551 const BranchInst* brInst = cast<BranchInst>(inst); in calculate_dep_terminator() local
1552 if (brInst->isConditional()) in calculate_dep_terminator()
1555 Value* op = brInst->getCondition(); in calculate_dep_terminator()
/dports/devel/intel-graphics-compiler/intel-graphics-compiler-igc-1.0.9636/IGC/Compiler/
H A DCustomSafeOptPass.cpp4861 BranchInst* brInst = dyn_cast<BranchInst>(brOrSelI); in visitSelectInst() local
4862 if (brInst && in visitSelectInst()
4863 brInst->isConditional()) in visitSelectInst()
4866 matchedBrSelInsts.push_back(brInst); in visitSelectInst()
4869 brInst->swapSuccessors(); in visitSelectInst()
/dports/devel/intel-graphics-compiler/intel-graphics-compiler-igc-1.0.9636/IGC/LLVM3DBuilder/
H A DBuiltinsFrontendDefinitions.hpp2497 llvm::BranchInst* brInst = this->CreateBr(splitBlock); in Prepare_SAMPLE_D_DC_Cube_Params() local
2498 this->SetInsertPoint(brInst); in Prepare_SAMPLE_D_DC_Cube_Params()