Home
last modified time | relevance | path

Searched refs:passArg (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/flang/test/Semantics/
H A Dbindings01.f90181 procedure, pass(passArg) :: b
184 subroutine b(*, passArg) argument
185 integer :: passArg local
194 procedure, pass(passArg) :: b
197 subroutine b(*, passArg) argument
198 type(t) :: passArg local
207 procedure, pass(passArg) :: b
210 subroutine b(*, passArg) argument
211 class(t) :: passArg local
/llvm-project-15.0.7/mlir/include/mlir/Pass/
H A DPassBase.td65 class PassBase<string passArg, string base> {
67 string argument = passArg;
92 class Pass<string passArg, string operation = "">
93 : PassBase<passArg, "::mlir::OperationPass<" # operation # ">">;
96 class InterfacePass<string passArg, string interface>
97 : PassBase<passArg, "::mlir::InterfacePass<" # interface # ">">;
H A DPass.h58 static const PassInfo *lookupPassInfo(StringRef passArg);
/llvm-project-15.0.7/flang/lib/Semantics/
H A Dcheck-declarations.cpp1570 const Symbol &passArg{*dummyArgs[*passArgIndex]}; in CheckPassArg() local
1572 if (!passArg.has<ObjectEntityDetails>()) { in CheckPassArg()
1575 } else if (passArg.attrs().test(Attr::POINTER)) { in CheckPassArg()
1578 } else if (passArg.attrs().test(Attr::ALLOCATABLE)) { in CheckPassArg()
1581 } else if (passArg.attrs().test(Attr::VALUE)) { in CheckPassArg()
1584 } else if (passArg.Rank() > 0) { in CheckPassArg()
1592 const DeclTypeSpec *type{passArg.GetType()}; in CheckPassArg()
/llvm-project-15.0.7/mlir/lib/Pass/
H A DPassRegistry.cpp140 const PassInfo *mlir::Pass::lookupPassInfo(StringRef passArg) { in lookupPassInfo() argument
141 auto it = passRegistry->find(passArg); in lookupPassInfo()