blob: c19a451073ebdfff0ceba98a37cf452e7c14f1b6 (
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
47
48
49
50
51
52
53
54
55
56
57
|
# $FreeBSD$
LIB= llvmarmcodegen
SRCDIR= lib/Target/ARM
SRCS= ARMAsmBackend.cpp \
ARMAsmPrinter.cpp \
ARMBaseInstrInfo.cpp \
ARMBaseRegisterInfo.cpp \
ARMCodeEmitter.cpp \
ARMConstantIslandPass.cpp \
ARMConstantPoolValue.cpp \
ARMELFWriterInfo.cpp \
ARMExpandPseudoInsts.cpp \
ARMFastISel.cpp \
ARMFrameLowering.cpp \
ARMGlobalMerge.cpp \
ARMHazardRecognizer.cpp \
ARMISelDAGToDAG.cpp \
ARMISelLowering.cpp \
ARMInstrInfo.cpp \
ARMJITInfo.cpp \
ARMMCCodeEmitter.cpp \
ARMMCExpr.cpp \
ARMLoadStoreOptimizer.cpp \
ARMMCAsmInfo.cpp \
ARMMCInstLower.cpp \
ARMRegisterInfo.cpp \
ARMSelectionDAGInfo.cpp \
ARMSubtarget.cpp \
ARMTargetMachine.cpp \
ARMTargetObjectFile.cpp \
MLxExpansionPass.cpp \
NEONMoveFix.cpp \
Thumb1FrameLowering.cpp \
Thumb1InstrInfo.cpp \
Thumb1RegisterInfo.cpp \
Thumb2ITBlockPass.cpp \
Thumb2InstrInfo.cpp \
Thumb2RegisterInfo.cpp \
Thumb2SizeReduction.cpp
TGHDRS= ARMGenAsmWriter \
ARMGenCallingConv \
ARMGenCodeEmitter \
ARMGenDAGISel \
ARMGenFastISel \
ARMGenInstrInfo \
ARMGenInstrNames \
ARMGenMCCodeEmitter \
ARMGenRegisterInfo \
ARMGenRegisterInfo.h \
ARMGenRegisterNames \
ARMGenSubtarget \
Intrinsics
.include "../clang.lib.mk"
|