HomeSort by: relevance | last modified time | path
    Searched defs:StartVal (Results 1 - 15 of 15) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
toy.cpp 913 Value *StartVal = Start->codegen();
914 if (!StartVal)
918 Builder->CreateStore(StartVal, Alloca);
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
toy.cpp 913 Value *StartVal = Start->codegen();
914 if (!StartVal)
918 Builder->CreateStore(StartVal, Alloca);
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
toy.cpp 913 Value *StartVal = Start->codegen();
914 if (!StartVal)
918 Builder->CreateStore(StartVal, Alloca);
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
toy.cpp 896 Value *StartVal = Start->codegen();
897 if (!StartVal)
901 Builder->CreateStore(StartVal, Alloca);
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 691 Value *StartVal = Start->codegen();
692 if (!StartVal)
710 Variable->addIncoming(StartVal, PreheaderBB);
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 803 Value *StartVal = Start->codegen();
804 if (!StartVal)
822 Variable->addIncoming(StartVal, PreheaderBB);
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 919 Value *StartVal = Start->codegen();
920 if (!StartVal)
924 Builder->CreateStore(StartVal, Alloca);
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 918 Value *StartVal = Start->codegen();
919 if (!StartVal)
923 Builder->CreateStore(StartVal, Alloca);
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 813 Value *StartVal = Start->Codegen();
814 if (StartVal == 0) return 0;
817 Builder.CreateStore(StartVal, Alloca);
toy.cpp 1177 Value *StartVal = Start->Codegen();
1178 if (StartVal == 0) return 0;
1181 Builder.CreateStore(StartVal, Alloca);
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 795 Value *StartVal = Start->Codegen();
796 if (StartVal == 0) return 0;
799 Builder.CreateStore(StartVal, Alloca);
toy.cpp 1075 Value *StartVal = Start->Codegen();
1076 if (StartVal == 0) return 0;
1079 Builder.CreateStore(StartVal, Alloca);
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter9/
toy.cpp 1089 Value *StartVal = Start->codegen();
1090 if (!StartVal)
1094 Builder->CreateStore(StartVal, Alloca);
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 1255 Value *StartVal = Start->Codegen();
1256 if (StartVal == 0) return 0;
1259 Builder.CreateStore(StartVal, Alloca);
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 1035 Value *StartVal = Start->Codegen();
1036 if (StartVal == 0) return 0;
1039 Builder.CreateStore(StartVal, Alloca);

Completed in 45 milliseconds