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

  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 596 Value *CondV = Cond->codegen();
597 if (!CondV)
601 CondV = Builder.CreateFCmpONE(
602 CondV, ConstantFP::get(getGlobalContext(), APFloat(0.0)), "ifcond");
613 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 707 Value *CondV = Cond->codegen();
708 if (!CondV)
712 CondV = Builder.CreateFCmpONE(
713 CondV, ConstantFP::get(getGlobalContext(), APFloat(0.0)), "ifcond");
724 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 812 Value *CondV = Cond->codegen();
813 if (!CondV)
817 CondV = Builder.CreateFCmpONE(
818 CondV, ConstantFP::get(getGlobalContext(), APFloat(0.0)), "ifcond");
829 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 739 Value *CondV = Cond->Codegen();
740 if (CondV == 0) return 0;
743 CondV = Builder.CreateFCmpONE(CondV,
755 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
    [all...]
toy.cpp 1103 Value *CondV = Cond->Codegen();
1104 if (CondV == 0) return 0;
1107 CondV = Builder.CreateFCmpONE(CondV,
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 961 Value *CondV = Cond->Codegen();
962 if (CondV == 0) return 0;
965 CondV = Builder.CreateFCmpONE(CondV,
977 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 721 Value *CondV = Cond->Codegen();
722 if (CondV == 0) return 0;
725 CondV = Builder.CreateFCmpONE(CondV,
737 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
    [all...]
toy.cpp 1001 Value *CondV = Cond->Codegen();
1002 if (CondV == 0) return 0;
1005 CondV = Builder.CreateFCmpONE(CondV,
1017 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 1003 Value *CondV = Cond->codegen();
1004 if (!CondV)
1008 CondV = Builder.CreateFCmpONE(
1009 CondV, ConstantFP::get(getGlobalContext(), APFloat(0.0)), "ifcond");
1020 Builder.CreateCondBr(CondV, ThenBB, ElseBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
toy.cpp 846 Value *CondV = Cond->IRGen(C);
847 if (!CondV) return nullptr;
852 CondV = C.getBuilder().CreateFCmpONE(CondV, FPZero, "ifcond");
862 C.getBuilder().CreateCondBr(CondV, ThenBB, ElseBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/initial/
toy.cpp 845 Value *CondV = Cond->IRGen(C);
846 if (!CondV) return nullptr;
851 CondV = C.getBuilder().CreateFCmpONE(CondV, FPZero, "ifcond");
861 C.getBuilder().CreateCondBr(CondV, ThenBB, ElseBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
toy.cpp 845 Value *CondV = Cond->IRGen(C);
846 if (!CondV) return nullptr;
851 CondV = C.getBuilder().CreateFCmpONE(CondV, FPZero, "ifcond");
861 C.getBuilder().CreateCondBr(CondV, ThenBB, ElseBB);
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
toy.cpp 845 Value *CondV = Cond->IRGen(C);
846 if (!CondV) return nullptr;
851 CondV = C.getBuilder().CreateFCmpONE(CondV, FPZero, "ifcond");
861 C.getBuilder().CreateCondBr(CondV, ThenBB, ElseBB);
    [all...]
  /external/clang/lib/CodeGen/
CodeGenFunction.cpp     [all...]
CGStmt.cpp     [all...]
CGExprScalar.cpp     [all...]
  /external/llvm/lib/IR/
ConstantFold.cpp 733 if (ConstantVector *CondV = dyn_cast<ConstantVector>(Cond)) {
735 Type *Ty = IntegerType::get(CondV->getContext(), 32);
742 Constant *Cond = dyn_cast<Constant>(CondV->getOperand(i));
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp     [all...]

Completed in 378 milliseconds