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

  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 185 /// ForExprAST - Expression class for for/in.
186 class ForExprAST : public ExprAST {
191 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start,
393 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End),
674 Value *ForExprAST::codegen() {
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter5/
toy.cpp 151 /// ForExprAST - Expression class for for/in.
152 class ForExprAST : public ExprAST {
156 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end,
338 return new ForExprAST(IdName, Start, End, Step, Body);
561 Value *ForExprAST::Codegen() {
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter6/
toy.cpp 166 /// ForExprAST - Expression class for for/in.
167 class ForExprAST : public ExprAST {
171 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end,
366 return new ForExprAST(IdName, Start, End, Step, Body);
665 Value *ForExprAST::Codegen() {
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
toy.cpp 211 /// ForExprAST - Expression class for for/in.
212 class ForExprAST : public ExprAST {
217 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start,
446 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End),
893 Value *ForExprAST::codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
toy.cpp 211 /// ForExprAST - Expression class for for/in.
212 class ForExprAST : public ExprAST {
217 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start,
446 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End),
893 Value *ForExprAST::codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
toy.cpp 211 /// ForExprAST - Expression class for for/in.
212 class ForExprAST : public ExprAST {
217 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start,
446 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End),
893 Value *ForExprAST::codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
toy.cpp 212 /// ForExprAST - Expression class for for/in.
213 class ForExprAST : public ExprAST {
218 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start,
434 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End),
882 Value *ForExprAST::codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
toy.cpp 227 /// ForExprAST - Expression class for for/in.
228 class ForExprAST : public ExprAST {
233 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start,
449 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End),
904 Value *ForExprAST::codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 204 /// ForExprAST - Expression class for for/in.
205 class ForExprAST : public ExprAST {
210 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start,
426 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End),
785 Value *ForExprAST::codegen() {
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 211 /// ForExprAST - Expression class for for/in.
212 class ForExprAST : public ExprAST {
217 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start,
446 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End),
894 Value *ForExprAST::codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 208 /// ForExprAST - Expression class for for/in.
209 class ForExprAST : public ExprAST {
214 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start,
443 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End),
889 Value *ForExprAST::codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 189 /// ForExprAST - Expression class for for/in.
190 class ForExprAST : public ExprAST {
194 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end,
402 return new ForExprAST(IdName, Start, End, Step, Body);
786 Value *ForExprAST::Codegen() {
    [all...]
toy.cpp 196 /// ForExprAST - Expression class for for/in.
197 class ForExprAST : public ExprAST {
201 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end,
409 return new ForExprAST(IdName, Start, End, Step, Body);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 173 /// ForExprAST - Expression class for for/in.
174 class ForExprAST : public ExprAST {
178 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end,
386 return new ForExprAST(IdName, Start, End, Step, Body);
1008 Value *ForExprAST::Codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 174 /// ForExprAST - Expression class for for/in.
175 class ForExprAST : public ExprAST {
179 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end,
387 return new ForExprAST(IdName, Start, End, Step, Body);
768 Value *ForExprAST::Codegen() {
    [all...]
toy.cpp 175 /// ForExprAST - Expression class for for/in.
176 class ForExprAST : public ExprAST {
180 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end,
388 return new ForExprAST(IdName, Start, End, Step, Body);
1048 Value *ForExprAST::Codegen() {
    [all...]
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter7/
toy.cpp 171 /// ForExprAST - Expression class for for/in.
172 class ForExprAST : public ExprAST {
176 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end,
384 return new ForExprAST(IdName, Start, End, Step, Body);
761 Value *ForExprAST::Codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter9/
toy.cpp 312 /// ForExprAST - Expression class for for/in.
313 class ForExprAST : public ExprAST {
318 ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start,
575 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End),
1073 Value *ForExprAST::codegen() {
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 215 /// ForExprAST - Expression class for for/in.
216 class ForExprAST : public ExprAST {
220 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end,
428 return new ForExprAST(IdName, Start, End, Step, Body);
    [all...]

Completed in 73 milliseconds