Should llvm9-dev have a dependency?
Consider a simple Dockerfile:
FROM alpine:edge
RUN apk --no-cache add --virtual llvm9-dev \
&& find / -name *llvm* \
&& ls /usr/lib/llvm9/bin/llvm-config
This will fail, and if you check the logs you'll see that it's not just llvm-config that's missing --- llvm9-dev doesn't install any files at all. Going by https://pkgs.alpinelinux.org/contents?branch=edge&name=llvm9-dev&arch=x86_64&repo=main , not to mention all the files the find
turns up in the Dockerfile below, we would expect to see quite a few files appear when we apk add llvm9-dev.
Of course, with build-base it works fine:
FROM alpine:edge
RUN apk --no-cache add --virtual build-base llvm9-dev \
&& find / -name *llvm* \
&& ls /usr/lib/llvm9/bin/llvm-config
Maybe it doesn't make a ton of sense to apk add llvm9-dev without build-base, but supposing that someone does, what is the least bad thing to do? Installing whatever dependency is needed for the package to actually do something might be preferable.
(Demonstration Dockerfiles can be seen at https://github.com/dHannasch/alpine-llvm-dockerfile and https://hub.docker.com/r/dahanna/alpine-llvm-test .)
(I'm fixated on llvm9-dev since llvmlite does not support llvm10-dev yet https://github.com/numba/llvmlite/issues/507 , but presumably all the same issues apply to llvm10-dev.)
- Show closed items
Activity
-
Newest first Oldest first
-
Show all activity Show comments only Show history only
I installed llvm9-dev here and it has these files
llvm9-dev-9.0.1-r3 contains: usr/bin/llvm9-config usr/lib/llvm9/include usr/lib/llvm9/bin/llvm-config usr/lib/llvm9/lib/libRemarks.so usr/lib/llvm9/lib/libLLVM-9.0.1.so usr/lib/llvm9/lib/libLLVM.so usr/lib/llvm9/lib/libLTO.so usr/lib/llvm9/lib/libLTO.so.9 usr/lib/llvm9/lib/libRemarks.so.9 usr/lib/llvm9/lib/LLVMgold.so usr/lib/llvm9/lib/cmake/llvm usr/lib/cmake/llvm9/AddLLVM.cmake usr/lib/cmake/llvm9/CheckCompilerVersion.cmake usr/lib/cmake/llvm9/ChooseMSVCCRT.cmake usr/lib/cmake/llvm9/CheckLinkerFlag.cmake usr/lib/cmake/llvm9/LLVMConfig.cmake usr/lib/cmake/llvm9/LLVMInstallSymlink.cmake usr/lib/cmake/llvm9/GenerateVersionFromVCS.cmake usr/lib/cmake/llvm9/FindSphinx.cmake usr/lib/cmake/llvm9/CheckAtomic.cmake usr/lib/cmake/llvm9/HandleLLVMOptions.cmake usr/lib/cmake/llvm9/UseLibtool.cmake usr/lib/cmake/llvm9/FindOCaml.cmake usr/lib/cmake/llvm9/LLVM-Config.cmake usr/lib/cmake/llvm9/FindLibpfm.cmake usr/lib/cmake/llvm9/VersionFromVCS.cmake usr/lib/cmake/llvm9/AddOCaml.cmake usr/lib/cmake/llvm9/AddLLVMDefinitions.cmake usr/lib/cmake/llvm9/LLVMExternalProjectUtils.cmake usr/lib/cmake/llvm9/LLVMDistributionSupport.cmake usr/lib/cmake/llvm9/TableGen.cmake usr/lib/cmake/llvm9/DetermineGCCCompatible.cmake usr/lib/cmake/llvm9/AddSphinxTarget.cmake usr/lib/cmake/llvm9/LLVMExports.cmake usr/lib/cmake/llvm9/LLVMExports-minsizerel.cmake usr/lib/cmake/llvm9/HandleLLVMStdlib.cmake usr/lib/cmake/llvm9/FindZ3.cmake usr/lib/cmake/llvm9/LLVMConfigVersion.cmake usr/lib/cmake/llvm9/CrossCompile.cmake usr/lib/cmake/llvm9/LLVMProcessSources.cmake usr/include/llvm9/llvm/LinkAllIR.h usr/include/llvm9/llvm/PassSupport.h usr/include/llvm9/llvm/Pass.h usr/include/llvm9/llvm/PassInfo.h usr/include/llvm9/llvm/LinkAllPasses.h usr/include/llvm9/llvm/PassRegistry.h usr/include/llvm9/llvm/PassAnalysisSupport.h usr/include/llvm9/llvm/InitializePasses.h usr/include/llvm9/llvm/Object/ModuleSymbolTable.h usr/include/llvm9/llvm/Object/MachO.h usr/include/llvm9/llvm/Object/MachOUniversal.h usr/include/llvm9/llvm/Object/RelocationResolver.h usr/include/llvm9/llvm/Object/StackMapParser.h usr/include/llvm9/llvm/Object/ELF.h usr/include/llvm9/llvm/Object/ObjectFile.h usr/include/llvm9/llvm/Object/COFFImportFile.h usr/include/llvm9/llvm/Object/IRSymtab.h usr/include/llvm9/llvm/Object/IRObjectFile.h usr/include/llvm9/llvm/Object/WindowsResource.h usr/include/llvm9/llvm/Object/ELFTypes.h usr/include/llvm9/llvm/Object/Minidump.h usr/include/llvm9/llvm/Object/SymbolSize.h usr/include/llvm9/llvm/Object/Decompressor.h usr/include/llvm9/llvm/Object/XCOFFObjectFile.h usr/include/llvm9/llvm/Object/CVDebugRecord.h usr/include/llvm9/llvm/Object/Wasm.h usr/include/llvm9/llvm/Object/ArchiveWriter.h usr/include/llvm9/llvm/Object/Binary.h usr/include/llvm9/llvm/Object/COFF.h usr/include/llvm9/llvm/Object/WindowsMachineFlag.h usr/include/llvm9/llvm/Object/Archive.h usr/include/llvm9/llvm/Object/SymbolicFile.h usr/include/llvm9/llvm/Object/WasmTraits.h usr/include/llvm9/llvm/Object/COFFModuleDefinition.h usr/include/llvm9/llvm/Object/ELFObjectFile.h usr/include/llvm9/llvm/Object/Error.h usr/include/llvm9/llvm/Support/MachineValueType.h usr/include/llvm9/llvm/Support/LowLevelTypeImpl.h usr/include/llvm9/llvm/Support/Memory.h usr/include/llvm9/llvm/Support/CRC.h usr/include/llvm9/llvm/Support/CBindingWrapping.h usr/include/llvm9/llvm/Support/GraphWriter.h usr/include/llvm9/llvm/Support/CodeGenCoverage.h usr/include/llvm9/llvm/Support/SaveAndRestore.h usr/include/llvm9/llvm/Support/Signposts.h usr/include/llvm9/llvm/Support/ARMTargetParser.def usr/include/llvm9/llvm/Support/Parallel.h usr/include/llvm9/llvm/Support/TimeProfiler.h usr/include/llvm9/llvm/Support/KnownBits.h usr/include/llvm9/llvm/Support/FileCheck.h usr/include/llvm9/llvm/Support/CrashRecoveryContext.h usr/include/llvm9/llvm/Support/Valgrind.h usr/include/llvm9/llvm/Support/MathExtras.h usr/include/llvm9/llvm/Support/Options.h usr/include/llvm9/llvm/Support/ARMBuildAttributes.h usr/include/llvm9/llvm/Support/Endian.h usr/include/llvm9/llvm/Support/Signals.h usr/include/llvm9/llvm/Support/TypeName.h usr/include/llvm9/llvm/Support/MD5.h usr/include/llvm9/llvm/Support/ARMTargetParser.h usr/include/llvm9/llvm/Support/UniqueLock.h usr/include/llvm9/llvm/Support/FormattedStream.h usr/include/llvm9/llvm/Support/TargetParser.h usr/include/llvm9/llvm/Support/GlobPattern.h usr/include/llvm9/llvm/Support/Process.h usr/include/llvm9/llvm/Support/FileOutputBuffer.h usr/include/llvm9/llvm/Support/MutexGuard.h usr/include/llvm9/llvm/Support/BinaryStreamRef.h usr/include/llvm9/llvm/Support/Printable.h usr/include/llvm9/llvm/Support/Path.h usr/include/llvm9/llvm/Support/TargetOpcodes.def usr/include/llvm9/llvm/Support/BinaryStreamWriter.h usr/include/llvm9/llvm/Support/Compiler.h usr/include/llvm9/llvm/Support/MemoryBuffer.h usr/include/llvm9/llvm/Support/SwapByteOrder.h usr/include/llvm9/llvm/Support/OnDiskHashTable.h usr/include/llvm9/llvm/Support/WithColor.h usr/include/llvm9/llvm/Support/TrailingObjects.h usr/include/llvm9/llvm/Support/xxhash.h usr/include/llvm9/llvm/Support/CommandLine.h usr/include/llvm9/llvm/Support/X86DisassemblerDecoderCommon.h usr/include/llvm9/llvm/Support/COM.h usr/include/llvm9/llvm/Support/Atomic.h usr/include/llvm9/llvm/Support/TrigramIndex.h usr/include/llvm9/llvm/Support/UnicodeCharRanges.h usr/include/llvm9/llvm/Support/Watchdog.h usr/include/llvm9/llvm/Support/ErrorHandling.h usr/include/llvm9/llvm/Support/AMDGPUMetadata.h usr/include/llvm9/llvm/Support/ARMAttributeParser.h usr/include/llvm9/llvm/Support/RWMutex.h usr/include/llvm9/llvm/Support/Program.h usr/include/llvm9/llvm/Support/Locale.h usr/include/llvm9/llvm/Support/Allocator.h usr/include/llvm9/llvm/Support/BuryPointer.h usr/include/llvm9/llvm/Support/FormatCommon.h usr/include/llvm9/llvm/Support/NativeFormatting.h usr/include/llvm9/llvm/Support/BinaryStreamError.h usr/include/llvm9/llvm/Support/DJB.h usr/include/llvm9/llvm/Support/GenericDomTree.h usr/include/llvm9/llvm/Support/AtomicOrdering.h usr/include/llvm9/llvm/Support/Regex.h usr/include/llvm9/llvm/Support/ARMEHABI.h usr/include/llvm9/llvm/Support/raw_sha1_ostream.h usr/include/llvm9/llvm/Support/Host.h usr/include/llvm9/llvm/Support/MSVCErrorWorkarounds.h usr/include/llvm9/llvm/Support/ThreadPool.h usr/include/llvm9/llvm/Support/MemAlloc.h usr/include/llvm9/llvm/Support/raw_ostream.h usr/include/llvm9/llvm/Support/ARMWinEH.h usr/include/llvm9/llvm/Support/raw_os_ostream.h usr/include/llvm9/llvm/Support/FileUtilities.h usr/include/llvm9/llvm/Support/Unicode.h usr/include/llvm9/llvm/Support/Chrono.h usr/include/llvm9/llvm/Support/SpecialCaseList.h usr/include/llvm9/llvm/Support/BinaryStreamArray.h usr/include/llvm9/llvm/Support/RandomNumberGenerator.h usr/include/llvm9/llvm/Support/BinaryByteStream.h usr/include/llvm9/llvm/Support/type_traits.h usr/include/llvm9/llvm/Support/FormatVariadicDetails.h usr/include/llvm9/llvm/Support/YAMLTraits.h usr/include/llvm9/llvm/Support/ArrayRecycler.h usr/include/llvm9/llvm/Support/X86TargetParser.def usr/include/llvm9/llvm/Support/StringSaver.h usr/include/llvm9/llvm/Support/DataTypes.h usr/include/llvm9/llvm/Support/AArch64TargetParser.h usr/include/llvm9/llvm/Support/SystemUtils.h usr/include/llvm9/llvm/Support/BinaryStream.h usr/include/llvm9/llvm/Support/Errno.h usr/include/llvm9/llvm/Support/StringPool.h usr/include/llvm9/llvm/Support/FormatVariadic.h usr/include/llvm9/llvm/Support/Registry.h usr/include/llvm9/llvm/Support/SHA1.h usr/include/llvm9/llvm/Support/Timer.h usr/include/llvm9/llvm/Support/LICENSE.TXT usr/include/llvm9/llvm/Support/PluginLoader.h usr/include/llvm9/llvm/Support/GenericIteratedDominanceFrontier.h usr/include/llvm9/llvm/Support/InitLLVM.h usr/include/llvm9/llvm/Support/WindowsError.h usr/include/llvm9/llvm/Support/AArch64TargetParser.def usr/include/llvm9/llvm/Support/CFGUpdate.h usr/include/llvm9/llvm/Support/Mutex.h usr/include/llvm9/llvm/Support/MipsABIFlags.h usr/include/llvm9/llvm/Support/Win64EH.h usr/include/llvm9/llvm/Support/ThreadLocal.h usr/include/llvm9/llvm/Support/PointerLikeTypeTraits.h usr/include/llvm9/llvm/Support/TaskQueue.h usr/include/llvm9/llvm/Support/AMDHSAKernelDescriptor.h usr/include/llvm9/llvm/Support/ScopedPrinter.h usr/include/llvm9/llvm/Support/JamCRC.h usr/include/llvm9/llvm/Support/PrettyStackTrace.h usr/include/llvm9/llvm/Support/ScalableSize.h usr/include/llvm9/llvm/Support/ScaledNumber.h usr/include/llvm9/llvm/Support/SMTAPI.h usr/include/llvm9/llvm/Support/DynamicLibrary.h usr/include/llvm9/llvm/Support/SourceMgr.h usr/include/llvm9/llvm/Support/CachePruning.h usr/include/llvm9/llvm/Support/VersionTuple.h usr/include/llvm9/llvm/Support/Casting.h usr/include/llvm9/llvm/Support/BranchProbability.h usr/include/llvm9/llvm/Support/SmallVectorMemoryBuffer.h usr/include/llvm9/llvm/Support/ToolOutputFile.h usr/include/llvm9/llvm/Support/BinaryItemStream.h usr/include/llvm9/llvm/Support/Errc.h usr/include/llvm9/llvm/Support/Debug.h usr/include/llvm9/llvm/Support/ErrorOr.h usr/include/llvm9/llvm/Support/DOTGraphTraits.h usr/include/llvm9/llvm/Support/RecyclingAllocator.h usr/include/llvm9/llvm/Support/FormatAdapters.h usr/include/llvm9/llvm/Support/circular_raw_ostream.h usr/include/llvm9/llvm/Support/LEB128.h usr/include/llvm9/llvm/Support/JSON.h usr/include/llvm9/llvm/Support/Format.h usr/include/llvm9/llvm/Support/AlignOf.h usr/include/llvm9/llvm/Support/SMLoc.h usr/include/llvm9/llvm/Support/VirtualFileSystem.h usr/include/llvm9/llvm/Support/ItaniumManglingCanonicalizer.h usr/include/llvm9/llvm/Support/TarWriter.h usr/include/llvm9/llvm/Support/ConvertUTF.h usr/include/llvm9/llvm/Support/Capacity.h usr/include/llvm9/llvm/Support/BinaryStreamReader.h usr/include/llvm9/llvm/Support/ReverseIteration.h usr/include/llvm9/llvm/Support/CodeGen.h usr/include/llvm9/llvm/Support/EndianStream.h usr/include/llvm9/llvm/Support/GenericDomTreeConstruction.h usr/include/llvm9/llvm/Support/TargetSelect.h usr/include/llvm9/llvm/Support/Recycler.h usr/include/llvm9/llvm/Support/TargetRegistry.h usr/include/llvm9/llvm/Support/FileSystem.h usr/include/llvm9/llvm/Support/DebugCounter.h usr/include/llvm9/llvm/Support/Compression.h usr/include/llvm9/llvm/Support/DataExtractor.h usr/include/llvm9/llvm/Support/LineIterator.h usr/include/llvm9/llvm/Support/BlockFrequency.h usr/include/llvm9/llvm/Support/Threading.h usr/include/llvm9/llvm/Support/VCSRevision.h usr/include/llvm9/llvm/Support/ManagedStatic.h usr/include/llvm9/llvm/Support/thread.h usr/include/llvm9/llvm/Support/FormatProviders.h usr/include/llvm9/llvm/Support/YAMLParser.h usr/include/llvm9/llvm/Support/CheckedArithmetic.h usr/include/llvm9/llvm/Support/LockFileManager.h usr/include/llvm9/llvm/Support/Error.h usr/include/llvm9/llvm/Support/SymbolRemappingReader.h usr/include/llvm9/llvm/Support/Solaris/sys/regset.h usr/include/llvm9/llvm/WindowsResource/ResourceScriptTokenList.h usr/include/llvm9/llvm/WindowsResource/ResourceProcessor.h usr/include/llvm9/llvm/WindowsResource/ResourceScriptToken.h usr/include/llvm9/llvm/Target/TargetItinerary.td usr/include/llvm9/llvm/Target/TargetMachine.h usr/include/llvm9/llvm/Target/TargetSchedule.td usr/include/llvm9/llvm/Target/GenericOpcodes.td usr/include/llvm9/llvm/Target/TargetInstrPredicate.td usr/include/llvm9/llvm/Target/TargetOptions.h usr/include/llvm9/llvm/Target/TargetIntrinsicInfo.h usr/include/llvm9/llvm/Target/TargetSelectionDAG.td usr/include/llvm9/llvm/Target/CodeGenCWrappers.h usr/include/llvm9/llvm/Target/TargetCallingConv.td usr/include/llvm9/llvm/Target/TargetPfmCounters.td usr/include/llvm9/llvm/Target/Target.td usr/include/llvm9/llvm/Target/TargetLoweringObjectFile.h usr/include/llvm9/llvm/Target/GlobalISel/RegisterBank.td usr/include/llvm9/llvm/Target/GlobalISel/Target.td usr/include/llvm9/llvm/Target/GlobalISel/SelectionDAGCompat.td usr/include/llvm9/llvm/BinaryFormat/XCOFF.h usr/include/llvm9/llvm/BinaryFormat/MachO.h usr/include/llvm9/llvm/BinaryFormat/Dwarf.def usr/include/llvm9/llvm/BinaryFormat/MsgPack.def usr/include/llvm9/llvm/BinaryFormat/ELF.h usr/include/llvm9/llvm/BinaryFormat/Magic.h usr/include/llvm9/llvm/BinaryFormat/DynamicTags.def usr/include/llvm9/llvm/BinaryFormat/Minidump.h usr/include/llvm9/llvm/BinaryFormat/AMDGPUMetadataVerifier.h usr/include/llvm9/llvm/BinaryFormat/MsgPackReader.h usr/include/llvm9/llvm/BinaryFormat/Dwarf.h usr/include/llvm9/llvm/BinaryFormat/MinidumpConstants.def usr/include/llvm9/llvm/BinaryFormat/Wasm.h usr/include/llvm9/llvm/BinaryFormat/MsgPack.h usr/include/llvm9/llvm/BinaryFormat/COFF.h usr/include/llvm9/llvm/BinaryFormat/MsgPackWriter.h usr/include/llvm9/llvm/BinaryFormat/WasmRelocs.def usr/include/llvm9/llvm/BinaryFormat/MsgPackDocument.h usr/include/llvm9/llvm/BinaryFormat/MachO.def usr/include/llvm9/llvm/BinaryFormat/ELFRelocs/MSP430.def usr/include/llvm9/llvm/BinaryFormat/ELFRelocs/Lanai.def usr/include/llvm9/llvm/BinaryFormat/ELFRelocs/AMDGPU.def usr/include/llvm9/llvm/BinaryFormat/ELFRelocs/AArch64.def usr/include/llvm9/llvm/BinaryFormat/ELFRelocs/Sparc.def usr/include/llvm9/llvm/BinaryFormat/ELFRelocs/BPF.def usr/include/llvm9/llvm/BinaryFormat/ELFRelocs/AVR.def usr/include/llvm9/llvm/BinaryFormat/ELFRelocs/SystemZ.def usr/include/llvm9/llvm/BinaryFormat/ELFRelocs/ARM.def usr/include/llvm9/llvm/BinaryFormat/ELFRelocs/x86_64.def usr/include/llvm9/llvm/BinaryFormat/ELFRelocs/PowerPC64.def usr/include/llvm9/llvm/BinaryFormat/ELFRelocs/Mips.def usr/include/llvm9/llvm/BinaryFormat/ELFRelocs/RISCV.def usr/include/llvm9/llvm/BinaryFormat/ELFRelocs/Hexagon.def usr/include/llvm9/llvm/BinaryFormat/ELFRelocs/ARC.def usr/include/llvm9/llvm/BinaryFormat/ELFRelocs/PowerPC.def usr/include/llvm9/llvm/BinaryFormat/ELFRelocs/i386.def usr/include/llvm9/llvm/Remarks/RemarkSerializer.h usr/include/llvm9/llvm/Remarks/RemarkStringTable.h usr/include/llvm9/llvm/Remarks/RemarkParser.h usr/include/llvm9/llvm/Remarks/Remark.h usr/include/llvm9/llvm/Remarks/RemarkFormat.h usr/include/llvm9/llvm/TableGen/TableGenBackend.h usr/include/llvm9/llvm/TableGen/Main.h usr/include/llvm9/llvm/TableGen/StringToOffsetTable.h usr/include/llvm9/llvm/TableGen/StringMatcher.h usr/include/llvm9/llvm/TableGen/SearchableTable.td usr/include/llvm9/llvm/TableGen/Record.h usr/include/llvm9/llvm/TableGen/SetTheory.h usr/include/llvm9/llvm/TableGen/Error.h usr/include/llvm9/llvm/DebugInfo/DIContext.h usr/include/llvm9/llvm/DebugInfo/PDB/PDBSymbolFuncDebugEnd.h usr/include/llvm9/llvm/DebugInfo/PDB/PDBSymbolTypeBaseClass.h usr/include/llvm9/llvm/DebugInfo/PDB/PDBSymbolAnnotation.h usr/include/llvm9/llvm/DebugInfo/PDB/PDBSymbolCustom.h usr/include/llvm9/llvm/DebugInfo/PDB/PDBSymbolThunk.h usr/include/llvm9/llvm/DebugInfo/PDB/PDBSymbolTypeCustom.h usr/include/llvm9/llvm/DebugInfo/PDB/PDBSymbolData.h usr/include/llvm9/llvm/DebugInfo/PDB/PDBSymbolCompilandEnv.h usr/include/llvm9/llvm/DebugInfo/PDB/PDBSymbolFunc.h usr/include/llvm9/llvm/DebugInfo/PDB/PDBSymbolUnknown.h usr/include/llvm9/llvm/DebugInfo/PDB/IPDBTable.h usr/include/llvm9/llvm/DebugInfo/PDB/PDBSymbolTypeFunctionArg.h usr/include/llvm9/llvm/DebugInfo/PDB/PDBSymbolTypeManaged.h usr/include/llvm9/llvm/DebugInfo/PDB/GenericError.h usr/include/llvm9/llvm/DebugInfo/PDB/PDBExtras.h usr/include/llvm9/llvm/DebugInfo/PDB/IPDBInjectedSource.h usr/include/llvm9/llvm/DebugInfo/PDB/PDBSymbolUsingNamespace.h usr/include/llvm9/llvm/DebugInfo/PDB/IPDBDataStream.h usr/include/llvm9/llvm/DebugInfo/PDB/PDBSymbolTypeVTableShape.h usr/include/llvm9/llvm/DebugInfo/PDB/PDBSymbolFuncDebugStart.h usr/include/llvm9/llvm/DebugInfo/PDB/PDBSymbolTypeFunctionSig.h usr/include/llvm9/llvm/DebugInfo/PDB/IPDBEnumChildren.h usr/include/llvm9/llvm/DebugInfo/PDB/PDBTypes.h usr/include/llvm9/llvm/DebugInfo/PDB/ConcreteSymbolEnumerator.h usr/include/llvm9/llvm/DebugInfo/PDB/PDBSymbolTypeTypedef.h usr/include/llvm9/llvm/DebugInfo/PDB/PDBSymbolTypePointer.h usr/include/llvm9/llvm/DebugInfo/PDB/PDBSymbol.h usr/include/llvm9/llvm/DebugInfo/PDB/PDBContext.h usr/include/llvm9/llvm/DebugInfo/PDB/PDBSymbolTypeFriend.h usr/include/llvm9/llvm/DebugInfo/PDB/PDBSymbolBlock.h usr/include/llvm9/llvm/DebugInfo/PDB/PDBSymDumper.h usr/include/llvm9/llvm/DebugInfo/PDB/IPDBFrameData.h usr/include/llvm9/llvm/DebugInfo/PDB/PDBSymbolTypeVTable.h usr/include/llvm9/llvm/DebugInfo/PDB/PDBSymbolCompiland.h usr/include/llvm9/llvm/DebugInfo/PDB/PDBSymbolTypeEnum.h usr/include/llvm9/llvm/DebugInfo/PDB/IPDBSectionContrib.h usr/include/llvm9/llvm/DebugInfo/PDB/PDB.h usr/include/llvm9/llvm/DebugInfo/PDB/PDBSymbolTypeUDT.h usr/include/llvm9/llvm/DebugInfo/PDB/PDBSymbolLabel.h usr/include/llvm9/llvm/DebugInfo/PDB/IPDBSession.h usr/include/llvm9/llvm/DebugInfo/PDB/IPDBLineNumber.h usr/include/llvm9/llvm/DebugInfo/PDB/PDBSymbolTypeDimension.h usr/include/llvm9/llvm/DebugInfo/PDB/PDBSymbolTypeBuiltin.h usr/include/llvm9/llvm/DebugInfo/PDB/PDBSymbolTypeArray.h usr/include/llvm9/llvm/DebugInfo/PDB/PDBSymbolExe.h usr/include/llvm9/llvm/DebugInfo/PDB/IPDBRawSymbol.h usr/include/llvm9/llvm/DebugInfo/PDB/UDTLayout.h usr/include/llvm9/llvm/DebugInfo/PDB/PDBSymbolPublicSymbol.h usr/include/llvm9/llvm/DebugInfo/PDB/PDBSymbolCompilandDetails.h usr/include/llvm9/llvm/DebugInfo/PDB/IPDBSourceFile.h usr/include/llvm9/llvm/DebugInfo/PDB/DIA/DIAEnumFrameData.h usr/include/llvm9/llvm/DebugInfo/PDB/DIA/DIAEnumDebugStreams.h usr/include/llvm9/llvm/DebugInfo/PDB/DIA/DIAEnumSymbols.h usr/include/llvm9/llvm/DebugInfo/PDB/DIA/DIADataStream.h usr/include/llvm9/llvm/DebugInfo/PDB/DIA/DIAInjectedSource.h usr/include/llvm9/llvm/DebugInfo/PDB/DIA/DIAEnumTables.h usr/include/llvm9/llvm/DebugInfo/PDB/DIA/DIAEnumSectionContribs.h usr/include/llvm9/llvm/DebugInfo/PDB/DIA/DIAEnumSourceFiles.h usr/include/llvm9/llvm/DebugInfo/PDB/DIA/DIARawSymbol.h usr/include/llvm9/llvm/DebugInfo/PDB/DIA/DIATable.h usr/include/llvm9/llvm/DebugInfo/PDB/DIA/DIAUtils.h usr/include/llvm9/llvm/DebugInfo/PDB/DIA/DIAEnumInjectedSources.h usr/include/llvm9/llvm/DebugInfo/PDB/DIA/DIAFrameData.h usr/include/llvm9/llvm/DebugInfo/PDB/DIA/DIASectionContrib.h usr/include/llvm9/llvm/DebugInfo/PDB/DIA/DIALineNumber.h usr/include/llvm9/llvm/DebugInfo/PDB/DIA/DIASourceFile.h usr/include/llvm9/llvm/DebugInfo/PDB/DIA/DIASession.h usr/include/llvm9/llvm/DebugInfo/PDB/DIA/DIAError.h usr/include/llvm9/llvm/DebugInfo/PDB/DIA/DIASupport.h usr/include/llvm9/llvm/DebugInfo/PDB/DIA/DIAEnumLineNumbers.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/ModuleDebugStream.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/ISectionContribVisitor.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/InjectedSourceStream.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/SymbolCache.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/PublicsStream.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/InfoStream.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/EnumTables.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/TpiStreamBuilder.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/NativeSession.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/HashTable.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/RawError.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/NativeTypeArray.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/DbiModuleList.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/NativeEnumTypes.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/NativeCompilandSymbol.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/TpiStream.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/PDBStringTable.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/DbiStream.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/GlobalsStream.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/NativeTypeTypedef.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/NativeEnumGlobals.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/NativeTypeFunctionSig.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/Formatters.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/NativeTypeEnum.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/TpiHashing.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/NativeTypeVTShape.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/Hash.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/DbiModuleDescriptor.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/NativeRawSymbol.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/NativeTypeUDT.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/NamedStreamMap.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/RawTypes.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/InfoStreamBuilder.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/DbiStreamBuilder.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/NativeSymbolEnumerator.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/NativeTypeBuiltin.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/NativeEnumInjectedSources.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/NativeTypePointer.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/PDBFile.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/NativeEnumModules.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/SymbolStream.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/NativeExeSymbol.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/GSIStreamBuilder.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/PDBFileBuilder.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/RawConstants.h usr/include/llvm9/llvm/DebugInfo/PDB/Native/PDBStringTableBuilder.h usr/include/llvm9/llvm/DebugInfo/MSF/MappedBlockStream.h usr/include/llvm9/llvm/DebugInfo/MSF/MSFBuilder.h usr/include/llvm9/llvm/DebugInfo/MSF/MSFCommon.h usr/include/llvm9/llvm/DebugInfo/MSF/MSFError.h usr/include/llvm9/llvm/DebugInfo/MSF/IMSFFile.h usr/include/llvm9/llvm/DebugInfo/GSYM/StringTable.h usr/include/llvm9/llvm/DebugInfo/GSYM/FunctionInfo.h usr/include/llvm9/llvm/DebugInfo/GSYM/FileEntry.h usr/include/llvm9/llvm/DebugInfo/GSYM/Range.h usr/include/llvm9/llvm/DebugInfo/GSYM/LineEntry.h usr/include/llvm9/llvm/DebugInfo/GSYM/InlineInfo.h usr/include/llvm9/llvm/DebugInfo/DWARF/DWARFListTable.h usr/include/llvm9/llvm/DebugInfo/DWARF/DWARFDebugArangeSet.h usr/include/llvm9/llvm/DebugInfo/DWARF/DWARFAcceleratorTable.h usr/include/llvm9/llvm/DebugInfo/DWARF/DWARFDebugAddr.h usr/include/llvm9/llvm/DebugInfo/DWARF/DWARFDebugRangeList.h usr/include/llvm9/llvm/DebugInfo/DWARF/DWARFDebugRnglists.h usr/include/llvm9/llvm/DebugInfo/DWARF/DWARFDebugLine.h usr/include/llvm9/llvm/DebugInfo/DWARF/DWARFGdbIndex.h usr/include/llvm9/llvm/DebugInfo/DWARF/DWARFSection.h usr/include/llvm9/llvm/DebugInfo/DWARF/DWARFRelocMap.h usr/include/llvm9/llvm/DebugInfo/DWARF/DWARFUnitIndex.h usr/include/llvm9/llvm/DebugInfo/DWARF/DWARFCompileUnit.h usr/include/llvm9/llvm/DebugInfo/DWARF/DWARFDebugInfoEntry.h usr/include/llvm9/llvm/DebugInfo/DWARF/DWARFAddressRange.h usr/include/llvm9/llvm/DebugInfo/DWARF/DWARFVerifier.h usr/include/llvm9/llvm/DebugInfo/DWARF/DWARFDataExtractor.h usr/include/llvm9/llvm/DebugInfo/DWARF/DWARFDebugAbbrev.h usr/include/llvm9/llvm/DebugInfo/DWARF/DWARFUnit.h usr/include/llvm9/llvm/DebugInfo/DWARF/DWARFTypeUnit.h usr/include/llvm9/llvm/DebugInfo/DWARF/DWARFFormValue.h usr/include/llvm9/llvm/DebugInfo/DWARF/DWARFAbbreviationDeclaration.h usr/include/llvm9/llvm/DebugInfo/DWARF/DWARFContext.h usr/include/llvm9/llvm/DebugInfo/DWARF/DWARFObject.h usr/include/llvm9/llvm/DebugInfo/DWARF/DWARFDebugPubTable.h usr/include/llvm9/llvm/DebugInfo/DWARF/DWARFDebugAranges.h usr/include/llvm9/llvm/DebugInfo/DWARF/DWARFAttribute.h usr/include/llvm9/llvm/DebugInfo/DWARF/DWARFDebugLoc.h usr/include/llvm9/llvm/DebugInfo/DWARF/DWARFDebugMacro.h usr/include/llvm9/llvm/DebugInfo/DWARF/DWARFDie.h usr/include/llvm9/llvm/DebugInfo/DWARF/DWARFDebugFrame.h usr/include/llvm9/llvm/DebugInfo/DWARF/DWARFExpression.h usr/include/llvm9/llvm/DebugInfo/CodeView/TypeHashing.h usr/include/llvm9/llvm/DebugInfo/CodeView/CodeView.h usr/include/llvm9/llvm/DebugInfo/CodeView/TypeVisitorCallbackPipeline.h usr/include/llvm9/llvm/DebugInfo/CodeView/StringsAndChecksums.h usr/include/llvm9/llvm/DebugInfo/CodeView/TypeSymbolEmitter.h usr/include/llvm9/llvm/DebugInfo/CodeView/SymbolDumper.h usr/include/llvm9/llvm/DebugInfo/CodeView/EnumTables.h usr/include/llvm9/llvm/DebugInfo/CodeView/SymbolVisitorDelegate.h usr/include/llvm9/llvm/DebugInfo/CodeView/SymbolRecord.h usr/include/llvm9/llvm/DebugInfo/CodeView/TypeIndex.h usr/include/llvm9/llvm/DebugInfo/CodeView/DebugFrameDataSubsection.h usr/include/llvm9/llvm/DebugInfo/CodeView/DebugSubsectionRecord.h usr/include/llvm9/llvm/DebugInfo/CodeView/SymbolRecordHelpers.h usr/include/llvm9/llvm/DebugInfo/CodeView/GUID.h usr/include/llvm9/llvm/DebugInfo/CodeView/TypeRecord.h usr/include/llvm9/llvm/DebugInfo/CodeView/TypeStreamMerger.h usr/include/llvm9/llvm/DebugInfo/CodeView/TypeIndexDiscovery.h usr/include/llvm9/llvm/DebugInfo/CodeView/SymbolVisitorCallbackPipeline.h usr/include/llvm9/llvm/DebugInfo/CodeView/SymbolDumpDelegate.h usr/include/llvm9/llvm/DebugInfo/CodeView/DebugSymbolsSubsection.h usr/include/llvm9/llvm/DebugInfo/CodeView/TypeTableCollection.h usr/include/llvm9/llvm/DebugInfo/CodeView/AppendingTypeTableBuilder.h usr/include/llvm9/llvm/DebugInfo/CodeView/SimpleTypeSerializer.h usr/include/llvm9/llvm/DebugInfo/CodeView/Formatters.h usr/include/llvm9/llvm/DebugInfo/CodeView/TypeVisitorCallbacks.h usr/include/llvm9/llvm/DebugInfo/CodeView/CodeViewTypes.def usr/include/llvm9/llvm/DebugInfo/CodeView/DebugCrossImpSubsection.h usr/include/llvm9/llvm/DebugInfo/CodeView/CodeViewRegisters.def usr/include/llvm9/llvm/DebugInfo/CodeView/SymbolSerializer.h usr/include/llvm9/llvm/DebugInfo/CodeView/DebugInlineeLinesSubsection.h usr/include/llvm9/llvm/DebugInfo/CodeView/SymbolVisitorCallbacks.h usr/include/llvm9/llvm/DebugInfo/CodeView/CodeViewSymbols.def usr/include/llvm9/llvm/DebugInfo/CodeView/RecordSerialization.h usr/include/llvm9/llvm/DebugInfo/CodeView/TypeRecordMapping.h usr/include/llvm9/llvm/DebugInfo/CodeView/GlobalTypeTableBuilder.h usr/include/llvm9/llvm/DebugInfo/CodeView/DebugSubsection.h usr/include/llvm9/llvm/DebugInfo/CodeView/SymbolDeserializer.h usr/include/llvm9/llvm/DebugInfo/CodeView/DebugCrossExSubsection.h usr/include/llvm9/llvm/DebugInfo/CodeView/CVTypeVisitor.h usr/include/llvm9/llvm/DebugInfo/CodeView/RecordName.h usr/include/llvm9/llvm/DebugInfo/CodeView/DebugUnknownSubsection.h usr/include/llvm9/llvm/DebugInfo/CodeView/DebugStringTableSubsection.h usr/include/llvm9/llvm/DebugInfo/CodeView/DebugChecksumsSubsection.h usr/include/llvm9/llvm/DebugInfo/CodeView/CVRecord.h usr/include/llvm9/llvm/DebugInfo/CodeView/MergingTypeTableBuilder.h usr/include/llvm9/llvm/DebugInfo/CodeView/CodeViewRecordIO.h usr/include/llvm9/llvm/DebugInfo/CodeView/DebugSubsectionVisitor.h usr/include/llvm9/llvm/DebugInfo/CodeView/CVSymbolVisitor.h usr/include/llvm9/llvm/DebugInfo/CodeView/CodeViewError.h usr/include/llvm9/llvm/DebugInfo/CodeView/SymbolRecordMapping.h usr/include/llvm9/llvm/DebugInfo/CodeView/DebugSymbolRVASubsection.h usr/include/llvm9/llvm/DebugInfo/CodeView/TypeDumpVisitor.h usr/include/llvm9/llvm/DebugInfo/CodeView/FunctionId.h usr/include/llvm9/llvm/DebugInfo/CodeView/ContinuationRecordBuilder.h usr/include/llvm9/llvm/DebugInfo/CodeView/DebugLinesSubsection.h usr/include/llvm9/llvm/DebugInfo/CodeView/TypeRecordHelpers.h usr/include/llvm9/llvm/DebugInfo/CodeView/TypeDeserializer.h usr/include/llvm9/llvm/DebugInfo/CodeView/Line.h usr/include/llvm9/llvm/DebugInfo/CodeView/TypeCollection.h usr/include/llvm9/llvm/DebugInfo/CodeView/LazyRandomTypeCollection.h usr/include/llvm9/llvm/DebugInfo/Symbolize/Symbolize.h usr/include/llvm9/llvm/DebugInfo/Symbolize/DIPrinter.h usr/include/llvm9/llvm/DebugInfo/Symbolize/SymbolizableModule.h usr/include/llvm9/llvm/TextAPI/MachO/TextAPIReader.h usr/include/llvm9/llvm/TextAPI/MachO/ArchitectureSet.h usr/include/llvm9/llvm/TextAPI/MachO/TextAPIWriter.h usr/include/llvm9/llvm/TextAPI/MachO/Symbol.h usr/include/llvm9/llvm/TextAPI/MachO/Architecture.h usr/include/llvm9/llvm/TextAPI/MachO/PackedVersion.h usr/include/llvm9/llvm/TextAPI/MachO/Architecture.def usr/include/llvm9/llvm/TextAPI/MachO/InterfaceFile.h usr/include/llvm9/llvm/TextAPI/ELF/TBEHandler.h usr/include/llvm9/llvm/TextAPI/ELF/ELFStub.h usr/include/llvm9/llvm/Bitstream/BitCodes.h usr/include/llvm9/llvm/Bitstream/BitstreamReader.h usr/include/llvm9/llvm/Bitstream/BitstreamWriter.h usr/include/llvm9/llvm/IR/Constants.h usr/include/llvm9/llvm/IR/RemarkStreamer.h usr/include/llvm9/llvm/IR/Attributes.inc usr/include/llvm9/llvm/IR/DIBuilder.h usr/include/llvm9/llvm/IR/IntrinsicsRISCV.td usr/include/llvm9/llvm/IR/GlobalVariable.h usr/include/llvm9/llvm/IR/Value.h usr/include/llvm9/llvm/IR/IntrinsicsAArch64.td usr/include/llvm9/llvm/IR/Use.h usr/include/llvm9/llvm/IR/AutoUpgrade.h usr/include/llvm9/llvm/IR/DebugInfoMetadata.h usr/include/llvm9/llvm/IR/SymbolTableListTraits.h usr/include/llvm9/llvm/IR/IRBuilder.h usr/include/llvm9/llvm/IR/BasicBlock.h usr/include/llvm9/llvm/IR/Instruction.def usr/include/llvm9/llvm/IR/PassTimingInfo.h usr/include/llvm9/llvm/IR/GlobalValue.h usr/include/llvm9/llvm/IR/Statepoint.h usr/include/llvm9/llvm/IR/PassManagerInternal.h usr/include/llvm9/llvm/IR/InstVisitor.h usr/include/llvm9/llvm/IR/IRPrintingPasses.h usr/include/llvm9/llvm/IR/SafepointIRVerifier.h usr/include/llvm9/llvm/IR/Attributes.td usr/include/llvm9/llvm/IR/DebugInfo.h usr/include/llvm9/llvm/IR/InstIterator.h usr/include/llvm9/llvm/IR/Type.h usr/include/llvm9/llvm/IR/IntrinsicsNVVM.td usr/include/llvm9/llvm/IR/DiagnosticInfo.h usr/include/llvm9/llvm/IR/Value.def usr/include/llvm9/llvm/IR/Instructions.h usr/include/llvm9/llvm/IR/ValueSymbolTable.h usr/include/llvm9/llvm/IR/DerivedUser.h usr/include/llvm9/llvm/IR/Attributes.h usr/include/llvm9/llvm/IR/GlobalIFunc.h usr/include/llvm9/llvm/IR/AssemblyAnnotationWriter.h usr/include/llvm9/llvm/IR/Intrinsics.td usr/include/llvm9/llvm/IR/IntrinsicsXCore.td usr/include/llvm9/llvm/IR/Verifier.h usr/include/llvm9/llvm/IR/GlobalObject.h usr/include/llvm9/llvm/IR/Intrinsics.h usr/include/llvm9/llvm/IR/IntrinsicsBPF.td usr/include/llvm9/llvm/IR/Function.h usr/include/llvm9/llvm/IR/LegacyPassManager.h usr/include/llvm9/llvm/IR/RuntimeLibcalls.def usr/include/llvm9/llvm/IR/OperandTraits.h usr/include/llvm9/llvm/IR/PatternMatch.h usr/include/llvm9/llvm/IR/Mangler.h usr/include/llvm9/llvm/IR/DebugInfoFlags.def usr/include/llvm9/llvm/IR/DebugLoc.h usr/include/llvm9/llvm/IR/Argument.h usr/include/llvm9/llvm/IR/Metadata.def usr/include/llvm9/llvm/IR/IntrinsicsHexagon.td usr/include/llvm9/llvm/IR/ConstantRange.h usr/include/llvm9/llvm/IR/OptBisect.h usr/include/llvm9/llvm/IR/IntrinsicsX86.td usr/include/llvm9/llvm/IR/IntrinsicsSystemZ.td usr/include/llvm9/llvm/IR/UseListOrder.h usr/include/llvm9/llvm/IR/Instruction.h usr/include/llvm9/llvm/IR/ModuleSummaryIndex.h usr/include/llvm9/llvm/IR/InlineAsm.h usr/include/llvm9/llvm/IR/DiagnosticPrinter.h usr/include/llvm9/llvm/IR/TrackingMDRef.h usr/include/llvm9/llvm/IR/CFG.h usr/include/llvm9/llvm/IR/CallingConv.h usr/include/llvm9/llvm/IR/IntrinsicsWebAssembly.td usr/include/llvm9/llvm/IR/IntrinsicsMips.td usr/include/llvm9/llvm/IR/IntrinsicInst.h usr/include/llvm9/llvm/IR/ModuleSlotTracker.h usr/include/llvm9/llvm/IR/ProfileSummary.h usr/include/llvm9/llvm/IR/Operator.h usr/include/llvm9/llvm/IR/LegacyPassNameParser.h usr/include/llvm9/llvm/IR/ValueHandle.h usr/include/llvm9/llvm/IR/DiagnosticHandler.h usr/include/llvm9/llvm/IR/IntrinsicsPowerPC.td usr/include/llvm9/llvm/IR/IntrinsicEnums.inc usr/include/llvm9/llvm/IR/DerivedTypes.h usr/include/llvm9/llvm/IR/GetElementPtrTypeIterator.h usr/include/llvm9/llvm/IR/ConstantFolder.h usr/include/llvm9/llvm/IR/LLVMContext.h usr/include/llvm9/llvm/IR/GVMaterializer.h usr/include/llvm9/llvm/IR/PredIteratorCache.h usr/include/llvm9/llvm/IR/ModuleSummaryIndexYAML.h usr/include/llvm9/llvm/IR/NoFolder.h usr/include/llvm9/llvm/IR/CallSite.h usr/include/llvm9/llvm/IR/LegacyPassManagers.h usr/include/llvm9/llvm/IR/DataLayout.h usr/include/llvm9/llvm/IR/IntrinsicsAMDGPU.td usr/include/llvm9/llvm/IR/MDBuilder.h usr/include/llvm9/llvm/IR/IntrinsicImpl.inc usr/include/llvm9/llvm/IR/GlobalIndirectSymbol.h usr/include/llvm9/llvm/IR/PassInstrumentation.h usr/include/llvm9/llvm/IR/PassManager.h usr/include/llvm9/llvm/IR/Comdat.h usr/include/llvm9/llvm/IR/Dominators.h usr/include/llvm9/llvm/IR/ValueMap.h usr/include/llvm9/llvm/IR/CFGDiff.h usr/include/llvm9/llvm/IR/User.h usr/include/llvm9/llvm/IR/TypeFinder.h usr/include/llvm9/llvm/IR/Module.h usr/include/llvm9/llvm/IR/Constant.h usr/include/llvm9/llvm/IR/Metadata.h usr/include/llvm9/llvm/IR/IntrinsicsARM.td usr/include/llvm9/llvm/IR/InstrTypes.h usr/include/llvm9/llvm/IR/GlobalAlias.h usr/include/llvm9/llvm/IRReader/IRReader.h usr/include/llvm9/llvm/XRay/XRayRecord.h usr/include/llvm9/llvm/XRay/Graph.h usr/include/llvm9/llvm/XRay/FDRRecordConsumer.h usr/include/llvm9/llvm/XRay/FDRRecordProducer.h usr/include/llvm9/llvm/XRay/BlockPrinter.h usr/include/llvm9/llvm/XRay/FileHeaderReader.h usr/include/llvm9/llvm/XRay/Profile.h usr/include/llvm9/llvm/XRay/FDRTraceWriter.h usr/include/llvm9/llvm/XRay/FDRTraceExpander.h usr/include/llvm9/llvm/XRay/BlockVerifier.h usr/include/llvm9/llvm/XRay/YAMLXRayRecord.h usr/include/llvm9/llvm/XRay/FDRRecords.h usr/include/llvm9/llvm/XRay/FDRLogBuilder.h usr/include/llvm9/llvm/XRay/BlockIndexer.h usr/include/llvm9/llvm/XRay/Trace.h usr/include/llvm9/llvm/XRay/InstrumentationMap.h usr/include/llvm9/llvm/XRay/RecordPrinter.h usr/include/llvm9/llvm/ProfileData/SampleProfWriter.h usr/include/llvm9/llvm/ProfileData/InstrProfWriter.h usr/include/llvm9/llvm/ProfileData/InstrProfReader.h usr/include/llvm9/llvm/ProfileData/GCOV.h usr/include/llvm9/llvm/ProfileData/InstrProf.h usr/include/llvm9/llvm/ProfileData/ProfileCommon.h usr/include/llvm9/llvm/ProfileData/SampleProfReader.h usr/include/llvm9/llvm/ProfileData/InstrProfData.inc usr/include/llvm9/llvm/ProfileData/SampleProf.h usr/include/llvm9/llvm/ProfileData/Coverage/CoverageMappingReader.h usr/include/llvm9/llvm/ProfileData/Coverage/CoverageMappingWriter.h usr/include/llvm9/llvm/ProfileData/Coverage/CoverageMapping.h usr/include/llvm9/llvm/Config/Targets.def usr/include/llvm9/llvm/Config/abi-breaking.h usr/include/llvm9/llvm/Config/llvm-config.h usr/include/llvm9/llvm/Config/Disassemblers.def usr/include/llvm9/llvm/Config/AsmPrinters.def usr/include/llvm9/llvm/Config/AsmParsers.def usr/include/llvm9/llvm/Option/OptSpecifier.h usr/include/llvm9/llvm/Option/ArgList.h usr/include/llvm9/llvm/Option/Option.h usr/include/llvm9/llvm/Option/Arg.h usr/include/llvm9/llvm/Option/OptTable.h usr/include/llvm9/llvm/Option/OptParser.td usr/include/llvm9/llvm/Analysis/SparsePropagation.h usr/include/llvm9/llvm/Analysis/VecFuncs.def usr/include/llvm9/llvm/Analysis/ScalarEvolution.h usr/include/llvm9/llvm/Analysis/DominanceFrontier.h usr/include/llvm9/llvm/Analysis/MemorySSA.h usr/include/llvm9/llvm/Analysis/AssumptionCache.h usr/include/llvm9/llvm/Analysis/DomPrinter.h usr/include/llvm9/llvm/Analysis/TargetTransformInfoImpl.h usr/include/llvm9/llvm/Analysis/CaptureTracking.h usr/include/llvm9/llvm/Analysis/ProfileSummaryInfo.h usr/include/llvm9/llvm/Analysis/CFLAndersAliasAnalysis.h usr/include/llvm9/llvm/Analysis/DomTreeUpdater.h usr/include/llvm9/llvm/Analysis/CallGraphSCCPass.h usr/include/llvm9/llvm/Analysis/RegionInfoImpl.h usr/include/llvm9/llvm/Analysis/LoopIterator.h usr/include/llvm9/llvm/Analysis/LoopUnrollAnalyzer.h usr/include/llvm9/llvm/Analysis/DivergenceAnalysis.h usr/include/llvm9/llvm/Analysis/MemoryLocation.h usr/include/llvm9/llvm/Analysis/SyncDependenceAnalysis.h usr/include/llvm9/llvm/Analysis/ConstantFolding.h usr/include/llvm9/llvm/Analysis/LazyCallGraph.h usr/include/llvm9/llvm/Analysis/RegionPrinter.h usr/include/llvm9/llvm/Analysis/DemandedBits.h usr/include/llvm9/llvm/Analysis/DependenceAnalysis.h usr/include/llvm9/llvm/Analysis/LazyBlockFrequencyInfo.h usr/include/llvm9/llvm/Analysis/LazyBranchProbabilityInfo.h usr/include/llvm9/llvm/Analysis/GuardUtils.h usr/include/llvm9/llvm/Analysis/CodeMetrics.h usr/include/llvm9/llvm/Analysis/PHITransAddr.h usr/include/llvm9/llvm/Analysis/ObjCARCAnalysisUtils.h usr/include/llvm9/llvm/Analysis/LoopInfoImpl.h usr/include/llvm9/llvm/Analysis/TypeMetadataUtils.h usr/include/llvm9/llvm/Analysis/Interval.h usr/include/llvm9/llvm/Analysis/OrderedInstructions.h usr/include/llvm9/llvm/Analysis/AliasSetTracker.h usr/include/llvm9/llvm/Analysis/BasicAliasAnalysis.h usr/include/llvm9/llvm/Analysis/IndirectCallPromotionAnalysis.h usr/include/llvm9/llvm/Analysis/Passes.h usr/include/llvm9/llvm/Analysis/AliasAnalysis.h usr/include/llvm9/llvm/Analysis/RegionInfo.h usr/include/llvm9/llvm/Analysis/RegionIterator.h usr/include/llvm9/llvm/Analysis/BlockFrequencyInfo.h usr/include/llvm9/llvm/Analysis/ScalarEvolutionExpressions.h usr/include/llvm9/llvm/Analysis/CFLAliasAnalysisUtils.h usr/include/llvm9/llvm/Analysis/CallPrinter.h usr/include/llvm9/llvm/Analysis/IteratedDominanceFrontier.h usr/include/llvm9/llvm/Analysis/MemoryBuiltins.h usr/include/llvm9/llvm/Analysis/TargetLibraryInfo.h usr/include/llvm9/llvm/Analysis/ScalarEvolutionNormalization.h usr/include/llvm9/llvm/Analysis/InstructionSimplify.h usr/include/llvm9/llvm/Analysis/CallGraph.h usr/include/llvm9/llvm/Analysis/ModuleSummaryAnalysis.h usr/include/llvm9/llvm/Analysis/TargetTransformInfo.h usr/include/llvm9/llvm/Analysis/OrderedBasicBlock.h usr/include/llvm9/llvm/Analysis/TypeBasedAliasAnalysis.h usr/include/llvm9/llvm/Analysis/DominanceFrontierImpl.h usr/include/llvm9/llvm/Analysis/LoopPass.h usr/include/llvm9/llvm/Analysis/Lint.h usr/include/llvm9/llvm/Analysis/CmpInstAnalysis.h usr/include/llvm9/llvm/Analysis/LoopAnalysisManager.h usr/include/llvm9/llvm/Analysis/CFLSteensAliasAnalysis.h usr/include/llvm9/llvm/Analysis/AliasAnalysisEvaluator.h usr/include/llvm9/llvm/Analysis/BlockFrequencyInfoImpl.h usr/include/llvm9/llvm/Analysis/CFG.h usr/include/llvm9/llvm/Analysis/PhiValues.h usr/include/llvm9/llvm/Analysis/ObjCARCAliasAnalysis.h usr/include/llvm9/llvm/Analysis/LegacyDivergenceAnalysis.h usr/include/llvm9/llvm/Analysis/ScopedNoAliasAA.h usr/include/llvm9/llvm/Analysis/DOTGraphTraitsPass.h usr/include/llvm9/llvm/Analysis/RegionPass.h usr/include/llvm9/llvm/Analysis/PostDominators.h usr/include/llvm9/llvm/Analysis/SyntheticCountsUtils.h usr/include/llvm9/llvm/Analysis/IVUsers.h usr/include/llvm9/llvm/Analysis/ObjCARCInstKind.h usr/include/llvm9/llvm/Analysis/CFGPrinter.h usr/include/llvm9/llvm/Analysis/InstructionPrecedenceTracking.h usr/include/llvm9/llvm/Analysis/ScalarEvolutionAliasAnalysis.h usr/include/llvm9/llvm/Analysis/LoopAccessAnalysis.h usr/include/llvm9/llvm/Analysis/IntervalPartition.h usr/include/llvm9/llvm/Analysis/BranchProbabilityInfo.h usr/include/llvm9/llvm/Analysis/GlobalsModRef.h usr/include/llvm9/llvm/Analysis/TargetLibraryInfo.def usr/include/llvm9/llvm/Analysis/InlineCost.h usr/include/llvm9/llvm/Analysis/MemoryDependenceAnalysis.h usr/include/llvm9/llvm/Analysis/MemorySSAUpdater.h usr/include/llvm9/llvm/Analysis/IndirectCallVisitor.h usr/include/llvm9/llvm/Analysis/ValueTracking.h usr/include/llvm9/llvm/Analysis/LoopInfo.h usr/include/llvm9/llvm/Analysis/TargetFolder.h usr/include/llvm9/llvm/Analysis/EHPersonalities.h usr/include/llvm9/llvm/Analysis/ValueLattice.h usr/include/llvm9/llvm/Analysis/OptimizationRemarkEmitter.h usr/include/llvm9/llvm/Analysis/PtrUseVisitor.h usr/include/llvm9/llvm/Analysis/CGSCCPassManager.h usr/include/llvm9/llvm/Analysis/ScalarEvolutionExpander.h usr/include/llvm9/llvm/Analysis/Trace.h usr/include/llvm9/llvm/Analysis/IntervalIterator.h usr/include/llvm9/llvm/Analysis/LazyValueInfo.h usr/include/llvm9/llvm/Analysis/MustExecute.h usr/include/llvm9/llvm/Analysis/StackSafetyAnalysis.h usr/include/llvm9/llvm/Analysis/IVDescriptors.h usr/include/llvm9/llvm/Analysis/Loads.h usr/include/llvm9/llvm/Analysis/ValueLatticeUtils.h usr/include/llvm9/llvm/Analysis/VectorUtils.h usr/include/llvm9/llvm/Analysis/Utils/Local.h usr/include/llvm9/llvm/Testing/Support/Annotations.h usr/include/llvm9/llvm/Testing/Support/SupportHelpers.h usr/include/llvm9/llvm/Testing/Support/Error.h usr/include/llvm9/llvm/LTO/Caching.h usr/include/llvm9/llvm/LTO/SummaryBasedOptimizations.h usr/include/llvm9/llvm/LTO/LTO.h usr/include/llvm9/llvm/LTO/Config.h usr/include/llvm9/llvm/LTO/LTOBackend.h usr/include/llvm9/llvm/LTO/legacy/UpdateCompilerUsed.h usr/include/llvm9/llvm/LTO/legacy/LTOCodeGenerator.h usr/include/llvm9/llvm/LTO/legacy/ThinLTOCodeGenerator.h usr/include/llvm9/llvm/LTO/legacy/LTOModule.h usr/include/llvm9/llvm/MC/MCELFStreamer.h usr/include/llvm9/llvm/MC/MCSection.h usr/include/llvm9/llvm/MC/MCInstPrinter.h usr/include/llvm9/llvm/MC/MCAsmInfoWasm.h usr/include/llvm9/llvm/MC/MCTargetOptions.h usr/include/llvm9/llvm/MC/MCWasmStreamer.h usr/include/llvm9/llvm/MC/StringTableBuilder.h usr/include/llvm9/llvm/MC/MCFragment.h usr/include/llvm9/llvm/MC/MCExpr.h usr/include/llvm9/llvm/MC/MCCodeView.h usr/include/llvm9/llvm/MC/MCInstrItineraries.h usr/include/llvm9/llvm/MC/MCXCOFFStreamer.h usr/include/llvm9/llvm/MC/MCObjectStreamer.h usr/include/llvm9/llvm/MC/MCWinCOFFObjectWriter.h usr/include/llvm9/llvm/MC/MCAsmMacro.h usr/include/llvm9/llvm/MC/MCSymbolXCOFF.h usr/include/llvm9/llvm/MC/MCInstrInfo.h usr/include/llvm9/llvm/MC/MCFixedLenDisassembler.h usr/include/llvm9/llvm/MC/MCInstBuilder.h usr/include/llvm9/llvm/MC/MCCodeEmitter.h usr/include/llvm9/llvm/MC/MCCodePadder.h usr/include/llvm9/llvm/MC/MCWinCOFFStreamer.h usr/include/llvm9/llvm/MC/MCSectionCOFF.h usr/include/llvm9/llvm/MC/MCMachObjectWriter.h usr/include/llvm9/llvm/MC/ConstantPools.h usr/include/llvm9/llvm/MC/MCSectionMachO.h usr/include/llvm9/llvm/MC/MCRegisterInfo.h usr/include/llvm9/llvm/MC/MCSectionXCOFF.h usr/include/llvm9/llvm/MC/MCInstrDesc.h usr/include/llvm9/llvm/MC/MCTargetOptionsCommandFlags.inc usr/include/llvm9/llvm/MC/MCSymbol.h usr/include/llvm9/llvm/MC/MCInst.h usr/include/llvm9/llvm/MC/MCSymbolELF.h usr/include/llvm9/llvm/MC/MCStreamer.h usr/include/llvm9/llvm/MC/MCWin64EH.h usr/include/llvm9/llvm/MC/MCAsmLayout.h usr/include/llvm9/llvm/MC/MCAsmInfoXCOFF.h usr/include/llvm9/llvm/MC/MCAsmInfoCOFF.h usr/include/llvm9/llvm/MC/MCDirectives.h usr/include/llvm9/llvm/MC/MCFixupKindInfo.h usr/include/llvm9/llvm/MC/SectionKind.h usr/include/llvm9/llvm/MC/MCSectionWasm.h usr/include/llvm9/llvm/MC/MCSectionELF.h usr/include/llvm9/llvm/MC/MCSymbolCOFF.h usr/include/llvm9/llvm/MC/MCContext.h usr/include/llvm9/llvm/MC/MCAsmInfoELF.h usr/include/llvm9/llvm/MC/MCAssembler.h usr/include/llvm9/llvm/MC/SubtargetFeature.h usr/include/llvm9/llvm/MC/MCSymbolMachO.h usr/include/llvm9/llvm/MC/MCWinEH.h usr/include/llvm9/llvm/MC/MCAsmInfo.h usr/include/llvm9/llvm/MC/MCObjectFileInfo.h usr/include/llvm9/llvm/MC/MachineLocation.h usr/include/llvm9/llvm/MC/MCLinkerOptimizationHint.h usr/include/llvm9/llvm/MC/MCSchedule.h usr/include/llvm9/llvm/MC/MCSubtargetInfo.h usr/include/llvm9/llvm/MC/MCDwarf.h usr/include/llvm9/llvm/MC/MCSymbolWasm.h usr/include/llvm9/llvm/MC/MCAsmInfoDarwin.h usr/include/llvm9/llvm/MC/MCValue.h usr/include/llvm9/llvm/MC/MCXCOFFObjectWriter.h usr/include/llvm9/llvm/MC/MCELFObjectWriter.h usr/include/llvm9/llvm/MC/MCObjectWriter.h usr/include/llvm9/llvm/MC/MCFixup.h usr/include/llvm9/llvm/MC/MCWasmObjectWriter.h usr/include/llvm9/llvm/MC/MCAsmBackend.h usr/include/llvm9/llvm/MC/MCInstrAnalysis.h usr/include/llvm9/llvm/MC/LaneBitmask.h usr/include/llvm9/llvm/MC/MCLabel.h usr/include/llvm9/llvm/MC/MCParser/MCAsmLexer.h usr/include/llvm9/llvm/MC/MCParser/MCTargetAsmParser.h usr/include/llvm9/llvm/MC/MCParser/MCAsmParserExtension.h usr/include/llvm9/llvm/MC/MCParser/MCAsmParser.h usr/include/llvm9/llvm/MC/MCParser/AsmCond.h usr/include/llvm9/llvm/MC/MCParser/AsmLexer.h usr/include/llvm9/llvm/MC/MCParser/MCParsedAsmOperand.h usr/include/llvm9/llvm/MC/MCParser/MCAsmParserUtils.h usr/include/llvm9/llvm/MC/MCDisassembler/MCSymbolizer.h usr/include/llvm9/llvm/MC/MCDisassembler/MCDisassembler.h usr/include/llvm9/llvm/MC/MCDisassembler/MCRelocationInfo.h usr/include/llvm9/llvm/MC/MCDisassembler/MCExternalSymbolizer.h usr/include/llvm9/llvm/Bitcode/BitcodeWriterPass.h usr/include/llvm9/llvm/Bitcode/BitcodeReader.h usr/include/llvm9/llvm/Bitcode/LLVMBitCodes.h usr/include/llvm9/llvm/Bitcode/BitcodeWriter.h usr/include/llvm9/llvm/Bitcode/BitcodeAnalyzer.h usr/include/llvm9/llvm/Transforms/Instrumentation.h usr/include/llvm9/llvm/Transforms/Scalar.h usr/include/llvm9/llvm/Transforms/Coroutines.h usr/include/llvm9/llvm/Transforms/Vectorize.h usr/include/llvm9/llvm/Transforms/IPO.h usr/include/llvm9/llvm/Transforms/ObjCARC.h usr/include/llvm9/llvm/Transforms/Utils.h usr/include/llvm9/llvm/Transforms/Instrumentation/HWAddressSanitizer.h usr/include/llvm9/llvm/Transforms/Instrumentation/ThreadSanitizer.h usr/include/llvm9/llvm/Transforms/Instrumentation/GCOVProfiler.h usr/include/llvm9/llvm/Transforms/Instrumentation/InstrOrderFile.h usr/include/llvm9/llvm/Transforms/Instrumentation/MemorySanitizer.h usr/include/llvm9/llvm/Transforms/Instrumentation/ControlHeightReduction.h usr/include/llvm9/llvm/Transforms/Instrumentation/PGOInstrumentation.h usr/include/llvm9/llvm/Transforms/Instrumentation/AddressSanitizer.h usr/include/llvm9/llvm/Transforms/Instrumentation/BoundsChecking.h usr/include/llvm9/llvm/Transforms/Instrumentation/CGProfile.h usr/include/llvm9/llvm/Transforms/Instrumentation/InstrProfiling.h usr/include/llvm9/llvm/Transforms/Instrumentation/PoisonChecking.h usr/include/llvm9/llvm/Transforms/Vectorize/LoopVectorize.h usr/include/llvm9/llvm/Transforms/Vectorize/SLPVectorizer.h usr/include/llvm9/llvm/Transforms/Vectorize/LoadStoreVectorizer.h usr/include/llvm9/llvm/Transforms/Vectorize/LoopVectorizationLegality.h usr/include/llvm9/llvm/Transforms/AggressiveInstCombine/AggressiveInstCombine.h usr/include/llvm9/llvm/Transforms/Utils/LCSSA.h usr/include/llvm9/llvm/Transforms/Utils/FunctionImportUtils.h usr/include/llvm9/llvm/Transforms/Utils/UnrollLoop.h usr/include/llvm9/llvm/Transforms/Utils/PredicateInfo.h usr/include/llvm9/llvm/Transforms/Utils/ImportedFunctionsInliningStatistics.h usr/include/llvm9/llvm/Transforms/Utils/SSAUpdater.h usr/include/llvm9/llvm/Transforms/Utils/SSAUpdaterImpl.h usr/include/llvm9/llvm/Transforms/Utils/ModuleUtils.h usr/include/llvm9/llvm/Transforms/Utils/FunctionComparator.h usr/include/llvm9/llvm/Transforms/Utils/BuildLibCalls.h usr/include/llvm9/llvm/Transforms/Utils/LowerInvoke.h usr/include/llvm9/llvm/Transforms/Utils/AddDiscriminators.h usr/include/llvm9/llvm/Transforms/Utils/LowerMemIntrinsics.h usr/include/llvm9/llvm/Transforms/Utils/CanonicalizeAliases.h usr/include/llvm9/llvm/Transforms/Utils/GuardUtils.h usr/include/llvm9/llvm/Transforms/Utils/LoopRotationUtils.h usr/include/llvm9/llvm/Transforms/Utils/CodeExtractor.h usr/include/llvm9/llvm/Transforms/Utils/BypassSlowDivision.h usr/include/llvm9/llvm/Transforms/Utils/BreakCriticalEdges.h usr/include/llvm9/llvm/Transforms/Utils/BasicBlockUtils.h usr/include/llvm9/llvm/Transforms/Utils/SplitModule.h usr/include/llvm9/llvm/Transforms/Utils/SSAUpdaterBulk.h usr/include/llvm9/llvm/Transforms/Utils/NameAnonGlobals.h usr/include/llvm9/llvm/Transforms/Utils/SimplifyIndVar.h usr/include/llvm9/llvm/Transforms/Utils/LibCallsShrinkWrap.h usr/include/llvm9/llvm/Transforms/Utils/CallPromotionUtils.h usr/include/llvm9/llvm/Transforms/Utils/SizeOpts.h usr/include/llvm9/llvm/Transforms/Utils/ASanStackFrameLayout.h usr/include/llvm9/llvm/Transforms/Utils/CtorUtils.h usr/include/llvm9/llvm/Transforms/Utils/Local.h usr/include/llvm9/llvm/Transforms/Utils/LoopSimplify.h usr/include/llvm9/llvm/Transforms/Utils/EscapeEnumerator.h usr/include/llvm9/llvm/Transforms/Utils/SymbolRewriter.h usr/include/llvm9/llvm/Transforms/Utils/LoopUtils.h usr/include/llvm9/llvm/Transforms/Utils/SimplifyLibCalls.h usr/include/llvm9/llvm/Transforms/Utils/UnifyFunctionExitNodes.h usr/include/llvm9/llvm/Transforms/Utils/LoopVersioning.h usr/include/llvm9/llvm/Transforms/Utils/EntryExitInstrumenter.h usr/include/llvm9/llvm/Transforms/Utils/VNCoercion.h usr/include/llvm9/llvm/Transforms/Utils/Evaluator.h usr/include/llvm9/llvm/Transforms/Utils/PromoteMemToReg.h usr/include/llvm9/llvm/Transforms/Utils/IntegerDivision.h usr/include/llvm9/llvm/Transforms/Utils/ValueMapper.h usr/include/llvm9/llvm/Transforms/Utils/SanitizerStats.h usr/include/llvm9/llvm/Transforms/Utils/GlobalStatus.h usr/include/llvm9/llvm/Transforms/Utils/Mem2Reg.h usr/include/llvm9/llvm/Transforms/Utils/Cloning.h usr/include/llvm9/llvm/Transforms/IPO/StripDeadPrototypes.h usr/include/llvm9/llvm/Transforms/IPO/AlwaysInliner.h usr/include/llvm9/llvm/Transforms/IPO/CalledValuePropagation.h usr/include/llvm9/llvm/Transforms/IPO/GlobalOpt.h usr/include/llvm9/llvm/Transforms/IPO/PassManagerBuilder.h usr/include/llvm9/llvm/Transforms/IPO/CrossDSOCFI.h usr/include/llvm9/llvm/Transforms/IPO/ElimAvailExtern.h usr/include/llvm9/llvm/Transforms/IPO/SCCP.h usr/include/llvm9/llvm/Transforms/IPO/LowerTypeTests.h usr/include/llvm9/llvm/Transforms/IPO/ThinLTOBitcodeWriter.h usr/include/llvm9/llvm/Transforms/IPO/FunctionImport.h usr/include/llvm9/llvm/Transforms/IPO/ArgumentPromotion.h usr/include/llvm9/llvm/Transforms/IPO/SampleProfile.h usr/include/llvm9/llvm/Transforms/IPO/GlobalDCE.h usr/include/llvm9/llvm/Transforms/IPO/PartialInlining.h usr/include/llvm9/llvm/Transforms/IPO/Attributor.h usr/include/llvm9/llvm/Transforms/IPO/Inliner.h usr/include/llvm9/llvm/Transforms/IPO/ForceFunctionAttrs.h usr/include/llvm9/llvm/Transforms/IPO/HotColdSplitting.h usr/include/llvm9/llvm/Transforms/IPO/InferFunctionAttrs.h usr/include/llvm9/llvm/Transforms/IPO/DeadArgumentElimination.h usr/include/llvm9/llvm/Transforms/IPO/WholeProgramDevirt.h usr/include/llvm9/llvm/Transforms/IPO/ConstantMerge.h usr/include/llvm9/llvm/Transforms/IPO/SyntheticCountsPropagation.h usr/include/llvm9/llvm/Transforms/IPO/Internalize.h usr/include/llvm9/llvm/Transforms/IPO/FunctionAttrs.h usr/include/llvm9/llvm/Transforms/IPO/GlobalSplit.h usr/include/llvm9/llvm/Transforms/Scalar/JumpThreading.h usr/include/llvm9/llvm/Transforms/Scalar/SimplifyCFG.h usr/include/llvm9/llvm/Transforms/Scalar/LoopDataPrefetch.h usr/include/llvm9/llvm/Transforms/Scalar/WarnMissedTransforms.h usr/include/llvm9/llvm/Transforms/Scalar/SROA.h usr/include/llvm9/llvm/Transforms/Scalar/SimpleLoopUnswitch.h usr/include/llvm9/llvm/Transforms/Scalar/DCE.h usr/include/llvm9/llvm/Transforms/Scalar/GVNExpression.h usr/include/llvm9/llvm/Transforms/Scalar/Float2Int.h usr/include/llvm9/llvm/Transforms/Scalar/SpeculativeExecution.h usr/include/llvm9/llvm/Transforms/Scalar/LowerWidenableCondition.h usr/include/llvm9/llvm/Transforms/Scalar/LoopAccessAnalysisPrinter.h usr/include/llvm9/llvm/Transforms/Scalar/ADCE.h usr/include/llvm9/llvm/Transforms/Scalar/LoopIdiomRecognize.h usr/include/llvm9/llvm/Transforms/Scalar/Scalarizer.h usr/include/llvm9/llvm/Transforms/Scalar/CallSiteSplitting.h usr/include/llvm9/llvm/Transforms/Scalar/LoopSink.h usr/include/llvm9/llvm/Transforms/Scalar/GuardWidening.h usr/include/llvm9/llvm/Transforms/Scalar/LoopDistribute.h usr/include/llvm9/llvm/Transforms/Scalar/TailRecursionElimination.h usr/include/llvm9/llvm/Transforms/Scalar/DeadStoreElimination.h usr/include/llvm9/llvm/Transforms/Scalar/RewriteStatepointsForGC.h usr/include/llvm9/llvm/Transforms/Scalar/LoopUnrollPass.h usr/include/llvm9/llvm/Transforms/Scalar/LoopUnrollAndJamPass.h usr/include/llvm9/llvm/Transforms/Scalar/IndVarSimplify.h usr/include/llvm9/llvm/Transforms/Scalar/AlignmentFromAssumptions.h usr/include/llvm9/llvm/Transforms/Scalar/LICM.h usr/include/llvm9/llvm/Transforms/Scalar/Reassociate.h usr/include/llvm9/llvm/Transforms/Scalar/LoopPassManager.h usr/include/llvm9/llvm/Transforms/Scalar/LoopLoadElimination.h usr/include/llvm9/llvm/Transforms/Scalar/LowerGuardIntrinsic.h usr/include/llvm9/llvm/Transforms/Scalar/MemCpyOptimizer.h usr/include/llvm9/llvm/Transforms/Scalar/LowerExpectIntrinsic.h usr/include/llvm9/llvm/Transforms/Scalar/SCCP.h usr/include/llvm9/llvm/Transforms/Scalar/LoopFuse.h usr/include/llvm9/llvm/Transforms/Scalar/BDCE.h usr/include/llvm9/llvm/Transforms/Scalar/EarlyCSE.h usr/include/llvm9/llvm/Transforms/Scalar/ConstantHoisting.h usr/include/llvm9/llvm/Transforms/Scalar/LoopDeletion.h usr/include/llvm9/llvm/Transforms/Scalar/InductiveRangeCheckElimination.h usr/include/llvm9/llvm/Transforms/Scalar/DivRemPairs.h usr/include/llvm9/llvm/Transforms/Scalar/MergedLoadStoreMotion.h usr/include/llvm9/llvm/Transforms/Scalar/NaryReassociate.h usr/include/llvm9/llvm/Transforms/Scalar/NewGVN.h usr/include/llvm9/llvm/Transforms/Scalar/Sink.h usr/include/llvm9/llvm/Transforms/Scalar/IVUsersPrinter.h usr/include/llvm9/llvm/Transforms/Scalar/MakeGuardsExplicit.h usr/include/llvm9/llvm/Transforms/Scalar/LowerAtomic.h usr/include/llvm9/llvm/Transforms/Scalar/GVN.h usr/include/llvm9/llvm/Transforms/Scalar/SpeculateAroundPHIs.h usr/include/llvm9/llvm/Transforms/Scalar/MergeICmps.h usr/include/llvm9/llvm/Transforms/Scalar/CorrelatedValuePropagation.h usr/include/llvm9/llvm/Transforms/Scalar/LoopPredication.h usr/include/llvm9/llvm/Transforms/Scalar/PartiallyInlineLibCalls.h usr/include/llvm9/llvm/Transforms/Scalar/LoopStrengthReduce.h usr/include/llvm9/llvm/Transforms/Scalar/InstSimplifyPass.h usr/include/llvm9/llvm/Transforms/Scalar/LoopInstSimplify.h usr/include/llvm9/llvm/Transforms/Scalar/LoopSimplifyCFG.h usr/include/llvm9/llvm/Transforms/Scalar/LoopRotation.h usr/include/llvm9/llvm/Transforms/InstCombine/InstCombine.h usr/include/llvm9/llvm/Transforms/InstCombine/InstCombineWorklist.h usr/include/llvm9/llvm/CodeGen/DFAPacketizer.h usr/include/llvm9/llvm/CodeGen/PseudoSourceValue.h usr/include/llvm9/llvm/CodeGen/TargetPassConfig.h usr/include/llvm9/llvm/CodeGen/TargetFrameLowering.h usr/include/llvm9/llvm/CodeGen/LexicalScopes.h usr/include/llvm9/llvm/CodeGen/PBQPRAConstraint.h usr/include/llvm9/llvm/CodeGen/MachineDominators.h usr/include/llvm9/llvm/CodeGen/SlotIndexes.h usr/include/llvm9/llvm/CodeGen/ScheduleDAG.h usr/include/llvm9/llvm/CodeGen/StackMaps.h usr/include/llvm9/llvm/CodeGen/LowLevelType.h usr/include/llvm9/llvm/CodeGen/IntrinsicLowering.h usr/include/llvm9/llvm/CodeGen/TailDuplicator.h usr/include/llvm9/llvm/CodeGen/ScheduleDFS.h usr/include/llvm9/llvm/CodeGen/BasicTTIImpl.h usr/include/llvm9/llvm/CodeGen/MachineCombinerPattern.h usr/include/llvm9/llvm/CodeGen/MachineTraceMetrics.h usr/include/llvm9/llvm/CodeGen/AtomicExpandUtils.h usr/include/llvm9/llvm/CodeGen/MachineOperand.h usr/include/llvm9/llvm/CodeGen/GCMetadataPrinter.h usr/include/llvm9/llvm/CodeGen/AccelTable.h usr/include/llvm9/llvm/CodeGen/DbgEntityHistoryCalculator.h usr/include/llvm9/llvm/CodeGen/AsmPrinterHandler.h usr/include/llvm9/llvm/CodeGen/RegisterScavenging.h usr/include/llvm9/llvm/CodeGen/LivePhysRegs.h usr/include/llvm9/llvm/CodeGen/CalcSpillWeights.h usr/include/llvm9/llvm/CodeGen/SelectionDAG.h usr/include/llvm9/llvm/CodeGen/ResourcePriorityQueue.h usr/include/llvm9/llvm/CodeGen/LiveVariables.h usr/include/llvm9/llvm/CodeGen/SwiftErrorValueTracking.h usr/include/llvm9/llvm/CodeGen/MachinePassRegistry.h usr/include/llvm9/llvm/CodeGen/ValueTypes.h usr/include/llvm9/llvm/CodeGen/DIE.h usr/include/llvm9/llvm/CodeGen/MachineRegionInfo.h usr/include/llvm9/llvm/CodeGen/MachinePostDominators.h usr/include/llvm9/llvm/CodeGen/MachineMemOperand.h usr/include/llvm9/llvm/CodeGen/SelectionDAGNodes.h usr/include/llvm9/llvm/CodeGen/VirtRegMap.h usr/include/llvm9/llvm/CodeGen/SelectionDAGISel.h usr/include/llvm9/llvm/CodeGen/SelectionDAGAddressAnalysis.h usr/include/llvm9/llvm/CodeGen/CallingConvLower.h usr/include/llvm9/llvm/CodeGen/WinEHFuncInfo.h usr/include/llvm9/llvm/CodeGen/RegisterClassInfo.h usr/include/llvm9/llvm/CodeGen/LatencyPriorityQueue.h usr/include/llvm9/llvm/CodeGen/TargetSchedule.h usr/include/llvm9/llvm/CodeGen/LiveStacks.h usr/include/llvm9/llvm/CodeGen/MachineFrameInfo.h usr/include/llvm9/llvm/CodeGen/ScheduleDAGInstrs.h usr/include/llvm9/llvm/CodeGen/Passes.h usr/include/llvm9/llvm/CodeGen/RuntimeLibcalls.h usr/include/llvm9/llvm/CodeGen/WasmEHFuncInfo.h usr/include/llvm9/llvm/CodeGen/LazyMachineBlockFrequencyInfo.h usr/include/llvm9/llvm/CodeGen/SDNodeProperties.td usr/include/llvm9/llvm/CodeGen/Register.h usr/include/llvm9/llvm/CodeGen/MachineRegisterInfo.h usr/include/llvm9/llvm/CodeGen/TargetSubtargetInfo.h usr/include/llvm9/llvm/CodeGen/SwitchLoweringUtils.h usr/include/llvm9/llvm/CodeGen/MachineBasicBlock.h usr/include/llvm9/llvm/CodeGen/MachineFunction.h usr/include/llvm9/llvm/CodeGen/MachineConstantPool.h usr/include/llvm9/llvm/CodeGen/MachineSSAUpdater.h usr/include/llvm9/llvm/CodeGen/MachinePipeliner.h usr/include/llvm9/llvm/CodeGen/DwarfStringPoolEntry.h usr/include/llvm9/llvm/CodeGen/MachineInstrBuilder.h usr/include/llvm9/llvm/CodeGen/DAGCombine.h usr/include/llvm9/llvm/CodeGen/FunctionLoweringInfo.h usr/include/llvm9/llvm/CodeGen/FaultMaps.h usr/include/llvm9/llvm/CodeGen/ScoreboardHazardRecognizer.h usr/include/llvm9/llvm/CodeGen/RegAllocRegistry.h usr/include/llvm9/llvm/CodeGen/MachineInstrBundle.h usr/include/llvm9/llvm/CodeGen/MachineInstrBundleIterator.h usr/include/llvm9/llvm/CodeGen/FastISel.h usr/include/llvm9/llvm/CodeGen/TargetLoweringObjectFileImpl.h usr/include/llvm9/llvm/CodeGen/MacroFusion.h usr/include/llvm9/llvm/CodeGen/UnreachableBlockElim.h usr/include/llvm9/llvm/CodeGen/CSEConfigBase.h usr/include/llvm9/llvm/CodeGen/GCMetadata.h usr/include/llvm9/llvm/CodeGen/MachineModuleInfo.h usr/include/llvm9/llvm/CodeGen/MIRYamlMapping.h usr/include/llvm9/llvm/CodeGen/MachORelocation.h usr/include/llvm9/llvm/CodeGen/TargetLowering.h usr/include/llvm9/llvm/CodeGen/LiveIntervalUnion.h usr/include/llvm9/llvm/CodeGen/LoopTraversal.h usr/include/llvm9/llvm/CodeGen/RegisterPressure.h usr/include/llvm9/llvm/CodeGen/DIEValue.def usr/include/llvm9/llvm/CodeGen/AsmPrinter.h usr/include/llvm9/llvm/CodeGen/MachineModuleInfoImpls.h usr/include/llvm9/llvm/CodeGen/MachineScheduler.h usr/include/llvm9/llvm/CodeGen/MIRPrinter.h usr/include/llvm9/llvm/CodeGen/MachineBranchProbabilityInfo.h usr/include/llvm9/llvm/CodeGen/DebugHandlerBase.h usr/include/llvm9/llvm/CodeGen/ParallelCG.h usr/include/llvm9/llvm/CodeGen/MachineLoopInfo.h usr/include/llvm9/llvm/CodeGen/LiveRegUnits.h usr/include/llvm9/llvm/CodeGen/MachineBlockFrequencyInfo.h usr/include/llvm9/llvm/CodeGen/MachineDominanceFrontier.h usr/include/llvm9/llvm/CodeGen/BuiltinGCs.h usr/include/llvm9/llvm/CodeGen/MachineOptimizationRemarkEmitter.h usr/include/llvm9/llvm/CodeGen/MachineOutliner.h usr/include/llvm9/llvm/CodeGen/ExecutionDomainFix.h usr/include/llvm9/llvm/CodeGen/EdgeBundles.h usr/include/llvm9/llvm/CodeGen/ReachingDefAnalysis.h usr/include/llvm9/llvm/CodeGen/RegAllocPBQP.h usr/include/llvm9/llvm/CodeGen/LinkAllAsmWriterComponents.h usr/include/llvm9/llvm/CodeGen/SchedulerRegistry.h usr/include/llvm9/llvm/CodeGen/ScheduleDAGMutation.h usr/include/llvm9/llvm/CodeGen/Analysis.h usr/include/llvm9/llvm/CodeGen/MachineInstr.h usr/include/llvm9/llvm/CodeGen/MachineFunctionPass.h usr/include/llvm9/llvm/CodeGen/ISDOpcodes.h usr/include/llvm9/llvm/CodeGen/TargetRegisterInfo.h usr/include/llvm9/llvm/CodeGen/CostTable.h usr/include/llvm9/llvm/CodeGen/ExpandReductions.h usr/include/llvm9/llvm/CodeGen/MachineJumpTableInfo.h usr/include/llvm9/llvm/CodeGen/TargetOpcodes.h usr/include/llvm9/llvm/CodeGen/LiveIntervals.h usr/include/llvm9/llvm/CodeGen/LiveInterval.h usr/include/llvm9/llvm/CodeGen/ValueTypes.td usr/include/llvm9/llvm/CodeGen/LiveRegMatrix.h usr/include/llvm9/llvm/CodeGen/TargetCallingConv.h usr/include/llvm9/llvm/CodeGen/StackProtector.h usr/include/llvm9/llvm/CodeGen/SelectionDAGTargetInfo.h usr/include/llvm9/llvm/CodeGen/GCStrategy.h usr/include/llvm9/llvm/CodeGen/CommandFlags.inc usr/include/llvm9/llvm/CodeGen/LinkAllCodegenComponents.h usr/include/llvm9/llvm/CodeGen/RegisterUsageInfo.h usr/include/llvm9/llvm/CodeGen/PreISelIntrinsicLowering.h usr/include/llvm9/llvm/CodeGen/ScheduleHazardRecognizer.h usr/include/llvm9/llvm/CodeGen/TargetInstrInfo.h usr/include/llvm9/llvm/CodeGen/LiveRangeEdit.h usr/include/llvm9/llvm/CodeGen/GlobalISel/GISelChangeObserver.h usr/include/llvm9/llvm/CodeGen/GlobalISel/LegalizationArtifactCombiner.h usr/include/llvm9/llvm/CodeGen/GlobalISel/Localizer.h usr/include/llvm9/llvm/CodeGen/GlobalISel/CombinerInfo.h usr/include/llvm9/llvm/CodeGen/GlobalISel/InstructionSelector.h usr/include/llvm9/llvm/CodeGen/GlobalISel/RegisterBank.h usr/include/llvm9/llvm/CodeGen/GlobalISel/LegalizerHelper.h usr/include/llvm9/llvm/CodeGen/GlobalISel/InstructionSelectorImpl.h usr/include/llvm9/llvm/CodeGen/GlobalISel/IRTranslator.h usr/include/llvm9/llvm/CodeGen/GlobalISel/LegalizerInfo.h usr/include/llvm9/llvm/CodeGen/GlobalISel/CSEInfo.h usr/include/llvm9/llvm/CodeGen/GlobalISel/GISelWorkList.h usr/include/llvm9/llvm/CodeGen/GlobalISel/InstructionSelect.h usr/include/llvm9/llvm/CodeGen/GlobalISel/CallLowering.h usr/include/llvm9/llvm/CodeGen/GlobalISel/CSEMIRBuilder.h usr/include/llvm9/llvm/CodeGen/GlobalISel/MIPatternMatch.h usr/include/llvm9/llvm/CodeGen/GlobalISel/Combiner.h usr/include/llvm9/llvm/CodeGen/GlobalISel/RegisterBankInfo.h usr/include/llvm9/llvm/CodeGen/GlobalISel/Legalizer.h usr/include/llvm9/llvm/CodeGen/GlobalISel/Utils.h usr/include/llvm9/llvm/CodeGen/GlobalISel/CombinerHelper.h usr/include/llvm9/llvm/CodeGen/GlobalISel/RegBankSelect.h usr/include/llvm9/llvm/CodeGen/GlobalISel/ConstantFoldingMIRBuilder.h usr/include/llvm9/llvm/CodeGen/GlobalISel/MachineIRBuilder.h usr/include/llvm9/llvm/CodeGen/GlobalISel/Types.h usr/include/llvm9/llvm/CodeGen/MIRParser/MIRParser.h usr/include/llvm9/llvm/CodeGen/MIRParser/MIParser.h usr/include/llvm9/llvm/CodeGen/PBQP/Graph.h usr/include/llvm9/llvm/CodeGen/PBQP/ReductionRules.h usr/include/llvm9/llvm/CodeGen/PBQP/Math.h usr/include/llvm9/llvm/CodeGen/PBQP/CostAllocator.h usr/include/llvm9/llvm/CodeGen/PBQP/Solution.h usr/include/llvm9/llvm/Linker/IRMover.h usr/include/llvm9/llvm/Linker/Linker.h usr/include/llvm9/llvm/ObjectYAML/CodeViewYAMLSymbols.h usr/include/llvm9/llvm/ObjectYAML/MachOYAML.h usr/include/llvm9/llvm/ObjectYAML/DWARFYAML.h usr/include/llvm9/llvm/ObjectYAML/CodeViewYAMLTypes.h usr/include/llvm9/llvm/ObjectYAML/COFFYAML.h usr/include/llvm9/llvm/ObjectYAML/XCOFFYAML.h usr/include/llvm9/llvm/ObjectYAML/MinidumpYAML.h usr/include/llvm9/llvm/ObjectYAML/WasmYAML.h usr/include/llvm9/llvm/ObjectYAML/CodeViewYAMLTypeHashing.h usr/include/llvm9/llvm/ObjectYAML/CodeViewYAMLDebugSections.h usr/include/llvm9/llvm/ObjectYAML/DWARFEmitter.h usr/include/llvm9/llvm/ObjectYAML/ELFYAML.h usr/include/llvm9/llvm/ObjectYAML/ObjectYAML.h usr/include/llvm9/llvm/ObjectYAML/YAML.h usr/include/llvm9/llvm/ADT/Hashing.h usr/include/llvm9/llvm/ADT/DenseMapInfo.h usr/include/llvm9/llvm/ADT/ilist_base.h usr/include/llvm9/llvm/ADT/Triple.h usr/include/llvm9/llvm/ADT/FunctionExtras.h usr/include/llvm9/llvm/ADT/IndexedMap.h usr/include/llvm9/llvm/ADT/bit.h usr/include/llvm9/llvm/ADT/SmallBitVector.h usr/include/llvm9/llvm/ADT/SCCIterator.h usr/include/llvm9/llvm/ADT/APFloat.h usr/include/llvm9/llvm/ADT/GraphTraits.h usr/include/llvm9/llvm/ADT/iterator_range.h usr/include/llvm9/llvm/ADT/EquivalenceClasses.h usr/include/llvm9/llvm/ADT/SparseBitVector.h usr/include/llvm9/llvm/ADT/UniqueVector.h usr/include/llvm9/llvm/ADT/SmallVector.h usr/include/llvm9/llvm/ADT/BreadthFirstIterator.h usr/include/llvm9/llvm/ADT/PostOrderIterator.h usr/include/llvm9/llvm/ADT/DenseMap.h usr/include/llvm9/llvm/ADT/SmallPtrSet.h usr/include/llvm9/llvm/ADT/StringSwitch.h usr/include/llvm9/llvm/ADT/SetOperations.h usr/include/llvm9/llvm/ADT/Optional.h usr/include/llvm9/llvm/ADT/EpochTracker.h usr/include/llvm9/llvm/ADT/StringRef.h usr/include/llvm9/llvm/ADT/PriorityQueue.h usr/include/llvm9/llvm/ADT/SparseSet.h usr/include/llvm9/llvm/ADT/ilist.h usr/include/llvm9/llvm/ADT/FoldingSet.h usr/include/llvm9/llvm/ADT/simple_ilist.h usr/include/llvm9/llvm/ADT/ScopeExit.h usr/include/llvm9/llvm/ADT/StringSet.h usr/include/llvm9/llvm/ADT/Any.h usr/include/llvm9/llvm/ADT/PriorityWorklist.h usr/include/llvm9/llvm/ADT/ArrayRef.h usr/include/llvm9/llvm/ADT/PointerUnion.h usr/include/llvm9/llvm/ADT/ilist_node.h usr/include/llvm9/llvm/ADT/ilist_node_options.h usr/include/llvm9/llvm/ADT/SparseMultiSet.h usr/include/llvm9/llvm/ADT/Twine.h usr/include/llvm9/llvm/ADT/ImmutableSet.h usr/include/llvm9/llvm/ADT/IntervalMap.h usr/include/llvm9/llvm/ADT/AllocatorList.h usr/include/llvm9/llvm/ADT/StringExtras.h usr/include/llvm9/llvm/ADT/CachedHashString.h usr/include/llvm9/llvm/ADT/PackedVector.h usr/include/llvm9/llvm/ADT/ImmutableList.h usr/include/llvm9/llvm/ADT/VariadicFunction.h usr/include/llvm9/llvm/ADT/ImmutableMap.h usr/include/llvm9/llvm/ADT/IntrusiveRefCntPtr.h usr/include/llvm9/llvm/ADT/Sequence.h usr/include/llvm9/llvm/ADT/ilist_iterator.h usr/include/llvm9/llvm/ADT/PointerIntPair.h usr/include/llvm9/llvm/ADT/DepthFirstIterator.h usr/include/llvm9/llvm/ADT/IntEqClasses.h usr/include/llvm9/llvm/ADT/MapVector.h usr/include/llvm9/llvm/ADT/StringMap.h usr/include/llvm9/llvm/ADT/ilist_node_base.h usr/include/llvm9/llvm/ADT/ScopedHashTable.h usr/include/llvm9/llvm/ADT/iterator.h usr/include/llvm9/llvm/ADT/PointerSumType.h usr/include/llvm9/llvm/ADT/TinyPtrVector.h usr/include/llvm9/llvm/ADT/DAGDeltaAlgorithm.h usr/include/llvm9/llvm/ADT/DeltaAlgorithm.h usr/include/llvm9/llvm/ADT/PointerEmbeddedInt.h usr/include/llvm9/llvm/ADT/SetVector.h usr/include/llvm9/llvm/ADT/fallible_iterator.h usr/include/llvm9/llvm/ADT/BitVector.h usr/include/llvm9/llvm/ADT/SmallString.h usr/include/llvm9/llvm/ADT/STLExtras.h usr/include/llvm9/llvm/ADT/APSInt.h usr/include/llvm9/llvm/ADT/edit_distance.h usr/include/llvm9/llvm/ADT/None.h usr/include/llvm9/llvm/ADT/DenseSet.h usr/include/llvm9/llvm/ADT/SmallSet.h usr/include/llvm9/llvm/ADT/BitmaskEnum.h usr/include/llvm9/llvm/ADT/APInt.h usr/include/llvm9/llvm/ADT/Statistic.h usr/include/llvm9/llvm/FuzzMutate/Operations.h usr/include/llvm9/llvm/FuzzMutate/OpDescriptor.h usr/include/llvm9/llvm/FuzzMutate/RandomIRBuilder.h usr/include/llvm9/llvm/FuzzMutate/IRMutator.h usr/include/llvm9/llvm/FuzzMutate/Random.h usr/include/llvm9/llvm/FuzzMutate/FuzzerCLI.h usr/include/llvm9/llvm/Passes/PassBuilder.h usr/include/llvm9/llvm/Passes/StandardInstrumentations.h usr/include/llvm9/llvm/Passes/PassPlugin.h usr/include/llvm9/llvm/AsmParser/Parser.h usr/include/llvm9/llvm/AsmParser/SlotMapping.h usr/include/llvm9/llvm/Demangle/ItaniumDemangle.h usr/include/llvm9/llvm/Demangle/Utility.h usr/include/llvm9/llvm/Demangle/Demangle.h usr/include/llvm9/llvm/Demangle/MicrosoftDemangleNodes.h usr/include/llvm9/llvm/Demangle/StringView.h usr/include/llvm9/llvm/Demangle/MicrosoftDemangle.h usr/include/llvm9/llvm/Demangle/DemangleConfig.h usr/include/llvm9/llvm/ExecutionEngine/GenericValue.h usr/include/llvm9/llvm/ExecutionEngine/RuntimeDyldChecker.h usr/include/llvm9/llvm/ExecutionEngine/ExecutionEngine.h usr/include/llvm9/llvm/ExecutionEngine/Interpreter.h usr/include/llvm9/llvm/ExecutionEngine/SectionMemoryManager.h usr/include/llvm9/llvm/ExecutionEngine/RuntimeDyld.h usr/include/llvm9/llvm/ExecutionEngine/RTDyldMemoryManager.h usr/include/llvm9/llvm/ExecutionEngine/OrcMCJITReplacement.h usr/include/llvm9/llvm/ExecutionEngine/JITSymbol.h usr/include/llvm9/llvm/ExecutionEngine/OProfileWrapper.h usr/include/llvm9/llvm/ExecutionEngine/ObjectCache.h usr/include/llvm9/llvm/ExecutionEngine/JITEventListener.h usr/include/llvm9/llvm/ExecutionEngine/MCJIT.h usr/include/llvm9/llvm/ExecutionEngine/OrcV1Deprecation.h usr/include/llvm9/llvm/ExecutionEngine/Orc/SymbolStringPool.h usr/include/llvm9/llvm/ExecutionEngine/Orc/NullResolver.h usr/include/llvm9/llvm/ExecutionEngine/Orc/GlobalMappingLayer.h usr/include/llvm9/llvm/ExecutionEngine/Orc/Core.h usr/include/llvm9/llvm/ExecutionEngine/Orc/Legacy.h usr/include/llvm9/llvm/ExecutionEngine/Orc/RemoteObjectLayer.h usr/include/llvm9/llvm/ExecutionEngine/Orc/IRCompileLayer.h usr/include/llvm9/llvm/ExecutionEngine/Orc/RPCSerialization.h usr/include/llvm9/llvm/ExecutionEngine/Orc/JITTargetMachineBuilder.h usr/include/llvm9/llvm/ExecutionEngine/Orc/LLJIT.h usr/include/llvm9/llvm/ExecutionEngine/Orc/ThreadSafeModule.h usr/include/llvm9/llvm/ExecutionEngine/Orc/LambdaResolver.h usr/include/llvm9/llvm/ExecutionEngine/Orc/ObjectTransformLayer.h usr/include/llvm9/llvm/ExecutionEngine/Orc/IndirectionUtils.h usr/include/llvm9/llvm/ExecutionEngine/Orc/LazyReexports.h usr/include/llvm9/llvm/ExecutionEngine/Orc/Layer.h usr/include/llvm9/llvm/ExecutionEngine/Orc/OrcABISupport.h usr/include/llvm9/llvm/ExecutionEngine/Orc/CompileUtils.h usr/include/llvm9/llvm/ExecutionEngine/Orc/OrcRemoteTargetRPCAPI.h usr/include/llvm9/llvm/ExecutionEngine/Orc/RawByteChannel.h usr/include/llvm9/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h usr/include/llvm9/llvm/ExecutionEngine/Orc/IRTransformLayer.h usr/include/llvm9/llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h usr/include/llvm9/llvm/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.h usr/include/llvm9/llvm/ExecutionEngine/Orc/OrcRemoteTargetServer.h usr/include/llvm9/llvm/ExecutionEngine/Orc/RPCUtils.h usr/include/llvm9/llvm/ExecutionEngine/Orc/OrcError.h usr/include/llvm9/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h usr/include/llvm9/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h usr/include/llvm9/llvm/ExecutionEngine/Orc/ExecutionUtils.h usr/include/llvm9/llvm/ExecutionEngine/JITLink/MachO.h usr/include/llvm9/llvm/ExecutionEngine/JITLink/MachO_x86_64.h usr/include/llvm9/llvm/ExecutionEngine/JITLink/EHFrameSupport.h usr/include/llvm9/llvm/ExecutionEngine/JITLink/JITLink.h usr/include/llvm9/llvm/ExecutionEngine/JITLink/JITLinkMemoryManager.h usr/include/llvm9/llvm/WindowsManifest/WindowsManifestMerger.h usr/include/llvm9/llvm/LineEditor/LineEditor.h usr/include/llvm9/llvm/MCA/Support.h usr/include/llvm9/llvm/MCA/Instruction.h usr/include/llvm9/llvm/MCA/Pipeline.h usr/include/llvm9/llvm/MCA/InstrBuilder.h usr/include/llvm9/llvm/MCA/HWEventListener.h usr/include/llvm9/llvm/MCA/SourceMgr.h usr/include/llvm9/llvm/MCA/Context.h usr/include/llvm9/llvm/MCA/HardwareUnits/LSUnit.h usr/include/llvm9/llvm/MCA/HardwareUnits/ResourceManager.h usr/include/llvm9/llvm/MCA/HardwareUnits/RegisterFile.h usr/include/llvm9/llvm/MCA/HardwareUnits/Scheduler.h usr/include/llvm9/llvm/MCA/HardwareUnits/RetireControlUnit.h usr/include/llvm9/llvm/MCA/HardwareUnits/HardwareUnit.h usr/include/llvm9/llvm/MCA/Stages/DispatchStage.h usr/include/llvm9/llvm/MCA/Stages/EntryStage.h usr/include/llvm9/llvm/MCA/Stages/ExecuteStage.h usr/include/llvm9/llvm/MCA/Stages/InstructionTables.h usr/include/llvm9/llvm/MCA/Stages/MicroOpQueueStage.h usr/include/llvm9/llvm/MCA/Stages/Stage.h usr/include/llvm9/llvm/MCA/Stages/RetireStage.h usr/include/llvm9/llvm/ToolDrivers/llvm-lib/LibDriver.h usr/include/llvm9/llvm/ToolDrivers/llvm-dlltool/DlltoolDriver.h usr/include/llvm9/llvm-c/ExecutionEngine.h usr/include/llvm9/llvm-c/TargetMachine.h usr/include/llvm9/llvm-c/BitReader.h usr/include/llvm9/llvm-c/Disassembler.h usr/include/llvm9/llvm-c/Support.h usr/include/llvm9/llvm-c/DebugInfo.h usr/include/llvm9/llvm-c/Core.h usr/include/llvm9/llvm-c/Initialization.h usr/include/llvm9/llvm-c/lto.h usr/include/llvm9/llvm-c/Object.h usr/include/llvm9/llvm-c/BitWriter.h usr/include/llvm9/llvm-c/DisassemblerTypes.h usr/include/llvm9/llvm-c/ErrorHandling.h usr/include/llvm9/llvm-c/IRReader.h usr/include/llvm9/llvm-c/LinkTimeOptimizer.h usr/include/llvm9/llvm-c/DataTypes.h usr/include/llvm9/llvm-c/Remarks.h usr/include/llvm9/llvm-c/OrcBindings.h usr/include/llvm9/llvm-c/Analysis.h usr/include/llvm9/llvm-c/Comdat.h usr/include/llvm9/llvm-c/Target.h usr/include/llvm9/llvm-c/Linker.h usr/include/llvm9/llvm-c/Error.h usr/include/llvm9/llvm-c/Types.h usr/include/llvm9/llvm-c/Transforms/InstCombine.h usr/include/llvm9/llvm-c/Transforms/AggressiveInstCombine.h usr/include/llvm9/llvm-c/Transforms/Scalar.h usr/include/llvm9/llvm-c/Transforms/PassManagerBuilder.h usr/include/llvm9/llvm-c/Transforms/Coroutines.h usr/include/llvm9/llvm-c/Transforms/Vectorize.h usr/include/llvm9/llvm-c/Transforms/IPO.h usr/include/llvm9/llvm-c/Transforms/Utils.h
- Author Contributor
The exact Dockerfile shown above can be found at https://github.com/dHannasch/alpine-llvm-dockerfile and is being built by Docker Hub at https://hub.docker.com/r/dahanna/alpine-llvm-test/dockerfile. You can see that if you start with
alpine:edge
and install onlyllvm9-dev
, with no other packages installed, as shown above, the files do not appear. You can try pulling the image and checking manually, or you can try a Dockerfile likeFROM dahanna/alpine-llvm-dockerfile:latest RUN ls /usr/lib/llvm9/bin/llvm-config
This will crash because the file is not there.
- Sören Tempel added type:support label
added type:support label
- Reporter
your install command is wrong.
apk add --virtual llvm9-dev
creates a virtual package called llvm9-dev that requires no packages.apk add --virtual build-base llvm9-dev
creates a virtual package called build-base that requires llvm9-dev. removing the --virtual should resolve the issue. - Alex Xu (Hello71) closed
closed
- Alex Xu (Hello71) mentioned in commit alxu/apk-tools@64efec03
mentioned in commit alxu/apk-tools@64efec03
- Alex Xu (Hello71) mentioned in merge request alxu/apk-tools!1 (closed)
mentioned in merge request alxu/apk-tools!1 (closed)
- Alex Xu (Hello71) mentioned in merge request apk-tools!67 (closed)
mentioned in merge request apk-tools!67 (closed)
- Alex Xu (Hello71) mentioned in commit apk-tools@bd156836
mentioned in commit apk-tools@bd156836