blob: 6d2be0b7668cc25cc47ef00d2a1526c9237f01ae (
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
|
# $OpenBSD: Makefile,v 1.12 2019/03/05 09:44:42 jsg Exp $
LIB= LLVMX86CodeGen
NOPROFILE=
CPPFLAGS+= -I${.OBJDIR}/../include/llvm/X86 -I${LLVM_SRCS}/lib/Target/X86
SRCS+= ShadowCallStack.cpp\
X86AsmPrinter.cpp \
X86AvoidStoreForwardingBlocks.cpp \
X86CallFrameOptimization.cpp \
X86CallLowering.cpp \
X86CallingConv.cpp \
X86CmovConversion.cpp \
X86DomainReassignment.cpp \
X86EvexToVex.cpp \
X86ExpandPseudo.cpp \
X86FastISel.cpp \
X86FixupBWInsts.cpp \
X86FixupGadgets.cpp \
X86FixupLEAs.cpp \
X86FixupSetCC.cpp \
X86FlagsCopyLowering.cpp \
X86FloatingPoint.cpp \
X86FrameLowering.cpp \
X86ISelDAGToDAG.cpp \
X86ISelLowering.cpp \
X86IndirectBranchTracking.cpp \
X86InstrFMA3Info.cpp \
X86InstrFoldTables.cpp \
X86InstrInfo.cpp \
X86InstructionSelector.cpp \
X86InterleavedAccess.cpp \
X86LegalizerInfo.cpp \
X86MCInstLower.cpp \
X86MachineFunctionInfo.cpp \
X86MacroFusion.cpp \
X86PadShortFunction.cpp \
X86RegisterBankInfo.cpp \
X86RegisterInfo.cpp \
X86RetpolineThunks.cpp \
X86ReturnProtectorLowering.cpp \
X86SelectionDAGInfo.cpp \
X86ShuffleDecodeConstantPool.cpp \
X86SpeculativeLoadHardening.cpp \
X86Subtarget.cpp \
X86TargetMachine.cpp \
X86TargetObjectFile.cpp \
X86TargetTransformInfo.cpp \
X86VZeroUpper.cpp \
X86WinAllocaExpander.cpp \
X86WinEHState.cpp \
X86OptimizeLEAs.cpp
.PATH: ${.CURDIR}/../../../llvm/lib/Target/X86
|