HomeSort by relevance Sort by last modified time
    Searched defs:TheContext (Results 1 - 25 of 27) sorted by null

1 2

  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 391 static LLVMContext TheContext;
392 static IRBuilder<> Builder(TheContext);
402 return ConstantFP::get(TheContext, APFloat(Val));
429 return Builder.CreateUIToFP(L, Type::getDoubleTy(TheContext), "booltmp");
457 std::vector<Type *> Doubles(Args.size(), Type::getDoubleTy(TheContext));
459 FunctionType::get(Type::getDoubleTy(TheContext), Doubles, false);
483 BasicBlock *BB = BasicBlock::Create(TheContext, "entry", TheFunction);
587 TheModule = llvm::make_unique<Module>("my cool jit", TheContext);
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 400 static LLVMContext TheContext;
401 static IRBuilder<> Builder(TheContext);
429 return ConstantFP::get(TheContext, APFloat(Val));
456 return Builder.CreateUIToFP(L, Type::getDoubleTy(TheContext), "booltmp");
484 std::vector<Type *> Doubles(Args.size(), Type::getDoubleTy(TheContext));
486 FunctionType::get(Type::getDoubleTy(TheContext), Doubles, false);
509 BasicBlock *BB = BasicBlock::Create(TheContext, "entry", TheFunction);
541 TheModule = llvm::make_unique<Module>("my cool jit", TheContext);
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 525 static LLVMContext TheContext;
526 static IRBuilder<> Builder(TheContext);
554 return ConstantFP::get(TheContext, APFloat(Val));
581 return Builder.CreateUIToFP(L, Type::getDoubleTy(TheContext), "booltmp");
614 CondV, ConstantFP::get(TheContext, APFloat(0.0)), "ifcond");
620 BasicBlock *ThenBB = BasicBlock::Create(TheContext, "then", TheFunction);
621 BasicBlock *ElseBB = BasicBlock::Create(TheContext, "else");
622 BasicBlock *MergeBB = BasicBlock::Create(TheContext, "ifcont");
652 PHINode *PN = Builder.CreatePHI(Type::getDoubleTy(TheContext), 2, "iftmp");
684 BasicBlock *LoopBB = BasicBlock::Create(TheContext, "loop", TheFunction)
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
toy.cpp 687 static LLVMContext TheContext;
688 static IRBuilder<> Builder(TheContext);
720 return TmpB.CreateAlloca(Type::getDoubleTy(TheContext), nullptr, VarName);
724 return ConstantFP::get(TheContext, APFloat(Val));
788 return Builder.CreateUIToFP(L, Type::getDoubleTy(TheContext), "booltmp");
829 CondV, ConstantFP::get(TheContext, APFloat(0.0)), "ifcond");
835 BasicBlock *ThenBB = BasicBlock::Create(TheContext, "then", TheFunction);
836 BasicBlock *ElseBB = BasicBlock::Create(TheContext, "else");
837 BasicBlock *MergeBB = BasicBlock::Create(TheContext, "ifcont");
867 PHINode *PN = Builder.CreatePHI(Type::getDoubleTy(TheContext), 2, "iftmp")
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
toy.cpp 687 static LLVMContext TheContext;
688 static IRBuilder<> Builder(TheContext);
720 return TmpB.CreateAlloca(Type::getDoubleTy(TheContext), nullptr, VarName);
724 return ConstantFP::get(TheContext, APFloat(Val));
788 return Builder.CreateUIToFP(L, Type::getDoubleTy(TheContext), "booltmp");
829 CondV, ConstantFP::get(TheContext, APFloat(0.0)), "ifcond");
835 BasicBlock *ThenBB = BasicBlock::Create(TheContext, "then", TheFunction);
836 BasicBlock *ElseBB = BasicBlock::Create(TheContext, "else");
837 BasicBlock *MergeBB = BasicBlock::Create(TheContext, "ifcont");
867 PHINode *PN = Builder.CreatePHI(Type::getDoubleTy(TheContext), 2, "iftmp")
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
toy.cpp 687 static LLVMContext TheContext;
688 static IRBuilder<> Builder(TheContext);
720 return TmpB.CreateAlloca(Type::getDoubleTy(TheContext), nullptr, VarName);
724 return ConstantFP::get(TheContext, APFloat(Val));
788 return Builder.CreateUIToFP(L, Type::getDoubleTy(TheContext), "booltmp");
829 CondV, ConstantFP::get(TheContext, APFloat(0.0)), "ifcond");
835 BasicBlock *ThenBB = BasicBlock::Create(TheContext, "then", TheFunction);
836 BasicBlock *ElseBB = BasicBlock::Create(TheContext, "else");
837 BasicBlock *MergeBB = BasicBlock::Create(TheContext, "ifcont");
867 PHINode *PN = Builder.CreatePHI(Type::getDoubleTy(TheContext), 2, "iftmp")
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
toy.cpp 675 static LLVMContext TheContext;
676 static IRBuilder<> Builder(TheContext);
709 return TmpB.CreateAlloca(Type::getDoubleTy(TheContext), nullptr, VarName);
713 return ConstantFP::get(TheContext, APFloat(Val));
777 return Builder.CreateUIToFP(L, Type::getDoubleTy(TheContext), "booltmp");
818 CondV, ConstantFP::get(TheContext, APFloat(0.0)), "ifcond");
824 BasicBlock *ThenBB = BasicBlock::Create(TheContext, "then", TheFunction);
825 BasicBlock *ElseBB = BasicBlock::Create(TheContext, "else");
826 BasicBlock *MergeBB = BasicBlock::Create(TheContext, "ifcont");
856 PHINode *PN = Builder.CreatePHI(Type::getDoubleTy(TheContext), 2, "iftmp")
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
toy.cpp 697 static LLVMContext TheContext;
698 static IRBuilder<> Builder(TheContext);
731 return TmpB.CreateAlloca(Type::getDoubleTy(TheContext), nullptr, VarName);
735 return ConstantFP::get(TheContext, APFloat(Val));
799 return Builder.CreateUIToFP(L, Type::getDoubleTy(TheContext), "booltmp");
840 CondV, ConstantFP::get(TheContext, APFloat(0.0)), "ifcond");
846 BasicBlock *ThenBB = BasicBlock::Create(TheContext, "then", TheFunction);
847 BasicBlock *ElseBB = BasicBlock::Create(TheContext, "else");
848 BasicBlock *MergeBB = BasicBlock::Create(TheContext, "ifcont");
878 PHINode *PN = Builder.CreatePHI(Type::getDoubleTy(TheContext), 2, "iftmp")
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 616 static LLVMContext TheContext;
617 static IRBuilder<> Builder(TheContext);
645 return ConstantFP::get(TheContext, APFloat(Val));
684 return Builder.CreateUIToFP(L, Type::getDoubleTy(TheContext), "booltmp");
725 CondV, ConstantFP::get(TheContext, APFloat(0.0)), "ifcond");
731 BasicBlock *ThenBB = BasicBlock::Create(TheContext, "then", TheFunction);
732 BasicBlock *ElseBB = BasicBlock::Create(TheContext, "else");
733 BasicBlock *MergeBB = BasicBlock::Create(TheContext, "ifcont");
763 PHINode *PN = Builder.CreatePHI(Type::getDoubleTy(TheContext), 2, "iftmp");
795 BasicBlock *LoopBB = BasicBlock::Create(TheContext, "loop", TheFunction)
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 687 static LLVMContext TheContext;
688 static IRBuilder<> Builder(TheContext);
721 return TmpB.CreateAlloca(Type::getDoubleTy(TheContext), nullptr, VarName);
725 return ConstantFP::get(TheContext, APFloat(Val));
789 return Builder.CreateUIToFP(L, Type::getDoubleTy(TheContext), "booltmp");
830 CondV, ConstantFP::get(TheContext, APFloat(0.0)), "ifcond");
836 BasicBlock *ThenBB = BasicBlock::Create(TheContext, "then", TheFunction);
837 BasicBlock *ElseBB = BasicBlock::Create(TheContext, "else");
838 BasicBlock *MergeBB = BasicBlock::Create(TheContext, "ifcont");
868 PHINode *PN = Builder.CreatePHI(Type::getDoubleTy(TheContext), 2, "iftmp")
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 684 static LLVMContext TheContext;
685 static IRBuilder<> Builder(TheContext);
716 return TmpB.CreateAlloca(Type::getDoubleTy(TheContext), nullptr, VarName);
720 return ConstantFP::get(TheContext, APFloat(Val));
784 return Builder.CreateUIToFP(L, Type::getDoubleTy(TheContext), "booltmp");
825 CondV, ConstantFP::get(TheContext, APFloat(0.0)), "ifcond");
831 BasicBlock *ThenBB = BasicBlock::Create(TheContext, "then", TheFunction);
832 BasicBlock *ElseBB = BasicBlock::Create(TheContext, "else");
833 BasicBlock *MergeBB = BasicBlock::Create(TheContext, "ifcont");
863 PHINode *PN = Builder.CreatePHI(Type::getDoubleTy(TheContext), 2, "iftmp")
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 626 static LLVMContext TheContext;
627 static IRBuilder<> Builder(TheContext);
638 return TmpB.CreateAlloca(Type::getDoubleTy(TheContext), 0, VarName.c_str());
642 return ConstantFP::get(TheContext, APFloat(Val));
702 return Builder.CreateUIToFP(L, Type::getDoubleTy(TheContext), "booltmp");
743 CondV, ConstantFP::get(TheContext, APFloat(0.0)), "ifcond");
749 BasicBlock *ThenBB = BasicBlock::Create(TheContext, "then", TheFunction);
750 BasicBlock *ElseBB = BasicBlock::Create(TheContext, "else");
751 BasicBlock *MergeBB = BasicBlock::Create(TheContext, "ifcont");
779 PHINode *PN = Builder.CreatePHI(Type::getDoubleTy(TheContext), 2, "iftmp")
    [all...]
