freebsd-dev/usr.bin/clang/llvm-mca/Makefile
Dimitry Andric e8d8bef961 Merge llvm-project main llvmorg-12-init-17869-g8e464dd76bef
This updates llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and
openmp to llvmorg-12-init-17869-g8e464dd76bef, the last commit before the
upstream release/12.x branch was created.

PR:		255570
MFC after:	6 weeks
2021-06-13 21:37:19 +02:00

27 lines
635 B
Makefile

# $FreeBSD$
PROG_CXX= llvm-mca
SRCDIR= llvm/tools/llvm-mca
SRCS+= CodeRegion.cpp
SRCS+= CodeRegionGenerator.cpp
SRCS+= PipelinePrinter.cpp
SRCS+= Views/BottleneckAnalysis.cpp
SRCS+= Views/DispatchStatistics.cpp
SRCS+= Views/InstructionInfoView.cpp
SRCS+= Views/InstructionView.cpp
SRCS+= Views/RegisterFileStatistics.cpp
SRCS+= Views/ResourcePressureView.cpp
SRCS+= Views/RetireControlUnitStatistics.cpp
SRCS+= Views/SchedulerStatistics.cpp
SRCS+= Views/SummaryView.cpp
SRCS+= Views/TimelineView.cpp
SRCS+= Views/View.cpp
SRCS+= llvm-mca.cpp
CFLAGS+= -I${LLVM_BASE}/${SRCDIR}
LIBADD+= z
.include "../llvm.prog.mk"