You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
632 B
32 lines
632 B
include_directories(include)
|
|
|
|
set(LLVM_LINK_COMPONENTS
|
|
AllTargetsAsmParsers
|
|
AllTargetsDescs
|
|
AllTargetsDisassemblers
|
|
AllTargetsInfos
|
|
MCA
|
|
MC
|
|
MCParser
|
|
Support
|
|
)
|
|
|
|
add_llvm_tool(llvm-mca
|
|
llvm-mca.cpp
|
|
CodeRegion.cpp
|
|
CodeRegionGenerator.cpp
|
|
PipelinePrinter.cpp
|
|
Views/BottleneckAnalysis.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})
|