toy.cpp 997 static LLVMContext TheContext;
998 static IRBuilder<> Builder(TheContext);
1009 return TmpB.CreateAlloca(Type::getDoubleTy(TheContext), 0, VarName.c_str());
1013 return ConstantFP::get(TheContext, APFloat(Val));
1069 return Builder.CreateUIToFP(L, Type::getDoubleTy(TheContext), "booltmp");
1107 CondV, ConstantFP::get(TheContext, APFloat(0.0)), "ifcond");
1113 BasicBlock *ThenBB = BasicBlock::Create(TheContext, "then", TheFunction)
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 611 static LLVMContext TheContext;
612 static IRBuilder<> Builder(TheContext);
623 return TmpB.CreateAlloca(Type::getDoubleTy(TheContext), 0, VarName.c_str());
627 return ConstantFP::get(TheContext, APFloat(Val));
684 return Builder.CreateUIToFP(L, Type::getDoubleTy(TheContext), "booltmp");
725 CondV, ConstantFP::get(TheContext, APFloat(0.0)), "ifcond");
731 BasicBlock *ThenBB = BasicBlock::Create(TheContext, "then", TheFunction);
732 BasicBlock *ElseBB = BasicBlock::Create(TheContext, "else");
733 BasicBlock *MergeBB = BasicBlock::Create(TheContext, "ifcont");
761 PHINode *PN = Builder.CreatePHI(Type::getDoubleTy(TheContext), 2, "iftmp")
    [all...]
