Searched refs:passArg (Results 1 – 5 of 5) sorted by relevance
| /llvm-project-15.0.7/flang/test/Semantics/ |
| H A D | bindings01.f90 | 181 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 D | PassBase.td | 65 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 D | Pass.h | 58 static const PassInfo *lookupPassInfo(StringRef passArg);
|
| /llvm-project-15.0.7/flang/lib/Semantics/ |
| H A D | check-declarations.cpp | 1570 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 D | PassRegistry.cpp | 140 const PassInfo *mlir::Pass::lookupPassInfo(StringRef passArg) { in lookupPassInfo() argument 141 auto it = passRegistry->find(passArg); in lookupPassInfo()
|