mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
46b8d41e4e
Summary: This patch introduces llvm-mca as a library. The driver (llvm-mca.cpp), views, and stats, are not part of the library. Those are separate components that are not required for the functioning of llvm-mca. The directory has been organized as follows: All library source files now reside in: - `lib/HardwareUnits/` - All subclasses of HardwareUnit (these represent the simulated hardware components of a backend). (LSUnit does not inherit from HardwareUnit, but Scheduler does which uses LSUnit). - `lib/Stages/` - All subclasses of the pipeline stages. - `lib/` - This is the root of the library and contains library code that does not fit into the Stages or HardwareUnit subdirs. All library header files now reside in the `include` directory and mimic the same layout as the `lib` directory mentioned above. In the (near) future we would like to move the library (include and lib) contents from tools and into the core of llvm somewhere. That change would allow various analysis and optimization passes to make use of MCA functionality for things like cost modeling. I left all of the non-library code just where it has always been, in the root of the llvm-mca directory. The include directives for the non-library source file have been updated to refer to the llvm-mca library headers. I updated the llvm-mca/CMakeLists.txt file to include the library headers, but I made the non-library code explicitly reference the library's 'include' directory. Once we eventually (hopefully) migrate the MCA library components into llvm the include directives used by the non-library source files will be updated to point to the proper location in llvm. Reviewers: andreadb, courbet, RKSimon Reviewed By: andreadb Subscribers: mgorny, javed.absar, tschuett, gbedwell, llvm-commits Differential Revision: https://reviews.llvm.org/D50929 llvm-svn: 340755
32 lines
663 B
CMake
32 lines
663 B
CMake
include_directories(include)
|
|
|
|
set(LLVM_LINK_COMPONENTS
|
|
AllTargetsAsmPrinters
|
|
AllTargetsAsmParsers
|
|
AllTargetsDescs
|
|
AllTargetsDisassemblers
|
|
AllTargetsInfos
|
|
MC
|
|
MCParser
|
|
Support
|
|
)
|
|
|
|
add_llvm_tool(llvm-mca
|
|
llvm-mca.cpp
|
|
CodeRegion.cpp
|
|
PipelinePrinter.cpp
|
|
Views/DispatchStatistics.cpp
|
|
Views/InstructionInfoView.cpp
|
|
Views/RegisterFileStatistics.cpp
|
|
Views/ResourcePressureView.cpp
|
|
Views/RetireControlUnitStatistics.cpp
|
|
Views/SchedulerStatistics.cpp
|
|
Views/SummaryView.cpp
|
|
Views/TimelineView.cpp
|
|
Views/View.cpp
|
|
)
|
|
|
|
set(LLVM_MCA_SOURCE_DIR ${CURRENT_SOURCE_DIR})
|
|
add_subdirectory(lib)
|
|
target_link_libraries(llvm-mca PRIVATE LLVMMCA)
|