Lines Matching refs:beginFuncTy
1635 mlir::FunctionType beginFuncTy = beginFunc.getFunctionType(); in genBasicIOStmt() local
1638 beginFuncTy.getInput(0), csi, stmtCtx); in genBasicIOStmt()
1639 mlir::Value un = builder.createConvert(loc, beginFuncTy.getInput(0), unit); in genBasicIOStmt()
1640 mlir::Value file = locToFilename(converter, loc, beginFuncTy.getInput(1)); in genBasicIOStmt()
1641 mlir::Value line = locToLineNo(converter, loc, beginFuncTy.getInput(2)); in genBasicIOStmt()
1714 mlir::FunctionType beginFuncTy = beginFunc.getFunctionType(); in genOpenStatement() local
1717 beginFuncTy.getInput(0), csi, stmtCtx); in genOpenStatement()
1719 beginArgs.push_back(locToFilename(converter, loc, beginFuncTy.getInput(1))); in genOpenStatement()
1720 beginArgs.push_back(locToLineNo(converter, loc, beginFuncTy.getInput(2))); in genOpenStatement()
1725 mlir::FunctionType beginFuncTy = beginFunc.getFunctionType(); in genOpenStatement() local
1726 beginArgs.push_back(locToFilename(converter, loc, beginFuncTy.getInput(0))); in genOpenStatement()
1727 beginArgs.push_back(locToLineNo(converter, loc, beginFuncTy.getInput(1))); in genOpenStatement()
1758 mlir::FunctionType beginFuncTy = beginFunc.getFunctionType(); in genWaitStatement() local
1761 beginFuncTy.getInput(0), csi, stmtCtx); in genWaitStatement()
1766 args.push_back(builder.createConvert(loc, beginFuncTy.getInput(1), id)); in genWaitStatement()
1767 args.push_back(locToFilename(converter, loc, beginFuncTy.getInput(2))); in genWaitStatement()
1768 args.push_back(locToLineNo(converter, loc, beginFuncTy.getInput(3))); in genWaitStatement()
1770 args.push_back(locToFilename(converter, loc, beginFuncTy.getInput(1))); in genWaitStatement()
1771 args.push_back(locToLineNo(converter, loc, beginFuncTy.getInput(2))); in genWaitStatement()
2196 mlir::FunctionType beginFuncTy = beginFunc.getFunctionType(); in genInquireStatement() local
2198 beginFuncTy.getInput(0), csi, stmtCtx); in genInquireStatement()
2199 beginArgs = {unit, locToFilename(converter, loc, beginFuncTy.getInput(1)), in genInquireStatement()
2200 locToLineNo(converter, loc, beginFuncTy.getInput(2))}; in genInquireStatement()
2204 mlir::FunctionType beginFuncTy = beginFunc.getFunctionType(); in genInquireStatement() local
2208 builder.createConvert(loc, beginFuncTy.getInput(0), fir::getBase(file)), in genInquireStatement()
2209 builder.createConvert(loc, beginFuncTy.getInput(1), fir::getLen(file)), in genInquireStatement()
2210 locToFilename(converter, loc, beginFuncTy.getInput(2)), in genInquireStatement()
2211 locToLineNo(converter, loc, beginFuncTy.getInput(3))}; in genInquireStatement()
2218 mlir::FunctionType beginFuncTy = beginFunc.getFunctionType(); in genInquireStatement() local
2219 beginArgs = {locToFilename(converter, loc, beginFuncTy.getInput(0)), in genInquireStatement()
2220 locToLineNo(converter, loc, beginFuncTy.getInput(1))}; in genInquireStatement()