Mon Nov 11 19:22:28 2019 UTC ()
llvm: Support RISCV target.

Bump PKGREVISION


(nia)
diff -r1.47 -r1.48 pkgsrc/lang/llvm/Makefile
diff -r1.13 -r1.14 pkgsrc/lang/llvm/PLIST
diff -r1.5 -r1.6 pkgsrc/lang/llvm/options.mk

cvs diff -r1.47 -r1.48 pkgsrc/lang/llvm/Makefile (switch to unified diff)

--- pkgsrc/lang/llvm/Makefile 2019/10/24 11:40:00 1.47
+++ pkgsrc/lang/llvm/Makefile 2019/11/11 19:22:28 1.48
@@ -1,118 +1,118 @@ @@ -1,118 +1,118 @@
1# $NetBSD: Makefile,v 1.47 2019/10/24 11:40:00 tnn Exp $ 1# $NetBSD: Makefile,v 1.48 2019/11/11 19:22:28 nia Exp $
2# 2#
3# when updating this, please also update: 3# when updating this, please also update:
4# devel/include-what-you-use 4# devel/include-what-you-use
5# devel/lld 5# devel/lld
6# devel/lldb 6# devel/lldb
7# devel/polly 7# devel/polly
8# lang/clang 8# lang/clang
9# lang/clang-static-analyzer 9# lang/clang-static-analyzer
10# lang/clang-tools-extra 10# lang/clang-tools-extra
11# lang/compiler-rt 11# lang/compiler-rt
12# lang/libcxx 12# lang/libcxx
13# lang/libcxxabi 13# lang/libcxxabi
14# lang/libunwind 14# lang/libunwind
15# parallel/openmp 15# parallel/openmp
16# 16#
17# Do not update: 17# Do not update:
18# lang/libLLVM 18# lang/libLLVM
19# because pkgsrc provides multiple versions and lang/libLLVM is 19# because pkgsrc provides multiple versions and lang/libLLVM is
20# logically libLLVM4. 20# logically libLLVM4.
21# 21#
22# Always update all */buildlink3.mk to require the latest stable release 22# Always update all */buildlink3.mk to require the latest stable release
23# version in BUILDLINK_API_DEPENDS, as there is no backwards compatibility 23# version in BUILDLINK_API_DEPENDS, as there is no backwards compatibility
24 24
25DISTNAME= llvm-9.0.0.src 25DISTNAME= llvm-9.0.0.src
26PKGREVISION= 1 26PKGREVISION= 2
27PKGNAME= ${DISTNAME:S/.src//} 27PKGNAME= ${DISTNAME:S/.src//}
28CATEGORIES= lang devel 28CATEGORIES= lang devel
29MASTER_SITES= http://releases.llvm.org/${PKGVERSION_NOREV}/ 29MASTER_SITES= http://releases.llvm.org/${PKGVERSION_NOREV}/
30EXTRACT_SUFX= .tar.xz 30EXTRACT_SUFX= .tar.xz
31 31
32MAINTAINER= pkgsrc-users@NetBSD.org 32MAINTAINER= pkgsrc-users@NetBSD.org
33HOMEPAGE= http://llvm.org/ 33HOMEPAGE= http://llvm.org/
34COMMENT= Low Level Virtual Machine compiler infrastructure 34COMMENT= Low Level Virtual Machine compiler infrastructure
35LICENSE= apache-2.0 35LICENSE= apache-2.0
36 36
37USE_LANGUAGES= c c++11 37USE_LANGUAGES= c c++11
38USE_CMAKE= yes 38USE_CMAKE= yes
39GCC_REQD+= 5.1 39GCC_REQD+= 5.1
40PYTHON_FOR_BUILD_ONLY= yes 40PYTHON_FOR_BUILD_ONLY= yes
41 41
42CONFIGURE_DIRS= ${WRKDIR}/build 42CONFIGURE_DIRS= ${WRKDIR}/build
43CMAKE_ARG_PATH= ${WRKSRC} 43CMAKE_ARG_PATH= ${WRKSRC}
44 44
45CMAKE_ARGS+= -DCMAKE_BUILD_TYPE=Release 45CMAKE_ARGS+= -DCMAKE_BUILD_TYPE=Release
46CMAKE_ARGS+= -DCMAKE_C_COMPILER=${CC:Q} 46CMAKE_ARGS+= -DCMAKE_C_COMPILER=${CC:Q}
47CMAKE_ARGS+= -DCMAKE_CXX_COMPILER=${CXX:Q} 47CMAKE_ARGS+= -DCMAKE_CXX_COMPILER=${CXX:Q}
48CMAKE_ARGS+= -DCMAKE_CXX_LINK_FLAGS=${LDFLAGS:Q} 48CMAKE_ARGS+= -DCMAKE_CXX_LINK_FLAGS=${LDFLAGS:Q}
49CMAKE_ARGS+= -DLLVM_BUILD_LLVM_DYLIB=ON 49CMAKE_ARGS+= -DLLVM_BUILD_LLVM_DYLIB=ON
50CMAKE_ARGS+= -DLLVM_INCLUDE_BENCHMARKS=OFF 50CMAKE_ARGS+= -DLLVM_INCLUDE_BENCHMARKS=OFF
51CMAKE_ARGS+= -DLLVM_INSTALL_UTILS=ON 51CMAKE_ARGS+= -DLLVM_INSTALL_UTILS=ON
52CMAKE_ARGS+= -DLLVM_LINK_LLVM_DYLIB=ON 52CMAKE_ARGS+= -DLLVM_LINK_LLVM_DYLIB=ON
53CMAKE_ARGS+= -DLLVM_ENABLE_RTTI=ON 53CMAKE_ARGS+= -DLLVM_ENABLE_RTTI=ON
54 54
55CMAKE_ARGS.Darwin+= -DCMAKE_LIBTOOL=/usr/bin/libtool 55CMAKE_ARGS.Darwin+= -DCMAKE_LIBTOOL=/usr/bin/libtool
56 56
57CHECK_PORTABILITY_SKIP= utils/buildit/build_llvm 57CHECK_PORTABILITY_SKIP= utils/buildit/build_llvm
58 58
59# XXX perl is not added as a tool as it does not seem to be required 59# XXX perl is not added as a tool as it does not seem to be required
60REPLACE_PERL+= utils/*.pl 60REPLACE_PERL+= utils/*.pl
61REPLACE_PERL+= utils/codegen-diff 61REPLACE_PERL+= utils/codegen-diff
62REPLACE_PERL+= utils/llvm-native-gxx 62REPLACE_PERL+= utils/llvm-native-gxx
63 63
64REPLACE_PYTHON+= tools/opt-viewer/*.py 64REPLACE_PYTHON+= tools/opt-viewer/*.py
65REPLACE_PYTHON+= tools/sancov/*.py 65REPLACE_PYTHON+= tools/sancov/*.py
66REPLACE_PYTHON+= utils/*.py 66REPLACE_PYTHON+= utils/*.py
67REPLACE_PYTHON+= utils/Misc/zkill 67REPLACE_PYTHON+= utils/Misc/zkill
68REPLACE_PYTHON+= utils/bisect 68REPLACE_PYTHON+= utils/bisect
69REPLACE_PYTHON+= utils/clang-parse-diagnostics-file 69REPLACE_PYTHON+= utils/clang-parse-diagnostics-file
70REPLACE_PYTHON+= utils/git/find-rev 70REPLACE_PYTHON+= utils/git/find-rev
71REPLACE_PYTHON+= utils/lit/tests/Inputs/googletest-format/DummySubDir/OneTest 71REPLACE_PYTHON+= utils/lit/tests/Inputs/googletest-format/DummySubDir/OneTest
72REPLACE_PYTHON+= utils/llvm-build/llvm-build 72REPLACE_PYTHON+= utils/llvm-build/llvm-build
73REPLACE_PYTHON+= utils/llvm-compilers-check 73REPLACE_PYTHON+= utils/llvm-compilers-check
74REPLACE_PYTHON+= utils/llvm-lit/llvm-lit.in 74REPLACE_PYTHON+= utils/llvm-lit/llvm-lit.in
75 75
76TEST_TARGET= check 76TEST_TARGET= check
77TEST_ENV+= LD_LIBRARY_PATH=${WRKDIR}/build/lib 77TEST_ENV+= LD_LIBRARY_PATH=${WRKDIR}/build/lib
78 78
79# It may be that the Solaris linker is more strict here and they can be removed on 79# It may be that the Solaris linker is more strict here and they can be removed on
80# all platforms. Change this to a patch if verified. 80# all platforms. Change this to a patch if verified.
81SUBST_CLASSES.SunOS+= linkmap 81SUBST_CLASSES.SunOS+= linkmap
82SUBST_STAGE.linkmap= pre-configure 82SUBST_STAGE.linkmap= pre-configure
83SUBST_FILES.linkmap= tools/lto/lto.exports 83SUBST_FILES.linkmap= tools/lto/lto.exports
84SUBST_FILES.linkmap+= tools/opt-remarks/OptRemarks.exports 84SUBST_FILES.linkmap+= tools/opt-remarks/OptRemarks.exports
85SUBST_FILES.linkmap+= tools/remarks-shlib/Remarks.exports 85SUBST_FILES.linkmap+= tools/remarks-shlib/Remarks.exports
86SUBST_SED.linkmap= -e '/^LLVM/d' 86SUBST_SED.linkmap= -e '/^LLVM/d'
87 87
88.include "../../mk/bsd.prefs.mk" 88.include "../../mk/bsd.prefs.mk"
89 89
90PLIST_VARS+= notdylib 90PLIST_VARS+= notdylib
91.if ${SHLIB_TYPE} == "dylib" 91.if ${SHLIB_TYPE} == "dylib"
92SOEXT= dylib 92SOEXT= dylib
93.else 93.else
94SOEXT= so 94SOEXT= so
95PLIST.notdylib= yes 95PLIST.notdylib= yes
96.endif 96.endif
97PLIST_SUBST+= SOEXT=${SOEXT} 97PLIST_SUBST+= SOEXT=${SOEXT}
98 98
99# needs std::atomic with 64-bit CAS 99# needs std::atomic with 64-bit CAS
100.if ${MACHINE_ARCH} == "i386" 100.if ${MACHINE_ARCH} == "i386"
101CXXFLAGS+= -march=i586 101CXXFLAGS+= -march=i586
102.endif 102.endif
103 103
104.include "options.mk" 104.include "options.mk"
105 105
106# replacing config.guess is required even for cmake. 106# replacing config.guess is required even for cmake.
107# It is used to detect correct LLVM_HOST_TRIPLE, e.g. for NetBSD/evbarm. 107# It is used to detect correct LLVM_HOST_TRIPLE, e.g. for NetBSD/evbarm.
108post-extract: 108post-extract:
109 ${MKDIR} ${WRKDIR}/build 109 ${MKDIR} ${WRKDIR}/build
110.for f in config.guess config.sub 110.for f in config.guess config.sub
111 cp ../../mk/gnu-config/${f} ${WRKSRC}/cmake/${f} 111 cp ../../mk/gnu-config/${f} ${WRKSRC}/cmake/${f}
112.endfor 112.endfor
113 113
114.include "../../devel/zlib/buildlink3.mk" 114.include "../../devel/zlib/buildlink3.mk"
115.include "../../lang/python/application.mk" 115.include "../../lang/python/application.mk"
116.include "../../lang/python/tool.mk" 116.include "../../lang/python/tool.mk"
117.include "../../textproc/libxml2/buildlink3.mk" 117.include "../../textproc/libxml2/buildlink3.mk"
118.include "../../mk/bsd.pkg.mk" 118.include "../../mk/bsd.pkg.mk"

cvs diff -r1.13 -r1.14 pkgsrc/lang/llvm/PLIST (switch to unified diff)

--- pkgsrc/lang/llvm/PLIST 2019/10/19 13:52:40 1.13
+++ pkgsrc/lang/llvm/PLIST 2019/11/11 19:22:28 1.14
@@ -1,1639 +1,1645 @@ @@ -1,1639 +1,1645 @@
1@comment $NetBSD: PLIST,v 1.13 2019/10/19 13:52:40 adam Exp $ 1@comment $NetBSD: PLIST,v 1.14 2019/11/11 19:22:28 nia Exp $
2bin/FileCheck 2bin/FileCheck
3bin/bugpoint 3bin/bugpoint
4bin/count 4bin/count
5bin/dsymutil 5bin/dsymutil
6bin/llc 6bin/llc
7bin/lli 7bin/lli
8bin/lli-child-target 8bin/lli-child-target
9bin/llvm-PerfectShuffle 9bin/llvm-PerfectShuffle
10bin/llvm-addr2line 10bin/llvm-addr2line
11bin/llvm-ar 11bin/llvm-ar
12bin/llvm-as 12bin/llvm-as
13bin/llvm-bcanalyzer 13bin/llvm-bcanalyzer
14bin/llvm-c-test 14bin/llvm-c-test
15bin/llvm-cat 15bin/llvm-cat
16bin/llvm-cfi-verify 16bin/llvm-cfi-verify
17bin/llvm-config 17bin/llvm-config
18bin/llvm-cov 18bin/llvm-cov
19bin/llvm-cvtres 19bin/llvm-cvtres
20bin/llvm-cxxdump 20bin/llvm-cxxdump
21bin/llvm-cxxfilt 21bin/llvm-cxxfilt
22bin/llvm-cxxmap 22bin/llvm-cxxmap
23bin/llvm-diff 23bin/llvm-diff
24bin/llvm-dis 24bin/llvm-dis
25bin/llvm-dlltool 25bin/llvm-dlltool
26bin/llvm-dwarfdump 26bin/llvm-dwarfdump
27bin/llvm-dwp 27bin/llvm-dwp
28bin/llvm-elfabi 28bin/llvm-elfabi
29bin/llvm-exegesis 29bin/llvm-exegesis
30bin/llvm-extract 30bin/llvm-extract
31bin/llvm-jitlink 31bin/llvm-jitlink
32bin/llvm-lib 32bin/llvm-lib
33bin/llvm-link 33bin/llvm-link
34bin/llvm-lipo 34bin/llvm-lipo
35bin/llvm-lto 35bin/llvm-lto
36bin/llvm-lto2 36bin/llvm-lto2
37bin/llvm-mc 37bin/llvm-mc
38bin/llvm-mca 38bin/llvm-mca
39bin/llvm-modextract 39bin/llvm-modextract
40bin/llvm-mt 40bin/llvm-mt
41bin/llvm-nm 41bin/llvm-nm
42bin/llvm-objcopy 42bin/llvm-objcopy
43bin/llvm-objdump 43bin/llvm-objdump
44bin/llvm-opt-report 44bin/llvm-opt-report
45bin/llvm-pdbutil 45bin/llvm-pdbutil
46bin/llvm-profdata 46bin/llvm-profdata
47bin/llvm-ranlib 47bin/llvm-ranlib
48bin/llvm-rc 48bin/llvm-rc
49bin/llvm-readelf 49bin/llvm-readelf
50bin/llvm-readobj 50bin/llvm-readobj
51bin/llvm-rtdyld 51bin/llvm-rtdyld
52bin/llvm-size 52bin/llvm-size
53bin/llvm-split 53bin/llvm-split
54bin/llvm-stress 54bin/llvm-stress
55bin/llvm-strings 55bin/llvm-strings
56bin/llvm-strip 56bin/llvm-strip
57bin/llvm-symbolizer 57bin/llvm-symbolizer
58bin/llvm-tblgen 58bin/llvm-tblgen
59bin/llvm-undname 59bin/llvm-undname
60bin/llvm-xray 60bin/llvm-xray
61bin/not 61bin/not
62bin/obj2yaml 62bin/obj2yaml
63bin/opt 63bin/opt
64bin/sancov 64bin/sancov
65bin/sanstats 65bin/sanstats
66bin/verify-uselistorder 66bin/verify-uselistorder
67bin/yaml-bench 67bin/yaml-bench
68bin/yaml2obj 68bin/yaml2obj
69include/llvm-c/Analysis.h 69include/llvm-c/Analysis.h
70include/llvm-c/BitReader.h 70include/llvm-c/BitReader.h
71include/llvm-c/BitWriter.h 71include/llvm-c/BitWriter.h
72include/llvm-c/Comdat.h 72include/llvm-c/Comdat.h
73include/llvm-c/Core.h 73include/llvm-c/Core.h
74include/llvm-c/DataTypes.h 74include/llvm-c/DataTypes.h
75include/llvm-c/DebugInfo.h 75include/llvm-c/DebugInfo.h
76include/llvm-c/Disassembler.h 76include/llvm-c/Disassembler.h
77include/llvm-c/DisassemblerTypes.h 77include/llvm-c/DisassemblerTypes.h
78include/llvm-c/Error.h 78include/llvm-c/Error.h
79include/llvm-c/ErrorHandling.h 79include/llvm-c/ErrorHandling.h
80include/llvm-c/ExecutionEngine.h 80include/llvm-c/ExecutionEngine.h
81include/llvm-c/IRReader.h 81include/llvm-c/IRReader.h
82include/llvm-c/Initialization.h 82include/llvm-c/Initialization.h
83include/llvm-c/LinkTimeOptimizer.h 83include/llvm-c/LinkTimeOptimizer.h
84include/llvm-c/Linker.h 84include/llvm-c/Linker.h
85include/llvm-c/Object.h 85include/llvm-c/Object.h
86include/llvm-c/OrcBindings.h 86include/llvm-c/OrcBindings.h
87include/llvm-c/Remarks.h 87include/llvm-c/Remarks.h
88include/llvm-c/Support.h 88include/llvm-c/Support.h
89include/llvm-c/Target.h 89include/llvm-c/Target.h
90include/llvm-c/TargetMachine.h 90include/llvm-c/TargetMachine.h
91include/llvm-c/Transforms/AggressiveInstCombine.h 91include/llvm-c/Transforms/AggressiveInstCombine.h
92include/llvm-c/Transforms/Coroutines.h 92include/llvm-c/Transforms/Coroutines.h
93include/llvm-c/Transforms/IPO.h 93include/llvm-c/Transforms/IPO.h
94include/llvm-c/Transforms/InstCombine.h 94include/llvm-c/Transforms/InstCombine.h
95include/llvm-c/Transforms/PassManagerBuilder.h 95include/llvm-c/Transforms/PassManagerBuilder.h
96include/llvm-c/Transforms/Scalar.h 96include/llvm-c/Transforms/Scalar.h
97include/llvm-c/Transforms/Utils.h 97include/llvm-c/Transforms/Utils.h
98include/llvm-c/Transforms/Vectorize.h 98include/llvm-c/Transforms/Vectorize.h
99include/llvm-c/Types.h 99include/llvm-c/Types.h
100include/llvm-c/lto.h 100include/llvm-c/lto.h
101include/llvm/ADT/APFloat.h 101include/llvm/ADT/APFloat.h
102include/llvm/ADT/APInt.h 102include/llvm/ADT/APInt.h
103include/llvm/ADT/APSInt.h 103include/llvm/ADT/APSInt.h
104include/llvm/ADT/AllocatorList.h 104include/llvm/ADT/AllocatorList.h
105include/llvm/ADT/Any.h 105include/llvm/ADT/Any.h
106include/llvm/ADT/ArrayRef.h 106include/llvm/ADT/ArrayRef.h
107include/llvm/ADT/BitVector.h 107include/llvm/ADT/BitVector.h
108include/llvm/ADT/BitmaskEnum.h 108include/llvm/ADT/BitmaskEnum.h
109include/llvm/ADT/BreadthFirstIterator.h 109include/llvm/ADT/BreadthFirstIterator.h
110include/llvm/ADT/CachedHashString.h 110include/llvm/ADT/CachedHashString.h
111include/llvm/ADT/DAGDeltaAlgorithm.h 111include/llvm/ADT/DAGDeltaAlgorithm.h
112include/llvm/ADT/DeltaAlgorithm.h 112include/llvm/ADT/DeltaAlgorithm.h
113include/llvm/ADT/DenseMap.h 113include/llvm/ADT/DenseMap.h
114include/llvm/ADT/DenseMapInfo.h 114include/llvm/ADT/DenseMapInfo.h
115include/llvm/ADT/DenseSet.h 115include/llvm/ADT/DenseSet.h
116include/llvm/ADT/DepthFirstIterator.h 116include/llvm/ADT/DepthFirstIterator.h
117include/llvm/ADT/EpochTracker.h 117include/llvm/ADT/EpochTracker.h
118include/llvm/ADT/EquivalenceClasses.h 118include/llvm/ADT/EquivalenceClasses.h
119include/llvm/ADT/FoldingSet.h 119include/llvm/ADT/FoldingSet.h
120include/llvm/ADT/FunctionExtras.h 120include/llvm/ADT/FunctionExtras.h
121include/llvm/ADT/GraphTraits.h 121include/llvm/ADT/GraphTraits.h
122include/llvm/ADT/Hashing.h 122include/llvm/ADT/Hashing.h
123include/llvm/ADT/ImmutableList.h 123include/llvm/ADT/ImmutableList.h
124include/llvm/ADT/ImmutableMap.h 124include/llvm/ADT/ImmutableMap.h
125include/llvm/ADT/ImmutableSet.h 125include/llvm/ADT/ImmutableSet.h
126include/llvm/ADT/IndexedMap.h 126include/llvm/ADT/IndexedMap.h
127include/llvm/ADT/IntEqClasses.h 127include/llvm/ADT/IntEqClasses.h
128include/llvm/ADT/IntervalMap.h 128include/llvm/ADT/IntervalMap.h
129include/llvm/ADT/IntrusiveRefCntPtr.h 129include/llvm/ADT/IntrusiveRefCntPtr.h
130include/llvm/ADT/MapVector.h 130include/llvm/ADT/MapVector.h
131include/llvm/ADT/None.h 131include/llvm/ADT/None.h
132include/llvm/ADT/Optional.h 132include/llvm/ADT/Optional.h
133include/llvm/ADT/PackedVector.h 133include/llvm/ADT/PackedVector.h
134include/llvm/ADT/PointerEmbeddedInt.h 134include/llvm/ADT/PointerEmbeddedInt.h
135include/llvm/ADT/PointerIntPair.h 135include/llvm/ADT/PointerIntPair.h
136include/llvm/ADT/PointerSumType.h 136include/llvm/ADT/PointerSumType.h
137include/llvm/ADT/PointerUnion.h 137include/llvm/ADT/PointerUnion.h
138include/llvm/ADT/PostOrderIterator.h 138include/llvm/ADT/PostOrderIterator.h
139include/llvm/ADT/PriorityQueue.h 139include/llvm/ADT/PriorityQueue.h
140include/llvm/ADT/PriorityWorklist.h 140include/llvm/ADT/PriorityWorklist.h
141include/llvm/ADT/SCCIterator.h 141include/llvm/ADT/SCCIterator.h
142include/llvm/ADT/STLExtras.h 142include/llvm/ADT/STLExtras.h
143include/llvm/ADT/ScopeExit.h 143include/llvm/ADT/ScopeExit.h
144include/llvm/ADT/ScopedHashTable.h 144include/llvm/ADT/ScopedHashTable.h
145include/llvm/ADT/Sequence.h 145include/llvm/ADT/Sequence.h
146include/llvm/ADT/SetOperations.h 146include/llvm/ADT/SetOperations.h
147include/llvm/ADT/SetVector.h 147include/llvm/ADT/SetVector.h
148include/llvm/ADT/SmallBitVector.h 148include/llvm/ADT/SmallBitVector.h
149include/llvm/ADT/SmallPtrSet.h 149include/llvm/ADT/SmallPtrSet.h
150include/llvm/ADT/SmallSet.h 150include/llvm/ADT/SmallSet.h
151include/llvm/ADT/SmallString.h 151include/llvm/ADT/SmallString.h
152include/llvm/ADT/SmallVector.h 152include/llvm/ADT/SmallVector.h
153include/llvm/ADT/SparseBitVector.h 153include/llvm/ADT/SparseBitVector.h
154include/llvm/ADT/SparseMultiSet.h 154include/llvm/ADT/SparseMultiSet.h
155include/llvm/ADT/SparseSet.h 155include/llvm/ADT/SparseSet.h
156include/llvm/ADT/Statistic.h 156include/llvm/ADT/Statistic.h
157include/llvm/ADT/StringExtras.h 157include/llvm/ADT/StringExtras.h
158include/llvm/ADT/StringMap.h 158include/llvm/ADT/StringMap.h
159include/llvm/ADT/StringRef.h 159include/llvm/ADT/StringRef.h
160include/llvm/ADT/StringSet.h 160include/llvm/ADT/StringSet.h
161include/llvm/ADT/StringSwitch.h 161include/llvm/ADT/StringSwitch.h
162include/llvm/ADT/TinyPtrVector.h 162include/llvm/ADT/TinyPtrVector.h
163include/llvm/ADT/Triple.h 163include/llvm/ADT/Triple.h
164include/llvm/ADT/Twine.h 164include/llvm/ADT/Twine.h
165include/llvm/ADT/UniqueVector.h 165include/llvm/ADT/UniqueVector.h
166include/llvm/ADT/VariadicFunction.h 166include/llvm/ADT/VariadicFunction.h
167include/llvm/ADT/bit.h 167include/llvm/ADT/bit.h
168include/llvm/ADT/edit_distance.h 168include/llvm/ADT/edit_distance.h
169include/llvm/ADT/fallible_iterator.h 169include/llvm/ADT/fallible_iterator.h
170include/llvm/ADT/ilist.h 170include/llvm/ADT/ilist.h
171include/llvm/ADT/ilist_base.h 171include/llvm/ADT/ilist_base.h
172include/llvm/ADT/ilist_iterator.h 172include/llvm/ADT/ilist_iterator.h
173include/llvm/ADT/ilist_node.h 173include/llvm/ADT/ilist_node.h
174include/llvm/ADT/ilist_node_base.h 174include/llvm/ADT/ilist_node_base.h
175include/llvm/ADT/ilist_node_options.h 175include/llvm/ADT/ilist_node_options.h
176include/llvm/ADT/iterator.h 176include/llvm/ADT/iterator.h
177include/llvm/ADT/iterator_range.h 177include/llvm/ADT/iterator_range.h
178include/llvm/ADT/simple_ilist.h 178include/llvm/ADT/simple_ilist.h
179include/llvm/Analysis/AliasAnalysis.h 179include/llvm/Analysis/AliasAnalysis.h
180include/llvm/Analysis/AliasAnalysisEvaluator.h 180include/llvm/Analysis/AliasAnalysisEvaluator.h
181include/llvm/Analysis/AliasSetTracker.h 181include/llvm/Analysis/AliasSetTracker.h
182include/llvm/Analysis/AssumptionCache.h 182include/llvm/Analysis/AssumptionCache.h
183include/llvm/Analysis/BasicAliasAnalysis.h 183include/llvm/Analysis/BasicAliasAnalysis.h
184include/llvm/Analysis/BlockFrequencyInfo.h 184include/llvm/Analysis/BlockFrequencyInfo.h
185include/llvm/Analysis/BlockFrequencyInfoImpl.h 185include/llvm/Analysis/BlockFrequencyInfoImpl.h
186include/llvm/Analysis/BranchProbabilityInfo.h 186include/llvm/Analysis/BranchProbabilityInfo.h
187include/llvm/Analysis/CFG.h 187include/llvm/Analysis/CFG.h
188include/llvm/Analysis/CFGPrinter.h 188include/llvm/Analysis/CFGPrinter.h
189include/llvm/Analysis/CFLAliasAnalysisUtils.h 189include/llvm/Analysis/CFLAliasAnalysisUtils.h
190include/llvm/Analysis/CFLAndersAliasAnalysis.h 190include/llvm/Analysis/CFLAndersAliasAnalysis.h
191include/llvm/Analysis/CFLSteensAliasAnalysis.h 191include/llvm/Analysis/CFLSteensAliasAnalysis.h
192include/llvm/Analysis/CGSCCPassManager.h 192include/llvm/Analysis/CGSCCPassManager.h
193include/llvm/Analysis/CallGraph.h 193include/llvm/Analysis/CallGraph.h
194include/llvm/Analysis/CallGraphSCCPass.h 194include/llvm/Analysis/CallGraphSCCPass.h
195include/llvm/Analysis/CallPrinter.h 195include/llvm/Analysis/CallPrinter.h
196include/llvm/Analysis/CaptureTracking.h 196include/llvm/Analysis/CaptureTracking.h
197include/llvm/Analysis/CmpInstAnalysis.h 197include/llvm/Analysis/CmpInstAnalysis.h
198include/llvm/Analysis/CodeMetrics.h 198include/llvm/Analysis/CodeMetrics.h
199include/llvm/Analysis/ConstantFolding.h 199include/llvm/Analysis/ConstantFolding.h
200include/llvm/Analysis/DOTGraphTraitsPass.h 200include/llvm/Analysis/DOTGraphTraitsPass.h
201include/llvm/Analysis/DemandedBits.h 201include/llvm/Analysis/DemandedBits.h
202include/llvm/Analysis/DependenceAnalysis.h 202include/llvm/Analysis/DependenceAnalysis.h
203include/llvm/Analysis/DivergenceAnalysis.h 203include/llvm/Analysis/DivergenceAnalysis.h
204include/llvm/Analysis/DomPrinter.h 204include/llvm/Analysis/DomPrinter.h
205include/llvm/Analysis/DomTreeUpdater.h 205include/llvm/Analysis/DomTreeUpdater.h
206include/llvm/Analysis/DominanceFrontier.h 206include/llvm/Analysis/DominanceFrontier.h
207include/llvm/Analysis/DominanceFrontierImpl.h 207include/llvm/Analysis/DominanceFrontierImpl.h
208include/llvm/Analysis/EHPersonalities.h 208include/llvm/Analysis/EHPersonalities.h
209include/llvm/Analysis/GlobalsModRef.h 209include/llvm/Analysis/GlobalsModRef.h
210include/llvm/Analysis/GuardUtils.h 210include/llvm/Analysis/GuardUtils.h
211include/llvm/Analysis/IVDescriptors.h 211include/llvm/Analysis/IVDescriptors.h
212include/llvm/Analysis/IVUsers.h 212include/llvm/Analysis/IVUsers.h
213include/llvm/Analysis/IndirectCallPromotionAnalysis.h 213include/llvm/Analysis/IndirectCallPromotionAnalysis.h
214include/llvm/Analysis/IndirectCallVisitor.h 214include/llvm/Analysis/IndirectCallVisitor.h
215include/llvm/Analysis/InlineCost.h 215include/llvm/Analysis/InlineCost.h
216include/llvm/Analysis/InstructionPrecedenceTracking.h 216include/llvm/Analysis/InstructionPrecedenceTracking.h
217include/llvm/Analysis/InstructionSimplify.h 217include/llvm/Analysis/InstructionSimplify.h
218include/llvm/Analysis/Interval.h 218include/llvm/Analysis/Interval.h
219include/llvm/Analysis/IntervalIterator.h 219include/llvm/Analysis/IntervalIterator.h
220include/llvm/Analysis/IntervalPartition.h 220include/llvm/Analysis/IntervalPartition.h
221include/llvm/Analysis/IteratedDominanceFrontier.h 221include/llvm/Analysis/IteratedDominanceFrontier.h
222include/llvm/Analysis/LazyBlockFrequencyInfo.h 222include/llvm/Analysis/LazyBlockFrequencyInfo.h
223include/llvm/Analysis/LazyBranchProbabilityInfo.h 223include/llvm/Analysis/LazyBranchProbabilityInfo.h
224include/llvm/Analysis/LazyCallGraph.h 224include/llvm/Analysis/LazyCallGraph.h
225include/llvm/Analysis/LazyValueInfo.h 225include/llvm/Analysis/LazyValueInfo.h
226include/llvm/Analysis/LegacyDivergenceAnalysis.h 226include/llvm/Analysis/LegacyDivergenceAnalysis.h
227include/llvm/Analysis/Lint.h 227include/llvm/Analysis/Lint.h
228include/llvm/Analysis/Loads.h 228include/llvm/Analysis/Loads.h
229include/llvm/Analysis/LoopAccessAnalysis.h 229include/llvm/Analysis/LoopAccessAnalysis.h
230include/llvm/Analysis/LoopAnalysisManager.h 230include/llvm/Analysis/LoopAnalysisManager.h
231include/llvm/Analysis/LoopInfo.h 231include/llvm/Analysis/LoopInfo.h
232include/llvm/Analysis/LoopInfoImpl.h 232include/llvm/Analysis/LoopInfoImpl.h
233include/llvm/Analysis/LoopIterator.h 233include/llvm/Analysis/LoopIterator.h
234include/llvm/Analysis/LoopPass.h 234include/llvm/Analysis/LoopPass.h
235include/llvm/Analysis/LoopUnrollAnalyzer.h 235include/llvm/Analysis/LoopUnrollAnalyzer.h
236include/llvm/Analysis/MemoryBuiltins.h 236include/llvm/Analysis/MemoryBuiltins.h
237include/llvm/Analysis/MemoryDependenceAnalysis.h 237include/llvm/Analysis/MemoryDependenceAnalysis.h
238include/llvm/Analysis/MemoryLocation.h 238include/llvm/Analysis/MemoryLocation.h
239include/llvm/Analysis/MemorySSA.h 239include/llvm/Analysis/MemorySSA.h
240include/llvm/Analysis/MemorySSAUpdater.h 240include/llvm/Analysis/MemorySSAUpdater.h
241include/llvm/Analysis/ModuleSummaryAnalysis.h 241include/llvm/Analysis/ModuleSummaryAnalysis.h
242include/llvm/Analysis/MustExecute.h 242include/llvm/Analysis/MustExecute.h
243include/llvm/Analysis/ObjCARCAliasAnalysis.h 243include/llvm/Analysis/ObjCARCAliasAnalysis.h
244include/llvm/Analysis/ObjCARCAnalysisUtils.h 244include/llvm/Analysis/ObjCARCAnalysisUtils.h
245include/llvm/Analysis/ObjCARCInstKind.h 245include/llvm/Analysis/ObjCARCInstKind.h
246include/llvm/Analysis/OptimizationRemarkEmitter.h 246include/llvm/Analysis/OptimizationRemarkEmitter.h
247include/llvm/Analysis/OrderedBasicBlock.h 247include/llvm/Analysis/OrderedBasicBlock.h
248include/llvm/Analysis/OrderedInstructions.h 248include/llvm/Analysis/OrderedInstructions.h
249include/llvm/Analysis/PHITransAddr.h 249include/llvm/Analysis/PHITransAddr.h
250include/llvm/Analysis/Passes.h 250include/llvm/Analysis/Passes.h
251include/llvm/Analysis/PhiValues.h 251include/llvm/Analysis/PhiValues.h
252include/llvm/Analysis/PostDominators.h 252include/llvm/Analysis/PostDominators.h
253include/llvm/Analysis/ProfileSummaryInfo.h 253include/llvm/Analysis/ProfileSummaryInfo.h
254include/llvm/Analysis/PtrUseVisitor.h 254include/llvm/Analysis/PtrUseVisitor.h
255include/llvm/Analysis/RegionInfo.h 255include/llvm/Analysis/RegionInfo.h
256include/llvm/Analysis/RegionInfoImpl.h 256include/llvm/Analysis/RegionInfoImpl.h
257include/llvm/Analysis/RegionIterator.h 257include/llvm/Analysis/RegionIterator.h
258include/llvm/Analysis/RegionPass.h 258include/llvm/Analysis/RegionPass.h
259include/llvm/Analysis/RegionPrinter.h 259include/llvm/Analysis/RegionPrinter.h
260include/llvm/Analysis/ScalarEvolution.h 260include/llvm/Analysis/ScalarEvolution.h
261include/llvm/Analysis/ScalarEvolutionAliasAnalysis.h 261include/llvm/Analysis/ScalarEvolutionAliasAnalysis.h
262include/llvm/Analysis/ScalarEvolutionExpander.h 262include/llvm/Analysis/ScalarEvolutionExpander.h
263include/llvm/Analysis/ScalarEvolutionExpressions.h 263include/llvm/Analysis/ScalarEvolutionExpressions.h
264include/llvm/Analysis/ScalarEvolutionNormalization.h 264include/llvm/Analysis/ScalarEvolutionNormalization.h
265include/llvm/Analysis/ScopedNoAliasAA.h 265include/llvm/Analysis/ScopedNoAliasAA.h
266include/llvm/Analysis/SparsePropagation.h 266include/llvm/Analysis/SparsePropagation.h
267include/llvm/Analysis/StackSafetyAnalysis.h 267include/llvm/Analysis/StackSafetyAnalysis.h
268include/llvm/Analysis/SyncDependenceAnalysis.h 268include/llvm/Analysis/SyncDependenceAnalysis.h
269include/llvm/Analysis/SyntheticCountsUtils.h 269include/llvm/Analysis/SyntheticCountsUtils.h
270include/llvm/Analysis/TargetFolder.h 270include/llvm/Analysis/TargetFolder.h
271include/llvm/Analysis/TargetLibraryInfo.def 271include/llvm/Analysis/TargetLibraryInfo.def
272include/llvm/Analysis/TargetLibraryInfo.h 272include/llvm/Analysis/TargetLibraryInfo.h
273include/llvm/Analysis/TargetTransformInfo.h 273include/llvm/Analysis/TargetTransformInfo.h
274include/llvm/Analysis/TargetTransformInfoImpl.h 274include/llvm/Analysis/TargetTransformInfoImpl.h
275include/llvm/Analysis/Trace.h 275include/llvm/Analysis/Trace.h
276include/llvm/Analysis/TypeBasedAliasAnalysis.h 276include/llvm/Analysis/TypeBasedAliasAnalysis.h
277include/llvm/Analysis/TypeMetadataUtils.h 277include/llvm/Analysis/TypeMetadataUtils.h
278include/llvm/Analysis/Utils/Local.h 278include/llvm/Analysis/Utils/Local.h
279include/llvm/Analysis/ValueLattice.h 279include/llvm/Analysis/ValueLattice.h
280include/llvm/Analysis/ValueLatticeUtils.h 280include/llvm/Analysis/ValueLatticeUtils.h
281include/llvm/Analysis/ValueTracking.h 281include/llvm/Analysis/ValueTracking.h
282include/llvm/Analysis/VecFuncs.def 282include/llvm/Analysis/VecFuncs.def
283include/llvm/Analysis/VectorUtils.h 283include/llvm/Analysis/VectorUtils.h
284include/llvm/AsmParser/Parser.h 284include/llvm/AsmParser/Parser.h
285include/llvm/AsmParser/SlotMapping.h 285include/llvm/AsmParser/SlotMapping.h
286include/llvm/BinaryFormat/AMDGPUMetadataVerifier.h 286include/llvm/BinaryFormat/AMDGPUMetadataVerifier.h
287include/llvm/BinaryFormat/COFF.h 287include/llvm/BinaryFormat/COFF.h
288include/llvm/BinaryFormat/Dwarf.def 288include/llvm/BinaryFormat/Dwarf.def
289include/llvm/BinaryFormat/Dwarf.h 289include/llvm/BinaryFormat/Dwarf.h
290include/llvm/BinaryFormat/DynamicTags.def 290include/llvm/BinaryFormat/DynamicTags.def
291include/llvm/BinaryFormat/ELF.h 291include/llvm/BinaryFormat/ELF.h
292include/llvm/BinaryFormat/ELFRelocs/AArch64.def 292include/llvm/BinaryFormat/ELFRelocs/AArch64.def
293include/llvm/BinaryFormat/ELFRelocs/AMDGPU.def 293include/llvm/BinaryFormat/ELFRelocs/AMDGPU.def
294include/llvm/BinaryFormat/ELFRelocs/ARC.def 294include/llvm/BinaryFormat/ELFRelocs/ARC.def
295include/llvm/BinaryFormat/ELFRelocs/ARM.def 295include/llvm/BinaryFormat/ELFRelocs/ARM.def
296include/llvm/BinaryFormat/ELFRelocs/AVR.def 296include/llvm/BinaryFormat/ELFRelocs/AVR.def
297include/llvm/BinaryFormat/ELFRelocs/BPF.def 297include/llvm/BinaryFormat/ELFRelocs/BPF.def
298include/llvm/BinaryFormat/ELFRelocs/Hexagon.def 298include/llvm/BinaryFormat/ELFRelocs/Hexagon.def
299include/llvm/BinaryFormat/ELFRelocs/Lanai.def 299include/llvm/BinaryFormat/ELFRelocs/Lanai.def
300include/llvm/BinaryFormat/ELFRelocs/MSP430.def 300include/llvm/BinaryFormat/ELFRelocs/MSP430.def
301include/llvm/BinaryFormat/ELFRelocs/Mips.def 301include/llvm/BinaryFormat/ELFRelocs/Mips.def
302include/llvm/BinaryFormat/ELFRelocs/PowerPC.def 302include/llvm/BinaryFormat/ELFRelocs/PowerPC.def
303include/llvm/BinaryFormat/ELFRelocs/PowerPC64.def 303include/llvm/BinaryFormat/ELFRelocs/PowerPC64.def
304include/llvm/BinaryFormat/ELFRelocs/RISCV.def 304include/llvm/BinaryFormat/ELFRelocs/RISCV.def
305include/llvm/BinaryFormat/ELFRelocs/Sparc.def 305include/llvm/BinaryFormat/ELFRelocs/Sparc.def
306include/llvm/BinaryFormat/ELFRelocs/SystemZ.def 306include/llvm/BinaryFormat/ELFRelocs/SystemZ.def
307include/llvm/BinaryFormat/ELFRelocs/i386.def 307include/llvm/BinaryFormat/ELFRelocs/i386.def
308include/llvm/BinaryFormat/ELFRelocs/x86_64.def 308include/llvm/BinaryFormat/ELFRelocs/x86_64.def
309include/llvm/BinaryFormat/MachO.def 309include/llvm/BinaryFormat/MachO.def
310include/llvm/BinaryFormat/MachO.h 310include/llvm/BinaryFormat/MachO.h
311include/llvm/BinaryFormat/Magic.h 311include/llvm/BinaryFormat/Magic.h
312include/llvm/BinaryFormat/Minidump.h 312include/llvm/BinaryFormat/Minidump.h
313include/llvm/BinaryFormat/MinidumpConstants.def 313include/llvm/BinaryFormat/MinidumpConstants.def
314include/llvm/BinaryFormat/MsgPack.def 314include/llvm/BinaryFormat/MsgPack.def
315include/llvm/BinaryFormat/MsgPack.h 315include/llvm/BinaryFormat/MsgPack.h
316include/llvm/BinaryFormat/MsgPackDocument.h 316include/llvm/BinaryFormat/MsgPackDocument.h
317include/llvm/BinaryFormat/MsgPackReader.h 317include/llvm/BinaryFormat/MsgPackReader.h
318include/llvm/BinaryFormat/MsgPackWriter.h 318include/llvm/BinaryFormat/MsgPackWriter.h
319include/llvm/BinaryFormat/Wasm.h 319include/llvm/BinaryFormat/Wasm.h
320include/llvm/BinaryFormat/WasmRelocs.def 320include/llvm/BinaryFormat/WasmRelocs.def
321include/llvm/BinaryFormat/XCOFF.h 321include/llvm/BinaryFormat/XCOFF.h
322include/llvm/Bitcode/BitcodeAnalyzer.h 322include/llvm/Bitcode/BitcodeAnalyzer.h
323include/llvm/Bitcode/BitcodeReader.h 323include/llvm/Bitcode/BitcodeReader.h
324include/llvm/Bitcode/BitcodeWriter.h 324include/llvm/Bitcode/BitcodeWriter.h
325include/llvm/Bitcode/BitcodeWriterPass.h 325include/llvm/Bitcode/BitcodeWriterPass.h
326include/llvm/Bitcode/LLVMBitCodes.h 326include/llvm/Bitcode/LLVMBitCodes.h
327include/llvm/Bitstream/BitCodes.h 327include/llvm/Bitstream/BitCodes.h
328include/llvm/Bitstream/BitstreamReader.h 328include/llvm/Bitstream/BitstreamReader.h
329include/llvm/Bitstream/BitstreamWriter.h 329include/llvm/Bitstream/BitstreamWriter.h
330include/llvm/CodeGen/AccelTable.h 330include/llvm/CodeGen/AccelTable.h
331include/llvm/CodeGen/Analysis.h 331include/llvm/CodeGen/Analysis.h
332include/llvm/CodeGen/AsmPrinter.h 332include/llvm/CodeGen/AsmPrinter.h
333include/llvm/CodeGen/AsmPrinterHandler.h 333include/llvm/CodeGen/AsmPrinterHandler.h
334include/llvm/CodeGen/AtomicExpandUtils.h 334include/llvm/CodeGen/AtomicExpandUtils.h
335include/llvm/CodeGen/BasicTTIImpl.h 335include/llvm/CodeGen/BasicTTIImpl.h
336include/llvm/CodeGen/BuiltinGCs.h 336include/llvm/CodeGen/BuiltinGCs.h
337include/llvm/CodeGen/CSEConfigBase.h 337include/llvm/CodeGen/CSEConfigBase.h
338include/llvm/CodeGen/CalcSpillWeights.h 338include/llvm/CodeGen/CalcSpillWeights.h
339include/llvm/CodeGen/CallingConvLower.h 339include/llvm/CodeGen/CallingConvLower.h
340include/llvm/CodeGen/CommandFlags.inc 340include/llvm/CodeGen/CommandFlags.inc
341include/llvm/CodeGen/CostTable.h 341include/llvm/CodeGen/CostTable.h
342include/llvm/CodeGen/DAGCombine.h 342include/llvm/CodeGen/DAGCombine.h
343include/llvm/CodeGen/DFAPacketizer.h 343include/llvm/CodeGen/DFAPacketizer.h
344include/llvm/CodeGen/DIE.h 344include/llvm/CodeGen/DIE.h
345include/llvm/CodeGen/DIEValue.def 345include/llvm/CodeGen/DIEValue.def
346include/llvm/CodeGen/DbgEntityHistoryCalculator.h 346include/llvm/CodeGen/DbgEntityHistoryCalculator.h
347include/llvm/CodeGen/DebugHandlerBase.h 347include/llvm/CodeGen/DebugHandlerBase.h
348include/llvm/CodeGen/DwarfStringPoolEntry.h 348include/llvm/CodeGen/DwarfStringPoolEntry.h
349include/llvm/CodeGen/EdgeBundles.h 349include/llvm/CodeGen/EdgeBundles.h
350include/llvm/CodeGen/ExecutionDomainFix.h 350include/llvm/CodeGen/ExecutionDomainFix.h
351include/llvm/CodeGen/ExpandReductions.h 351include/llvm/CodeGen/ExpandReductions.h
352include/llvm/CodeGen/FastISel.h 352include/llvm/CodeGen/FastISel.h
353include/llvm/CodeGen/FaultMaps.h 353include/llvm/CodeGen/FaultMaps.h
354include/llvm/CodeGen/FunctionLoweringInfo.h 354include/llvm/CodeGen/FunctionLoweringInfo.h
355include/llvm/CodeGen/GCMetadata.h 355include/llvm/CodeGen/GCMetadata.h
356include/llvm/CodeGen/GCMetadataPrinter.h 356include/llvm/CodeGen/GCMetadataPrinter.h
357include/llvm/CodeGen/GCStrategy.h 357include/llvm/CodeGen/GCStrategy.h
358include/llvm/CodeGen/GlobalISel/CSEInfo.h 358include/llvm/CodeGen/GlobalISel/CSEInfo.h
359include/llvm/CodeGen/GlobalISel/CSEMIRBuilder.h 359include/llvm/CodeGen/GlobalISel/CSEMIRBuilder.h
360include/llvm/CodeGen/GlobalISel/CallLowering.h 360include/llvm/CodeGen/GlobalISel/CallLowering.h
361include/llvm/CodeGen/GlobalISel/Combiner.h 361include/llvm/CodeGen/GlobalISel/Combiner.h
362include/llvm/CodeGen/GlobalISel/CombinerHelper.h 362include/llvm/CodeGen/GlobalISel/CombinerHelper.h
363include/llvm/CodeGen/GlobalISel/CombinerInfo.h 363include/llvm/CodeGen/GlobalISel/CombinerInfo.h
364include/llvm/CodeGen/GlobalISel/ConstantFoldingMIRBuilder.h 364include/llvm/CodeGen/GlobalISel/ConstantFoldingMIRBuilder.h
365include/llvm/CodeGen/GlobalISel/GISelChangeObserver.h 365include/llvm/CodeGen/GlobalISel/GISelChangeObserver.h
366include/llvm/CodeGen/GlobalISel/GISelWorkList.h 366include/llvm/CodeGen/GlobalISel/GISelWorkList.h
367include/llvm/CodeGen/GlobalISel/IRTranslator.h 367include/llvm/CodeGen/GlobalISel/IRTranslator.h
368include/llvm/CodeGen/GlobalISel/InstructionSelect.h 368include/llvm/CodeGen/GlobalISel/InstructionSelect.h
369include/llvm/CodeGen/GlobalISel/InstructionSelector.h 369include/llvm/CodeGen/GlobalISel/InstructionSelector.h
370include/llvm/CodeGen/GlobalISel/InstructionSelectorImpl.h 370include/llvm/CodeGen/GlobalISel/InstructionSelectorImpl.h
371include/llvm/CodeGen/GlobalISel/LegalizationArtifactCombiner.h 371include/llvm/CodeGen/GlobalISel/LegalizationArtifactCombiner.h
372include/llvm/CodeGen/GlobalISel/Legalizer.h 372include/llvm/CodeGen/GlobalISel/Legalizer.h
373include/llvm/CodeGen/GlobalISel/LegalizerHelper.h 373include/llvm/CodeGen/GlobalISel/LegalizerHelper.h
374include/llvm/CodeGen/GlobalISel/LegalizerInfo.h 374include/llvm/CodeGen/GlobalISel/LegalizerInfo.h
375include/llvm/CodeGen/GlobalISel/Localizer.h 375include/llvm/CodeGen/GlobalISel/Localizer.h
376include/llvm/CodeGen/GlobalISel/MIPatternMatch.h 376include/llvm/CodeGen/GlobalISel/MIPatternMatch.h
377include/llvm/CodeGen/GlobalISel/MachineIRBuilder.h 377include/llvm/CodeGen/GlobalISel/MachineIRBuilder.h
378include/llvm/CodeGen/GlobalISel/RegBankSelect.h 378include/llvm/CodeGen/GlobalISel/RegBankSelect.h
379include/llvm/CodeGen/GlobalISel/RegisterBank.h 379include/llvm/CodeGen/GlobalISel/RegisterBank.h
380include/llvm/CodeGen/GlobalISel/RegisterBankInfo.h 380include/llvm/CodeGen/GlobalISel/RegisterBankInfo.h
381include/llvm/CodeGen/GlobalISel/Types.h 381include/llvm/CodeGen/GlobalISel/Types.h
382include/llvm/CodeGen/GlobalISel/Utils.h 382include/llvm/CodeGen/GlobalISel/Utils.h
383include/llvm/CodeGen/ISDOpcodes.h 383include/llvm/CodeGen/ISDOpcodes.h
384include/llvm/CodeGen/IntrinsicLowering.h 384include/llvm/CodeGen/IntrinsicLowering.h
385include/llvm/CodeGen/LatencyPriorityQueue.h 385include/llvm/CodeGen/LatencyPriorityQueue.h
386include/llvm/CodeGen/LazyMachineBlockFrequencyInfo.h 386include/llvm/CodeGen/LazyMachineBlockFrequencyInfo.h
387include/llvm/CodeGen/LexicalScopes.h 387include/llvm/CodeGen/LexicalScopes.h
388include/llvm/CodeGen/LinkAllAsmWriterComponents.h 388include/llvm/CodeGen/LinkAllAsmWriterComponents.h
389include/llvm/CodeGen/LinkAllCodegenComponents.h 389include/llvm/CodeGen/LinkAllCodegenComponents.h
390include/llvm/CodeGen/LiveInterval.h 390include/llvm/CodeGen/LiveInterval.h
391include/llvm/CodeGen/LiveIntervalUnion.h 391include/llvm/CodeGen/LiveIntervalUnion.h
392include/llvm/CodeGen/LiveIntervals.h 392include/llvm/CodeGen/LiveIntervals.h
393include/llvm/CodeGen/LivePhysRegs.h 393include/llvm/CodeGen/LivePhysRegs.h
394include/llvm/CodeGen/LiveRangeEdit.h 394include/llvm/CodeGen/LiveRangeEdit.h
395include/llvm/CodeGen/LiveRegMatrix.h 395include/llvm/CodeGen/LiveRegMatrix.h
396include/llvm/CodeGen/LiveRegUnits.h 396include/llvm/CodeGen/LiveRegUnits.h
397include/llvm/CodeGen/LiveStacks.h 397include/llvm/CodeGen/LiveStacks.h
398include/llvm/CodeGen/LiveVariables.h 398include/llvm/CodeGen/LiveVariables.h
399include/llvm/CodeGen/LoopTraversal.h 399include/llvm/CodeGen/LoopTraversal.h
400include/llvm/CodeGen/LowLevelType.h 400include/llvm/CodeGen/LowLevelType.h
401include/llvm/CodeGen/MIRParser/MIParser.h 401include/llvm/CodeGen/MIRParser/MIParser.h
402include/llvm/CodeGen/MIRParser/MIRParser.h 402include/llvm/CodeGen/MIRParser/MIRParser.h
403include/llvm/CodeGen/MIRPrinter.h 403include/llvm/CodeGen/MIRPrinter.h
404include/llvm/CodeGen/MIRYamlMapping.h 404include/llvm/CodeGen/MIRYamlMapping.h
405include/llvm/CodeGen/MachORelocation.h 405include/llvm/CodeGen/MachORelocation.h
406include/llvm/CodeGen/MachineBasicBlock.h 406include/llvm/CodeGen/MachineBasicBlock.h
407include/llvm/CodeGen/MachineBlockFrequencyInfo.h 407include/llvm/CodeGen/MachineBlockFrequencyInfo.h
408include/llvm/CodeGen/MachineBranchProbabilityInfo.h 408include/llvm/CodeGen/MachineBranchProbabilityInfo.h
409include/llvm/CodeGen/MachineCombinerPattern.h 409include/llvm/CodeGen/MachineCombinerPattern.h
410include/llvm/CodeGen/MachineConstantPool.h 410include/llvm/CodeGen/MachineConstantPool.h
411include/llvm/CodeGen/MachineDominanceFrontier.h 411include/llvm/CodeGen/MachineDominanceFrontier.h
412include/llvm/CodeGen/MachineDominators.h 412include/llvm/CodeGen/MachineDominators.h
413include/llvm/CodeGen/MachineFrameInfo.h 413include/llvm/CodeGen/MachineFrameInfo.h
414include/llvm/CodeGen/MachineFunction.h 414include/llvm/CodeGen/MachineFunction.h
415include/llvm/CodeGen/MachineFunctionPass.h 415include/llvm/CodeGen/MachineFunctionPass.h
416include/llvm/CodeGen/MachineInstr.h 416include/llvm/CodeGen/MachineInstr.h
417include/llvm/CodeGen/MachineInstrBuilder.h 417include/llvm/CodeGen/MachineInstrBuilder.h
418include/llvm/CodeGen/MachineInstrBundle.h 418include/llvm/CodeGen/MachineInstrBundle.h
419include/llvm/CodeGen/MachineInstrBundleIterator.h 419include/llvm/CodeGen/MachineInstrBundleIterator.h
420include/llvm/CodeGen/MachineJumpTableInfo.h 420include/llvm/CodeGen/MachineJumpTableInfo.h
421include/llvm/CodeGen/MachineLoopInfo.h 421include/llvm/CodeGen/MachineLoopInfo.h
422include/llvm/CodeGen/MachineMemOperand.h 422include/llvm/CodeGen/MachineMemOperand.h
423include/llvm/CodeGen/MachineModuleInfo.h 423include/llvm/CodeGen/MachineModuleInfo.h
424include/llvm/CodeGen/MachineModuleInfoImpls.h 424include/llvm/CodeGen/MachineModuleInfoImpls.h
425include/llvm/CodeGen/MachineOperand.h 425include/llvm/CodeGen/MachineOperand.h
426include/llvm/CodeGen/MachineOptimizationRemarkEmitter.h 426include/llvm/CodeGen/MachineOptimizationRemarkEmitter.h
427include/llvm/CodeGen/MachineOutliner.h 427include/llvm/CodeGen/MachineOutliner.h
428include/llvm/CodeGen/MachinePassRegistry.h 428include/llvm/CodeGen/MachinePassRegistry.h
429include/llvm/CodeGen/MachinePipeliner.h 429include/llvm/CodeGen/MachinePipeliner.h
430include/llvm/CodeGen/MachinePostDominators.h 430include/llvm/CodeGen/MachinePostDominators.h
431include/llvm/CodeGen/MachineRegionInfo.h 431include/llvm/CodeGen/MachineRegionInfo.h
432include/llvm/CodeGen/MachineRegisterInfo.h 432include/llvm/CodeGen/MachineRegisterInfo.h
433include/llvm/CodeGen/MachineSSAUpdater.h 433include/llvm/CodeGen/MachineSSAUpdater.h
434include/llvm/CodeGen/MachineScheduler.h 434include/llvm/CodeGen/MachineScheduler.h
435include/llvm/CodeGen/MachineTraceMetrics.h 435include/llvm/CodeGen/MachineTraceMetrics.h
436include/llvm/CodeGen/MacroFusion.h 436include/llvm/CodeGen/MacroFusion.h
437include/llvm/CodeGen/PBQP/CostAllocator.h 437include/llvm/CodeGen/PBQP/CostAllocator.h
438include/llvm/CodeGen/PBQP/Graph.h 438include/llvm/CodeGen/PBQP/Graph.h
439include/llvm/CodeGen/PBQP/Math.h 439include/llvm/CodeGen/PBQP/Math.h
440include/llvm/CodeGen/PBQP/ReductionRules.h 440include/llvm/CodeGen/PBQP/ReductionRules.h
441include/llvm/CodeGen/PBQP/Solution.h 441include/llvm/CodeGen/PBQP/Solution.h
442include/llvm/CodeGen/PBQPRAConstraint.h 442include/llvm/CodeGen/PBQPRAConstraint.h
443include/llvm/CodeGen/ParallelCG.h 443include/llvm/CodeGen/ParallelCG.h
444include/llvm/CodeGen/Passes.h 444include/llvm/CodeGen/Passes.h
445include/llvm/CodeGen/PreISelIntrinsicLowering.h 445include/llvm/CodeGen/PreISelIntrinsicLowering.h
446include/llvm/CodeGen/PseudoSourceValue.h 446include/llvm/CodeGen/PseudoSourceValue.h
447include/llvm/CodeGen/ReachingDefAnalysis.h 447include/llvm/CodeGen/ReachingDefAnalysis.h
448include/llvm/CodeGen/RegAllocPBQP.h 448include/llvm/CodeGen/RegAllocPBQP.h
449include/llvm/CodeGen/RegAllocRegistry.h 449include/llvm/CodeGen/RegAllocRegistry.h
450include/llvm/CodeGen/Register.h 450include/llvm/CodeGen/Register.h
451include/llvm/CodeGen/RegisterClassInfo.h 451include/llvm/CodeGen/RegisterClassInfo.h
452include/llvm/CodeGen/RegisterPressure.h 452include/llvm/CodeGen/RegisterPressure.h
453include/llvm/CodeGen/RegisterScavenging.h 453include/llvm/CodeGen/RegisterScavenging.h
454include/llvm/CodeGen/RegisterUsageInfo.h 454include/llvm/CodeGen/RegisterUsageInfo.h
455include/llvm/CodeGen/ResourcePriorityQueue.h 455include/llvm/CodeGen/ResourcePriorityQueue.h
456include/llvm/CodeGen/RuntimeLibcalls.h 456include/llvm/CodeGen/RuntimeLibcalls.h
457include/llvm/CodeGen/SDNodeProperties.td 457include/llvm/CodeGen/SDNodeProperties.td
458include/llvm/CodeGen/ScheduleDAG.h 458include/llvm/CodeGen/ScheduleDAG.h
459include/llvm/CodeGen/ScheduleDAGInstrs.h 459include/llvm/CodeGen/ScheduleDAGInstrs.h
460include/llvm/CodeGen/ScheduleDAGMutation.h 460include/llvm/CodeGen/ScheduleDAGMutation.h
461include/llvm/CodeGen/ScheduleDFS.h 461include/llvm/CodeGen/ScheduleDFS.h
462include/llvm/CodeGen/ScheduleHazardRecognizer.h 462include/llvm/CodeGen/ScheduleHazardRecognizer.h
463include/llvm/CodeGen/SchedulerRegistry.h 463include/llvm/CodeGen/SchedulerRegistry.h
464include/llvm/CodeGen/ScoreboardHazardRecognizer.h 464include/llvm/CodeGen/ScoreboardHazardRecognizer.h
465include/llvm/CodeGen/SelectionDAG.h 465include/llvm/CodeGen/SelectionDAG.h
466include/llvm/CodeGen/SelectionDAGAddressAnalysis.h 466include/llvm/CodeGen/SelectionDAGAddressAnalysis.h
467include/llvm/CodeGen/SelectionDAGISel.h 467include/llvm/CodeGen/SelectionDAGISel.h
468include/llvm/CodeGen/SelectionDAGNodes.h 468include/llvm/CodeGen/SelectionDAGNodes.h
469include/llvm/CodeGen/SelectionDAGTargetInfo.h 469include/llvm/CodeGen/SelectionDAGTargetInfo.h
470include/llvm/CodeGen/SlotIndexes.h 470include/llvm/CodeGen/SlotIndexes.h
471include/llvm/CodeGen/StackMaps.h 471include/llvm/CodeGen/StackMaps.h
472include/llvm/CodeGen/StackProtector.h 472include/llvm/CodeGen/StackProtector.h
473include/llvm/CodeGen/SwiftErrorValueTracking.h 473include/llvm/CodeGen/SwiftErrorValueTracking.h
474include/llvm/CodeGen/SwitchLoweringUtils.h 474include/llvm/CodeGen/SwitchLoweringUtils.h
475include/llvm/CodeGen/TailDuplicator.h 475include/llvm/CodeGen/TailDuplicator.h
476include/llvm/CodeGen/TargetCallingConv.h 476include/llvm/CodeGen/TargetCallingConv.h
477include/llvm/CodeGen/TargetFrameLowering.h 477include/llvm/CodeGen/TargetFrameLowering.h
478include/llvm/CodeGen/TargetInstrInfo.h 478include/llvm/CodeGen/TargetInstrInfo.h
479include/llvm/CodeGen/TargetLowering.h 479include/llvm/CodeGen/TargetLowering.h
480include/llvm/CodeGen/TargetLoweringObjectFileImpl.h 480include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
481include/llvm/CodeGen/TargetOpcodes.h 481include/llvm/CodeGen/TargetOpcodes.h
482include/llvm/CodeGen/TargetPassConfig.h 482include/llvm/CodeGen/TargetPassConfig.h
483include/llvm/CodeGen/TargetRegisterInfo.h 483include/llvm/CodeGen/TargetRegisterInfo.h
484include/llvm/CodeGen/TargetSchedule.h 484include/llvm/CodeGen/TargetSchedule.h
485include/llvm/CodeGen/TargetSubtargetInfo.h 485include/llvm/CodeGen/TargetSubtargetInfo.h
486include/llvm/CodeGen/UnreachableBlockElim.h 486include/llvm/CodeGen/UnreachableBlockElim.h
487include/llvm/CodeGen/ValueTypes.h 487include/llvm/CodeGen/ValueTypes.h
488include/llvm/CodeGen/ValueTypes.td 488include/llvm/CodeGen/ValueTypes.td
489include/llvm/CodeGen/VirtRegMap.h 489include/llvm/CodeGen/VirtRegMap.h
490include/llvm/CodeGen/WasmEHFuncInfo.h 490include/llvm/CodeGen/WasmEHFuncInfo.h
491include/llvm/CodeGen/WinEHFuncInfo.h 491include/llvm/CodeGen/WinEHFuncInfo.h
492include/llvm/Config/AsmParsers.def 492include/llvm/Config/AsmParsers.def
493include/llvm/Config/AsmPrinters.def 493include/llvm/Config/AsmPrinters.def
494include/llvm/Config/Disassemblers.def 494include/llvm/Config/Disassemblers.def
495include/llvm/Config/Targets.def 495include/llvm/Config/Targets.def
496include/llvm/Config/abi-breaking.h 496include/llvm/Config/abi-breaking.h
497include/llvm/Config/llvm-config.h 497include/llvm/Config/llvm-config.h
498include/llvm/DebugInfo/CodeView/AppendingTypeTableBuilder.h 498include/llvm/DebugInfo/CodeView/AppendingTypeTableBuilder.h
499include/llvm/DebugInfo/CodeView/CVRecord.h 499include/llvm/DebugInfo/CodeView/CVRecord.h
500include/llvm/DebugInfo/CodeView/CVSymbolVisitor.h 500include/llvm/DebugInfo/CodeView/CVSymbolVisitor.h
501include/llvm/DebugInfo/CodeView/CVTypeVisitor.h 501include/llvm/DebugInfo/CodeView/CVTypeVisitor.h
502include/llvm/DebugInfo/CodeView/CodeView.h 502include/llvm/DebugInfo/CodeView/CodeView.h
503include/llvm/DebugInfo/CodeView/CodeViewError.h 503include/llvm/DebugInfo/CodeView/CodeViewError.h
504include/llvm/DebugInfo/CodeView/CodeViewRecordIO.h 504include/llvm/DebugInfo/CodeView/CodeViewRecordIO.h
505include/llvm/DebugInfo/CodeView/CodeViewRegisters.def 505include/llvm/DebugInfo/CodeView/CodeViewRegisters.def
506include/llvm/DebugInfo/CodeView/CodeViewSymbols.def 506include/llvm/DebugInfo/CodeView/CodeViewSymbols.def
507include/llvm/DebugInfo/CodeView/CodeViewTypes.def 507include/llvm/DebugInfo/CodeView/CodeViewTypes.def
508include/llvm/DebugInfo/CodeView/ContinuationRecordBuilder.h 508include/llvm/DebugInfo/CodeView/ContinuationRecordBuilder.h
509include/llvm/DebugInfo/CodeView/DebugChecksumsSubsection.h 509include/llvm/DebugInfo/CodeView/DebugChecksumsSubsection.h
510include/llvm/DebugInfo/CodeView/DebugCrossExSubsection.h 510include/llvm/DebugInfo/CodeView/DebugCrossExSubsection.h
511include/llvm/DebugInfo/CodeView/DebugCrossImpSubsection.h 511include/llvm/DebugInfo/CodeView/DebugCrossImpSubsection.h
512include/llvm/DebugInfo/CodeView/DebugFrameDataSubsection.h 512include/llvm/DebugInfo/CodeView/DebugFrameDataSubsection.h
513include/llvm/DebugInfo/CodeView/DebugInlineeLinesSubsection.h 513include/llvm/DebugInfo/CodeView/DebugInlineeLinesSubsection.h
514include/llvm/DebugInfo/CodeView/DebugLinesSubsection.h 514include/llvm/DebugInfo/CodeView/DebugLinesSubsection.h
515include/llvm/DebugInfo/CodeView/DebugStringTableSubsection.h 515include/llvm/DebugInfo/CodeView/DebugStringTableSubsection.h
516include/llvm/DebugInfo/CodeView/DebugSubsection.h 516include/llvm/DebugInfo/CodeView/DebugSubsection.h
517include/llvm/DebugInfo/CodeView/DebugSubsectionRecord.h 517include/llvm/DebugInfo/CodeView/DebugSubsectionRecord.h
518include/llvm/DebugInfo/CodeView/DebugSubsectionVisitor.h 518include/llvm/DebugInfo/CodeView/DebugSubsectionVisitor.h
519include/llvm/DebugInfo/CodeView/DebugSymbolRVASubsection.h 519include/llvm/DebugInfo/CodeView/DebugSymbolRVASubsection.h
520include/llvm/DebugInfo/CodeView/DebugSymbolsSubsection.h 520include/llvm/DebugInfo/CodeView/DebugSymbolsSubsection.h
521include/llvm/DebugInfo/CodeView/DebugUnknownSubsection.h 521include/llvm/DebugInfo/CodeView/DebugUnknownSubsection.h
522include/llvm/DebugInfo/CodeView/EnumTables.h 522include/llvm/DebugInfo/CodeView/EnumTables.h
523include/llvm/DebugInfo/CodeView/Formatters.h 523include/llvm/DebugInfo/CodeView/Formatters.h
524include/llvm/DebugInfo/CodeView/FunctionId.h 524include/llvm/DebugInfo/CodeView/FunctionId.h
525include/llvm/DebugInfo/CodeView/GUID.h 525include/llvm/DebugInfo/CodeView/GUID.h
526include/llvm/DebugInfo/CodeView/GlobalTypeTableBuilder.h 526include/llvm/DebugInfo/CodeView/GlobalTypeTableBuilder.h
527include/llvm/DebugInfo/CodeView/LazyRandomTypeCollection.h 527include/llvm/DebugInfo/CodeView/LazyRandomTypeCollection.h
528include/llvm/DebugInfo/CodeView/Line.h 528include/llvm/DebugInfo/CodeView/Line.h
529include/llvm/DebugInfo/CodeView/MergingTypeTableBuilder.h 529include/llvm/DebugInfo/CodeView/MergingTypeTableBuilder.h
530include/llvm/DebugInfo/CodeView/RecordName.h 530include/llvm/DebugInfo/CodeView/RecordName.h
531include/llvm/DebugInfo/CodeView/RecordSerialization.h 531include/llvm/DebugInfo/CodeView/RecordSerialization.h
532include/llvm/DebugInfo/CodeView/SimpleTypeSerializer.h 532include/llvm/DebugInfo/CodeView/SimpleTypeSerializer.h
533include/llvm/DebugInfo/CodeView/StringsAndChecksums.h 533include/llvm/DebugInfo/CodeView/StringsAndChecksums.h
534include/llvm/DebugInfo/CodeView/SymbolDeserializer.h 534include/llvm/DebugInfo/CodeView/SymbolDeserializer.h
535include/llvm/DebugInfo/CodeView/SymbolDumpDelegate.h 535include/llvm/DebugInfo/CodeView/SymbolDumpDelegate.h
536include/llvm/DebugInfo/CodeView/SymbolDumper.h 536include/llvm/DebugInfo/CodeView/SymbolDumper.h
537include/llvm/DebugInfo/CodeView/SymbolRecord.h 537include/llvm/DebugInfo/CodeView/SymbolRecord.h
538include/llvm/DebugInfo/CodeView/SymbolRecordHelpers.h 538include/llvm/DebugInfo/CodeView/SymbolRecordHelpers.h
539include/llvm/DebugInfo/CodeView/SymbolRecordMapping.h 539include/llvm/DebugInfo/CodeView/SymbolRecordMapping.h
540include/llvm/DebugInfo/CodeView/SymbolSerializer.h 540include/llvm/DebugInfo/CodeView/SymbolSerializer.h
541include/llvm/DebugInfo/CodeView/SymbolVisitorCallbackPipeline.h 541include/llvm/DebugInfo/CodeView/SymbolVisitorCallbackPipeline.h
542include/llvm/DebugInfo/CodeView/SymbolVisitorCallbacks.h 542include/llvm/DebugInfo/CodeView/SymbolVisitorCallbacks.h
543include/llvm/DebugInfo/CodeView/SymbolVisitorDelegate.h 543include/llvm/DebugInfo/CodeView/SymbolVisitorDelegate.h
544include/llvm/DebugInfo/CodeView/TypeCollection.h 544include/llvm/DebugInfo/CodeView/TypeCollection.h
545include/llvm/DebugInfo/CodeView/TypeDeserializer.h 545include/llvm/DebugInfo/CodeView/TypeDeserializer.h
546include/llvm/DebugInfo/CodeView/TypeDumpVisitor.h 546include/llvm/DebugInfo/CodeView/TypeDumpVisitor.h
547include/llvm/DebugInfo/CodeView/TypeHashing.h 547include/llvm/DebugInfo/CodeView/TypeHashing.h
548include/llvm/DebugInfo/CodeView/TypeIndex.h 548include/llvm/DebugInfo/CodeView/TypeIndex.h
549include/llvm/DebugInfo/CodeView/TypeIndexDiscovery.h 549include/llvm/DebugInfo/CodeView/TypeIndexDiscovery.h
550include/llvm/DebugInfo/CodeView/TypeRecord.h 550include/llvm/DebugInfo/CodeView/TypeRecord.h
551include/llvm/DebugInfo/CodeView/TypeRecordHelpers.h 551include/llvm/DebugInfo/CodeView/TypeRecordHelpers.h
552include/llvm/DebugInfo/CodeView/TypeRecordMapping.h 552include/llvm/DebugInfo/CodeView/TypeRecordMapping.h
553include/llvm/DebugInfo/CodeView/TypeStreamMerger.h 553include/llvm/DebugInfo/CodeView/TypeStreamMerger.h
554include/llvm/DebugInfo/CodeView/TypeSymbolEmitter.h 554include/llvm/DebugInfo/CodeView/TypeSymbolEmitter.h
555include/llvm/DebugInfo/CodeView/TypeTableCollection.h 555include/llvm/DebugInfo/CodeView/TypeTableCollection.h
556include/llvm/DebugInfo/CodeView/TypeVisitorCallbackPipeline.h 556include/llvm/DebugInfo/CodeView/TypeVisitorCallbackPipeline.h
557include/llvm/DebugInfo/CodeView/TypeVisitorCallbacks.h 557include/llvm/DebugInfo/CodeView/TypeVisitorCallbacks.h
558include/llvm/DebugInfo/DIContext.h 558include/llvm/DebugInfo/DIContext.h
559include/llvm/DebugInfo/DWARF/DWARFAbbreviationDeclaration.h 559include/llvm/DebugInfo/DWARF/DWARFAbbreviationDeclaration.h
560include/llvm/DebugInfo/DWARF/DWARFAcceleratorTable.h 560include/llvm/DebugInfo/DWARF/DWARFAcceleratorTable.h
561include/llvm/DebugInfo/DWARF/DWARFAddressRange.h 561include/llvm/DebugInfo/DWARF/DWARFAddressRange.h
562include/llvm/DebugInfo/DWARF/DWARFAttribute.h 562include/llvm/DebugInfo/DWARF/DWARFAttribute.h
563include/llvm/DebugInfo/DWARF/DWARFCompileUnit.h 563include/llvm/DebugInfo/DWARF/DWARFCompileUnit.h
564include/llvm/DebugInfo/DWARF/DWARFContext.h 564include/llvm/DebugInfo/DWARF/DWARFContext.h
565include/llvm/DebugInfo/DWARF/DWARFDataExtractor.h 565include/llvm/DebugInfo/DWARF/DWARFDataExtractor.h
566include/llvm/DebugInfo/DWARF/DWARFDebugAbbrev.h 566include/llvm/DebugInfo/DWARF/DWARFDebugAbbrev.h
567include/llvm/DebugInfo/DWARF/DWARFDebugAddr.h 567include/llvm/DebugInfo/DWARF/DWARFDebugAddr.h
568include/llvm/DebugInfo/DWARF/DWARFDebugArangeSet.h 568include/llvm/DebugInfo/DWARF/DWARFDebugArangeSet.h
569include/llvm/DebugInfo/DWARF/DWARFDebugAranges.h 569include/llvm/DebugInfo/DWARF/DWARFDebugAranges.h
570include/llvm/DebugInfo/DWARF/DWARFDebugFrame.h 570include/llvm/DebugInfo/DWARF/DWARFDebugFrame.h
571include/llvm/DebugInfo/DWARF/DWARFDebugInfoEntry.h 571include/llvm/DebugInfo/DWARF/DWARFDebugInfoEntry.h
572include/llvm/DebugInfo/DWARF/DWARFDebugLine.h 572include/llvm/DebugInfo/DWARF/DWARFDebugLine.h
573include/llvm/DebugInfo/DWARF/DWARFDebugLoc.h 573include/llvm/DebugInfo/DWARF/DWARFDebugLoc.h
574include/llvm/DebugInfo/DWARF/DWARFDebugMacro.h 574include/llvm/DebugInfo/DWARF/DWARFDebugMacro.h
575include/llvm/DebugInfo/DWARF/DWARFDebugPubTable.h 575include/llvm/DebugInfo/DWARF/DWARFDebugPubTable.h
576include/llvm/DebugInfo/DWARF/DWARFDebugRangeList.h 576include/llvm/DebugInfo/DWARF/DWARFDebugRangeList.h
577include/llvm/DebugInfo/DWARF/DWARFDebugRnglists.h 577include/llvm/DebugInfo/DWARF/DWARFDebugRnglists.h
578include/llvm/DebugInfo/DWARF/DWARFDie.h 578include/llvm/DebugInfo/DWARF/DWARFDie.h
579include/llvm/DebugInfo/DWARF/DWARFExpression.h 579include/llvm/DebugInfo/DWARF/DWARFExpression.h
580include/llvm/DebugInfo/DWARF/DWARFFormValue.h 580include/llvm/DebugInfo/DWARF/DWARFFormValue.h
581include/llvm/DebugInfo/DWARF/DWARFGdbIndex.h 581include/llvm/DebugInfo/DWARF/DWARFGdbIndex.h
582include/llvm/DebugInfo/DWARF/DWARFListTable.h 582include/llvm/DebugInfo/DWARF/DWARFListTable.h
583include/llvm/DebugInfo/DWARF/DWARFObject.h 583include/llvm/DebugInfo/DWARF/DWARFObject.h
584include/llvm/DebugInfo/DWARF/DWARFRelocMap.h 584include/llvm/DebugInfo/DWARF/DWARFRelocMap.h
585include/llvm/DebugInfo/DWARF/DWARFSection.h 585include/llvm/DebugInfo/DWARF/DWARFSection.h
586include/llvm/DebugInfo/DWARF/DWARFTypeUnit.h 586include/llvm/DebugInfo/DWARF/DWARFTypeUnit.h
587include/llvm/DebugInfo/DWARF/DWARFUnit.h 587include/llvm/DebugInfo/DWARF/DWARFUnit.h
588include/llvm/DebugInfo/DWARF/DWARFUnitIndex.h 588include/llvm/DebugInfo/DWARF/DWARFUnitIndex.h
589include/llvm/DebugInfo/DWARF/DWARFVerifier.h 589include/llvm/DebugInfo/DWARF/DWARFVerifier.h
590include/llvm/DebugInfo/GSYM/FileEntry.h 590include/llvm/DebugInfo/GSYM/FileEntry.h
591include/llvm/DebugInfo/GSYM/FunctionInfo.h 591include/llvm/DebugInfo/GSYM/FunctionInfo.h
592include/llvm/DebugInfo/GSYM/InlineInfo.h 592include/llvm/DebugInfo/GSYM/InlineInfo.h
593include/llvm/DebugInfo/GSYM/LineEntry.h 593include/llvm/DebugInfo/GSYM/LineEntry.h
594include/llvm/DebugInfo/GSYM/Range.h 594include/llvm/DebugInfo/GSYM/Range.h
595include/llvm/DebugInfo/GSYM/StringTable.h 595include/llvm/DebugInfo/GSYM/StringTable.h
596include/llvm/DebugInfo/MSF/IMSFFile.h 596include/llvm/DebugInfo/MSF/IMSFFile.h
597include/llvm/DebugInfo/MSF/MSFBuilder.h 597include/llvm/DebugInfo/MSF/MSFBuilder.h
598include/llvm/DebugInfo/MSF/MSFCommon.h 598include/llvm/DebugInfo/MSF/MSFCommon.h
599include/llvm/DebugInfo/MSF/MSFError.h 599include/llvm/DebugInfo/MSF/MSFError.h
600include/llvm/DebugInfo/MSF/MappedBlockStream.h 600include/llvm/DebugInfo/MSF/MappedBlockStream.h
601include/llvm/DebugInfo/PDB/ConcreteSymbolEnumerator.h 601include/llvm/DebugInfo/PDB/ConcreteSymbolEnumerator.h
602include/llvm/DebugInfo/PDB/DIA/DIADataStream.h 602include/llvm/DebugInfo/PDB/DIA/DIADataStream.h
603include/llvm/DebugInfo/PDB/DIA/DIAEnumDebugStreams.h 603include/llvm/DebugInfo/PDB/DIA/DIAEnumDebugStreams.h
604include/llvm/DebugInfo/PDB/DIA/DIAEnumFrameData.h 604include/llvm/DebugInfo/PDB/DIA/DIAEnumFrameData.h
605include/llvm/DebugInfo/PDB/DIA/DIAEnumInjectedSources.h 605include/llvm/DebugInfo/PDB/DIA/DIAEnumInjectedSources.h
606include/llvm/DebugInfo/PDB/DIA/DIAEnumLineNumbers.h 606include/llvm/DebugInfo/PDB/DIA/DIAEnumLineNumbers.h
607include/llvm/DebugInfo/PDB/DIA/DIAEnumSectionContribs.h 607include/llvm/DebugInfo/PDB/DIA/DIAEnumSectionContribs.h
608include/llvm/DebugInfo/PDB/DIA/DIAEnumSourceFiles.h 608include/llvm/DebugInfo/PDB/DIA/DIAEnumSourceFiles.h
609include/llvm/DebugInfo/PDB/DIA/DIAEnumSymbols.h 609include/llvm/DebugInfo/PDB/DIA/DIAEnumSymbols.h
610include/llvm/DebugInfo/PDB/DIA/DIAEnumTables.h 610include/llvm/DebugInfo/PDB/DIA/DIAEnumTables.h
611include/llvm/DebugInfo/PDB/DIA/DIAError.h 611include/llvm/DebugInfo/PDB/DIA/DIAError.h
612include/llvm/DebugInfo/PDB/DIA/DIAFrameData.h 612include/llvm/DebugInfo/PDB/DIA/DIAFrameData.h
613include/llvm/DebugInfo/PDB/DIA/DIAInjectedSource.h 613include/llvm/DebugInfo/PDB/DIA/DIAInjectedSource.h
614include/llvm/DebugInfo/PDB/DIA/DIALineNumber.h 614include/llvm/DebugInfo/PDB/DIA/DIALineNumber.h
615include/llvm/DebugInfo/PDB/DIA/DIARawSymbol.h 615include/llvm/DebugInfo/PDB/DIA/DIARawSymbol.h
616include/llvm/DebugInfo/PDB/DIA/DIASectionContrib.h 616include/llvm/DebugInfo/PDB/DIA/DIASectionContrib.h
617include/llvm/DebugInfo/PDB/DIA/DIASession.h 617include/llvm/DebugInfo/PDB/DIA/DIASession.h
618include/llvm/DebugInfo/PDB/DIA/DIASourceFile.h 618include/llvm/DebugInfo/PDB/DIA/DIASourceFile.h
619include/llvm/DebugInfo/PDB/DIA/DIASupport.h 619include/llvm/DebugInfo/PDB/DIA/DIASupport.h
620include/llvm/DebugInfo/PDB/DIA/DIATable.h 620include/llvm/DebugInfo/PDB/DIA/DIATable.h
621include/llvm/DebugInfo/PDB/DIA/DIAUtils.h 621include/llvm/DebugInfo/PDB/DIA/DIAUtils.h
622include/llvm/DebugInfo/PDB/GenericError.h 622include/llvm/DebugInfo/PDB/GenericError.h
623include/llvm/DebugInfo/PDB/IPDBDataStream.h 623include/llvm/DebugInfo/PDB/IPDBDataStream.h
624include/llvm/DebugInfo/PDB/IPDBEnumChildren.h 624include/llvm/DebugInfo/PDB/IPDBEnumChildren.h
625include/llvm/DebugInfo/PDB/IPDBFrameData.h 625include/llvm/DebugInfo/PDB/IPDBFrameData.h
626include/llvm/DebugInfo/PDB/IPDBInjectedSource.h 626include/llvm/DebugInfo/PDB/IPDBInjectedSource.h
627include/llvm/DebugInfo/PDB/IPDBLineNumber.h 627include/llvm/DebugInfo/PDB/IPDBLineNumber.h
628include/llvm/DebugInfo/PDB/IPDBRawSymbol.h 628include/llvm/DebugInfo/PDB/IPDBRawSymbol.h
629include/llvm/DebugInfo/PDB/IPDBSectionContrib.h 629include/llvm/DebugInfo/PDB/IPDBSectionContrib.h
630include/llvm/DebugInfo/PDB/IPDBSession.h 630include/llvm/DebugInfo/PDB/IPDBSession.h
631include/llvm/DebugInfo/PDB/IPDBSourceFile.h 631include/llvm/DebugInfo/PDB/IPDBSourceFile.h
632include/llvm/DebugInfo/PDB/IPDBTable.h 632include/llvm/DebugInfo/PDB/IPDBTable.h
633include/llvm/DebugInfo/PDB/Native/DbiModuleDescriptor.h 633include/llvm/DebugInfo/PDB/Native/DbiModuleDescriptor.h
634include/llvm/DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.h 634include/llvm/DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.h
635include/llvm/DebugInfo/PDB/Native/DbiModuleList.h 635include/llvm/DebugInfo/PDB/Native/DbiModuleList.h
636include/llvm/DebugInfo/PDB/Native/DbiStream.h 636include/llvm/DebugInfo/PDB/Native/DbiStream.h
637include/llvm/DebugInfo/PDB/Native/DbiStreamBuilder.h 637include/llvm/DebugInfo/PDB/Native/DbiStreamBuilder.h
638include/llvm/DebugInfo/PDB/Native/EnumTables.h 638include/llvm/DebugInfo/PDB/Native/EnumTables.h
639include/llvm/DebugInfo/PDB/Native/Formatters.h 639include/llvm/DebugInfo/PDB/Native/Formatters.h
640include/llvm/DebugInfo/PDB/Native/GSIStreamBuilder.h 640include/llvm/DebugInfo/PDB/Native/GSIStreamBuilder.h
641include/llvm/DebugInfo/PDB/Native/GlobalsStream.h 641include/llvm/DebugInfo/PDB/Native/GlobalsStream.h
642include/llvm/DebugInfo/PDB/Native/Hash.h 642include/llvm/DebugInfo/PDB/Native/Hash.h
643include/llvm/DebugInfo/PDB/Native/HashTable.h 643include/llvm/DebugInfo/PDB/Native/HashTable.h
644include/llvm/DebugInfo/PDB/Native/ISectionContribVisitor.h 644include/llvm/DebugInfo/PDB/Native/ISectionContribVisitor.h
645include/llvm/DebugInfo/PDB/Native/InfoStream.h 645include/llvm/DebugInfo/PDB/Native/InfoStream.h
646include/llvm/DebugInfo/PDB/Native/InfoStreamBuilder.h 646include/llvm/DebugInfo/PDB/Native/InfoStreamBuilder.h
647include/llvm/DebugInfo/PDB/Native/InjectedSourceStream.h 647include/llvm/DebugInfo/PDB/Native/InjectedSourceStream.h
648include/llvm/DebugInfo/PDB/Native/ModuleDebugStream.h 648include/llvm/DebugInfo/PDB/Native/ModuleDebugStream.h
649include/llvm/DebugInfo/PDB/Native/NamedStreamMap.h 649include/llvm/DebugInfo/PDB/Native/NamedStreamMap.h
650include/llvm/DebugInfo/PDB/Native/NativeCompilandSymbol.h 650include/llvm/DebugInfo/PDB/Native/NativeCompilandSymbol.h
651include/llvm/DebugInfo/PDB/Native/NativeEnumGlobals.h 651include/llvm/DebugInfo/PDB/Native/NativeEnumGlobals.h
652include/llvm/DebugInfo/PDB/Native/NativeEnumInjectedSources.h 652include/llvm/DebugInfo/PDB/Native/NativeEnumInjectedSources.h
653include/llvm/DebugInfo/PDB/Native/NativeEnumModules.h 653include/llvm/DebugInfo/PDB/Native/NativeEnumModules.h
654include/llvm/DebugInfo/PDB/Native/NativeEnumTypes.h 654include/llvm/DebugInfo/PDB/Native/NativeEnumTypes.h
655include/llvm/DebugInfo/PDB/Native/NativeExeSymbol.h 655include/llvm/DebugInfo/PDB/Native/NativeExeSymbol.h
656include/llvm/DebugInfo/PDB/Native/NativeRawSymbol.h 656include/llvm/DebugInfo/PDB/Native/NativeRawSymbol.h
657include/llvm/DebugInfo/PDB/Native/NativeSession.h 657include/llvm/DebugInfo/PDB/Native/NativeSession.h
658include/llvm/DebugInfo/PDB/Native/NativeSymbolEnumerator.h 658include/llvm/DebugInfo/PDB/Native/NativeSymbolEnumerator.h
659include/llvm/DebugInfo/PDB/Native/NativeTypeArray.h 659include/llvm/DebugInfo/PDB/Native/NativeTypeArray.h
660include/llvm/DebugInfo/PDB/Native/NativeTypeBuiltin.h 660include/llvm/DebugInfo/PDB/Native/NativeTypeBuiltin.h
661include/llvm/DebugInfo/PDB/Native/NativeTypeEnum.h 661include/llvm/DebugInfo/PDB/Native/NativeTypeEnum.h
662include/llvm/DebugInfo/PDB/Native/NativeTypeFunctionSig.h 662include/llvm/DebugInfo/PDB/Native/NativeTypeFunctionSig.h
663include/llvm/DebugInfo/PDB/Native/NativeTypePointer.h 663include/llvm/DebugInfo/PDB/Native/NativeTypePointer.h
664include/llvm/DebugInfo/PDB/Native/NativeTypeTypedef.h 664include/llvm/DebugInfo/PDB/Native/NativeTypeTypedef.h
665include/llvm/DebugInfo/PDB/Native/NativeTypeUDT.h 665include/llvm/DebugInfo/PDB/Native/NativeTypeUDT.h
666include/llvm/DebugInfo/PDB/Native/NativeTypeVTShape.h 666include/llvm/DebugInfo/PDB/Native/NativeTypeVTShape.h
667include/llvm/DebugInfo/PDB/Native/PDBFile.h 667include/llvm/DebugInfo/PDB/Native/PDBFile.h
668include/llvm/DebugInfo/PDB/Native/PDBFileBuilder.h 668include/llvm/DebugInfo/PDB/Native/PDBFileBuilder.h
669include/llvm/DebugInfo/PDB/Native/PDBStringTable.h 669include/llvm/DebugInfo/PDB/Native/PDBStringTable.h
670include/llvm/DebugInfo/PDB/Native/PDBStringTableBuilder.h 670include/llvm/DebugInfo/PDB/Native/PDBStringTableBuilder.h
671include/llvm/DebugInfo/PDB/Native/PublicsStream.h 671include/llvm/DebugInfo/PDB/Native/PublicsStream.h
672include/llvm/DebugInfo/PDB/Native/RawConstants.h 672include/llvm/DebugInfo/PDB/Native/RawConstants.h
673include/llvm/DebugInfo/PDB/Native/RawError.h 673include/llvm/DebugInfo/PDB/Native/RawError.h
674include/llvm/DebugInfo/PDB/Native/RawTypes.h 674include/llvm/DebugInfo/PDB/Native/RawTypes.h
675include/llvm/DebugInfo/PDB/Native/SymbolCache.h 675include/llvm/DebugInfo/PDB/Native/SymbolCache.h
676include/llvm/DebugInfo/PDB/Native/SymbolStream.h 676include/llvm/DebugInfo/PDB/Native/SymbolStream.h
677include/llvm/DebugInfo/PDB/Native/TpiHashing.h 677include/llvm/DebugInfo/PDB/Native/TpiHashing.h
678include/llvm/DebugInfo/PDB/Native/TpiStream.h 678include/llvm/DebugInfo/PDB/Native/TpiStream.h
679include/llvm/DebugInfo/PDB/Native/TpiStreamBuilder.h 679include/llvm/DebugInfo/PDB/Native/TpiStreamBuilder.h
680include/llvm/DebugInfo/PDB/PDB.h 680include/llvm/DebugInfo/PDB/PDB.h
681include/llvm/DebugInfo/PDB/PDBContext.h 681include/llvm/DebugInfo/PDB/PDBContext.h
682include/llvm/DebugInfo/PDB/PDBExtras.h 682include/llvm/DebugInfo/PDB/PDBExtras.h
683include/llvm/DebugInfo/PDB/PDBSymDumper.h 683include/llvm/DebugInfo/PDB/PDBSymDumper.h
684include/llvm/DebugInfo/PDB/PDBSymbol.h 684include/llvm/DebugInfo/PDB/PDBSymbol.h
685include/llvm/DebugInfo/PDB/PDBSymbolAnnotation.h 685include/llvm/DebugInfo/PDB/PDBSymbolAnnotation.h
686include/llvm/DebugInfo/PDB/PDBSymbolBlock.h 686include/llvm/DebugInfo/PDB/PDBSymbolBlock.h
687include/llvm/DebugInfo/PDB/PDBSymbolCompiland.h 687include/llvm/DebugInfo/PDB/PDBSymbolCompiland.h
688include/llvm/DebugInfo/PDB/PDBSymbolCompilandDetails.h 688include/llvm/DebugInfo/PDB/PDBSymbolCompilandDetails.h
689include/llvm/DebugInfo/PDB/PDBSymbolCompilandEnv.h 689include/llvm/DebugInfo/PDB/PDBSymbolCompilandEnv.h
690include/llvm/DebugInfo/PDB/PDBSymbolCustom.h 690include/llvm/DebugInfo/PDB/PDBSymbolCustom.h
691include/llvm/DebugInfo/PDB/PDBSymbolData.h 691include/llvm/DebugInfo/PDB/PDBSymbolData.h
692include/llvm/DebugInfo/PDB/PDBSymbolExe.h 692include/llvm/DebugInfo/PDB/PDBSymbolExe.h
693include/llvm/DebugInfo/PDB/PDBSymbolFunc.h 693include/llvm/DebugInfo/PDB/PDBSymbolFunc.h
694include/llvm/DebugInfo/PDB/PDBSymbolFuncDebugEnd.h 694include/llvm/DebugInfo/PDB/PDBSymbolFuncDebugEnd.h
695include/llvm/DebugInfo/PDB/PDBSymbolFuncDebugStart.h 695include/llvm/DebugInfo/PDB/PDBSymbolFuncDebugStart.h
696include/llvm/DebugInfo/PDB/PDBSymbolLabel.h 696include/llvm/DebugInfo/PDB/PDBSymbolLabel.h
697include/llvm/DebugInfo/PDB/PDBSymbolPublicSymbol.h 697include/llvm/DebugInfo/PDB/PDBSymbolPublicSymbol.h
698include/llvm/DebugInfo/PDB/PDBSymbolThunk.h 698include/llvm/DebugInfo/PDB/PDBSymbolThunk.h
699include/llvm/DebugInfo/PDB/PDBSymbolTypeArray.h 699include/llvm/DebugInfo/PDB/PDBSymbolTypeArray.h
700include/llvm/DebugInfo/PDB/PDBSymbolTypeBaseClass.h 700include/llvm/DebugInfo/PDB/PDBSymbolTypeBaseClass.h
701include/llvm/DebugInfo/PDB/PDBSymbolTypeBuiltin.h 701include/llvm/DebugInfo/PDB/PDBSymbolTypeBuiltin.h
702include/llvm/DebugInfo/PDB/PDBSymbolTypeCustom.h 702include/llvm/DebugInfo/PDB/PDBSymbolTypeCustom.h
703include/llvm/DebugInfo/PDB/PDBSymbolTypeDimension.h 703include/llvm/DebugInfo/PDB/PDBSymbolTypeDimension.h
704include/llvm/DebugInfo/PDB/PDBSymbolTypeEnum.h 704include/llvm/DebugInfo/PDB/PDBSymbolTypeEnum.h
705include/llvm/DebugInfo/PDB/PDBSymbolTypeFriend.h 705include/llvm/DebugInfo/PDB/PDBSymbolTypeFriend.h
706include/llvm/DebugInfo/PDB/PDBSymbolTypeFunctionArg.h 706include/llvm/DebugInfo/PDB/PDBSymbolTypeFunctionArg.h
707include/llvm/DebugInfo/PDB/PDBSymbolTypeFunctionSig.h 707include/llvm/DebugInfo/PDB/PDBSymbolTypeFunctionSig.h
708include/llvm/DebugInfo/PDB/PDBSymbolTypeManaged.h 708include/llvm/DebugInfo/PDB/PDBSymbolTypeManaged.h
709include/llvm/DebugInfo/PDB/PDBSymbolTypePointer.h 709include/llvm/DebugInfo/PDB/PDBSymbolTypePointer.h
710include/llvm/DebugInfo/PDB/PDBSymbolTypeTypedef.h 710include/llvm/DebugInfo/PDB/PDBSymbolTypeTypedef.h
711include/llvm/DebugInfo/PDB/PDBSymbolTypeUDT.h 711include/llvm/DebugInfo/PDB/PDBSymbolTypeUDT.h
712include/llvm/DebugInfo/PDB/PDBSymbolTypeVTable.h 712include/llvm/DebugInfo/PDB/PDBSymbolTypeVTable.h
713include/llvm/DebugInfo/PDB/PDBSymbolTypeVTableShape.h 713include/llvm/DebugInfo/PDB/PDBSymbolTypeVTableShape.h
714include/llvm/DebugInfo/PDB/PDBSymbolUnknown.h 714include/llvm/DebugInfo/PDB/PDBSymbolUnknown.h
715include/llvm/DebugInfo/PDB/PDBSymbolUsingNamespace.h 715include/llvm/DebugInfo/PDB/PDBSymbolUsingNamespace.h
716include/llvm/DebugInfo/PDB/PDBTypes.h 716include/llvm/DebugInfo/PDB/PDBTypes.h
717include/llvm/DebugInfo/PDB/UDTLayout.h 717include/llvm/DebugInfo/PDB/UDTLayout.h
718include/llvm/DebugInfo/Symbolize/DIPrinter.h 718include/llvm/DebugInfo/Symbolize/DIPrinter.h
719include/llvm/DebugInfo/Symbolize/SymbolizableModule.h 719include/llvm/DebugInfo/Symbolize/SymbolizableModule.h
720include/llvm/DebugInfo/Symbolize/Symbolize.h 720include/llvm/DebugInfo/Symbolize/Symbolize.h
721include/llvm/Demangle/Demangle.h 721include/llvm/Demangle/Demangle.h
722include/llvm/Demangle/DemangleConfig.h 722include/llvm/Demangle/DemangleConfig.h
723include/llvm/Demangle/ItaniumDemangle.h 723include/llvm/Demangle/ItaniumDemangle.h
724include/llvm/Demangle/MicrosoftDemangle.h 724include/llvm/Demangle/MicrosoftDemangle.h
725include/llvm/Demangle/MicrosoftDemangleNodes.h 725include/llvm/Demangle/MicrosoftDemangleNodes.h
726include/llvm/Demangle/StringView.h 726include/llvm/Demangle/StringView.h
727include/llvm/Demangle/Utility.h 727include/llvm/Demangle/Utility.h
728include/llvm/ExecutionEngine/ExecutionEngine.h 728include/llvm/ExecutionEngine/ExecutionEngine.h
729include/llvm/ExecutionEngine/GenericValue.h 729include/llvm/ExecutionEngine/GenericValue.h
730include/llvm/ExecutionEngine/Interpreter.h 730include/llvm/ExecutionEngine/Interpreter.h
731include/llvm/ExecutionEngine/JITEventListener.h 731include/llvm/ExecutionEngine/JITEventListener.h
732include/llvm/ExecutionEngine/JITLink/EHFrameSupport.h 732include/llvm/ExecutionEngine/JITLink/EHFrameSupport.h
733include/llvm/ExecutionEngine/JITLink/JITLink.h 733include/llvm/ExecutionEngine/JITLink/JITLink.h
734include/llvm/ExecutionEngine/JITLink/JITLinkMemoryManager.h 734include/llvm/ExecutionEngine/JITLink/JITLinkMemoryManager.h
735include/llvm/ExecutionEngine/JITLink/MachO.h 735include/llvm/ExecutionEngine/JITLink/MachO.h
736include/llvm/ExecutionEngine/JITLink/MachO_x86_64.h 736include/llvm/ExecutionEngine/JITLink/MachO_x86_64.h
737include/llvm/ExecutionEngine/JITSymbol.h 737include/llvm/ExecutionEngine/JITSymbol.h
738include/llvm/ExecutionEngine/MCJIT.h 738include/llvm/ExecutionEngine/MCJIT.h
739include/llvm/ExecutionEngine/OProfileWrapper.h 739include/llvm/ExecutionEngine/OProfileWrapper.h
740include/llvm/ExecutionEngine/ObjectCache.h 740include/llvm/ExecutionEngine/ObjectCache.h
741include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h 741include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h
742include/llvm/ExecutionEngine/Orc/CompileUtils.h 742include/llvm/ExecutionEngine/Orc/CompileUtils.h
743include/llvm/ExecutionEngine/Orc/Core.h 743include/llvm/ExecutionEngine/Orc/Core.h
744include/llvm/ExecutionEngine/Orc/ExecutionUtils.h 744include/llvm/ExecutionEngine/Orc/ExecutionUtils.h
745include/llvm/ExecutionEngine/Orc/GlobalMappingLayer.h 745include/llvm/ExecutionEngine/Orc/GlobalMappingLayer.h
746include/llvm/ExecutionEngine/Orc/IRCompileLayer.h 746include/llvm/ExecutionEngine/Orc/IRCompileLayer.h
747include/llvm/ExecutionEngine/Orc/IRTransformLayer.h 747include/llvm/ExecutionEngine/Orc/IRTransformLayer.h
748include/llvm/ExecutionEngine/Orc/IndirectionUtils.h 748include/llvm/ExecutionEngine/Orc/IndirectionUtils.h
749include/llvm/ExecutionEngine/Orc/JITTargetMachineBuilder.h 749include/llvm/ExecutionEngine/Orc/JITTargetMachineBuilder.h
750include/llvm/ExecutionEngine/Orc/LLJIT.h 750include/llvm/ExecutionEngine/Orc/LLJIT.h
751include/llvm/ExecutionEngine/Orc/LambdaResolver.h 751include/llvm/ExecutionEngine/Orc/LambdaResolver.h
752include/llvm/ExecutionEngine/Orc/Layer.h 752include/llvm/ExecutionEngine/Orc/Layer.h
753include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h 753include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h
754include/llvm/ExecutionEngine/Orc/LazyReexports.h 754include/llvm/ExecutionEngine/Orc/LazyReexports.h
755include/llvm/ExecutionEngine/Orc/Legacy.h 755include/llvm/ExecutionEngine/Orc/Legacy.h
756include/llvm/ExecutionEngine/Orc/NullResolver.h 756include/llvm/ExecutionEngine/Orc/NullResolver.h
757include/llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h 757include/llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h
758include/llvm/ExecutionEngine/Orc/ObjectTransformLayer.h 758include/llvm/ExecutionEngine/Orc/ObjectTransformLayer.h
759include/llvm/ExecutionEngine/Orc/OrcABISupport.h 759include/llvm/ExecutionEngine/Orc/OrcABISupport.h
760include/llvm/ExecutionEngine/Orc/OrcError.h 760include/llvm/ExecutionEngine/Orc/OrcError.h
761include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h 761include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h
762include/llvm/ExecutionEngine/Orc/OrcRemoteTargetRPCAPI.h 762include/llvm/ExecutionEngine/Orc/OrcRemoteTargetRPCAPI.h
763include/llvm/ExecutionEngine/Orc/OrcRemoteTargetServer.h 763include/llvm/ExecutionEngine/Orc/OrcRemoteTargetServer.h
764include/llvm/ExecutionEngine/Orc/RPCSerialization.h 764include/llvm/ExecutionEngine/Orc/RPCSerialization.h
765include/llvm/ExecutionEngine/Orc/RPCUtils.h 765include/llvm/ExecutionEngine/Orc/RPCUtils.h
766include/llvm/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.h 766include/llvm/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.h
767include/llvm/ExecutionEngine/Orc/RawByteChannel.h 767include/llvm/ExecutionEngine/Orc/RawByteChannel.h
768include/llvm/ExecutionEngine/Orc/RemoteObjectLayer.h 768include/llvm/ExecutionEngine/Orc/RemoteObjectLayer.h
769include/llvm/ExecutionEngine/Orc/SymbolStringPool.h 769include/llvm/ExecutionEngine/Orc/SymbolStringPool.h
770include/llvm/ExecutionEngine/Orc/ThreadSafeModule.h 770include/llvm/ExecutionEngine/Orc/ThreadSafeModule.h
771include/llvm/ExecutionEngine/OrcMCJITReplacement.h 771include/llvm/ExecutionEngine/OrcMCJITReplacement.h
772include/llvm/ExecutionEngine/OrcV1Deprecation.h 772include/llvm/ExecutionEngine/OrcV1Deprecation.h
773include/llvm/ExecutionEngine/RTDyldMemoryManager.h 773include/llvm/ExecutionEngine/RTDyldMemoryManager.h
774include/llvm/ExecutionEngine/RuntimeDyld.h 774include/llvm/ExecutionEngine/RuntimeDyld.h
775include/llvm/ExecutionEngine/RuntimeDyldChecker.h 775include/llvm/ExecutionEngine/RuntimeDyldChecker.h
776include/llvm/ExecutionEngine/SectionMemoryManager.h 776include/llvm/ExecutionEngine/SectionMemoryManager.h
777include/llvm/FuzzMutate/FuzzerCLI.h 777include/llvm/FuzzMutate/FuzzerCLI.h
778include/llvm/FuzzMutate/IRMutator.h 778include/llvm/FuzzMutate/IRMutator.h
779include/llvm/FuzzMutate/OpDescriptor.h 779include/llvm/FuzzMutate/OpDescriptor.h
780include/llvm/FuzzMutate/Operations.h 780include/llvm/FuzzMutate/Operations.h
781include/llvm/FuzzMutate/Random.h 781include/llvm/FuzzMutate/Random.h
782include/llvm/FuzzMutate/RandomIRBuilder.h 782include/llvm/FuzzMutate/RandomIRBuilder.h
783include/llvm/IR/Argument.h 783include/llvm/IR/Argument.h
784include/llvm/IR/AssemblyAnnotationWriter.h 784include/llvm/IR/AssemblyAnnotationWriter.h
785include/llvm/IR/Attributes.h 785include/llvm/IR/Attributes.h
786include/llvm/IR/Attributes.inc 786include/llvm/IR/Attributes.inc
787include/llvm/IR/Attributes.td 787include/llvm/IR/Attributes.td
788include/llvm/IR/AutoUpgrade.h 788include/llvm/IR/AutoUpgrade.h
789include/llvm/IR/BasicBlock.h 789include/llvm/IR/BasicBlock.h
790include/llvm/IR/CFG.h 790include/llvm/IR/CFG.h
791include/llvm/IR/CFGDiff.h 791include/llvm/IR/CFGDiff.h
792include/llvm/IR/CallSite.h 792include/llvm/IR/CallSite.h
793include/llvm/IR/CallingConv.h 793include/llvm/IR/CallingConv.h
794include/llvm/IR/Comdat.h 794include/llvm/IR/Comdat.h
795include/llvm/IR/Constant.h 795include/llvm/IR/Constant.h
796include/llvm/IR/ConstantFolder.h 796include/llvm/IR/ConstantFolder.h
797include/llvm/IR/ConstantRange.h 797include/llvm/IR/ConstantRange.h
798include/llvm/IR/Constants.h 798include/llvm/IR/Constants.h
799include/llvm/IR/DIBuilder.h 799include/llvm/IR/DIBuilder.h
800include/llvm/IR/DataLayout.h 800include/llvm/IR/DataLayout.h
801include/llvm/IR/DebugInfo.h 801include/llvm/IR/DebugInfo.h
802include/llvm/IR/DebugInfoFlags.def 802include/llvm/IR/DebugInfoFlags.def
803include/llvm/IR/DebugInfoMetadata.h 803include/llvm/IR/DebugInfoMetadata.h
804include/llvm/IR/DebugLoc.h 804include/llvm/IR/DebugLoc.h
805include/llvm/IR/DerivedTypes.h 805include/llvm/IR/DerivedTypes.h
806include/llvm/IR/DerivedUser.h 806include/llvm/IR/DerivedUser.h
807include/llvm/IR/DiagnosticHandler.h 807include/llvm/IR/DiagnosticHandler.h
808include/llvm/IR/DiagnosticInfo.h 808include/llvm/IR/DiagnosticInfo.h
809include/llvm/IR/DiagnosticPrinter.h 809include/llvm/IR/DiagnosticPrinter.h
810include/llvm/IR/Dominators.h 810include/llvm/IR/Dominators.h
811include/llvm/IR/Function.h 811include/llvm/IR/Function.h
812include/llvm/IR/GVMaterializer.h 812include/llvm/IR/GVMaterializer.h
813include/llvm/IR/GetElementPtrTypeIterator.h 813include/llvm/IR/GetElementPtrTypeIterator.h
814include/llvm/IR/GlobalAlias.h 814include/llvm/IR/GlobalAlias.h
815include/llvm/IR/GlobalIFunc.h 815include/llvm/IR/GlobalIFunc.h
816include/llvm/IR/GlobalIndirectSymbol.h 816include/llvm/IR/GlobalIndirectSymbol.h
817include/llvm/IR/GlobalObject.h 817include/llvm/IR/GlobalObject.h
818include/llvm/IR/GlobalValue.h 818include/llvm/IR/GlobalValue.h
819include/llvm/IR/GlobalVariable.h 819include/llvm/IR/GlobalVariable.h
820include/llvm/IR/IRBuilder.h 820include/llvm/IR/IRBuilder.h
821include/llvm/IR/IRPrintingPasses.h 821include/llvm/IR/IRPrintingPasses.h
822include/llvm/IR/InlineAsm.h 822include/llvm/IR/InlineAsm.h
823include/llvm/IR/InstIterator.h 823include/llvm/IR/InstIterator.h
824include/llvm/IR/InstVisitor.h 824include/llvm/IR/InstVisitor.h
825include/llvm/IR/InstrTypes.h 825include/llvm/IR/InstrTypes.h
826include/llvm/IR/Instruction.def 826include/llvm/IR/Instruction.def
827include/llvm/IR/Instruction.h 827include/llvm/IR/Instruction.h
828include/llvm/IR/Instructions.h 828include/llvm/IR/Instructions.h
829include/llvm/IR/IntrinsicEnums.inc 829include/llvm/IR/IntrinsicEnums.inc
830include/llvm/IR/IntrinsicImpl.inc 830include/llvm/IR/IntrinsicImpl.inc
831include/llvm/IR/IntrinsicInst.h 831include/llvm/IR/IntrinsicInst.h
832include/llvm/IR/Intrinsics.h 832include/llvm/IR/Intrinsics.h
833include/llvm/IR/Intrinsics.td 833include/llvm/IR/Intrinsics.td
834include/llvm/IR/IntrinsicsAArch64.td 834include/llvm/IR/IntrinsicsAArch64.td
835include/llvm/IR/IntrinsicsAMDGPU.td 835include/llvm/IR/IntrinsicsAMDGPU.td
836include/llvm/IR/IntrinsicsARM.td 836include/llvm/IR/IntrinsicsARM.td
837include/llvm/IR/IntrinsicsBPF.td 837include/llvm/IR/IntrinsicsBPF.td
838include/llvm/IR/IntrinsicsHexagon.td 838include/llvm/IR/IntrinsicsHexagon.td
839include/llvm/IR/IntrinsicsMips.td 839include/llvm/IR/IntrinsicsMips.td
840include/llvm/IR/IntrinsicsNVVM.td 840include/llvm/IR/IntrinsicsNVVM.td
841include/llvm/IR/IntrinsicsPowerPC.td 841include/llvm/IR/IntrinsicsPowerPC.td
842include/llvm/IR/IntrinsicsRISCV.td 842include/llvm/IR/IntrinsicsRISCV.td
843include/llvm/IR/IntrinsicsSystemZ.td 843include/llvm/IR/IntrinsicsSystemZ.td
844include/llvm/IR/IntrinsicsWebAssembly.td 844include/llvm/IR/IntrinsicsWebAssembly.td
845include/llvm/IR/IntrinsicsX86.td 845include/llvm/IR/IntrinsicsX86.td
846include/llvm/IR/IntrinsicsXCore.td 846include/llvm/IR/IntrinsicsXCore.td
847include/llvm/IR/LLVMContext.h 847include/llvm/IR/LLVMContext.h
848include/llvm/IR/LegacyPassManager.h 848include/llvm/IR/LegacyPassManager.h
849include/llvm/IR/LegacyPassManagers.h 849include/llvm/IR/LegacyPassManagers.h
850include/llvm/IR/LegacyPassNameParser.h 850include/llvm/IR/LegacyPassNameParser.h
851include/llvm/IR/MDBuilder.h 851include/llvm/IR/MDBuilder.h
852include/llvm/IR/Mangler.h 852include/llvm/IR/Mangler.h
853include/llvm/IR/Metadata.def 853include/llvm/IR/Metadata.def
854include/llvm/IR/Metadata.h 854include/llvm/IR/Metadata.h
855include/llvm/IR/Module.h 855include/llvm/IR/Module.h
856include/llvm/IR/ModuleSlotTracker.h 856include/llvm/IR/ModuleSlotTracker.h
857include/llvm/IR/ModuleSummaryIndex.h 857include/llvm/IR/ModuleSummaryIndex.h
858include/llvm/IR/ModuleSummaryIndexYAML.h 858include/llvm/IR/ModuleSummaryIndexYAML.h
859include/llvm/IR/NoFolder.h 859include/llvm/IR/NoFolder.h
860include/llvm/IR/OperandTraits.h 860include/llvm/IR/OperandTraits.h
861include/llvm/IR/Operator.h 861include/llvm/IR/Operator.h
862include/llvm/IR/OptBisect.h 862include/llvm/IR/OptBisect.h
863include/llvm/IR/PassInstrumentation.h 863include/llvm/IR/PassInstrumentation.h
864include/llvm/IR/PassManager.h 864include/llvm/IR/PassManager.h
865include/llvm/IR/PassManagerInternal.h 865include/llvm/IR/PassManagerInternal.h
866include/llvm/IR/PassTimingInfo.h 866include/llvm/IR/PassTimingInfo.h
867include/llvm/IR/PatternMatch.h 867include/llvm/IR/PatternMatch.h
868include/llvm/IR/PredIteratorCache.h 868include/llvm/IR/PredIteratorCache.h
869include/llvm/IR/ProfileSummary.h 869include/llvm/IR/ProfileSummary.h
870include/llvm/IR/RemarkStreamer.h 870include/llvm/IR/RemarkStreamer.h
871include/llvm/IR/RuntimeLibcalls.def 871include/llvm/IR/RuntimeLibcalls.def
872include/llvm/IR/SafepointIRVerifier.h 872include/llvm/IR/SafepointIRVerifier.h
873include/llvm/IR/Statepoint.h 873include/llvm/IR/Statepoint.h
874include/llvm/IR/SymbolTableListTraits.h 874include/llvm/IR/SymbolTableListTraits.h
875include/llvm/IR/TrackingMDRef.h 875include/llvm/IR/TrackingMDRef.h
876include/llvm/IR/Type.h 876include/llvm/IR/Type.h
877include/llvm/IR/TypeFinder.h 877include/llvm/IR/TypeFinder.h
878include/llvm/IR/Use.h 878include/llvm/IR/Use.h
879include/llvm/IR/UseListOrder.h 879include/llvm/IR/UseListOrder.h
880include/llvm/IR/User.h 880include/llvm/IR/User.h
881include/llvm/IR/Value.def 881include/llvm/IR/Value.def
882include/llvm/IR/Value.h 882include/llvm/IR/Value.h
883include/llvm/IR/ValueHandle.h 883include/llvm/IR/ValueHandle.h
884include/llvm/IR/ValueMap.h 884include/llvm/IR/ValueMap.h
885include/llvm/IR/ValueSymbolTable.h 885include/llvm/IR/ValueSymbolTable.h
886include/llvm/IR/Verifier.h 886include/llvm/IR/Verifier.h
887include/llvm/IRReader/IRReader.h 887include/llvm/IRReader/IRReader.h
888include/llvm/InitializePasses.h 888include/llvm/InitializePasses.h
889include/llvm/LTO/Caching.h 889include/llvm/LTO/Caching.h
890include/llvm/LTO/Config.h 890include/llvm/LTO/Config.h
891include/llvm/LTO/LTO.h 891include/llvm/LTO/LTO.h
892include/llvm/LTO/LTOBackend.h 892include/llvm/LTO/LTOBackend.h
893include/llvm/LTO/SummaryBasedOptimizations.h 893include/llvm/LTO/SummaryBasedOptimizations.h
894include/llvm/LTO/legacy/LTOCodeGenerator.h 894include/llvm/LTO/legacy/LTOCodeGenerator.h
895include/llvm/LTO/legacy/LTOModule.h 895include/llvm/LTO/legacy/LTOModule.h
896include/llvm/LTO/legacy/ThinLTOCodeGenerator.h 896include/llvm/LTO/legacy/ThinLTOCodeGenerator.h
897include/llvm/LTO/legacy/UpdateCompilerUsed.h 897include/llvm/LTO/legacy/UpdateCompilerUsed.h
898include/llvm/LineEditor/LineEditor.h 898include/llvm/LineEditor/LineEditor.h
899include/llvm/LinkAllIR.h 899include/llvm/LinkAllIR.h
900include/llvm/LinkAllPasses.h 900include/llvm/LinkAllPasses.h
901include/llvm/Linker/IRMover.h 901include/llvm/Linker/IRMover.h
902include/llvm/Linker/Linker.h 902include/llvm/Linker/Linker.h
903include/llvm/MC/ConstantPools.h 903include/llvm/MC/ConstantPools.h
904include/llvm/MC/LaneBitmask.h 904include/llvm/MC/LaneBitmask.h
905include/llvm/MC/MCAsmBackend.h 905include/llvm/MC/MCAsmBackend.h
906include/llvm/MC/MCAsmInfo.h 906include/llvm/MC/MCAsmInfo.h
907include/llvm/MC/MCAsmInfoCOFF.h 907include/llvm/MC/MCAsmInfoCOFF.h
908include/llvm/MC/MCAsmInfoDarwin.h 908include/llvm/MC/MCAsmInfoDarwin.h
909include/llvm/MC/MCAsmInfoELF.h 909include/llvm/MC/MCAsmInfoELF.h
910include/llvm/MC/MCAsmInfoWasm.h 910include/llvm/MC/MCAsmInfoWasm.h
911include/llvm/MC/MCAsmInfoXCOFF.h 911include/llvm/MC/MCAsmInfoXCOFF.h
912include/llvm/MC/MCAsmLayout.h 912include/llvm/MC/MCAsmLayout.h
913include/llvm/MC/MCAsmMacro.h 913include/llvm/MC/MCAsmMacro.h
914include/llvm/MC/MCAssembler.h 914include/llvm/MC/MCAssembler.h
915include/llvm/MC/MCCodeEmitter.h 915include/llvm/MC/MCCodeEmitter.h
916include/llvm/MC/MCCodePadder.h 916include/llvm/MC/MCCodePadder.h
917include/llvm/MC/MCCodeView.h 917include/llvm/MC/MCCodeView.h
918include/llvm/MC/MCContext.h 918include/llvm/MC/MCContext.h
919include/llvm/MC/MCDirectives.h 919include/llvm/MC/MCDirectives.h
920include/llvm/MC/MCDisassembler/MCDisassembler.h 920include/llvm/MC/MCDisassembler/MCDisassembler.h
921include/llvm/MC/MCDisassembler/MCExternalSymbolizer.h 921include/llvm/MC/MCDisassembler/MCExternalSymbolizer.h
922include/llvm/MC/MCDisassembler/MCRelocationInfo.h 922include/llvm/MC/MCDisassembler/MCRelocationInfo.h
923include/llvm/MC/MCDisassembler/MCSymbolizer.h 923include/llvm/MC/MCDisassembler/MCSymbolizer.h
924include/llvm/MC/MCDwarf.h 924include/llvm/MC/MCDwarf.h
925include/llvm/MC/MCELFObjectWriter.h 925include/llvm/MC/MCELFObjectWriter.h
926include/llvm/MC/MCELFStreamer.h 926include/llvm/MC/MCELFStreamer.h
927include/llvm/MC/MCExpr.h 927include/llvm/MC/MCExpr.h
928include/llvm/MC/MCFixedLenDisassembler.h 928include/llvm/MC/MCFixedLenDisassembler.h
929include/llvm/MC/MCFixup.h 929include/llvm/MC/MCFixup.h
930include/llvm/MC/MCFixupKindInfo.h 930include/llvm/MC/MCFixupKindInfo.h
931include/llvm/MC/MCFragment.h 931include/llvm/MC/MCFragment.h
932include/llvm/MC/MCInst.h 932include/llvm/MC/MCInst.h
933include/llvm/MC/MCInstBuilder.h 933include/llvm/MC/MCInstBuilder.h
934include/llvm/MC/MCInstPrinter.h 934include/llvm/MC/MCInstPrinter.h
935include/llvm/MC/MCInstrAnalysis.h 935include/llvm/MC/MCInstrAnalysis.h
936include/llvm/MC/MCInstrDesc.h 936include/llvm/MC/MCInstrDesc.h
937include/llvm/MC/MCInstrInfo.h 937include/llvm/MC/MCInstrInfo.h
938include/llvm/MC/MCInstrItineraries.h 938include/llvm/MC/MCInstrItineraries.h
939include/llvm/MC/MCLabel.h 939include/llvm/MC/MCLabel.h
940include/llvm/MC/MCLinkerOptimizationHint.h 940include/llvm/MC/MCLinkerOptimizationHint.h
941include/llvm/MC/MCMachObjectWriter.h 941include/llvm/MC/MCMachObjectWriter.h
942include/llvm/MC/MCObjectFileInfo.h 942include/llvm/MC/MCObjectFileInfo.h
943include/llvm/MC/MCObjectStreamer.h 943include/llvm/MC/MCObjectStreamer.h
944include/llvm/MC/MCObjectWriter.h 944include/llvm/MC/MCObjectWriter.h
945include/llvm/MC/MCParser/AsmCond.h 945include/llvm/MC/MCParser/AsmCond.h
946include/llvm/MC/MCParser/AsmLexer.h 946include/llvm/MC/MCParser/AsmLexer.h
947include/llvm/MC/MCParser/MCAsmLexer.h 947include/llvm/MC/MCParser/MCAsmLexer.h
948include/llvm/MC/MCParser/MCAsmParser.h 948include/llvm/MC/MCParser/MCAsmParser.h
949include/llvm/MC/MCParser/MCAsmParserExtension.h 949include/llvm/MC/MCParser/MCAsmParserExtension.h
950include/llvm/MC/MCParser/MCAsmParserUtils.h 950include/llvm/MC/MCParser/MCAsmParserUtils.h
951include/llvm/MC/MCParser/MCParsedAsmOperand.h 951include/llvm/MC/MCParser/MCParsedAsmOperand.h
952include/llvm/MC/MCParser/MCTargetAsmParser.h 952include/llvm/MC/MCParser/MCTargetAsmParser.h
953include/llvm/MC/MCRegisterInfo.h 953include/llvm/MC/MCRegisterInfo.h
954include/llvm/MC/MCSchedule.h 954include/llvm/MC/MCSchedule.h
955include/llvm/MC/MCSection.h 955include/llvm/MC/MCSection.h
956include/llvm/MC/MCSectionCOFF.h 956include/llvm/MC/MCSectionCOFF.h
957include/llvm/MC/MCSectionELF.h 957include/llvm/MC/MCSectionELF.h
958include/llvm/MC/MCSectionMachO.h 958include/llvm/MC/MCSectionMachO.h
959include/llvm/MC/MCSectionWasm.h 959include/llvm/MC/MCSectionWasm.h
960include/llvm/MC/MCSectionXCOFF.h 960include/llvm/MC/MCSectionXCOFF.h
961include/llvm/MC/MCStreamer.h 961include/llvm/MC/MCStreamer.h
962include/llvm/MC/MCSubtargetInfo.h 962include/llvm/MC/MCSubtargetInfo.h
963include/llvm/MC/MCSymbol.h 963include/llvm/MC/MCSymbol.h
964include/llvm/MC/MCSymbolCOFF.h 964include/llvm/MC/MCSymbolCOFF.h
965include/llvm/MC/MCSymbolELF.h 965include/llvm/MC/MCSymbolELF.h
966include/llvm/MC/MCSymbolMachO.h 966include/llvm/MC/MCSymbolMachO.h
967include/llvm/MC/MCSymbolWasm.h 967include/llvm/MC/MCSymbolWasm.h
968include/llvm/MC/MCSymbolXCOFF.h 968include/llvm/MC/MCSymbolXCOFF.h
969include/llvm/MC/MCTargetOptions.h 969include/llvm/MC/MCTargetOptions.h
970include/llvm/MC/MCTargetOptionsCommandFlags.inc 970include/llvm/MC/MCTargetOptionsCommandFlags.inc
971include/llvm/MC/MCValue.h 971include/llvm/MC/MCValue.h
972include/llvm/MC/MCWasmObjectWriter.h 972include/llvm/MC/MCWasmObjectWriter.h
973include/llvm/MC/MCWasmStreamer.h 973include/llvm/MC/MCWasmStreamer.h
974include/llvm/MC/MCWin64EH.h 974include/llvm/MC/MCWin64EH.h
975include/llvm/MC/MCWinCOFFObjectWriter.h 975include/llvm/MC/MCWinCOFFObjectWriter.h
976include/llvm/MC/MCWinCOFFStreamer.h 976include/llvm/MC/MCWinCOFFStreamer.h
977include/llvm/MC/MCWinEH.h 977include/llvm/MC/MCWinEH.h
978include/llvm/MC/MCXCOFFObjectWriter.h 978include/llvm/MC/MCXCOFFObjectWriter.h
979include/llvm/MC/MCXCOFFStreamer.h 979include/llvm/MC/MCXCOFFStreamer.h
980include/llvm/MC/MachineLocation.h 980include/llvm/MC/MachineLocation.h
981include/llvm/MC/SectionKind.h 981include/llvm/MC/SectionKind.h
982include/llvm/MC/StringTableBuilder.h 982include/llvm/MC/StringTableBuilder.h
983include/llvm/MC/SubtargetFeature.h 983include/llvm/MC/SubtargetFeature.h
984include/llvm/MCA/Context.h 984include/llvm/MCA/Context.h
985include/llvm/MCA/HWEventListener.h 985include/llvm/MCA/HWEventListener.h
986include/llvm/MCA/HardwareUnits/HardwareUnit.h 986include/llvm/MCA/HardwareUnits/HardwareUnit.h
987include/llvm/MCA/HardwareUnits/LSUnit.h 987include/llvm/MCA/HardwareUnits/LSUnit.h
988include/llvm/MCA/HardwareUnits/RegisterFile.h 988include/llvm/MCA/HardwareUnits/RegisterFile.h
989include/llvm/MCA/HardwareUnits/ResourceManager.h 989include/llvm/MCA/HardwareUnits/ResourceManager.h
990include/llvm/MCA/HardwareUnits/RetireControlUnit.h 990include/llvm/MCA/HardwareUnits/RetireControlUnit.h
991include/llvm/MCA/HardwareUnits/Scheduler.h 991include/llvm/MCA/HardwareUnits/Scheduler.h
992include/llvm/MCA/InstrBuilder.h 992include/llvm/MCA/InstrBuilder.h
993include/llvm/MCA/Instruction.h 993include/llvm/MCA/Instruction.h
994include/llvm/MCA/Pipeline.h 994include/llvm/MCA/Pipeline.h
995include/llvm/MCA/SourceMgr.h 995include/llvm/MCA/SourceMgr.h
996include/llvm/MCA/Stages/DispatchStage.h 996include/llvm/MCA/Stages/DispatchStage.h
997include/llvm/MCA/Stages/EntryStage.h 997include/llvm/MCA/Stages/EntryStage.h
998include/llvm/MCA/Stages/ExecuteStage.h 998include/llvm/MCA/Stages/ExecuteStage.h
999include/llvm/MCA/Stages/InstructionTables.h 999include/llvm/MCA/Stages/InstructionTables.h
1000include/llvm/MCA/Stages/MicroOpQueueStage.h 1000include/llvm/MCA/Stages/MicroOpQueueStage.h
1001include/llvm/MCA/Stages/RetireStage.h 1001include/llvm/MCA/Stages/RetireStage.h
1002include/llvm/MCA/Stages/Stage.h 1002include/llvm/MCA/Stages/Stage.h
1003include/llvm/MCA/Support.h 1003include/llvm/MCA/Support.h
1004include/llvm/Object/Archive.h 1004include/llvm/Object/Archive.h
1005include/llvm/Object/ArchiveWriter.h 1005include/llvm/Object/ArchiveWriter.h
1006include/llvm/Object/Binary.h 1006include/llvm/Object/Binary.h
1007include/llvm/Object/COFF.h 1007include/llvm/Object/COFF.h
1008include/llvm/Object/COFFImportFile.h 1008include/llvm/Object/COFFImportFile.h
1009include/llvm/Object/COFFModuleDefinition.h 1009include/llvm/Object/COFFModuleDefinition.h
1010include/llvm/Object/CVDebugRecord.h 1010include/llvm/Object/CVDebugRecord.h
1011include/llvm/Object/Decompressor.h 1011include/llvm/Object/Decompressor.h
1012include/llvm/Object/ELF.h 1012include/llvm/Object/ELF.h
1013include/llvm/Object/ELFObjectFile.h 1013include/llvm/Object/ELFObjectFile.h
1014include/llvm/Object/ELFTypes.h 1014include/llvm/Object/ELFTypes.h
1015include/llvm/Object/Error.h 1015include/llvm/Object/Error.h
1016include/llvm/Object/IRObjectFile.h 1016include/llvm/Object/IRObjectFile.h
1017include/llvm/Object/IRSymtab.h 1017include/llvm/Object/IRSymtab.h
1018include/llvm/Object/MachO.h 1018include/llvm/Object/MachO.h
1019include/llvm/Object/MachOUniversal.h 1019include/llvm/Object/MachOUniversal.h
1020include/llvm/Object/Minidump.h 1020include/llvm/Object/Minidump.h
1021include/llvm/Object/ModuleSymbolTable.h 1021include/llvm/Object/ModuleSymbolTable.h
1022include/llvm/Object/ObjectFile.h 1022include/llvm/Object/ObjectFile.h
1023include/llvm/Object/RelocationResolver.h 1023include/llvm/Object/RelocationResolver.h
1024include/llvm/Object/StackMapParser.h 1024include/llvm/Object/StackMapParser.h
1025include/llvm/Object/SymbolSize.h 1025include/llvm/Object/SymbolSize.h
1026include/llvm/Object/SymbolicFile.h 1026include/llvm/Object/SymbolicFile.h
1027include/llvm/Object/Wasm.h 1027include/llvm/Object/Wasm.h
1028include/llvm/Object/WasmTraits.h 1028include/llvm/Object/WasmTraits.h
1029include/llvm/Object/WindowsMachineFlag.h 1029include/llvm/Object/WindowsMachineFlag.h
1030include/llvm/Object/WindowsResource.h 1030include/llvm/Object/WindowsResource.h
1031include/llvm/Object/XCOFFObjectFile.h 1031include/llvm/Object/XCOFFObjectFile.h
1032include/llvm/ObjectYAML/COFFYAML.h 1032include/llvm/ObjectYAML/COFFYAML.h
1033include/llvm/ObjectYAML/CodeViewYAMLDebugSections.h 1033include/llvm/ObjectYAML/CodeViewYAMLDebugSections.h
1034include/llvm/ObjectYAML/CodeViewYAMLSymbols.h 1034include/llvm/ObjectYAML/CodeViewYAMLSymbols.h
1035include/llvm/ObjectYAML/CodeViewYAMLTypeHashing.h 1035include/llvm/ObjectYAML/CodeViewYAMLTypeHashing.h
1036include/llvm/ObjectYAML/CodeViewYAMLTypes.h 1036include/llvm/ObjectYAML/CodeViewYAMLTypes.h
1037include/llvm/ObjectYAML/DWARFEmitter.h 1037include/llvm/ObjectYAML/DWARFEmitter.h
1038include/llvm/ObjectYAML/DWARFYAML.h 1038include/llvm/ObjectYAML/DWARFYAML.h
1039include/llvm/ObjectYAML/ELFYAML.h 1039include/llvm/ObjectYAML/ELFYAML.h
1040include/llvm/ObjectYAML/MachOYAML.h 1040include/llvm/ObjectYAML/MachOYAML.h
1041include/llvm/ObjectYAML/MinidumpYAML.h 1041include/llvm/ObjectYAML/MinidumpYAML.h
1042include/llvm/ObjectYAML/ObjectYAML.h 1042include/llvm/ObjectYAML/ObjectYAML.h
1043include/llvm/ObjectYAML/WasmYAML.h 1043include/llvm/ObjectYAML/WasmYAML.h
1044include/llvm/ObjectYAML/XCOFFYAML.h 1044include/llvm/ObjectYAML/XCOFFYAML.h
1045include/llvm/ObjectYAML/YAML.h 1045include/llvm/ObjectYAML/YAML.h
1046include/llvm/Option/Arg.h 1046include/llvm/Option/Arg.h
1047include/llvm/Option/ArgList.h 1047include/llvm/Option/ArgList.h
1048include/llvm/Option/OptParser.td 1048include/llvm/Option/OptParser.td
1049include/llvm/Option/OptSpecifier.h 1049include/llvm/Option/OptSpecifier.h
1050include/llvm/Option/OptTable.h 1050include/llvm/Option/OptTable.h
1051include/llvm/Option/Option.h 1051include/llvm/Option/Option.h
1052include/llvm/Pass.h 1052include/llvm/Pass.h
1053include/llvm/PassAnalysisSupport.h 1053include/llvm/PassAnalysisSupport.h
1054include/llvm/PassInfo.h 1054include/llvm/PassInfo.h
1055include/llvm/PassRegistry.h 1055include/llvm/PassRegistry.h
1056include/llvm/PassSupport.h 1056include/llvm/PassSupport.h
1057include/llvm/Passes/PassBuilder.h 1057include/llvm/Passes/PassBuilder.h
1058include/llvm/Passes/PassPlugin.h 1058include/llvm/Passes/PassPlugin.h
1059include/llvm/Passes/StandardInstrumentations.h 1059include/llvm/Passes/StandardInstrumentations.h
1060include/llvm/ProfileData/Coverage/CoverageMapping.h 1060include/llvm/ProfileData/Coverage/CoverageMapping.h
1061include/llvm/ProfileData/Coverage/CoverageMappingReader.h 1061include/llvm/ProfileData/Coverage/CoverageMappingReader.h
1062include/llvm/ProfileData/Coverage/CoverageMappingWriter.h 1062include/llvm/ProfileData/Coverage/CoverageMappingWriter.h
1063include/llvm/ProfileData/GCOV.h 1063include/llvm/ProfileData/GCOV.h
1064include/llvm/ProfileData/InstrProf.h 1064include/llvm/ProfileData/InstrProf.h
1065include/llvm/ProfileData/InstrProfData.inc 1065include/llvm/ProfileData/InstrProfData.inc
1066include/llvm/ProfileData/InstrProfReader.h 1066include/llvm/ProfileData/InstrProfReader.h
1067include/llvm/ProfileData/InstrProfWriter.h 1067include/llvm/ProfileData/InstrProfWriter.h
1068include/llvm/ProfileData/ProfileCommon.h 1068include/llvm/ProfileData/ProfileCommon.h
1069include/llvm/ProfileData/SampleProf.h 1069include/llvm/ProfileData/SampleProf.h
1070include/llvm/ProfileData/SampleProfReader.h 1070include/llvm/ProfileData/SampleProfReader.h
1071include/llvm/ProfileData/SampleProfWriter.h 1071include/llvm/ProfileData/SampleProfWriter.h
1072include/llvm/Remarks/Remark.h 1072include/llvm/Remarks/Remark.h
1073include/llvm/Remarks/RemarkFormat.h 1073include/llvm/Remarks/RemarkFormat.h
1074include/llvm/Remarks/RemarkParser.h 1074include/llvm/Remarks/RemarkParser.h
1075include/llvm/Remarks/RemarkSerializer.h 1075include/llvm/Remarks/RemarkSerializer.h
1076include/llvm/Remarks/RemarkStringTable.h 1076include/llvm/Remarks/RemarkStringTable.h
1077include/llvm/Support/AArch64TargetParser.def 1077include/llvm/Support/AArch64TargetParser.def
1078include/llvm/Support/AArch64TargetParser.h 1078include/llvm/Support/AArch64TargetParser.h
1079include/llvm/Support/AMDGPUMetadata.h 1079include/llvm/Support/AMDGPUMetadata.h
1080include/llvm/Support/AMDHSAKernelDescriptor.h 1080include/llvm/Support/AMDHSAKernelDescriptor.h
1081include/llvm/Support/ARMAttributeParser.h 1081include/llvm/Support/ARMAttributeParser.h
1082include/llvm/Support/ARMBuildAttributes.h 1082include/llvm/Support/ARMBuildAttributes.h
1083include/llvm/Support/ARMEHABI.h 1083include/llvm/Support/ARMEHABI.h
1084include/llvm/Support/ARMTargetParser.def 1084include/llvm/Support/ARMTargetParser.def
1085include/llvm/Support/ARMTargetParser.h 1085include/llvm/Support/ARMTargetParser.h
1086include/llvm/Support/ARMWinEH.h 1086include/llvm/Support/ARMWinEH.h
1087include/llvm/Support/AlignOf.h 1087include/llvm/Support/AlignOf.h
1088include/llvm/Support/Allocator.h 1088include/llvm/Support/Allocator.h
1089include/llvm/Support/ArrayRecycler.h 1089include/llvm/Support/ArrayRecycler.h
1090include/llvm/Support/Atomic.h 1090include/llvm/Support/Atomic.h
1091include/llvm/Support/AtomicOrdering.h 1091include/llvm/Support/AtomicOrdering.h
1092include/llvm/Support/BinaryByteStream.h 1092include/llvm/Support/BinaryByteStream.h
1093include/llvm/Support/BinaryItemStream.h 1093include/llvm/Support/BinaryItemStream.h
1094include/llvm/Support/BinaryStream.h 1094include/llvm/Support/BinaryStream.h
1095include/llvm/Support/BinaryStreamArray.h 1095include/llvm/Support/BinaryStreamArray.h
1096include/llvm/Support/BinaryStreamError.h 1096include/llvm/Support/BinaryStreamError.h
1097include/llvm/Support/BinaryStreamReader.h 1097include/llvm/Support/BinaryStreamReader.h
1098include/llvm/Support/BinaryStreamRef.h 1098include/llvm/Support/BinaryStreamRef.h
1099include/llvm/Support/BinaryStreamWriter.h 1099include/llvm/Support/BinaryStreamWriter.h
1100include/llvm/Support/BlockFrequency.h 1100include/llvm/Support/BlockFrequency.h
1101include/llvm/Support/BranchProbability.h 1101include/llvm/Support/BranchProbability.h
1102include/llvm/Support/BuryPointer.h 1102include/llvm/Support/BuryPointer.h
1103include/llvm/Support/CBindingWrapping.h 1103include/llvm/Support/CBindingWrapping.h
1104include/llvm/Support/CFGUpdate.h 1104include/llvm/Support/CFGUpdate.h
1105include/llvm/Support/COM.h 1105include/llvm/Support/COM.h
1106include/llvm/Support/CRC.h 1106include/llvm/Support/CRC.h
1107include/llvm/Support/CachePruning.h 1107include/llvm/Support/CachePruning.h
1108include/llvm/Support/Capacity.h 1108include/llvm/Support/Capacity.h
1109include/llvm/Support/Casting.h 1109include/llvm/Support/Casting.h
1110include/llvm/Support/CheckedArithmetic.h 1110include/llvm/Support/CheckedArithmetic.h
1111include/llvm/Support/Chrono.h 1111include/llvm/Support/Chrono.h
1112include/llvm/Support/CodeGen.h 1112include/llvm/Support/CodeGen.h
1113include/llvm/Support/CodeGenCoverage.h 1113include/llvm/Support/CodeGenCoverage.h
1114include/llvm/Support/CommandLine.h 1114include/llvm/Support/CommandLine.h
1115include/llvm/Support/Compiler.h 1115include/llvm/Support/Compiler.h
1116include/llvm/Support/Compression.h 1116include/llvm/Support/Compression.h
1117include/llvm/Support/ConvertUTF.h 1117include/llvm/Support/ConvertUTF.h
1118include/llvm/Support/CrashRecoveryContext.h 1118include/llvm/Support/CrashRecoveryContext.h
1119include/llvm/Support/DJB.h 1119include/llvm/Support/DJB.h
1120include/llvm/Support/DOTGraphTraits.h 1120include/llvm/Support/DOTGraphTraits.h
1121include/llvm/Support/DataExtractor.h 1121include/llvm/Support/DataExtractor.h
1122include/llvm/Support/DataTypes.h 1122include/llvm/Support/DataTypes.h
1123include/llvm/Support/Debug.h 1123include/llvm/Support/Debug.h
1124include/llvm/Support/DebugCounter.h 1124include/llvm/Support/DebugCounter.h
1125include/llvm/Support/DynamicLibrary.h 1125include/llvm/Support/DynamicLibrary.h
1126include/llvm/Support/Endian.h 1126include/llvm/Support/Endian.h
1127include/llvm/Support/EndianStream.h 1127include/llvm/Support/EndianStream.h
1128include/llvm/Support/Errc.h 1128include/llvm/Support/Errc.h
1129include/llvm/Support/Errno.h 1129include/llvm/Support/Errno.h
1130include/llvm/Support/Error.h 1130include/llvm/Support/Error.h
1131include/llvm/Support/ErrorHandling.h 1131include/llvm/Support/ErrorHandling.h
1132include/llvm/Support/ErrorOr.h 1132include/llvm/Support/ErrorOr.h
1133include/llvm/Support/FileCheck.h 1133include/llvm/Support/FileCheck.h
1134include/llvm/Support/FileOutputBuffer.h 1134include/llvm/Support/FileOutputBuffer.h
1135include/llvm/Support/FileSystem.h 1135include/llvm/Support/FileSystem.h
1136include/llvm/Support/FileUtilities.h 1136include/llvm/Support/FileUtilities.h
1137include/llvm/Support/Format.h 1137include/llvm/Support/Format.h
1138include/llvm/Support/FormatAdapters.h 1138include/llvm/Support/FormatAdapters.h
1139include/llvm/Support/FormatCommon.h 1139include/llvm/Support/FormatCommon.h
1140include/llvm/Support/FormatProviders.h 1140include/llvm/Support/FormatProviders.h
1141include/llvm/Support/FormatVariadic.h 1141include/llvm/Support/FormatVariadic.h
1142include/llvm/Support/FormatVariadicDetails.h 1142include/llvm/Support/FormatVariadicDetails.h
1143include/llvm/Support/FormattedStream.h 1143include/llvm/Support/FormattedStream.h
1144include/llvm/Support/GenericDomTree.h 1144include/llvm/Support/GenericDomTree.h
1145include/llvm/Support/GenericDomTreeConstruction.h 1145include/llvm/Support/GenericDomTreeConstruction.h
1146include/llvm/Support/GenericIteratedDominanceFrontier.h 1146include/llvm/Support/GenericIteratedDominanceFrontier.h
1147include/llvm/Support/GlobPattern.h 1147include/llvm/Support/GlobPattern.h
1148include/llvm/Support/GraphWriter.h 1148include/llvm/Support/GraphWriter.h
1149include/llvm/Support/Host.h 1149include/llvm/Support/Host.h
1150include/llvm/Support/InitLLVM.h 1150include/llvm/Support/InitLLVM.h
1151include/llvm/Support/ItaniumManglingCanonicalizer.h 1151include/llvm/Support/ItaniumManglingCanonicalizer.h
1152include/llvm/Support/JSON.h 1152include/llvm/Support/JSON.h
1153include/llvm/Support/JamCRC.h 1153include/llvm/Support/JamCRC.h
1154include/llvm/Support/KnownBits.h 1154include/llvm/Support/KnownBits.h
1155include/llvm/Support/LEB128.h 1155include/llvm/Support/LEB128.h
1156include/llvm/Support/LICENSE.TXT 1156include/llvm/Support/LICENSE.TXT
1157include/llvm/Support/LineIterator.h 1157include/llvm/Support/LineIterator.h
1158include/llvm/Support/Locale.h 1158include/llvm/Support/Locale.h
1159include/llvm/Support/LockFileManager.h 1159include/llvm/Support/LockFileManager.h
1160include/llvm/Support/LowLevelTypeImpl.h 1160include/llvm/Support/LowLevelTypeImpl.h
1161include/llvm/Support/MD5.h 1161include/llvm/Support/MD5.h
1162include/llvm/Support/MSVCErrorWorkarounds.h 1162include/llvm/Support/MSVCErrorWorkarounds.h
1163include/llvm/Support/MachineValueType.h 1163include/llvm/Support/MachineValueType.h
1164include/llvm/Support/ManagedStatic.h 1164include/llvm/Support/ManagedStatic.h
1165include/llvm/Support/MathExtras.h 1165include/llvm/Support/MathExtras.h
1166include/llvm/Support/MemAlloc.h 1166include/llvm/Support/MemAlloc.h
1167include/llvm/Support/Memory.h 1167include/llvm/Support/Memory.h
1168include/llvm/Support/MemoryBuffer.h 1168include/llvm/Support/MemoryBuffer.h
1169include/llvm/Support/MipsABIFlags.h 1169include/llvm/Support/MipsABIFlags.h
1170include/llvm/Support/Mutex.h 1170include/llvm/Support/Mutex.h
1171include/llvm/Support/MutexGuard.h 1171include/llvm/Support/MutexGuard.h
1172include/llvm/Support/NativeFormatting.h 1172include/llvm/Support/NativeFormatting.h
1173include/llvm/Support/OnDiskHashTable.h 1173include/llvm/Support/OnDiskHashTable.h
1174include/llvm/Support/Options.h 1174include/llvm/Support/Options.h
1175include/llvm/Support/Parallel.h 1175include/llvm/Support/Parallel.h
1176include/llvm/Support/Path.h 1176include/llvm/Support/Path.h
1177include/llvm/Support/PluginLoader.h 1177include/llvm/Support/PluginLoader.h
1178include/llvm/Support/PointerLikeTypeTraits.h 1178include/llvm/Support/PointerLikeTypeTraits.h
1179include/llvm/Support/PrettyStackTrace.h 1179include/llvm/Support/PrettyStackTrace.h
1180include/llvm/Support/Printable.h 1180include/llvm/Support/Printable.h
1181include/llvm/Support/Process.h 1181include/llvm/Support/Process.h
1182include/llvm/Support/Program.h 1182include/llvm/Support/Program.h
1183include/llvm/Support/RWMutex.h 1183include/llvm/Support/RWMutex.h
1184include/llvm/Support/RandomNumberGenerator.h 1184include/llvm/Support/RandomNumberGenerator.h
1185include/llvm/Support/Recycler.h 1185include/llvm/Support/Recycler.h
1186include/llvm/Support/RecyclingAllocator.h 1186include/llvm/Support/RecyclingAllocator.h
1187include/llvm/Support/Regex.h 1187include/llvm/Support/Regex.h
1188include/llvm/Support/Registry.h 1188include/llvm/Support/Registry.h
1189include/llvm/Support/ReverseIteration.h 1189include/llvm/Support/ReverseIteration.h
1190include/llvm/Support/SHA1.h 1190include/llvm/Support/SHA1.h
1191include/llvm/Support/SMLoc.h 1191include/llvm/Support/SMLoc.h
1192include/llvm/Support/SMTAPI.h 1192include/llvm/Support/SMTAPI.h
1193include/llvm/Support/SaveAndRestore.h 1193include/llvm/Support/SaveAndRestore.h
1194include/llvm/Support/ScalableSize.h 1194include/llvm/Support/ScalableSize.h
1195include/llvm/Support/ScaledNumber.h 1195include/llvm/Support/ScaledNumber.h
1196include/llvm/Support/ScopedPrinter.h 1196include/llvm/Support/ScopedPrinter.h
1197include/llvm/Support/Signals.h 1197include/llvm/Support/Signals.h
1198include/llvm/Support/Signposts.h 1198include/llvm/Support/Signposts.h
1199include/llvm/Support/SmallVectorMemoryBuffer.h 1199include/llvm/Support/SmallVectorMemoryBuffer.h
1200include/llvm/Support/Solaris/sys/regset.h 1200include/llvm/Support/Solaris/sys/regset.h
1201include/llvm/Support/SourceMgr.h 1201include/llvm/Support/SourceMgr.h
1202include/llvm/Support/SpecialCaseList.h 1202include/llvm/Support/SpecialCaseList.h
1203include/llvm/Support/StringPool.h 1203include/llvm/Support/StringPool.h
1204include/llvm/Support/StringSaver.h 1204include/llvm/Support/StringSaver.h
1205include/llvm/Support/SwapByteOrder.h 1205include/llvm/Support/SwapByteOrder.h
1206include/llvm/Support/SymbolRemappingReader.h 1206include/llvm/Support/SymbolRemappingReader.h
1207include/llvm/Support/SystemUtils.h 1207include/llvm/Support/SystemUtils.h
1208include/llvm/Support/TarWriter.h 1208include/llvm/Support/TarWriter.h
1209include/llvm/Support/TargetOpcodes.def 1209include/llvm/Support/TargetOpcodes.def
1210include/llvm/Support/TargetParser.h 1210include/llvm/Support/TargetParser.h
1211include/llvm/Support/TargetRegistry.h 1211include/llvm/Support/TargetRegistry.h
1212include/llvm/Support/TargetSelect.h 1212include/llvm/Support/TargetSelect.h
1213include/llvm/Support/TaskQueue.h 1213include/llvm/Support/TaskQueue.h
1214include/llvm/Support/ThreadLocal.h 1214include/llvm/Support/ThreadLocal.h
1215include/llvm/Support/ThreadPool.h 1215include/llvm/Support/ThreadPool.h
1216include/llvm/Support/Threading.h 1216include/llvm/Support/Threading.h
1217include/llvm/Support/TimeProfiler.h 1217include/llvm/Support/TimeProfiler.h
1218include/llvm/Support/Timer.h 1218include/llvm/Support/Timer.h
1219include/llvm/Support/ToolOutputFile.h 1219include/llvm/Support/ToolOutputFile.h
1220include/llvm/Support/TrailingObjects.h 1220include/llvm/Support/TrailingObjects.h
1221include/llvm/Support/TrigramIndex.h 1221include/llvm/Support/TrigramIndex.h
1222include/llvm/Support/TypeName.h 1222include/llvm/Support/TypeName.h
1223include/llvm/Support/Unicode.h 1223include/llvm/Support/Unicode.h
1224include/llvm/Support/UnicodeCharRanges.h 1224include/llvm/Support/UnicodeCharRanges.h
1225include/llvm/Support/UniqueLock.h 1225include/llvm/Support/UniqueLock.h
1226include/llvm/Support/VCSRevision.h 1226include/llvm/Support/VCSRevision.h
1227include/llvm/Support/Valgrind.h 1227include/llvm/Support/Valgrind.h
1228include/llvm/Support/VersionTuple.h 1228include/llvm/Support/VersionTuple.h
1229include/llvm/Support/VirtualFileSystem.h 1229include/llvm/Support/VirtualFileSystem.h
1230include/llvm/Support/Watchdog.h 1230include/llvm/Support/Watchdog.h
1231include/llvm/Support/Win64EH.h 1231include/llvm/Support/Win64EH.h
1232include/llvm/Support/WindowsError.h 1232include/llvm/Support/WindowsError.h
1233include/llvm/Support/WithColor.h 1233include/llvm/Support/WithColor.h
1234include/llvm/Support/X86DisassemblerDecoderCommon.h 1234include/llvm/Support/X86DisassemblerDecoderCommon.h
1235include/llvm/Support/X86TargetParser.def 1235include/llvm/Support/X86TargetParser.def
1236include/llvm/Support/YAMLParser.h 1236include/llvm/Support/YAMLParser.h
1237include/llvm/Support/YAMLTraits.h 1237include/llvm/Support/YAMLTraits.h
1238include/llvm/Support/circular_raw_ostream.h 1238include/llvm/Support/circular_raw_ostream.h
1239include/llvm/Support/raw_os_ostream.h 1239include/llvm/Support/raw_os_ostream.h
1240include/llvm/Support/raw_ostream.h 1240include/llvm/Support/raw_ostream.h
1241include/llvm/Support/raw_sha1_ostream.h 1241include/llvm/Support/raw_sha1_ostream.h
1242include/llvm/Support/thread.h 1242include/llvm/Support/thread.h
1243include/llvm/Support/type_traits.h 1243include/llvm/Support/type_traits.h
1244include/llvm/Support/xxhash.h 1244include/llvm/Support/xxhash.h
1245include/llvm/TableGen/Error.h 1245include/llvm/TableGen/Error.h
1246include/llvm/TableGen/Main.h 1246include/llvm/TableGen/Main.h
1247include/llvm/TableGen/Record.h 1247include/llvm/TableGen/Record.h
1248include/llvm/TableGen/SearchableTable.td 1248include/llvm/TableGen/SearchableTable.td
1249include/llvm/TableGen/SetTheory.h 1249include/llvm/TableGen/SetTheory.h
1250include/llvm/TableGen/StringMatcher.h 1250include/llvm/TableGen/StringMatcher.h
1251include/llvm/TableGen/StringToOffsetTable.h 1251include/llvm/TableGen/StringToOffsetTable.h
1252include/llvm/TableGen/TableGenBackend.h 1252include/llvm/TableGen/TableGenBackend.h
1253include/llvm/Target/CodeGenCWrappers.h 1253include/llvm/Target/CodeGenCWrappers.h
1254include/llvm/Target/GenericOpcodes.td 1254include/llvm/Target/GenericOpcodes.td
1255include/llvm/Target/GlobalISel/RegisterBank.td 1255include/llvm/Target/GlobalISel/RegisterBank.td
1256include/llvm/Target/GlobalISel/SelectionDAGCompat.td 1256include/llvm/Target/GlobalISel/SelectionDAGCompat.td
1257include/llvm/Target/GlobalISel/Target.td 1257include/llvm/Target/GlobalISel/Target.td
1258include/llvm/Target/Target.td 1258include/llvm/Target/Target.td
1259include/llvm/Target/TargetCallingConv.td 1259include/llvm/Target/TargetCallingConv.td
1260include/llvm/Target/TargetInstrPredicate.td 1260include/llvm/Target/TargetInstrPredicate.td
1261include/llvm/Target/TargetIntrinsicInfo.h 1261include/llvm/Target/TargetIntrinsicInfo.h
1262include/llvm/Target/TargetItinerary.td 1262include/llvm/Target/TargetItinerary.td
1263include/llvm/Target/TargetLoweringObjectFile.h 1263include/llvm/Target/TargetLoweringObjectFile.h
1264include/llvm/Target/TargetMachine.h 1264include/llvm/Target/TargetMachine.h
1265include/llvm/Target/TargetOptions.h 1265include/llvm/Target/TargetOptions.h
1266include/llvm/Target/TargetPfmCounters.td 1266include/llvm/Target/TargetPfmCounters.td
1267include/llvm/Target/TargetSchedule.td 1267include/llvm/Target/TargetSchedule.td
1268include/llvm/Target/TargetSelectionDAG.td 1268include/llvm/Target/TargetSelectionDAG.td
1269include/llvm/Testing/Support/Annotations.h 1269include/llvm/Testing/Support/Annotations.h
1270include/llvm/Testing/Support/Error.h 1270include/llvm/Testing/Support/Error.h
1271include/llvm/Testing/Support/SupportHelpers.h 1271include/llvm/Testing/Support/SupportHelpers.h
1272include/llvm/TextAPI/ELF/ELFStub.h 1272include/llvm/TextAPI/ELF/ELFStub.h
1273include/llvm/TextAPI/ELF/TBEHandler.h 1273include/llvm/TextAPI/ELF/TBEHandler.h
1274include/llvm/TextAPI/MachO/Architecture.def 1274include/llvm/TextAPI/MachO/Architecture.def
1275include/llvm/TextAPI/MachO/Architecture.h 1275include/llvm/TextAPI/MachO/Architecture.h
1276include/llvm/TextAPI/MachO/ArchitectureSet.h 1276include/llvm/TextAPI/MachO/ArchitectureSet.h
1277include/llvm/TextAPI/MachO/InterfaceFile.h 1277include/llvm/TextAPI/MachO/InterfaceFile.h
1278include/llvm/TextAPI/MachO/PackedVersion.h 1278include/llvm/TextAPI/MachO/PackedVersion.h
1279include/llvm/TextAPI/MachO/Symbol.h 1279include/llvm/TextAPI/MachO/Symbol.h
1280include/llvm/TextAPI/MachO/TextAPIReader.h 1280include/llvm/TextAPI/MachO/TextAPIReader.h
1281include/llvm/TextAPI/MachO/TextAPIWriter.h 1281include/llvm/TextAPI/MachO/TextAPIWriter.h
1282include/llvm/ToolDrivers/llvm-dlltool/DlltoolDriver.h 1282include/llvm/ToolDrivers/llvm-dlltool/DlltoolDriver.h
1283include/llvm/ToolDrivers/llvm-lib/LibDriver.h 1283include/llvm/ToolDrivers/llvm-lib/LibDriver.h
1284include/llvm/Transforms/AggressiveInstCombine/AggressiveInstCombine.h 1284include/llvm/Transforms/AggressiveInstCombine/AggressiveInstCombine.h
1285include/llvm/Transforms/Coroutines.h 1285include/llvm/Transforms/Coroutines.h
1286include/llvm/Transforms/IPO.h 1286include/llvm/Transforms/IPO.h
1287include/llvm/Transforms/IPO/AlwaysInliner.h 1287include/llvm/Transforms/IPO/AlwaysInliner.h
1288include/llvm/Transforms/IPO/ArgumentPromotion.h 1288include/llvm/Transforms/IPO/ArgumentPromotion.h
1289include/llvm/Transforms/IPO/Attributor.h 1289include/llvm/Transforms/IPO/Attributor.h
1290include/llvm/Transforms/IPO/CalledValuePropagation.h 1290include/llvm/Transforms/IPO/CalledValuePropagation.h
1291include/llvm/Transforms/IPO/ConstantMerge.h 1291include/llvm/Transforms/IPO/ConstantMerge.h
1292include/llvm/Transforms/IPO/CrossDSOCFI.h 1292include/llvm/Transforms/IPO/CrossDSOCFI.h
1293include/llvm/Transforms/IPO/DeadArgumentElimination.h 1293include/llvm/Transforms/IPO/DeadArgumentElimination.h
1294include/llvm/Transforms/IPO/ElimAvailExtern.h 1294include/llvm/Transforms/IPO/ElimAvailExtern.h
1295include/llvm/Transforms/IPO/ForceFunctionAttrs.h 1295include/llvm/Transforms/IPO/ForceFunctionAttrs.h
1296include/llvm/Transforms/IPO/FunctionAttrs.h 1296include/llvm/Transforms/IPO/FunctionAttrs.h
1297include/llvm/Transforms/IPO/FunctionImport.h 1297include/llvm/Transforms/IPO/FunctionImport.h
1298include/llvm/Transforms/IPO/GlobalDCE.h 1298include/llvm/Transforms/IPO/GlobalDCE.h
1299include/llvm/Transforms/IPO/GlobalOpt.h 1299include/llvm/Transforms/IPO/GlobalOpt.h
1300include/llvm/Transforms/IPO/GlobalSplit.h 1300include/llvm/Transforms/IPO/GlobalSplit.h
1301include/llvm/Transforms/IPO/HotColdSplitting.h 1301include/llvm/Transforms/IPO/HotColdSplitting.h
1302include/llvm/Transforms/IPO/InferFunctionAttrs.h 1302include/llvm/Transforms/IPO/InferFunctionAttrs.h
1303include/llvm/Transforms/IPO/Inliner.h 1303include/llvm/Transforms/IPO/Inliner.h
1304include/llvm/Transforms/IPO/Internalize.h 1304include/llvm/Transforms/IPO/Internalize.h
1305include/llvm/Transforms/IPO/LowerTypeTests.h 1305include/llvm/Transforms/IPO/LowerTypeTests.h
1306include/llvm/Transforms/IPO/PartialInlining.h 1306include/llvm/Transforms/IPO/PartialInlining.h
1307include/llvm/Transforms/IPO/PassManagerBuilder.h 1307include/llvm/Transforms/IPO/PassManagerBuilder.h
1308include/llvm/Transforms/IPO/SCCP.h 1308include/llvm/Transforms/IPO/SCCP.h
1309include/llvm/Transforms/IPO/SampleProfile.h 1309include/llvm/Transforms/IPO/SampleProfile.h
1310include/llvm/Transforms/IPO/StripDeadPrototypes.h 1310include/llvm/Transforms/IPO/StripDeadPrototypes.h
1311include/llvm/Transforms/IPO/SyntheticCountsPropagation.h 1311include/llvm/Transforms/IPO/SyntheticCountsPropagation.h
1312include/llvm/Transforms/IPO/ThinLTOBitcodeWriter.h 1312include/llvm/Transforms/IPO/ThinLTOBitcodeWriter.h
1313include/llvm/Transforms/IPO/WholeProgramDevirt.h 1313include/llvm/Transforms/IPO/WholeProgramDevirt.h
1314include/llvm/Transforms/InstCombine/InstCombine.h 1314include/llvm/Transforms/InstCombine/InstCombine.h
1315include/llvm/Transforms/InstCombine/InstCombineWorklist.h 1315include/llvm/Transforms/InstCombine/InstCombineWorklist.h
1316include/llvm/Transforms/Instrumentation.h 1316include/llvm/Transforms/Instrumentation.h
1317include/llvm/Transforms/Instrumentation/AddressSanitizer.h 1317include/llvm/Transforms/Instrumentation/AddressSanitizer.h
1318include/llvm/Transforms/Instrumentation/BoundsChecking.h 1318include/llvm/Transforms/Instrumentation/BoundsChecking.h
1319include/llvm/Transforms/Instrumentation/CGProfile.h 1319include/llvm/Transforms/Instrumentation/CGProfile.h
1320include/llvm/Transforms/Instrumentation/ControlHeightReduction.h 1320include/llvm/Transforms/Instrumentation/ControlHeightReduction.h
1321include/llvm/Transforms/Instrumentation/GCOVProfiler.h 1321include/llvm/Transforms/Instrumentation/GCOVProfiler.h
1322include/llvm/Transforms/Instrumentation/HWAddressSanitizer.h 1322include/llvm/Transforms/Instrumentation/HWAddressSanitizer.h
1323include/llvm/Transforms/Instrumentation/InstrOrderFile.h 1323include/llvm/Transforms/Instrumentation/InstrOrderFile.h
1324include/llvm/Transforms/Instrumentation/InstrProfiling.h 1324include/llvm/Transforms/Instrumentation/InstrProfiling.h
1325include/llvm/Transforms/Instrumentation/MemorySanitizer.h 1325include/llvm/Transforms/Instrumentation/MemorySanitizer.h
1326include/llvm/Transforms/Instrumentation/PGOInstrumentation.h 1326include/llvm/Transforms/Instrumentation/PGOInstrumentation.h
1327include/llvm/Transforms/Instrumentation/PoisonChecking.h 1327include/llvm/Transforms/Instrumentation/PoisonChecking.h
1328include/llvm/Transforms/Instrumentation/ThreadSanitizer.h 1328include/llvm/Transforms/Instrumentation/ThreadSanitizer.h
1329include/llvm/Transforms/ObjCARC.h 1329include/llvm/Transforms/ObjCARC.h
1330include/llvm/Transforms/Scalar.h 1330include/llvm/Transforms/Scalar.h
1331include/llvm/Transforms/Scalar/ADCE.h 1331include/llvm/Transforms/Scalar/ADCE.h
1332include/llvm/Transforms/Scalar/AlignmentFromAssumptions.h 1332include/llvm/Transforms/Scalar/AlignmentFromAssumptions.h
1333include/llvm/Transforms/Scalar/BDCE.h 1333include/llvm/Transforms/Scalar/BDCE.h
1334include/llvm/Transforms/Scalar/CallSiteSplitting.h 1334include/llvm/Transforms/Scalar/CallSiteSplitting.h
1335include/llvm/Transforms/Scalar/ConstantHoisting.h 1335include/llvm/Transforms/Scalar/ConstantHoisting.h
1336include/llvm/Transforms/Scalar/CorrelatedValuePropagation.h 1336include/llvm/Transforms/Scalar/CorrelatedValuePropagation.h
1337include/llvm/Transforms/Scalar/DCE.h 1337include/llvm/Transforms/Scalar/DCE.h
1338include/llvm/Transforms/Scalar/DeadStoreElimination.h 1338include/llvm/Transforms/Scalar/DeadStoreElimination.h
1339include/llvm/Transforms/Scalar/DivRemPairs.h 1339include/llvm/Transforms/Scalar/DivRemPairs.h
1340include/llvm/Transforms/Scalar/EarlyCSE.h 1340include/llvm/Transforms/Scalar/EarlyCSE.h
1341include/llvm/Transforms/Scalar/Float2Int.h 1341include/llvm/Transforms/Scalar/Float2Int.h
1342include/llvm/Transforms/Scalar/GVN.h 1342include/llvm/Transforms/Scalar/GVN.h
1343include/llvm/Transforms/Scalar/GVNExpression.h 1343include/llvm/Transforms/Scalar/GVNExpression.h
1344include/llvm/Transforms/Scalar/GuardWidening.h 1344include/llvm/Transforms/Scalar/GuardWidening.h
1345include/llvm/Transforms/Scalar/IVUsersPrinter.h 1345include/llvm/Transforms/Scalar/IVUsersPrinter.h
1346include/llvm/Transforms/Scalar/IndVarSimplify.h 1346include/llvm/Transforms/Scalar/IndVarSimplify.h
1347include/llvm/Transforms/Scalar/InductiveRangeCheckElimination.h 1347include/llvm/Transforms/Scalar/InductiveRangeCheckElimination.h
1348include/llvm/Transforms/Scalar/InstSimplifyPass.h 1348include/llvm/Transforms/Scalar/InstSimplifyPass.h
1349include/llvm/Transforms/Scalar/JumpThreading.h 1349include/llvm/Transforms/Scalar/JumpThreading.h
1350include/llvm/Transforms/Scalar/LICM.h 1350include/llvm/Transforms/Scalar/LICM.h
1351include/llvm/Transforms/Scalar/LoopAccessAnalysisPrinter.h 1351include/llvm/Transforms/Scalar/LoopAccessAnalysisPrinter.h
1352include/llvm/Transforms/Scalar/LoopDataPrefetch.h 1352include/llvm/Transforms/Scalar/LoopDataPrefetch.h
1353include/llvm/Transforms/Scalar/LoopDeletion.h 1353include/llvm/Transforms/Scalar/LoopDeletion.h
1354include/llvm/Transforms/Scalar/LoopDistribute.h 1354include/llvm/Transforms/Scalar/LoopDistribute.h
1355include/llvm/Transforms/Scalar/LoopFuse.h 1355include/llvm/Transforms/Scalar/LoopFuse.h
1356include/llvm/Transforms/Scalar/LoopIdiomRecognize.h 1356include/llvm/Transforms/Scalar/LoopIdiomRecognize.h
1357include/llvm/Transforms/Scalar/LoopInstSimplify.h 1357include/llvm/Transforms/Scalar/LoopInstSimplify.h
1358include/llvm/Transforms/Scalar/LoopLoadElimination.h 1358include/llvm/Transforms/Scalar/LoopLoadElimination.h
1359include/llvm/Transforms/Scalar/LoopPassManager.h 1359include/llvm/Transforms/Scalar/LoopPassManager.h
1360include/llvm/Transforms/Scalar/LoopPredication.h 1360include/llvm/Transforms/Scalar/LoopPredication.h
1361include/llvm/Transforms/Scalar/LoopRotation.h 1361include/llvm/Transforms/Scalar/LoopRotation.h
1362include/llvm/Transforms/Scalar/LoopSimplifyCFG.h 1362include/llvm/Transforms/Scalar/LoopSimplifyCFG.h
1363include/llvm/Transforms/Scalar/LoopSink.h 1363include/llvm/Transforms/Scalar/LoopSink.h
1364include/llvm/Transforms/Scalar/LoopStrengthReduce.h 1364include/llvm/Transforms/Scalar/LoopStrengthReduce.h
1365include/llvm/Transforms/Scalar/LoopUnrollAndJamPass.h 1365include/llvm/Transforms/Scalar/LoopUnrollAndJamPass.h
1366include/llvm/Transforms/Scalar/LoopUnrollPass.h 1366include/llvm/Transforms/Scalar/LoopUnrollPass.h
1367include/llvm/Transforms/Scalar/LowerAtomic.h 1367include/llvm/Transforms/Scalar/LowerAtomic.h
1368include/llvm/Transforms/Scalar/LowerExpectIntrinsic.h 1368include/llvm/Transforms/Scalar/LowerExpectIntrinsic.h
1369include/llvm/Transforms/Scalar/LowerGuardIntrinsic.h 1369include/llvm/Transforms/Scalar/LowerGuardIntrinsic.h
1370include/llvm/Transforms/Scalar/LowerWidenableCondition.h 1370include/llvm/Transforms/Scalar/LowerWidenableCondition.h
1371include/llvm/Transforms/Scalar/MakeGuardsExplicit.h 1371include/llvm/Transforms/Scalar/MakeGuardsExplicit.h
1372include/llvm/Transforms/Scalar/MemCpyOptimizer.h 1372include/llvm/Transforms/Scalar/MemCpyOptimizer.h
1373include/llvm/Transforms/Scalar/MergeICmps.h 1373include/llvm/Transforms/Scalar/MergeICmps.h
1374include/llvm/Transforms/Scalar/MergedLoadStoreMotion.h 1374include/llvm/Transforms/Scalar/MergedLoadStoreMotion.h
1375include/llvm/Transforms/Scalar/NaryReassociate.h 1375include/llvm/Transforms/Scalar/NaryReassociate.h
1376include/llvm/Transforms/Scalar/NewGVN.h 1376include/llvm/Transforms/Scalar/NewGVN.h
1377include/llvm/Transforms/Scalar/PartiallyInlineLibCalls.h 1377include/llvm/Transforms/Scalar/PartiallyInlineLibCalls.h
1378include/llvm/Transforms/Scalar/Reassociate.h 1378include/llvm/Transforms/Scalar/Reassociate.h
1379include/llvm/Transforms/Scalar/RewriteStatepointsForGC.h 1379include/llvm/Transforms/Scalar/RewriteStatepointsForGC.h
1380include/llvm/Transforms/Scalar/SCCP.h 1380include/llvm/Transforms/Scalar/SCCP.h
1381include/llvm/Transforms/Scalar/SROA.h 1381include/llvm/Transforms/Scalar/SROA.h
1382include/llvm/Transforms/Scalar/Scalarizer.h 1382include/llvm/Transforms/Scalar/Scalarizer.h
1383include/llvm/Transforms/Scalar/SimpleLoopUnswitch.h 1383include/llvm/Transforms/Scalar/SimpleLoopUnswitch.h
1384include/llvm/Transforms/Scalar/SimplifyCFG.h 1384include/llvm/Transforms/Scalar/SimplifyCFG.h
1385include/llvm/Transforms/Scalar/Sink.h 1385include/llvm/Transforms/Scalar/Sink.h
1386include/llvm/Transforms/Scalar/SpeculateAroundPHIs.h 1386include/llvm/Transforms/Scalar/SpeculateAroundPHIs.h
1387include/llvm/Transforms/Scalar/SpeculativeExecution.h 1387include/llvm/Transforms/Scalar/SpeculativeExecution.h
1388include/llvm/Transforms/Scalar/TailRecursionElimination.h 1388include/llvm/Transforms/Scalar/TailRecursionElimination.h
1389include/llvm/Transforms/Scalar/WarnMissedTransforms.h 1389include/llvm/Transforms/Scalar/WarnMissedTransforms.h
1390include/llvm/Transforms/Utils.h 1390include/llvm/Transforms/Utils.h
1391include/llvm/Transforms/Utils/ASanStackFrameLayout.h 1391include/llvm/Transforms/Utils/ASanStackFrameLayout.h
1392include/llvm/Transforms/Utils/AddDiscriminators.h 1392include/llvm/Transforms/Utils/AddDiscriminators.h
1393include/llvm/Transforms/Utils/BasicBlockUtils.h 1393include/llvm/Transforms/Utils/BasicBlockUtils.h
1394include/llvm/Transforms/Utils/BreakCriticalEdges.h 1394include/llvm/Transforms/Utils/BreakCriticalEdges.h
1395include/llvm/Transforms/Utils/BuildLibCalls.h 1395include/llvm/Transforms/Utils/BuildLibCalls.h
1396include/llvm/Transforms/Utils/BypassSlowDivision.h 1396include/llvm/Transforms/Utils/BypassSlowDivision.h
1397include/llvm/Transforms/Utils/CallPromotionUtils.h 1397include/llvm/Transforms/Utils/CallPromotionUtils.h
1398include/llvm/Transforms/Utils/CanonicalizeAliases.h 1398include/llvm/Transforms/Utils/CanonicalizeAliases.h
1399include/llvm/Transforms/Utils/Cloning.h 1399include/llvm/Transforms/Utils/Cloning.h
1400include/llvm/Transforms/Utils/CodeExtractor.h 1400include/llvm/Transforms/Utils/CodeExtractor.h
1401include/llvm/Transforms/Utils/CtorUtils.h 1401include/llvm/Transforms/Utils/CtorUtils.h
1402include/llvm/Transforms/Utils/EntryExitInstrumenter.h 1402include/llvm/Transforms/Utils/EntryExitInstrumenter.h
1403include/llvm/Transforms/Utils/EscapeEnumerator.h 1403include/llvm/Transforms/Utils/EscapeEnumerator.h
1404include/llvm/Transforms/Utils/Evaluator.h 1404include/llvm/Transforms/Utils/Evaluator.h
1405include/llvm/Transforms/Utils/FunctionComparator.h 1405include/llvm/Transforms/Utils/FunctionComparator.h
1406include/llvm/Transforms/Utils/FunctionImportUtils.h 1406include/llvm/Transforms/Utils/FunctionImportUtils.h
1407include/llvm/Transforms/Utils/GlobalStatus.h 1407include/llvm/Transforms/Utils/GlobalStatus.h
1408include/llvm/Transforms/Utils/GuardUtils.h 1408include/llvm/Transforms/Utils/GuardUtils.h
1409include/llvm/Transforms/Utils/ImportedFunctionsInliningStatistics.h 1409include/llvm/Transforms/Utils/ImportedFunctionsInliningStatistics.h
1410include/llvm/Transforms/Utils/IntegerDivision.h 1410include/llvm/Transforms/Utils/IntegerDivision.h
1411include/llvm/Transforms/Utils/LCSSA.h 1411include/llvm/Transforms/Utils/LCSSA.h
1412include/llvm/Transforms/Utils/LibCallsShrinkWrap.h 1412include/llvm/Transforms/Utils/LibCallsShrinkWrap.h
1413include/llvm/Transforms/Utils/Local.h 1413include/llvm/Transforms/Utils/Local.h
1414include/llvm/Transforms/Utils/LoopRotationUtils.h 1414include/llvm/Transforms/Utils/LoopRotationUtils.h
1415include/llvm/Transforms/Utils/LoopSimplify.h 1415include/llvm/Transforms/Utils/LoopSimplify.h
1416include/llvm/Transforms/Utils/LoopUtils.h 1416include/llvm/Transforms/Utils/LoopUtils.h
1417include/llvm/Transforms/Utils/LoopVersioning.h 1417include/llvm/Transforms/Utils/LoopVersioning.h
1418include/llvm/Transforms/Utils/LowerInvoke.h 1418include/llvm/Transforms/Utils/LowerInvoke.h
1419include/llvm/Transforms/Utils/LowerMemIntrinsics.h 1419include/llvm/Transforms/Utils/LowerMemIntrinsics.h
1420include/llvm/Transforms/Utils/Mem2Reg.h 1420include/llvm/Transforms/Utils/Mem2Reg.h
1421include/llvm/Transforms/Utils/ModuleUtils.h 1421include/llvm/Transforms/Utils/ModuleUtils.h
1422include/llvm/Transforms/Utils/NameAnonGlobals.h 1422include/llvm/Transforms/Utils/NameAnonGlobals.h
1423include/llvm/Transforms/Utils/PredicateInfo.h 1423include/llvm/Transforms/Utils/PredicateInfo.h
1424include/llvm/Transforms/Utils/PromoteMemToReg.h 1424include/llvm/Transforms/Utils/PromoteMemToReg.h
1425include/llvm/Transforms/Utils/SSAUpdater.h 1425include/llvm/Transforms/Utils/SSAUpdater.h
1426include/llvm/Transforms/Utils/SSAUpdaterBulk.h 1426include/llvm/Transforms/Utils/SSAUpdaterBulk.h
1427include/llvm/Transforms/Utils/SSAUpdaterImpl.h 1427include/llvm/Transforms/Utils/SSAUpdaterImpl.h
1428include/llvm/Transforms/Utils/SanitizerStats.h 1428include/llvm/Transforms/Utils/SanitizerStats.h
1429include/llvm/Transforms/Utils/SimplifyIndVar.h 1429include/llvm/Transforms/Utils/SimplifyIndVar.h
1430include/llvm/Transforms/Utils/SimplifyLibCalls.h 1430include/llvm/Transforms/Utils/SimplifyLibCalls.h
1431include/llvm/Transforms/Utils/SizeOpts.h 1431include/llvm/Transforms/Utils/SizeOpts.h
1432include/llvm/Transforms/Utils/SplitModule.h 1432include/llvm/Transforms/Utils/SplitModule.h
1433include/llvm/Transforms/Utils/SymbolRewriter.h 1433include/llvm/Transforms/Utils/SymbolRewriter.h
1434include/llvm/Transforms/Utils/UnifyFunctionExitNodes.h 1434include/llvm/Transforms/Utils/UnifyFunctionExitNodes.h
1435include/llvm/Transforms/Utils/UnrollLoop.h 1435include/llvm/Transforms/Utils/UnrollLoop.h
1436include/llvm/Transforms/Utils/VNCoercion.h 1436include/llvm/Transforms/Utils/VNCoercion.h
1437include/llvm/Transforms/Utils/ValueMapper.h 1437include/llvm/Transforms/Utils/ValueMapper.h
1438include/llvm/Transforms/Vectorize.h 1438include/llvm/Transforms/Vectorize.h
1439include/llvm/Transforms/Vectorize/LoadStoreVectorizer.h 1439include/llvm/Transforms/Vectorize/LoadStoreVectorizer.h
1440include/llvm/Transforms/Vectorize/LoopVectorizationLegality.h 1440include/llvm/Transforms/Vectorize/LoopVectorizationLegality.h
1441include/llvm/Transforms/Vectorize/LoopVectorize.h 1441include/llvm/Transforms/Vectorize/LoopVectorize.h
1442include/llvm/Transforms/Vectorize/SLPVectorizer.h 1442include/llvm/Transforms/Vectorize/SLPVectorizer.h
1443include/llvm/WindowsManifest/WindowsManifestMerger.h 1443include/llvm/WindowsManifest/WindowsManifestMerger.h
1444include/llvm/WindowsResource/ResourceProcessor.h 1444include/llvm/WindowsResource/ResourceProcessor.h
1445include/llvm/WindowsResource/ResourceScriptToken.h 1445include/llvm/WindowsResource/ResourceScriptToken.h
1446include/llvm/WindowsResource/ResourceScriptTokenList.h 1446include/llvm/WindowsResource/ResourceScriptTokenList.h
1447include/llvm/XRay/BlockIndexer.h 1447include/llvm/XRay/BlockIndexer.h
1448include/llvm/XRay/BlockPrinter.h 1448include/llvm/XRay/BlockPrinter.h
1449include/llvm/XRay/BlockVerifier.h 1449include/llvm/XRay/BlockVerifier.h
1450include/llvm/XRay/FDRLogBuilder.h 1450include/llvm/XRay/FDRLogBuilder.h
1451include/llvm/XRay/FDRRecordConsumer.h 1451include/llvm/XRay/FDRRecordConsumer.h
1452include/llvm/XRay/FDRRecordProducer.h 1452include/llvm/XRay/FDRRecordProducer.h
1453include/llvm/XRay/FDRRecords.h 1453include/llvm/XRay/FDRRecords.h
1454include/llvm/XRay/FDRTraceExpander.h 1454include/llvm/XRay/FDRTraceExpander.h
1455include/llvm/XRay/FDRTraceWriter.h 1455include/llvm/XRay/FDRTraceWriter.h
1456include/llvm/XRay/FileHeaderReader.h 1456include/llvm/XRay/FileHeaderReader.h
1457include/llvm/XRay/Graph.h 1457include/llvm/XRay/Graph.h
1458include/llvm/XRay/InstrumentationMap.h 1458include/llvm/XRay/InstrumentationMap.h
1459include/llvm/XRay/Profile.h 1459include/llvm/XRay/Profile.h
1460include/llvm/XRay/RecordPrinter.h 1460include/llvm/XRay/RecordPrinter.h
1461include/llvm/XRay/Trace.h 1461include/llvm/XRay/Trace.h
1462include/llvm/XRay/XRayRecord.h 1462include/llvm/XRay/XRayRecord.h
1463include/llvm/XRay/YAMLXRayRecord.h 1463include/llvm/XRay/YAMLXRayRecord.h
1464lib/cmake/llvm/AddLLVM.cmake 1464lib/cmake/llvm/AddLLVM.cmake
1465lib/cmake/llvm/AddLLVMDefinitions.cmake 1465lib/cmake/llvm/AddLLVMDefinitions.cmake
1466lib/cmake/llvm/AddOCaml.cmake 1466lib/cmake/llvm/AddOCaml.cmake
1467lib/cmake/llvm/AddSphinxTarget.cmake 1467lib/cmake/llvm/AddSphinxTarget.cmake
1468lib/cmake/llvm/CheckAtomic.cmake 1468lib/cmake/llvm/CheckAtomic.cmake
1469lib/cmake/llvm/CheckCompilerVersion.cmake 1469lib/cmake/llvm/CheckCompilerVersion.cmake
1470lib/cmake/llvm/CheckLinkerFlag.cmake 1470lib/cmake/llvm/CheckLinkerFlag.cmake
1471lib/cmake/llvm/ChooseMSVCCRT.cmake 1471lib/cmake/llvm/ChooseMSVCCRT.cmake
1472lib/cmake/llvm/CrossCompile.cmake 1472lib/cmake/llvm/CrossCompile.cmake
1473lib/cmake/llvm/DetermineGCCCompatible.cmake 1473lib/cmake/llvm/DetermineGCCCompatible.cmake
1474lib/cmake/llvm/FindLibpfm.cmake 1474lib/cmake/llvm/FindLibpfm.cmake
1475lib/cmake/llvm/FindOCaml.cmake 1475lib/cmake/llvm/FindOCaml.cmake
1476lib/cmake/llvm/FindSphinx.cmake 1476lib/cmake/llvm/FindSphinx.cmake
1477lib/cmake/llvm/FindZ3.cmake 1477lib/cmake/llvm/FindZ3.cmake
1478lib/cmake/llvm/GenerateVersionFromVCS.cmake 1478lib/cmake/llvm/GenerateVersionFromVCS.cmake
1479lib/cmake/llvm/HandleLLVMOptions.cmake 1479lib/cmake/llvm/HandleLLVMOptions.cmake
1480lib/cmake/llvm/HandleLLVMStdlib.cmake 1480lib/cmake/llvm/HandleLLVMStdlib.cmake
1481lib/cmake/llvm/LLVM-Config.cmake 1481lib/cmake/llvm/LLVM-Config.cmake
1482lib/cmake/llvm/LLVMConfig.cmake 1482lib/cmake/llvm/LLVMConfig.cmake
1483lib/cmake/llvm/LLVMConfigVersion.cmake 1483lib/cmake/llvm/LLVMConfigVersion.cmake
1484lib/cmake/llvm/LLVMDistributionSupport.cmake 1484lib/cmake/llvm/LLVMDistributionSupport.cmake
1485lib/cmake/llvm/LLVMExports-release.cmake 1485lib/cmake/llvm/LLVMExports-release.cmake
1486lib/cmake/llvm/LLVMExports.cmake 1486lib/cmake/llvm/LLVMExports.cmake
1487lib/cmake/llvm/LLVMExternalProjectUtils.cmake 1487lib/cmake/llvm/LLVMExternalProjectUtils.cmake
1488lib/cmake/llvm/LLVMInstallSymlink.cmake 1488lib/cmake/llvm/LLVMInstallSymlink.cmake
1489lib/cmake/llvm/LLVMProcessSources.cmake 1489lib/cmake/llvm/LLVMProcessSources.cmake
1490lib/cmake/llvm/TableGen.cmake 1490lib/cmake/llvm/TableGen.cmake
1491lib/cmake/llvm/UseLibtool.cmake 1491lib/cmake/llvm/UseLibtool.cmake
1492lib/cmake/llvm/VersionFromVCS.cmake 1492lib/cmake/llvm/VersionFromVCS.cmake
1493lib/libLLVM-${PKGVERSION}.${SOEXT} 1493lib/libLLVM-${PKGVERSION}.${SOEXT}
1494lib/libLLVM-9.${SOEXT} 1494lib/libLLVM-9.${SOEXT}
1495lib/libLLVM.${SOEXT} 1495lib/libLLVM.${SOEXT}
1496${PLIST.AArch64}lib/libLLVMAArch64AsmParser.a 1496${PLIST.AArch64}lib/libLLVMAArch64AsmParser.a
1497${PLIST.AArch64}lib/libLLVMAArch64CodeGen.a 1497${PLIST.AArch64}lib/libLLVMAArch64CodeGen.a
1498${PLIST.AArch64}lib/libLLVMAArch64Desc.a 1498${PLIST.AArch64}lib/libLLVMAArch64Desc.a
1499${PLIST.AArch64}lib/libLLVMAArch64Disassembler.a 1499${PLIST.AArch64}lib/libLLVMAArch64Disassembler.a
1500${PLIST.AArch64}lib/libLLVMAArch64Info.a 1500${PLIST.AArch64}lib/libLLVMAArch64Info.a
1501${PLIST.AArch64}lib/libLLVMAArch64Utils.a 1501${PLIST.AArch64}lib/libLLVMAArch64Utils.a
1502${PLIST.AMDGPU}lib/libLLVMAMDGPUAsmParser.a 1502${PLIST.AMDGPU}lib/libLLVMAMDGPUAsmParser.a
1503${PLIST.AMDGPU}lib/libLLVMAMDGPUCodeGen.a 1503${PLIST.AMDGPU}lib/libLLVMAMDGPUCodeGen.a
1504${PLIST.AMDGPU}lib/libLLVMAMDGPUDesc.a 1504${PLIST.AMDGPU}lib/libLLVMAMDGPUDesc.a
1505${PLIST.AMDGPU}lib/libLLVMAMDGPUDisassembler.a 1505${PLIST.AMDGPU}lib/libLLVMAMDGPUDisassembler.a
1506${PLIST.AMDGPU}lib/libLLVMAMDGPUInfo.a 1506${PLIST.AMDGPU}lib/libLLVMAMDGPUInfo.a
1507${PLIST.AMDGPU}lib/libLLVMAMDGPUUtils.a 1507${PLIST.AMDGPU}lib/libLLVMAMDGPUUtils.a
1508${PLIST.ARM}lib/libLLVMARMAsmParser.a 1508${PLIST.ARM}lib/libLLVMARMAsmParser.a
1509${PLIST.ARM}lib/libLLVMARMCodeGen.a 1509${PLIST.ARM}lib/libLLVMARMCodeGen.a
1510${PLIST.ARM}lib/libLLVMARMDesc.a 1510${PLIST.ARM}lib/libLLVMARMDesc.a
1511${PLIST.ARM}lib/libLLVMARMDisassembler.a 1511${PLIST.ARM}lib/libLLVMARMDisassembler.a
1512${PLIST.ARM}lib/libLLVMARMInfo.a 1512${PLIST.ARM}lib/libLLVMARMInfo.a
1513${PLIST.ARM}lib/libLLVMARMUtils.a 1513${PLIST.ARM}lib/libLLVMARMUtils.a
1514lib/libLLVMAggressiveInstCombine.a 1514lib/libLLVMAggressiveInstCombine.a
1515lib/libLLVMAnalysis.a 1515lib/libLLVMAnalysis.a
1516lib/libLLVMAsmParser.a 1516lib/libLLVMAsmParser.a
1517lib/libLLVMAsmPrinter.a 1517lib/libLLVMAsmPrinter.a
1518${PLIST.BPF}lib/libLLVMBPFAsmParser.a 1518${PLIST.BPF}lib/libLLVMBPFAsmParser.a
1519${PLIST.BPF}lib/libLLVMBPFCodeGen.a 1519${PLIST.BPF}lib/libLLVMBPFCodeGen.a
1520${PLIST.BPF}lib/libLLVMBPFDesc.a 1520${PLIST.BPF}lib/libLLVMBPFDesc.a
1521${PLIST.BPF}lib/libLLVMBPFDisassembler.a 1521${PLIST.BPF}lib/libLLVMBPFDisassembler.a
1522${PLIST.BPF}lib/libLLVMBPFInfo.a 1522${PLIST.BPF}lib/libLLVMBPFInfo.a
1523lib/libLLVMBinaryFormat.a 1523lib/libLLVMBinaryFormat.a
1524lib/libLLVMBitReader.a 1524lib/libLLVMBitReader.a
1525lib/libLLVMBitWriter.a 1525lib/libLLVMBitWriter.a
1526lib/libLLVMBitstreamReader.a 1526lib/libLLVMBitstreamReader.a
1527lib/libLLVMCodeGen.a 1527lib/libLLVMCodeGen.a
1528lib/libLLVMCore.a 1528lib/libLLVMCore.a
1529lib/libLLVMCoroutines.a 1529lib/libLLVMCoroutines.a
1530lib/libLLVMCoverage.a 1530lib/libLLVMCoverage.a
1531lib/libLLVMDebugInfoCodeView.a 1531lib/libLLVMDebugInfoCodeView.a
1532lib/libLLVMDebugInfoDWARF.a 1532lib/libLLVMDebugInfoDWARF.a
1533lib/libLLVMDebugInfoGSYM.a 1533lib/libLLVMDebugInfoGSYM.a
1534lib/libLLVMDebugInfoMSF.a 1534lib/libLLVMDebugInfoMSF.a
1535lib/libLLVMDebugInfoPDB.a 1535lib/libLLVMDebugInfoPDB.a
1536lib/libLLVMDemangle.a 1536lib/libLLVMDemangle.a
1537lib/libLLVMDlltoolDriver.a 1537lib/libLLVMDlltoolDriver.a
1538lib/libLLVMExecutionEngine.a 1538lib/libLLVMExecutionEngine.a
1539lib/libLLVMFuzzMutate.a 1539lib/libLLVMFuzzMutate.a
1540lib/libLLVMGlobalISel.a 1540lib/libLLVMGlobalISel.a
1541${PLIST.Hexagon}lib/libLLVMHexagonAsmParser.a 1541${PLIST.Hexagon}lib/libLLVMHexagonAsmParser.a
1542${PLIST.Hexagon}lib/libLLVMHexagonCodeGen.a 1542${PLIST.Hexagon}lib/libLLVMHexagonCodeGen.a
1543${PLIST.Hexagon}lib/libLLVMHexagonDesc.a 1543${PLIST.Hexagon}lib/libLLVMHexagonDesc.a
1544${PLIST.Hexagon}lib/libLLVMHexagonDisassembler.a 1544${PLIST.Hexagon}lib/libLLVMHexagonDisassembler.a
1545${PLIST.Hexagon}lib/libLLVMHexagonInfo.a 1545${PLIST.Hexagon}lib/libLLVMHexagonInfo.a
1546lib/libLLVMIRReader.a 1546lib/libLLVMIRReader.a
1547lib/libLLVMInstCombine.a 1547lib/libLLVMInstCombine.a
1548lib/libLLVMInstrumentation.a 1548lib/libLLVMInstrumentation.a
1549lib/libLLVMInterpreter.a 1549lib/libLLVMInterpreter.a
1550lib/libLLVMJITLink.a 1550lib/libLLVMJITLink.a
1551lib/libLLVMLTO.a 1551lib/libLLVMLTO.a
1552${PLIST.Lanai}lib/libLLVMLanaiAsmParser.a 1552${PLIST.Lanai}lib/libLLVMLanaiAsmParser.a
1553${PLIST.Lanai}lib/libLLVMLanaiCodeGen.a 1553${PLIST.Lanai}lib/libLLVMLanaiCodeGen.a
1554${PLIST.Lanai}lib/libLLVMLanaiDesc.a 1554${PLIST.Lanai}lib/libLLVMLanaiDesc.a
1555${PLIST.Lanai}lib/libLLVMLanaiDisassembler.a 1555${PLIST.Lanai}lib/libLLVMLanaiDisassembler.a
1556${PLIST.Lanai}lib/libLLVMLanaiInfo.a 1556${PLIST.Lanai}lib/libLLVMLanaiInfo.a
1557lib/libLLVMLibDriver.a 1557lib/libLLVMLibDriver.a
1558lib/libLLVMLineEditor.a 1558lib/libLLVMLineEditor.a
1559lib/libLLVMLinker.a 1559lib/libLLVMLinker.a
1560lib/libLLVMMC.a 1560lib/libLLVMMC.a
1561lib/libLLVMMCA.a 1561lib/libLLVMMCA.a
1562lib/libLLVMMCDisassembler.a 1562lib/libLLVMMCDisassembler.a
1563lib/libLLVMMCJIT.a 1563lib/libLLVMMCJIT.a
1564lib/libLLVMMCParser.a 1564lib/libLLVMMCParser.a
1565lib/libLLVMMIRParser.a 1565lib/libLLVMMIRParser.a
1566${PLIST.MSP430}lib/libLLVMMSP430AsmParser.a 1566${PLIST.MSP430}lib/libLLVMMSP430AsmParser.a
1567${PLIST.MSP430}lib/libLLVMMSP430CodeGen.a 1567${PLIST.MSP430}lib/libLLVMMSP430CodeGen.a
1568${PLIST.MSP430}lib/libLLVMMSP430Desc.a 1568${PLIST.MSP430}lib/libLLVMMSP430Desc.a
1569${PLIST.MSP430}lib/libLLVMMSP430Disassembler.a 1569${PLIST.MSP430}lib/libLLVMMSP430Disassembler.a
1570${PLIST.MSP430}lib/libLLVMMSP430Info.a 1570${PLIST.MSP430}lib/libLLVMMSP430Info.a
1571${PLIST.Mips}lib/libLLVMMipsAsmParser.a 1571${PLIST.Mips}lib/libLLVMMipsAsmParser.a
1572${PLIST.Mips}lib/libLLVMMipsCodeGen.a 1572${PLIST.Mips}lib/libLLVMMipsCodeGen.a
1573${PLIST.Mips}lib/libLLVMMipsDesc.a 1573${PLIST.Mips}lib/libLLVMMipsDesc.a
1574${PLIST.Mips}lib/libLLVMMipsDisassembler.a 1574${PLIST.Mips}lib/libLLVMMipsDisassembler.a
1575${PLIST.Mips}lib/libLLVMMipsInfo.a 1575${PLIST.Mips}lib/libLLVMMipsInfo.a
1576${PLIST.NVPTX}lib/libLLVMNVPTXCodeGen.a 1576${PLIST.NVPTX}lib/libLLVMNVPTXCodeGen.a
1577${PLIST.NVPTX}lib/libLLVMNVPTXDesc.a 1577${PLIST.NVPTX}lib/libLLVMNVPTXDesc.a
1578${PLIST.NVPTX}lib/libLLVMNVPTXInfo.a 1578${PLIST.NVPTX}lib/libLLVMNVPTXInfo.a
1579lib/libLLVMObjCARCOpts.a 1579lib/libLLVMObjCARCOpts.a
1580lib/libLLVMObject.a 1580lib/libLLVMObject.a
1581lib/libLLVMObjectYAML.a 1581lib/libLLVMObjectYAML.a
1582lib/libLLVMOption.a 1582lib/libLLVMOption.a
1583lib/libLLVMOrcJIT.a 1583lib/libLLVMOrcJIT.a
1584lib/libLLVMPasses.a 1584lib/libLLVMPasses.a
1585${PLIST.PowerPC}lib/libLLVMPowerPCAsmParser.a 1585${PLIST.PowerPC}lib/libLLVMPowerPCAsmParser.a
1586${PLIST.PowerPC}lib/libLLVMPowerPCCodeGen.a 1586${PLIST.PowerPC}lib/libLLVMPowerPCCodeGen.a
1587${PLIST.PowerPC}lib/libLLVMPowerPCDesc.a 1587${PLIST.PowerPC}lib/libLLVMPowerPCDesc.a
1588${PLIST.PowerPC}lib/libLLVMPowerPCDisassembler.a 1588${PLIST.PowerPC}lib/libLLVMPowerPCDisassembler.a
1589${PLIST.PowerPC}lib/libLLVMPowerPCInfo.a 1589${PLIST.PowerPC}lib/libLLVMPowerPCInfo.a
1590lib/libLLVMProfileData.a 1590lib/libLLVMProfileData.a
 1591${PLIST.RISCV}lib/libLLVMRISCVAsmParser.a
 1592${PLIST.RISCV}lib/libLLVMRISCVCodeGen.a
 1593${PLIST.RISCV}lib/libLLVMRISCVDesc.a
 1594${PLIST.RISCV}lib/libLLVMRISCVDisassembler.a
 1595${PLIST.RISCV}lib/libLLVMRISCVInfo.a
 1596${PLIST.RISCV}lib/libLLVMRISCVUtils.a
1591lib/libLLVMRemarks.a 1597lib/libLLVMRemarks.a
1592lib/libLLVMRuntimeDyld.a 1598lib/libLLVMRuntimeDyld.a
1593lib/libLLVMScalarOpts.a 1599lib/libLLVMScalarOpts.a
1594lib/libLLVMSelectionDAG.a 1600lib/libLLVMSelectionDAG.a
1595${PLIST.Sparc}lib/libLLVMSparcAsmParser.a 1601${PLIST.Sparc}lib/libLLVMSparcAsmParser.a
1596${PLIST.Sparc}lib/libLLVMSparcCodeGen.a 1602${PLIST.Sparc}lib/libLLVMSparcCodeGen.a
1597${PLIST.Sparc}lib/libLLVMSparcDesc.a 1603${PLIST.Sparc}lib/libLLVMSparcDesc.a
1598${PLIST.Sparc}lib/libLLVMSparcDisassembler.a 1604${PLIST.Sparc}lib/libLLVMSparcDisassembler.a
1599${PLIST.Sparc}lib/libLLVMSparcInfo.a 1605${PLIST.Sparc}lib/libLLVMSparcInfo.a
1600lib/libLLVMSupport.a 1606lib/libLLVMSupport.a
1601lib/libLLVMSymbolize.a 1607lib/libLLVMSymbolize.a
1602${PLIST.SystemZ}lib/libLLVMSystemZAsmParser.a 1608${PLIST.SystemZ}lib/libLLVMSystemZAsmParser.a
1603${PLIST.SystemZ}lib/libLLVMSystemZCodeGen.a 1609${PLIST.SystemZ}lib/libLLVMSystemZCodeGen.a
1604${PLIST.SystemZ}lib/libLLVMSystemZDesc.a 1610${PLIST.SystemZ}lib/libLLVMSystemZDesc.a
1605${PLIST.SystemZ}lib/libLLVMSystemZDisassembler.a 1611${PLIST.SystemZ}lib/libLLVMSystemZDisassembler.a
1606${PLIST.SystemZ}lib/libLLVMSystemZInfo.a 1612${PLIST.SystemZ}lib/libLLVMSystemZInfo.a
1607lib/libLLVMTableGen.a 1613lib/libLLVMTableGen.a
1608lib/libLLVMTarget.a 1614lib/libLLVMTarget.a
1609lib/libLLVMTextAPI.a 1615lib/libLLVMTextAPI.a
1610lib/libLLVMTransformUtils.a 1616lib/libLLVMTransformUtils.a
1611lib/libLLVMVectorize.a 1617lib/libLLVMVectorize.a
1612${PLIST.WebAssembly}lib/libLLVMWebAssemblyAsmParser.a 1618${PLIST.WebAssembly}lib/libLLVMWebAssemblyAsmParser.a
1613${PLIST.WebAssembly}lib/libLLVMWebAssemblyCodeGen.a 1619${PLIST.WebAssembly}lib/libLLVMWebAssemblyCodeGen.a
1614${PLIST.WebAssembly}lib/libLLVMWebAssemblyDesc.a 1620${PLIST.WebAssembly}lib/libLLVMWebAssemblyDesc.a
1615${PLIST.WebAssembly}lib/libLLVMWebAssemblyDisassembler.a 1621${PLIST.WebAssembly}lib/libLLVMWebAssemblyDisassembler.a
1616${PLIST.WebAssembly}lib/libLLVMWebAssemblyInfo.a 1622${PLIST.WebAssembly}lib/libLLVMWebAssemblyInfo.a
1617lib/libLLVMWindowsManifest.a 1623lib/libLLVMWindowsManifest.a
1618${PLIST.X86}lib/libLLVMX86AsmParser.a 1624${PLIST.X86}lib/libLLVMX86AsmParser.a
1619${PLIST.X86}lib/libLLVMX86CodeGen.a 1625${PLIST.X86}lib/libLLVMX86CodeGen.a
1620${PLIST.X86}lib/libLLVMX86Desc.a 1626${PLIST.X86}lib/libLLVMX86Desc.a
1621${PLIST.X86}lib/libLLVMX86Disassembler.a 1627${PLIST.X86}lib/libLLVMX86Disassembler.a
1622${PLIST.X86}lib/libLLVMX86Info.a 1628${PLIST.X86}lib/libLLVMX86Info.a
1623${PLIST.X86}lib/libLLVMX86Utils.a 1629${PLIST.X86}lib/libLLVMX86Utils.a
1624${PLIST.XCore}lib/libLLVMXCoreCodeGen.a 1630${PLIST.XCore}lib/libLLVMXCoreCodeGen.a
1625${PLIST.XCore}lib/libLLVMXCoreDesc.a 1631${PLIST.XCore}lib/libLLVMXCoreDesc.a
1626${PLIST.XCore}lib/libLLVMXCoreDisassembler.a 1632${PLIST.XCore}lib/libLLVMXCoreDisassembler.a
1627${PLIST.XCore}lib/libLLVMXCoreInfo.a 1633${PLIST.XCore}lib/libLLVMXCoreInfo.a
1628lib/libLLVMXRay.a 1634lib/libLLVMXRay.a
1629lib/libLLVMipo.a 1635lib/libLLVMipo.a
1630lib/libLTO.${SOEXT} 1636lib/libLTO.${SOEXT}
1631${PLIST.notdylib}lib/libLTO.${SOEXT}.9 1637${PLIST.notdylib}lib/libLTO.${SOEXT}.9
1632lib/libRemarks.so 1638lib/libRemarks.so
1633${PLIST.notdylib}lib/libRemarks.${SOEXT}.9 1639${PLIST.notdylib}lib/libRemarks.${SOEXT}.9
1634share/opt-viewer/opt-diff.py 1640share/opt-viewer/opt-diff.py
1635share/opt-viewer/opt-stats.py 1641share/opt-viewer/opt-stats.py
1636share/opt-viewer/opt-viewer.py 1642share/opt-viewer/opt-viewer.py
1637share/opt-viewer/optpmap.py 1643share/opt-viewer/optpmap.py
1638share/opt-viewer/optrecord.py 1644share/opt-viewer/optrecord.py
1639share/opt-viewer/style.css 1645share/opt-viewer/style.css

cvs diff -r1.5 -r1.6 pkgsrc/lang/llvm/options.mk (switch to unified diff)

--- pkgsrc/lang/llvm/options.mk 2019/06/02 09:48:29 1.5
+++ pkgsrc/lang/llvm/options.mk 2019/11/11 19:22:28 1.6
@@ -1,55 +1,55 @@ @@ -1,55 +1,55 @@
1# $NetBSD: options.mk,v 1.5 2019/06/02 09:48:29 adam Exp $ 1# $NetBSD: options.mk,v 1.6 2019/11/11 19:22:28 nia Exp $
2 2
3PKG_OPTIONS_VAR= PKG_OPTIONS.llvm 3PKG_OPTIONS_VAR= PKG_OPTIONS.llvm
4 4
5LLVM_TARGETS= AArch64 AMDGPU ARM BPF Hexagon Lanai Mips MSP430 NVPTX PowerPC Sparc SystemZ WebAssembly X86 XCore 5LLVM_TARGETS= AArch64 AMDGPU ARM BPF Hexagon Lanai Mips MSP430 NVPTX PowerPC RISCV Sparc SystemZ WebAssembly X86 XCore
6 6
7.for tgt in ${LLVM_TARGETS} 7.for tgt in ${LLVM_TARGETS}
8PLIST_VARS+= ${tgt} 8PLIST_VARS+= ${tgt}
9PKG_SUPPORTED_OPTIONS+= llvm-target-${tgt:tl} 9PKG_SUPPORTED_OPTIONS+= llvm-target-${tgt:tl}
10.endfor 10.endfor
11PKG_SUPPORTED_OPTIONS+= terminfo 11PKG_SUPPORTED_OPTIONS+= terminfo
12 12
13# Terminfo is used for colour output, only enable it by default if terminfo 13# Terminfo is used for colour output, only enable it by default if terminfo
14# is builtin to avoid unnecessary dependencies which could cause bootstrap 14# is builtin to avoid unnecessary dependencies which could cause bootstrap
15# issues. 15# issues.
16CHECK_BUILTIN.terminfo:= yes 16CHECK_BUILTIN.terminfo:= yes
17.include "../../mk/terminfo.builtin.mk" 17.include "../../mk/terminfo.builtin.mk"
18CHECK_BUILTIN.terminfo:= no 18CHECK_BUILTIN.terminfo:= no
19.if !empty(USE_BUILTIN.terminfo:M[yY][eE][sS]) 19.if !empty(USE_BUILTIN.terminfo:M[yY][eE][sS])
20PKG_SUGGESTED_OPTIONS+= terminfo 20PKG_SUGGESTED_OPTIONS+= terminfo
21.endif 21.endif
22 22
23# Probably safe to assume that only x86 users are interested in 23# Probably safe to assume that only x86 users are interested in
24# cross-compilation for now. This saves some build time for everyone else. 24# cross-compilation for now. This saves some build time for everyone else.
25.if !empty(MACHINE_ARCH:Msparc*) 25.if !empty(MACHINE_ARCH:Msparc*)
26PKG_SUGGESTED_OPTIONS+= llvm-target-sparc 26PKG_SUGGESTED_OPTIONS+= llvm-target-sparc
27.elif !empty(MACHINE_ARCH:Mpowerpc*) 27.elif !empty(MACHINE_ARCH:Mpowerpc*)
28PKG_SUGGESTED_OPTIONS+= llvm-target-powerpc 28PKG_SUGGESTED_OPTIONS+= llvm-target-powerpc
29.elif !empty(MACHINE_ARCH:Mearm*) 29.elif !empty(MACHINE_ARCH:Mearm*)
30PKG_SUGGESTED_OPTIONS+= llvm-target-arm 30PKG_SUGGESTED_OPTIONS+= llvm-target-arm
31.elif !empty(MACHINE_ARCH:M*mips*) 31.elif !empty(MACHINE_ARCH:M*mips*)
32PKG_SUGGESTED_OPTIONS+= llvm-target-mips 32PKG_SUGGESTED_OPTIONS+= llvm-target-mips
33.else 33.else
34# X86 and everyone else get all targets by default. 34# X86 and everyone else get all targets by default.
35. for tgt in ${LLVM_TARGETS} 35. for tgt in ${LLVM_TARGETS}
36PKG_SUGGESTED_OPTIONS+= llvm-target-${tgt:tl} 36PKG_SUGGESTED_OPTIONS+= llvm-target-${tgt:tl}
37. endfor 37. endfor
38.endif 38.endif
39 39
40.include "../../mk/bsd.options.mk" 40.include "../../mk/bsd.options.mk"
41 41
42.for tgt in ${LLVM_TARGETS} 42.for tgt in ${LLVM_TARGETS}
43. if !empty(PKG_OPTIONS:Mllvm-target-${tgt:tl}) 43. if !empty(PKG_OPTIONS:Mllvm-target-${tgt:tl})
44PLIST.${tgt}= yes 44PLIST.${tgt}= yes
45LLVM_TARGETS_TO_BUILD+= ${tgt} 45LLVM_TARGETS_TO_BUILD+= ${tgt}
46. endif 46. endif
47.endfor 47.endfor
48 48
49.if !empty(PKG_OPTIONS:Mterminfo) 49.if !empty(PKG_OPTIONS:Mterminfo)
50.include "../../mk/terminfo.buildlink3.mk" 50.include "../../mk/terminfo.buildlink3.mk"
51.else 51.else
52CMAKE_ARGS+= -DLLVM_ENABLE_TERMINFO=OFF 52CMAKE_ARGS+= -DLLVM_ENABLE_TERMINFO=OFF
53.endif 53.endif
54 54
55CMAKE_ARGS+= -DLLVM_TARGETS_TO_BUILD="${LLVM_TARGETS_TO_BUILD:ts;}" 55CMAKE_ARGS+= -DLLVM_TARGETS_TO_BUILD="${LLVM_TARGETS_TO_BUILD:ts;}"