blob: fa445b5963e58f2d2b29f9a088aa1ae0703b3640 (
plain) (
blame)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
# $OpenBSD: Makefile,v 1.12 2020/08/03 14:45:28 patrick Exp $
LIB= LLVMTransformUtils
NOPROFILE=
CPPFLAGS+= -I${LLVM_SRCS}/include/llvm/Transforms
CPPFLAGS+= -I${LLVM_SRCS}/include/llvm/Transforms/Utils
SRCS+= ASanStackFrameLayout.cpp \
AddDiscriminators.cpp \
BasicBlockUtils.cpp \
BreakCriticalEdges.cpp \
BuildLibCalls.cpp \
BypassSlowDivision.cpp \
CallPromotionUtils.cpp \
CanonicalizeAliases.cpp \
CloneFunction.cpp \
CloneModule.cpp \
CodeExtractor.cpp \
CodeMoverUtils.cpp \
CtorUtils.cpp \
Debugify.cpp \
DemoteRegToStack.cpp \
EntryExitInstrumenter.cpp \
EscapeEnumerator.cpp \
Evaluator.cpp \
FlattenCFG.cpp \
FunctionComparator.cpp \
FunctionImportUtils.cpp \
GlobalStatus.cpp \
TransformUtilsGuardUtils.cpp \
ImportedFunctionsInliningStatistics.cpp \
InjectTLIMappings.cpp \
InlineFunction.cpp \
InstructionNamer.cpp \
IntegerDivision.cpp \
LCSSA.cpp \
LibCallsShrinkWrap.cpp \
Local.cpp \
LoopRotationUtils.cpp \
LoopSimplify.cpp \
LoopUnroll.cpp \
LoopUnrollAndJam.cpp \
LoopUnrollPeel.cpp \
LoopUnrollRuntime.cpp \
LoopUtils.cpp \
LoopVersioning.cpp \
LowerInvoke.cpp \
LowerMemIntrinsics.cpp \
LowerSwitch.cpp \
Mem2Reg.cpp \
MetaRenamer.cpp \
MisExpect.cpp \
ModuleUtils.cpp \
NameAnonGlobals.cpp \
PredicateInfo.cpp \
PromoteMemoryToRegister.cpp \
StripGCRelocates.cpp \
SSAUpdater.cpp \
SanitizerStats.cpp \
SimplifyCFG.cpp \
SimplifyIndVar.cpp \
SimplifyLibCalls.cpp \
SizeOpts.cpp \
SplitModule.cpp \
StripNonLineTableDebugInfo.cpp \
SymbolRewriter.cpp \
UnifyFunctionExitNodes.cpp \
TransformUtilsUtils.cpp \
VNCoercion.cpp \
ValueMapper.cpp
TransformUtilsGuardUtils.cpp:
ln -s ${LLVM_SRCS}/lib/Transforms/Utils/GuardUtils.cpp $@
TransformUtilsUtils.cpp:
ln -s ${LLVM_SRCS}/lib/Transforms/Utils/Utils.cpp $@
.PATH: ${.CURDIR}/../../../llvm/llvm/lib/Transforms/Utils
CLEANFILES+= TransformUtilsUtils.cpp
|