toy.cpp 895 static LLVMContext TheContext;
896 static IRBuilder<> Builder(TheContext);
907 return TmpB.CreateAlloca(Type::getDoubleTy(TheContext), 0, VarName.c_str());
911 return ConstantFP::get(TheContext, APFloat(Val));
967 return Builder.CreateUIToFP(L, Type::getDoubleTy(TheContext), "booltmp");
1005 CondV, ConstantFP::get(TheContext, APFloat(0.0)), "ifcond");
1011 BasicBlock *ThenBB = BasicBlock::Create(TheContext, "then", TheFunction);
1012 BasicBlock *ElseBB = BasicBlock::Create(TheContext, "else");
1013 BasicBlock *MergeBB = BasicBlock::Create(TheContext, "ifcont");
1041 PHINode *PN = Builder.CreatePHI(Type::getDoubleTy(TheContext), 2, "iftmp")
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter9/
toy.cpp 90 static LLVMContext TheContext;
91 static IRBuilder<> Builder(TheContext);
890 return TmpB.CreateAlloca(Type::getDoubleTy(TheContext), nullptr,
896 return ConstantFP::get(TheContext, APFloat(Val));
964 return Builder.CreateUIToFP(L, Type::getDoubleTy(TheContext), "booltmp");
1009 CondV, ConstantFP::get(TheContext, APFloat(0.0)), "ifcond");
1015 BasicBlock *ThenBB = BasicBlock::Create(TheContext, "then", TheFunction);
1016 BasicBlock *ElseBB = BasicBlock::Create(TheContext, "else");
1017 BasicBlock *MergeBB = BasicBlock::Create(TheContext, "ifcont");
1047 PHINode *PN = Builder.CreatePHI(Type::getDoubleTy(TheContext), 2, "iftmp")
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 1069 static LLVMContext TheContext;
1070 static IRBuilder<> Builder(TheContext);
1081 return TmpB.CreateAlloca(Type::getDoubleTy(TheContext), 0, VarName.c_str());
1085 return ConstantFP::get(TheContext, APFloat(Val));
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 855 static LLVMContext TheContext;
856 static IRBuilder<> Builder(TheContext);
867 return TmpB.CreateAlloca(Type::getDoubleTy(TheContext), 0, VarName.c_str());
871 return ConstantFP::get(TheContext, APFloat(Val));
927 return Builder.CreateUIToFP(L, Type::getDoubleTy(TheContext), "booltmp");
965 CondV, ConstantFP::get(TheContext, APFloat(0.0)), "ifcond");
971 BasicBlock *ThenBB = BasicBlock::Create(TheContext, "then", TheFunction);
972 BasicBlock *ElseBB = BasicBlock::Create(TheContext, "else");
973 BasicBlock *MergeBB = BasicBlock::Create(TheContext, "ifcont");
1001 PHINode *PN = Builder.CreatePHI(Type::getDoubleTy(TheContext), 2, "iftmp")
    [all...]
  /external/clang/include/clang/Sema/
DeclSpec.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Sema/
DeclSpec.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Sema/
DeclSpec.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Sema/
DeclSpec.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Sema/
DeclSpec.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/Sema/
DeclSpec.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/Sema/
DeclSpec.h     [all...]

Completed in 1848 milliseconds

1 2