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

  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 140 /// FunctionAST - This class represents a function definition itself.
141 class FunctionAST {
145 FunctionAST(PrototypeAST *proto, ExprAST *body)
182 FunctionAST *ErrorF(const char *Str) { Error(Str); return 0; }
320 static FunctionAST *ParseDefinition() {
326 return new FunctionAST(Proto, E);
331 static FunctionAST *ParseTopLevelExpr() {
335 return new FunctionAST(Proto, E);
445 Function *FunctionAST::Codegen() {
476 if (FunctionAST *F = ParseDefinition())
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 125 /// FunctionAST - This class represents a function definition itself.
126 class FunctionAST {
128 FunctionAST(PrototypeAST *proto, ExprAST *body) {}
299 static FunctionAST *ParseDefinition() {
305 return new FunctionAST(Proto, E);
310 static FunctionAST *ParseTopLevelExpr() {
314 return new FunctionAST(Proto, E);
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 147 /// FunctionAST - This class represents a function definition itself.
148 class FunctionAST {
152 FunctionAST(PrototypeAST *proto, ExprAST *body)
189 FunctionAST *ErrorF(const char *Str) { Error(Str); return 0; }
327 static FunctionAST *ParseDefinition() {
333 return new FunctionAST(Proto, E);
338 static FunctionAST *ParseTopLevelExpr() {
342 return new FunctionAST(Proto, E);
453 Function *FunctionAST::Codegen() {
489 if (FunctionAST *F = ParseDefinition())
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 176 /// FunctionAST - This class represents a function definition itself.
177 class FunctionAST {
181 FunctionAST(PrototypeAST *proto, ExprAST *body)
218 FunctionAST *ErrorF(const char *Str) { Error(Str); return 0; }
428 static FunctionAST *ParseDefinition() {
434 return new FunctionAST(Proto, E);
439 static FunctionAST *ParseTopLevelExpr() {
443 return new FunctionAST(Proto, E);
698 Function *FunctionAST::Codegen() {
734 if (FunctionAST *F = ParseDefinition())
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 204 /// FunctionAST - This class represents a function definition itself.
205 class FunctionAST {
209 FunctionAST(PrototypeAST *proto, ExprAST *body)
246 FunctionAST *ErrorF(const char *Str) { Error(Str); return 0; }
513 static FunctionAST *ParseDefinition() {
519 return new FunctionAST(Proto, E);
524 static FunctionAST *ParseTopLevelExpr() {
528 return new FunctionAST(Proto, E);
802 Function *FunctionAST::Codegen() {
845 if (FunctionAST *F = ParseDefinition())
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 222 /// FunctionAST - This class represents a function definition itself.
223 class FunctionAST {
227 FunctionAST(PrototypeAST *proto, ExprAST *body)
264 FunctionAST *ErrorF(const char *Str) { Error(Str); return 0; }
578 static FunctionAST *ParseDefinition() {
584 return new FunctionAST(Proto, E);
589 static FunctionAST *ParseTopLevelExpr() {
593 return new FunctionAST(Proto, E);
962 Function *FunctionAST::Codegen() {
1008 if (FunctionAST *F = ParseDefinition())
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 240 /// FunctionAST - This class represents a function definition itself.
241 class FunctionAST {
245 FunctionAST(PrototypeAST *proto, ExprAST *body)
281 FunctionAST *ErrorF(const char *Str) { Error(Str); return 0; }
595 static FunctionAST *ParseDefinition() {
601 return new FunctionAST(Proto, E);
606 static FunctionAST *ParseTopLevelExpr() {
610 return new FunctionAST(Proto, E);
986 Function *FunctionAST::Codegen() {
1032 if (FunctionAST *F = ParseDefinition())
    [all...]
toy.cpp 246 /// FunctionAST - This class represents a function definition itself.
247 class FunctionAST {
251 FunctionAST(PrototypeAST *proto, ExprAST *body)
287 FunctionAST *ErrorF(const char *Str) { Error(Str); return 0; }
601 static FunctionAST *ParseDefinition() {
607 return new FunctionAST(Proto, E);
612 static FunctionAST *ParseTopLevelExpr() {
616 return new FunctionAST(Proto, E);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 223 /// FunctionAST - This class represents a function definition itself.
224 class FunctionAST {
228 FunctionAST(PrototypeAST *proto, ExprAST *body)
264 FunctionAST *ErrorF(const char *Str) { Error(Str); return 0; }
578 static FunctionAST *ParseDefinition() {
584 return new FunctionAST(Proto, E);
589 static FunctionAST *ParseTopLevelExpr() {
593 return new FunctionAST(Proto, E);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 225 /// FunctionAST - This class represents a function definition itself.
226 class FunctionAST {
230 FunctionAST(PrototypeAST *proto, ExprAST *body)
266 FunctionAST *ErrorF(const char *Str) { Error(Str); return 0; }
580 static FunctionAST *ParseDefinition() {
586 return new FunctionAST(Proto, E);
591 static FunctionAST *ParseTopLevelExpr() {
595 return new FunctionAST(Proto, E);
968 Function *FunctionAST::Codegen() {
1014 if (FunctionAST *F = ParseDefinition())
    [all...]
toy.cpp 225 /// FunctionAST - This class represents a function definition itself.
226 class FunctionAST {
230 FunctionAST(PrototypeAST *proto, ExprAST *body)
266 FunctionAST *ErrorF(const char *Str) { Error(Str); return 0; }
580 static FunctionAST *ParseDefinition() {
586 return new FunctionAST(Proto, E);
591 static FunctionAST *ParseTopLevelExpr() {
595 return new FunctionAST(Proto, E);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 270 /// FunctionAST - This class represents a function definition itself.
271 class FunctionAST {
275 FunctionAST(PrototypeAST *proto, ExprAST *body)
311 FunctionAST *ErrorF(const char *Str) { Error(Str); return 0; }
625 static FunctionAST *ParseDefinition() {
631 return new FunctionAST(Proto, E);
636 static FunctionAST *ParseTopLevelExpr() {
640 return new FunctionAST(Proto, E);
    [all...]

Completed in 242 milliseconds