/external/llvm-project/mlir/examples/toy/Ch4/mlir/ |
D | MLIRGen.cpp | 128 mlir::FuncOp function(mlirGen(*funcAST.getProto())); in mlirGen() 136 auto protoArgs = funcAST.getProto()->getArgs(); in mlirGen() 164 builder.create<ReturnOp>(loc(funcAST.getProto()->loc())); in mlirGen() 173 if (funcAST.getProto()->getName() != "main") in mlirGen()
|
/external/llvm-project/mlir/examples/toy/Ch5/mlir/ |
D | MLIRGen.cpp | 128 mlir::FuncOp function(mlirGen(*funcAST.getProto())); in mlirGen() 136 auto protoArgs = funcAST.getProto()->getArgs(); in mlirGen() 164 builder.create<ReturnOp>(loc(funcAST.getProto()->loc())); in mlirGen() 173 if (funcAST.getProto()->getName() != "main") in mlirGen()
|
/external/llvm-project/mlir/examples/toy/Ch6/mlir/ |
D | MLIRGen.cpp | 128 mlir::FuncOp function(mlirGen(*funcAST.getProto())); in mlirGen() 136 auto protoArgs = funcAST.getProto()->getArgs(); in mlirGen() 164 builder.create<ReturnOp>(loc(funcAST.getProto()->loc())); in mlirGen() 173 if (funcAST.getProto()->getName() != "main") in mlirGen()
|
/external/llvm-project/mlir/examples/toy/Ch2/mlir/ |
D | MLIRGen.cpp | 128 mlir::FuncOp function(mlirGen(*funcAST.getProto())); in mlirGen() 136 auto protoArgs = funcAST.getProto()->getArgs(); in mlirGen() 164 builder.create<ReturnOp>(loc(funcAST.getProto()->loc())); in mlirGen()
|
/external/llvm-project/mlir/examples/toy/Ch3/mlir/ |
D | MLIRGen.cpp | 128 mlir::FuncOp function(mlirGen(*funcAST.getProto())); in mlirGen() 136 auto protoArgs = funcAST.getProto()->getArgs(); in mlirGen() 164 builder.create<ReturnOp>(loc(funcAST.getProto()->loc())); in mlirGen()
|
/external/llvm-project/mlir/examples/toy/Ch7/mlir/ |
D | MLIRGen.cpp | 182 mlir::FuncOp function(mlirGen(*funcAST.getProto())); in mlirGen() 190 auto protoArgs = funcAST.getProto()->getArgs(); in mlirGen() 217 builder.create<ReturnOp>(loc(funcAST.getProto()->loc())); in mlirGen() 226 if (funcAST.getProto()->getName() != "main") in mlirGen()
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/ |
D | toy.cpp | 1028 const PrototypeAST& FunctionAST::getProto() const { in getProto() function in FunctionAST 1107 FunctionProtos[FnAST->getProto().getName()] = in HandleDefinition() 1108 llvm::make_unique<PrototypeAST>(FnAST->getProto()); in HandleDefinition() 1133 llvm::make_unique<PrototypeAST>(FnAST->getProto()); in HandleTopLevelExpression()
|
D | KaleidoscopeJIT.h | 50 const PrototypeAST& getProto() const;
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/ |
D | toy.cpp | 1050 const PrototypeAST& FunctionAST::getProto() const { in getProto() function in FunctionAST 1129 FunctionProtos[FnAST->getProto().getName()] = in HandleDefinition() 1130 llvm::make_unique<PrototypeAST>(FnAST->getProto()); in HandleDefinition() 1155 llvm::make_unique<PrototypeAST>(FnAST->getProto()); in HandleTopLevelExpression()
|
D | KaleidoscopeJIT.h | 52 const PrototypeAST& getProto() const;
|
/external/llvm-project/mlir/examples/toy/Ch6/parser/ |
D | AST.cpp | 216 dump(node->getProto()); in dump()
|
/external/llvm-project/mlir/examples/toy/Ch3/parser/ |
D | AST.cpp | 216 dump(node->getProto()); in dump()
|
/external/llvm-project/mlir/examples/toy/Ch4/parser/ |
D | AST.cpp | 216 dump(node->getProto()); in dump()
|
/external/llvm-project/mlir/examples/toy/Ch1/parser/ |
D | AST.cpp | 216 dump(node->getProto()); in dump()
|
/external/llvm-project/mlir/examples/toy/Ch5/parser/ |
D | AST.cpp | 216 dump(node->getProto()); in dump()
|
/external/llvm-project/mlir/examples/toy/Ch2/parser/ |
D | AST.cpp | 216 dump(node->getProto()); in dump()
|
/external/llvm-project/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/ |
D | toy.cpp | 1035 const PrototypeAST& FunctionAST::getProto() const { in getProto() function in FunctionAST 1119 FunctionProtos[FnAST->getProto().getName()] = in HandleDefinition() 1120 std::make_unique<PrototypeAST>(FnAST->getProto()); in HandleDefinition()
|
D | KaleidoscopeJIT.h | 50 const PrototypeAST& getProto() const;
|
/external/llvm-project/mlir/examples/toy/Ch7/parser/ |
D | AST.cpp | 232 dump(node->getProto()); in dump()
|
/external/llvm-project/clang/utils/TableGen/ |
D | SveEmitter.cpp | 182 std::string getProto() const { return Proto; } in getProto() function in __anon5c0d77c40111::Intrinsic 914 return replaceTemplatedArgs(S, getBaseTypeSpec(), getProto()) + in mangleName() 920 if (getClassKind() != ClassG || getProto().size() <= 1) { in emitIntrinsic()
|
/external/llvm-project/mlir/examples/toy/Ch1/include/toy/ |
D | AST.h | 222 PrototypeAST *getProto() { return proto.get(); } in getProto() function
|
/external/llvm-project/mlir/examples/toy/Ch5/include/toy/ |
D | AST.h | 222 PrototypeAST *getProto() { return proto.get(); } in getProto() function
|
/external/llvm-project/mlir/examples/toy/Ch4/include/toy/ |
D | AST.h | 222 PrototypeAST *getProto() { return proto.get(); } in getProto() function
|
/external/llvm-project/mlir/examples/toy/Ch6/include/toy/ |
D | AST.h | 222 PrototypeAST *getProto() { return proto.get(); } in getProto() function
|
/external/llvm-project/mlir/examples/toy/Ch2/include/toy/ |
D | AST.h | 222 PrototypeAST *getProto() { return proto.get(); } in getProto() function
|