blob: 2bc56be5a4e7cf5a8d4efd173981d40c60d57ced (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# $OpenBSD: Makefile,v 1.8 2019/03/05 09:44:39 jsg Exp $
LIB= LLVMAArch64CodeGen
NOPROFILE=
CPPFLAGS+= -I${.OBJDIR}/../include/llvm/AArch64 \
-I${LLVM_SRCS}/lib/Target/AArch64
SRCS+= AArch64A57FPLoadBalancing.cpp \
AArch64AdvSIMDScalarPass.cpp \
AArch64AsmPrinter.cpp \
AArch64CallLowering.cpp \
AArch64CleanupLocalDynamicTLSPass.cpp \
AArch64CollectLOH.cpp \
AArch64CondBrTuning.cpp \
AArch64ConditionOptimizer.cpp \
AArch64ConditionalCompares.cpp \
AArch64DeadRegisterDefinitionsPass.cpp \
AArch64ExpandPseudoInsts.cpp \
AArch64FalkorHWPFFix.cpp \
AArch64FastISel.cpp \
AArch64A53Fix835769.cpp \
AArch64FrameLowering.cpp \
AArch64ISelDAGToDAG.cpp \
AArch64ISelLowering.cpp \
AArch64InstrInfo.cpp \
AArch64InstructionSelector.cpp \
AArch64LegalizerInfo.cpp \
AArch64LoadStoreOptimizer.cpp \
AArch64MacroFusion.cpp \
AArch64MCInstLower.cpp \
AArch64PromoteConstant.cpp \
AArch64PBQPRegAlloc.cpp \
AArch64RedundantCopyElimination.cpp \
AArch64RegisterBankInfo.cpp \
AArch64RegisterInfo.cpp \
AArch64ReturnProtectorLowering.cpp \
AArch64SIMDInstrOpt.cpp \
AArch64SelectionDAGInfo.cpp \
AArch64StorePairSuppress.cpp \
AArch64Subtarget.cpp \
AArch64TargetMachine.cpp \
AArch64TargetObjectFile.cpp \
AArch64TargetTransformInfo.cpp
.PATH: ${.CURDIR}/../../../llvm/lib/Target/AArch64
|