Lines Matching defs:iostat
61 #include "flang/Runtime/iostat-consts.h"
3862 mlir::Value iostat = genBackspaceStatement(*this, stmt);
3863 genIoConditionBranches(getEval(), stmt.v, iostat);
3866 mlir::Value iostat = genCloseStatement(*this, stmt);
3867 genIoConditionBranches(getEval(), stmt.v, iostat);
3870 mlir::Value iostat = genEndfileStatement(*this, stmt);
3871 genIoConditionBranches(getEval(), stmt.v, iostat);
3874 mlir::Value iostat = genFlushStatement(*this, stmt);
3875 genIoConditionBranches(getEval(), stmt.v, iostat);
3878 mlir::Value iostat = genInquireStatement(*this, stmt);
3881 genIoConditionBranches(getEval(), *specs, iostat);
3884 mlir::Value iostat = genOpenStatement(*this, stmt);
3885 genIoConditionBranches(getEval(), stmt.v, iostat);
3891 mlir::Value iostat = genReadStatement(*this, stmt);
3892 genIoConditionBranches(getEval(), stmt.controls, iostat);
3895 mlir::Value iostat = genRewindStatement(*this, stmt);
3896 genIoConditionBranches(getEval(), stmt.v, iostat);
3899 mlir::Value iostat = genWaitStatement(*this, stmt);
3900 genIoConditionBranches(getEval(), stmt.v, iostat);
3903 mlir::Value iostat = genWriteStatement(*this, stmt);
3904 genIoConditionBranches(getEval(), stmt.controls, iostat);
3909 const A &specList, mlir::Value iostat) {
3910 if (!iostat)
3947 builder->createConvert(toLocation(), builder->getIndexType(), iostat);