HomeSort by relevance Sort by last modified time
    Searched defs:Cond (Results 101 - 125 of 188) sorted by null

1 2 3 45 6 7 8

  /external/llvm/lib/Target/Mips/
MipsFastISel.cpp 917 // if (cond) goto TBB
993 const Value *Cond = SI->getCondition();
996 unsigned CondReg = getRegForValue(Cond);
    [all...]
MipsSEISelLowering.cpp 684 SDValue IfSet, IfClr, Cond;
689 // Op1Op0, or Op1Op1. Keep track of the Cond, IfSet, and IfClr nodes, while
693 Cond = Op0Op0;
710 Cond = Op0Op1;
728 Cond = Op1Op0;
732 Cond = Op1Op0;
736 Cond = Op1Op1;
740 Cond = Op1Op1;
744 Cond = Op0Op0;
748 Cond = Op0Op0
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 698 Value *Cond = nullptr;
702 Cond = BI->getCondition();
704 Cond = SI->getCondition();
708 if (!L->isLoopInvariant(Cond))
    [all...]
LoopRerollPass.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
Local.cpp 79 if (ConstantInt *Cond = dyn_cast<ConstantInt>(BI->getCondition())) {
82 BasicBlock *Destination = Cond->getZExtValue() ? Dest1 : Dest2;
83 BasicBlock *OldDest = Cond->getZExtValue() ? Dest2 : Dest1;
101 // br bool %cond, label %Dest, label %Dest
110 Value *Cond = BI->getCondition();
113 RecursivelyDeleteTriviallyDeadInstructions(Cond, TLI);
202 Value *Cond = SI->getCondition();
205 RecursivelyDeleteTriviallyDeadInstructions(Cond, TLI);
213 Value *Cond = Builder.CreateICmpEQ(SI->getCondition(),
214 FirstCase.getCaseValue(), "cond");
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/CBackend/
CBackend.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/XCore/
XCoreISelLowering.cpp 217 SDValue Cond = DAG.getNode(ISD::SETCC, dl, MVT::i32, Op.getOperand(2),
219 return DAG.getNode(ISD::SELECT, dl, MVT::i32, Cond, Op.getOperand(0),
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp     [all...]
InstructionCombining.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
IndVarSimplify.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
SimplifyCFG.cpp 435 Instruction* Cond = 0;
437 Cond = dyn_cast<Instruction>(SI->getCondition());
440 Cond = dyn_cast<Instruction>(BI->getCondition());
442 Cond = dyn_cast<Instruction>(IBI->getAddress());
446 if (Cond) RecursivelyDeleteTriviallyDeadInstructions(Cond);
    [all...]
  /external/swiftshader/third_party/LLVM/utils/TableGen/
AsmMatcherEmitter.cpp     [all...]
  /external/swiftshader/third_party/subzero/src/
IceInstARM32.cpp 62 CondARM32::Cond Opposite;
107 const char *InstARM32Pred::predString(CondARM32::Cond Pred) {
116 CondARM32::Cond InstARM32::getOppositeCondition(CondARM32::Cond Cond) {
117 return InstARM32CondAttributes[Cond].Opposite;
491 const InstARM32Label *Label, CondARM32::Cond Pred)
    [all...]
IceTargetLoweringARM32.h 225 explicit CondWhenTrue(CondARM32::Cond T0,
226 CondARM32::Cond T1 = CondARM32::kNone)
231 CondARM32::Cond WhenTrue0;
232 CondARM32::Cond WhenTrue1;
272 /// the flags if Cond is not AL, and must not emit any instructions that could
278 CondARM32::Cond Cond = CondARM32::AL);
323 CondARM32::Cond);
325 CondARM32::Cond);
335 CondARM32::Cond Pred = CondARM32::AL)
    [all...]
  /external/vixl/src/aarch64/
assembler-aarch64.h 497 void b(Label* label, Condition cond);
503 void b(int64_t imm19, Condition cond);
816 // Conditional select: rd = cond ? rn : rm.
820 Condition cond);
822 // Conditional select increment: rd = cond ? rn : rm + 1.
826 Condition cond);
828 // Conditional select inversion: rd = cond ? rn : ~rm.
832 Condition cond);
834 // Conditional select negation: rd = cond ? rn : -rm.
838 Condition cond);
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp     [all...]
  /frameworks/compile/libbcc/lib/
RSKernelExpand.cpp 432 llvm::Value *Cond, *IVNext, *IV, *IVVar;
450 Cond = Builder.CreateICmpULT(LowerBound, UpperBound);
451 Builder.CreateCondBr(Cond, HeaderBB, AfterBB);
467 Cond = Builder.CreateICmpULT(IVNext, UpperBound);
468 Builder.CreateCondBr(Cond, HeaderBB, AfterBB);
    [all...]
  /frameworks/compile/slang/
slang_rs_object_ref_count.cpp 404 // for (Init; Cond; Inc)
416 // Cond -> "rsIntIter < NumArrayElements"
439 clang::BinaryOperator *Cond =
493 Cond,
777 // for (Init; Cond; Inc)
802 // Cond -> "rsIntIter < NumArrayElements"
806 clang::BinaryOperator *Cond =
879 Cond,
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/AST/
StmtOpenMP.h 453 void setCond(Expr *Cond) {
454 *std::next(child_begin(), CondOffset) = Cond;
566 Expr *Cond;
619 Cond != nullptr && Init != nullptr && Inc != nullptr;
629 Cond = nullptr;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/IR/
PatternMatch.h 759 SelectClass_match(const Cond_t &Cond, const LHS_t &LHS, const RHS_t &RHS)
760 : C(Cond), L(LHS), R(RHS) {}
770 template <typename Cond, typename LHS, typename RHS>
771 inline SelectClass_match<Cond, LHS, RHS> m_Select(const Cond &C, const LHS &L,
773 return SelectClass_match<Cond, LHS, RHS>(C, L, R);
778 template <int64_t L, int64_t R, typename Cond>
779 inline SelectClass_match<Cond, constantint_match<L>, constantint_match<R>>
780 m_SelectCst(const Cond &C) {
957 Cond_t Cond;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/AST/
StmtOpenMP.h 453 void setCond(Expr *Cond) {
454 *std::next(child_begin(), CondOffset) = Cond;
566 Expr *Cond;
619 Cond != nullptr && Init != nullptr && Inc != nullptr;
629 Cond = nullptr;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/IR/
PatternMatch.h 759 SelectClass_match(const Cond_t &Cond, const LHS_t &LHS, const RHS_t &RHS)
760 : C(Cond), L(LHS), R(RHS) {}
770 template <typename Cond, typename LHS, typename RHS>
771 inline SelectClass_match<Cond, LHS, RHS> m_Select(const Cond &C, const LHS &L,
773 return SelectClass_match<Cond, LHS, RHS>(C, L, R);
778 template <int64_t L, int64_t R, typename Cond>
779 inline SelectClass_match<Cond, constantint_match<L>, constantint_match<R>>
780 m_SelectCst(const Cond &C) {
957 Cond_t Cond;
    [all...]

Completed in 2721 milliseconds

1 2 3 45 6 7 8