[PATCH] D75867: [mlir][NFC] Move the operation interfaces out of Analysis/ and into a new Interfaces/ directory.

River Riddle via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 9 12:58:11 PDT 2020


rriddle created this revision.
rriddle added reviewers: jpienaar, mehdi_amini.
Herald added subscribers: llvm-commits, bader, Joonsoo, liufengdb, aartbik, lucyrfox, mgester, arpith-jacob, nicolasvasilache, antiagainst, shauheen, burmako, mgorny.
Herald added a reviewer: mravishankar.
Herald added a reviewer: antiagainst.
Herald added a project: LLVM.

The interfaces themselves aren't really analyses, they may be used by analyses though. Having them in Analysis can also create cyclic dependencies if an analysis depends on a specific dialect, that also provides one of the interfaces.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D75867

Files:
  mlir/docs/ShapeInference.md
  mlir/docs/Tutorials/Toy/Ch-4.md
  mlir/examples/toy/Ch4/CMakeLists.txt
  mlir/examples/toy/Ch4/include/toy/Ops.td
  mlir/examples/toy/Ch5/CMakeLists.txt
  mlir/examples/toy/Ch5/include/toy/Ops.td
  mlir/examples/toy/Ch6/CMakeLists.txt
  mlir/examples/toy/Ch6/include/toy/Ops.td
  mlir/examples/toy/Ch7/CMakeLists.txt
  mlir/examples/toy/Ch7/include/toy/Ops.td
  mlir/include/mlir/Analysis/CMakeLists.txt
  mlir/include/mlir/Analysis/CallInterfaces.h
  mlir/include/mlir/Analysis/CallInterfaces.td
  mlir/include/mlir/Analysis/ControlFlowInterfaces.h
  mlir/include/mlir/Analysis/ControlFlowInterfaces.td
  mlir/include/mlir/Analysis/InferTypeOpInterface.h
  mlir/include/mlir/Analysis/InferTypeOpInterface.td
  mlir/include/mlir/CMakeLists.txt
  mlir/include/mlir/Dialect/LLVMIR/LLVMDialect.h
  mlir/include/mlir/Dialect/LLVMIR/LLVMOps.td
  mlir/include/mlir/Dialect/SPIRV/SPIRVControlFlowOps.td
  mlir/include/mlir/Dialect/SPIRV/SPIRVOps.h
  mlir/include/mlir/Dialect/SPIRV/SPIRVStructureOps.td
  mlir/include/mlir/Dialect/StandardOps/IR/Ops.h
  mlir/include/mlir/Dialect/StandardOps/IR/Ops.td
  mlir/include/mlir/IR/Function.h
  mlir/include/mlir/Interfaces/CMakeLists.txt
  mlir/include/mlir/Interfaces/CallInterfaces.h
  mlir/include/mlir/Interfaces/CallInterfaces.td
  mlir/include/mlir/Interfaces/ControlFlowInterfaces.h
  mlir/include/mlir/Interfaces/ControlFlowInterfaces.td
  mlir/include/mlir/Interfaces/InferTypeOpInterface.h
  mlir/include/mlir/Interfaces/InferTypeOpInterface.td
  mlir/lib/Analysis/CMakeLists.txt
  mlir/lib/Analysis/CallGraph.cpp
  mlir/lib/Analysis/ControlFlowInterfaces.cpp
  mlir/lib/Analysis/InferTypeOpInterface.cpp
  mlir/lib/CMakeLists.txt
  mlir/lib/Dialect/LLVMIR/CMakeLists.txt
  mlir/lib/Dialect/SPIRV/CMakeLists.txt
  mlir/lib/Dialect/SPIRV/SPIRVOps.cpp
  mlir/lib/Dialect/StandardOps/CMakeLists.txt
  mlir/lib/IR/CMakeLists.txt
  mlir/lib/Interfaces/CMakeLists.txt
  mlir/lib/Interfaces/CallInterfaces.cpp
  mlir/lib/Interfaces/ControlFlowInterfaces.cpp
  mlir/lib/Interfaces/InferTypeOpInterface.cpp
  mlir/lib/Transforms/Utils/RegionUtils.cpp
  mlir/test/lib/IR/CMakeLists.txt
  mlir/test/lib/TestDialect/CMakeLists.txt
  mlir/test/lib/TestDialect/TestDialect.h
  mlir/test/lib/TestDialect/TestOps.td

-------------- next part --------------
A non-text attachment was scrubbed...
Name: D75867.249192.patch
Type: text/x-patch
Size: 31659 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200309/045ead04/attachment.bin>


More information about the llvm-commits mailing list