HomeSort by relevance Sort by last modified time
    Searched refs:NextVar (Results 1 - 25 of 36) sorted by null

1 2

  /external/swiftshader/third_party/llvm-7.0/llvm/tools/opt/
Debugify.cpp 88 unsigned NextVar = 1;
136 std::string Name = utostr(NextVar++);
157 addDebugifyOperand(NextVar - 1); // Original number of variables.
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 719 Value *NextVar = Builder.CreateFAdd(Variable, StepVal, "nextvar");
742 Variable->addIncoming(NextVar, LoopEndBB);
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter5/
toy.cpp 619 Value *NextVar = Builder.CreateFAdd(Variable, StepVal, "nextvar");
641 Variable->addIncoming(NextVar, LoopEndBB);
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter6/
toy.cpp 723 Value *NextVar = Builder.CreateFAdd(Variable, StepVal, "nextvar");
745 Variable->addIncoming(NextVar, LoopEndBB);
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 733 Value *NextVar = Builder.CreateFAdd(Variable, StepVal, "nextvar");
756 Variable->addIncoming(NextVar, LoopEndBB);
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
toy.cpp 889 // nextvar = curvar + step
890 // store nextvar -> var
947 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar");
948 Builder.CreateStore(NextVar, Alloca);
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
toy.cpp 889 // nextvar = curvar + step
890 // store nextvar -> var
947 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar");
948 Builder.CreateStore(NextVar, Alloca);
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
toy.cpp 889 // nextvar = curvar + step
890 // store nextvar -> var
947 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar");
948 Builder.CreateStore(NextVar, Alloca);
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
toy.cpp 878 // nextvar = curvar + step
879 // store nextvar -> var
936 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar");
937 Builder.CreateStore(NextVar, Alloca);
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
toy.cpp 900 // nextvar = curvar + step
901 // store nextvar -> var
958 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar");
959 Builder.CreateStore(NextVar, Alloca);
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 830 Value *NextVar = Builder.CreateFAdd(Variable, StepVal, "nextvar");
853 Variable->addIncoming(NextVar, LoopEndBB);
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 890 // nextvar = curvar + step
891 // store nextvar -> var
948 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar");
949 Builder.CreateStore(NextVar, Alloca);
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 885 // nextvar = curvar + step
886 // store nextvar -> var
943 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar");
944 Builder.CreateStore(NextVar, Alloca);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 802 // nextvar = curvar + step
803 // store nextvar -> var
857 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar");
858 Builder.CreateStore(NextVar, Alloca);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 1024 // nextvar = curvar + step
1025 // store nextvar -> var
1079 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar");
1080 Builder.CreateStore(NextVar, Alloca);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 784 // nextvar = curvar + step
785 // store nextvar -> var
839 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar");
840 Builder.CreateStore(NextVar, Alloca);
    [all...]
toy.cpp 1064 // nextvar = curvar + step
1065 // store nextvar -> var
1119 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar");
1120 Builder.CreateStore(NextVar, Alloca);
    [all...]
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter7/
toy.cpp 777 // nextvar = curvar + step
778 // store nextvar -> var
832 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar");
833 Builder.CreateStore(NextVar, Alloca);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
toy.cpp 901 // nextvar = curvar + step
902 // store nextvar -> var
959 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar");
960 Builder.CreateStore(NextVar, Alloca);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
toy.cpp 901 // nextvar = curvar + step
902 // store nextvar -> var
959 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar");
960 Builder.CreateStore(NextVar, Alloca);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
toy.cpp 901 // nextvar = curvar + step
902 // store nextvar -> var
959 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar");
960 Builder.CreateStore(NextVar, Alloca);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
toy.cpp 887 // nextvar = curvar + step
888 // store nextvar -> var
945 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar");
946 Builder.CreateStore(NextVar, Alloca);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
toy.cpp 911 // nextvar = curvar + step
912 // store nextvar -> var
969 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar");
970 Builder.CreateStore(NextVar, Alloca);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 845 Value *NextVar = Builder.CreateFAdd(Variable, StepVal, "nextvar");
868 Variable->addIncoming(NextVar, LoopEndBB);
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 907 // nextvar = curvar + step
908 // store nextvar -> var
965 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar");
966 Builder.CreateStore(NextVar, Alloca);
    [all...]

Completed in 314 milliseconds

1 2