Home
last modified time | relevance | path

Searched refs:StructLiteralExprAST (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/mlir/examples/toy/Ch7/parser/
H A DAST.cpp44 void dump(StructLiteralExprAST *node);
83 PrintExprAST, ReturnExprAST, StructLiteralExprAST, VarDeclExprAST, in dump()
152 void ASTDumper::dump(StructLiteralExprAST *node) { in dump()
/llvm-project-15.0.7/mlir/examples/toy/Ch7/mlir/
H A DMLIRGen.cpp422 getConstantAttr(StructLiteralExprAST &lit) { in getConstantAttr()
434 auto *structLit = llvm::cast<StructLiteralExprAST>(var.get()); in getConstantAttr()
458 mlir::Value mlirGen(StructLiteralExprAST &lit) { in mlirGen()
553 return mlirGen(cast<StructLiteralExprAST>(expr)); in mlirGen()
/llvm-project-15.0.7/mlir/examples/toy/Ch7/include/toy/
H A DAST.h98 class StructLiteralExprAST : public ExprAST {
102 StructLiteralExprAST(Location loc, in StructLiteralExprAST() function
H A DParser.h212 return std::make_unique<StructLiteralExprAST>(std::move(loc), in parseStructLiteralExpr()