From 136611c6f3665566f9ad266b9d64fbcada7828a5 Mon Sep 17 00:00:00 2001 From: sthen Date: Mon, 10 Nov 2008 11:25:33 +0000 Subject: [PATCH] import llvm/clang. not heavily tested yet but there's been a lot of interest in the static analyser and it basically works, so put it in now and link to the build later. Low Level Virtual Machine (LLVM) is: - A compilation strategy designed to enable effective program optimization across the entire lifetime of a program. - A virtual instruction set. - A compiler infrastructure. - LLVM does not imply things that you would expect from a high-level virtual machine. It does not require garbage collection or run-time code generation. some parts from chl@ and the FreeBSD port. --- devel/llvm/Makefile | 68 +++ devel/llvm/distinfo | 5 + devel/llvm/patches/patch-tools_Makefile | 13 + .../patch-tools_clang_lib_Lex_Lexer_cpp | 11 + .../patch-tools_clang_utils_scan-build | 21 + devel/llvm/pkg/DESCR | 8 + devel/llvm/pkg/MESSAGE | 10 + devel/llvm/pkg/PLIST | 549 ++++++++++++++++++ 8 files changed, 685 insertions(+) create mode 100644 devel/llvm/Makefile create mode 100644 devel/llvm/distinfo create mode 100644 devel/llvm/patches/patch-tools_Makefile create mode 100644 devel/llvm/patches/patch-tools_clang_lib_Lex_Lexer_cpp create mode 100644 devel/llvm/patches/patch-tools_clang_utils_scan-build create mode 100644 devel/llvm/pkg/DESCR create mode 100644 devel/llvm/pkg/MESSAGE create mode 100644 devel/llvm/pkg/PLIST diff --git a/devel/llvm/Makefile b/devel/llvm/Makefile new file mode 100644 index 00000000000..27d51fedfb4 --- /dev/null +++ b/devel/llvm/Makefile @@ -0,0 +1,68 @@ +# $OpenBSD: Makefile,v 1.1.1.1 2008/11/10 11:25:33 sthen Exp $ + +COMMENT = Low Level Virtual Machine (LLVM) compiler infrastructure + +SVN_SNAPDATE = 2008-11-05 +SNAPDATE = ${SVN_SNAPDATE:S/-//g} +V = 2.4.snap${SNAPDATE} +DISTNAME = llvm-$V +EXTRACT_SUFX = .tar.bz2 + +SHARED_LIBS += LLVMHello .0.0 # .0.0 + +CATEGORIES = devel + +HOMEPAGE = http://www.llvm.org/ + +# BSD +PERMIT_PACKAGE_CDROM = Yes +PERMIT_PACKAGE_FTP = Yes +PERMIT_DISTFILES_CDROM =Yes +PERMIT_DISTFILES_FTP = Yes + +WANTLIB = c m pthread + +#MASTER_SITES = ${HOMEPAGE}releases/$V/ +MASTER_SITES = ${MASTER_SITE_FREEBSD_LOCAL:=brooks/} + +MODULES = gcc4 +MODGCC4_LANGS = c c++ +MODGCC4_ARCHES =* + +LIB_DEPENDS = elf::devel/libelf + +REGRESS_DEPENDS=::devel/dejagnu + +MAKE_FLAGS = OPTIMIZE_OPTION="${CFLAGS}" \ + VERBOSE=Yes \ + INSTALL="install -c" + +REGRESS_FLAGS = RUNTESTFLAGS= + +SEPARATE_BUILD = simple +USE_GMAKE = Yes +USE_LIBTOOL = Yes + +CONFIGURE_STYLE = gnu +CONFIGURE_ARGS = --enable-bindings=no + +MODGNU_CONFIG_GUESS_DIRS = ${WRKSRC}/autoconf + +pre-configure: + @perl -pi -e s,-lpthread,-pthread,g ${WRKSRC}/configure + @perl -pi -e 's,\(PROJ_docsdir.*:=\).*$$,\1${PREFIX}/share/doc/llvm,g' \ + ${WRKSRC}/Makefile.config.in + @${SUBST_CMD} ${WRKSRC}/tools/clang/utils/scan-build + +post-install: + @${INSTALL_SCRIPT} ${WRKSRC}/tools/clang/utils/ccc \ + ${PREFIX}/bin + @${INSTALL_SCRIPT} ${WRKSRC}/tools/clang/utils/ccc-analyzer \ + ${PREFIX}/bin + @${INSTALL_SCRIPT} ${WRKSRC}/tools/clang/utils/scan-build \ + ${PREFIX}/bin + @${INSTALL_DATA_DIR} ${PREFIX}/share/llvm + @${INSTALL_DATA} ${WRKSRC}/tools/clang/utils/sorttable.js ${PREFIX}/share/llvm + @${INSTALL_DATA} ${WRKSRC}/tools/clang/utils/scanview.css ${PREFIX}/share/llvm + +.include diff --git a/devel/llvm/distinfo b/devel/llvm/distinfo new file mode 100644 index 00000000000..2a86c473961 --- /dev/null +++ b/devel/llvm/distinfo @@ -0,0 +1,5 @@ +MD5 (llvm-2.4.snap20081105.tar.bz2) = +lsXdGtPrV4eVsUtlkxVcg== +RMD160 (llvm-2.4.snap20081105.tar.bz2) = dPol8UPHhIXluKaJK1P6muSri3U= +SHA1 (llvm-2.4.snap20081105.tar.bz2) = Pox3pi4n3tCrM29aa84Obu50UAU= +SHA256 (llvm-2.4.snap20081105.tar.bz2) = ewYT8pC5yqmxh8cAImRYDABo55XtmxQIRX4W3naQ0hI= +SIZE (llvm-2.4.snap20081105.tar.bz2) = 6560028 diff --git a/devel/llvm/patches/patch-tools_Makefile b/devel/llvm/patches/patch-tools_Makefile new file mode 100644 index 00000000000..5f650c1cc99 --- /dev/null +++ b/devel/llvm/patches/patch-tools_Makefile @@ -0,0 +1,13 @@ +$OpenBSD: patch-tools_Makefile,v 1.1.1.1 2008/11/10 11:25:33 sthen Exp $ +--- tools/Makefile.orig Sun Nov 9 12:45:09 2008 ++++ tools/Makefile Sun Nov 9 12:45:21 2008 +@@ -16,7 +16,8 @@ PARALLEL_DIRS := llvm-config \ + llc llvm-ranlib llvm-ar llvm-nm \ + llvm-ld llvm-prof llvm-link \ + lli gccas gccld llvm-extract llvm-db \ +- bugpoint llvm-bcanalyzer llvm-stub llvmc2 ++ bugpoint llvm-bcanalyzer llvm-stub llvmc2 \ ++ clang + + + include $(LEVEL)/Makefile.config diff --git a/devel/llvm/patches/patch-tools_clang_lib_Lex_Lexer_cpp b/devel/llvm/patches/patch-tools_clang_lib_Lex_Lexer_cpp new file mode 100644 index 00000000000..05ca7466194 --- /dev/null +++ b/devel/llvm/patches/patch-tools_clang_lib_Lex_Lexer_cpp @@ -0,0 +1,11 @@ +$OpenBSD: patch-tools_clang_lib_Lex_Lexer_cpp,v 1.1.1.1 2008/11/10 11:25:33 sthen Exp $ +--- tools/clang/lib/Lex/Lexer.cpp.orig Sun Nov 9 12:45:29 2008 ++++ tools/clang/lib/Lex/Lexer.cpp Sun Nov 9 12:45:38 2008 +@@ -910,6 +910,7 @@ static bool isEndOfBlockCommentWithEscapedNewLine(cons + return true; + } + ++#undef __SSE2__ + #ifdef __SSE2__ + #include + #elif __ALTIVEC__ diff --git a/devel/llvm/patches/patch-tools_clang_utils_scan-build b/devel/llvm/patches/patch-tools_clang_utils_scan-build new file mode 100644 index 00000000000..b67afebe16e --- /dev/null +++ b/devel/llvm/patches/patch-tools_clang_utils_scan-build @@ -0,0 +1,21 @@ +$OpenBSD: patch-tools_clang_utils_scan-build,v 1.1.1.1 2008/11/10 11:25:33 sthen Exp $ +--- tools/clang/utils/scan-build.orig Tue Nov 4 00:22:12 2008 ++++ tools/clang/utils/scan-build Sun Nov 9 22:58:06 2008 +@@ -406,7 +406,7 @@ sub CopyFiles { + + my $Dir = shift; + +- my $JS = Cwd::realpath("$RealBin/sorttable.js"); ++ my $JS = Cwd::realpath("${LOCALBASE}/share/llvm/sorttable.js"); + + DieDiag("Cannot find 'sorttable.js'.\n") + if (! -r $JS); +@@ -416,7 +416,7 @@ sub CopyFiles { + DieDiag("Could not copy 'sorttable.js' to '$Dir'.\n") + if (! -r "$Dir/sorttable.js"); + +- my $CSS = Cwd::realpath("$RealBin/scanview.css"); ++ my $CSS = Cwd::realpath("${LOCALBASE}/share/llvm/scanview.css"); + + DieDiag("Cannot find 'scanview.css'.\n") + if (! -r $CSS); diff --git a/devel/llvm/pkg/DESCR b/devel/llvm/pkg/DESCR new file mode 100644 index 00000000000..61f9d21cd28 --- /dev/null +++ b/devel/llvm/pkg/DESCR @@ -0,0 +1,8 @@ +Low Level Virtual Machine (LLVM) is: +- A compilation strategy designed to enable effective program + optimization across the entire lifetime of a program. +- A virtual instruction set. +- A compiler infrastructure. +- LLVM does not imply things that you would expect from a high-level + virtual machine. It does not require garbage collection or run-time + code generation. diff --git a/devel/llvm/pkg/MESSAGE b/devel/llvm/pkg/MESSAGE new file mode 100644 index 00000000000..40a1cdd8165 --- /dev/null +++ b/devel/llvm/pkg/MESSAGE @@ -0,0 +1,10 @@ +For more information about using scan-build for the static +analyser, look at http://clang.llvm.org/StaticAnalysisUsage.html + +For instance, the scanner on the kernel build can be launched with: + +cd /usr/src/sys/arch/`uname -m`/conf && config GENERIC.MP +cd /usr/src/sys/arch/`uname -m`/compile/GENERIC.MP +make clean && make depend && scan-build make + +This will generate HTML reports in /tmp/scan-build-(date). diff --git a/devel/llvm/pkg/PLIST b/devel/llvm/pkg/PLIST new file mode 100644 index 00000000000..859e9ad27e2 --- /dev/null +++ b/devel/llvm/pkg/PLIST @@ -0,0 +1,549 @@ +@comment $OpenBSD: PLIST,v 1.1.1.1 2008/11/10 11:25:33 sthen Exp $ +Headers/ +@comment Headers/.dir +Headers/iso646.h +Headers/mmintrin.h +Headers/stdarg.h +Headers/stdbool.h +Headers/stddef.h +@comment bin/.dir +@bin bin/bugpoint +bin/ccc +bin/ccc-analyzer +@bin bin/clang +bin/gccas +bin/gccld +@bin bin/llc +@bin bin/lli +@bin bin/llvm-ar +@bin bin/llvm-as +@bin bin/llvm-bcanalyzer +bin/llvm-config +@bin bin/llvm-db +@bin bin/llvm-dis +@bin bin/llvm-extract +@bin bin/llvm-ld +@bin bin/llvm-link +@bin bin/llvm-nm +@bin bin/llvm-prof +@bin bin/llvm-ranlib +@bin bin/llvm-stub +@bin bin/llvmc2 +@bin bin/opt +bin/scan-build +docs/ +docs/llvm/ +docs/llvm/html/ +docs/llvm/html.tar.gz +docs/llvm/html/AliasAnalysis.html +docs/llvm/html/BitCodeFormat.html +docs/llvm/html/Bugpoint.html +docs/llvm/html/CFEBuildInstrs.html +docs/llvm/html/CodeGenerator.html +docs/llvm/html/CodingStandards.html +docs/llvm/html/CommandGuide/ +docs/llvm/html/CommandGuide/bugpoint.html +docs/llvm/html/CommandGuide/index.html +docs/llvm/html/CommandGuide/llc.html +docs/llvm/html/CommandGuide/lli.html +docs/llvm/html/CommandGuide/llvm-ar.html +docs/llvm/html/CommandGuide/llvm-as.html +docs/llvm/html/CommandGuide/llvm-bcanalyzer.html +docs/llvm/html/CommandGuide/llvm-config.html +docs/llvm/html/CommandGuide/llvm-db.html +docs/llvm/html/CommandGuide/llvm-dis.html +docs/llvm/html/CommandGuide/llvm-extract.html +docs/llvm/html/CommandGuide/llvm-ld.html +docs/llvm/html/CommandGuide/llvm-link.html +docs/llvm/html/CommandGuide/llvm-nm.html +docs/llvm/html/CommandGuide/llvm-prof.html +docs/llvm/html/CommandGuide/llvm-ranlib.html +docs/llvm/html/CommandGuide/llvmgcc.html +docs/llvm/html/CommandGuide/llvmgxx.html +docs/llvm/html/CommandGuide/manpage.css +docs/llvm/html/CommandGuide/opt.html +docs/llvm/html/CommandGuide/tblgen.html +docs/llvm/html/CommandLine.html +docs/llvm/html/CompilerDriver.html +docs/llvm/html/CompilerWriterInfo.html +docs/llvm/html/DeveloperPolicy.html +docs/llvm/html/ExceptionHandling.html +docs/llvm/html/ExtendingLLVM.html +docs/llvm/html/FAQ.html +docs/llvm/html/GCCFEBuildInstrs.html +docs/llvm/html/GarbageCollection.html +docs/llvm/html/GetElementPtr.html +docs/llvm/html/GettingStarted.html +docs/llvm/html/GettingStartedVS.html +docs/llvm/html/HowToReleaseLLVM.html +docs/llvm/html/HowToSubmitABug.html +docs/llvm/html/InternalsManual.html +docs/llvm/html/LangRef.html +docs/llvm/html/Lexicon.html +docs/llvm/html/LinkTimeOptimization.html +docs/llvm/html/MakefileGuide.html +docs/llvm/html/Passes.html +docs/llvm/html/ProgrammersManual.html +docs/llvm/html/Projects.html +docs/llvm/html/ReleaseNotes.html +docs/llvm/html/SourceLevelDebugging.html +docs/llvm/html/SystemLibrary.html +docs/llvm/html/TableGenFundamentals.html +docs/llvm/html/TestingGuide.html +docs/llvm/html/UsingLibraries.html +docs/llvm/html/WritingAnLLVMBackend.html +docs/llvm/html/WritingAnLLVMPass.html +docs/llvm/html/doxygen.css +docs/llvm/html/img/ +docs/llvm/html/img/Debugging.gif +docs/llvm/html/img/libdeps.gif +docs/llvm/html/img/lines.gif +docs/llvm/html/img/objdeps.gif +docs/llvm/html/img/venusflytrap.jpg +docs/llvm/html/index.html +docs/llvm/html/llvm.css +docs/llvm/html/tutorial/ +docs/llvm/html/tutorial/JITTutorial1.html +docs/llvm/html/tutorial/JITTutorial2.html +docs/llvm/html/tutorial/LangImpl1.html +docs/llvm/html/tutorial/LangImpl2.html +docs/llvm/html/tutorial/LangImpl3.html +docs/llvm/html/tutorial/LangImpl4.html +docs/llvm/html/tutorial/LangImpl5.html +docs/llvm/html/tutorial/LangImpl6.html +docs/llvm/html/tutorial/LangImpl7.html +docs/llvm/html/tutorial/LangImpl8.html +docs/llvm/html/tutorial/OCamlLangImpl1.html +docs/llvm/html/tutorial/OCamlLangImpl2.html +docs/llvm/html/tutorial/OCamlLangImpl3.html +docs/llvm/html/tutorial/OCamlLangImpl4.html +docs/llvm/html/tutorial/OCamlLangImpl5.html +docs/llvm/html/tutorial/OCamlLangImpl6.html +docs/llvm/html/tutorial/OCamlLangImpl7.html +docs/llvm/html/tutorial/index.html +docs/llvm/ps/ +docs/llvm/ps/bugpoint.ps +docs/llvm/ps/llc.ps +docs/llvm/ps/lli.ps +docs/llvm/ps/llvm-ar.ps +docs/llvm/ps/llvm-as.ps +docs/llvm/ps/llvm-bcanalyzer.ps +docs/llvm/ps/llvm-config.ps +docs/llvm/ps/llvm-db.ps +docs/llvm/ps/llvm-dis.ps +docs/llvm/ps/llvm-extract.ps +docs/llvm/ps/llvm-ld.ps +docs/llvm/ps/llvm-link.ps +docs/llvm/ps/llvm-nm.ps +docs/llvm/ps/llvm-prof.ps +docs/llvm/ps/llvm-ranlib.ps +docs/llvm/ps/llvmgcc.ps +docs/llvm/ps/llvmgxx.ps +docs/llvm/ps/opt.ps +docs/llvm/ps/tblgen.ps +include/llvm/ +include/llvm-c/ +include/llvm-c/Analysis.h +include/llvm-c/BitReader.h +include/llvm-c/BitWriter.h +include/llvm-c/Core.h +include/llvm-c/ExecutionEngine.h +include/llvm-c/LinkTimeOptimizer.h +include/llvm-c/Target.h +include/llvm-c/Transforms/ +include/llvm-c/Transforms/Scalar.h +include/llvm-c/lto.h +include/llvm/ADT/ +include/llvm/ADT/APFloat.h +include/llvm/ADT/APInt.h +include/llvm/ADT/APSInt.h +include/llvm/ADT/BitVector.h +include/llvm/ADT/DenseMap.h +include/llvm/ADT/DenseSet.h +include/llvm/ADT/DepthFirstIterator.h +include/llvm/ADT/EquivalenceClasses.h +include/llvm/ADT/FoldingSet.h +include/llvm/ADT/GraphTraits.h +include/llvm/ADT/HashExtras.h +include/llvm/ADT/ImmutableList.h +include/llvm/ADT/ImmutableMap.h +include/llvm/ADT/ImmutableSet.h +include/llvm/ADT/IndexedMap.h +include/llvm/ADT/IntrusiveRefCntPtr.h +include/llvm/ADT/OwningPtr.h +include/llvm/ADT/PostOrderIterator.h +include/llvm/ADT/PriorityQueue.h +include/llvm/ADT/SCCIterator.h +include/llvm/ADT/STLExtras.h +include/llvm/ADT/ScopedHashTable.h +include/llvm/ADT/SetOperations.h +include/llvm/ADT/SetVector.h +include/llvm/ADT/SmallPtrSet.h +include/llvm/ADT/SmallSet.h +include/llvm/ADT/SmallString.h +include/llvm/ADT/SmallVector.h +include/llvm/ADT/SparseBitVector.h +include/llvm/ADT/Statistic.h +include/llvm/ADT/StringExtras.h +include/llvm/ADT/StringMap.h +include/llvm/ADT/StringSet.h +include/llvm/ADT/Tree.h +include/llvm/ADT/Trie.h +include/llvm/ADT/UniqueVector.h +include/llvm/ADT/VectorExtras.h +include/llvm/ADT/hash_map.cmake +include/llvm/ADT/hash_map.h +include/llvm/ADT/hash_set.cmake +include/llvm/ADT/hash_set.h +include/llvm/ADT/ilist.h +include/llvm/ADT/ilist_node.h +include/llvm/ADT/iterator.cmake +include/llvm/ADT/iterator.h +include/llvm/AbstractTypeUser.h +include/llvm/Analysis/ +include/llvm/Analysis/AliasAnalysis.h +include/llvm/Analysis/AliasSetTracker.h +include/llvm/Analysis/CFGPrinter.h +include/llvm/Analysis/CallGraph.h +include/llvm/Analysis/ConstantFolding.h +include/llvm/Analysis/ConstantsScanner.h +include/llvm/Analysis/DominatorInternals.h +include/llvm/Analysis/Dominators.h +include/llvm/Analysis/EscapeAnalysis.h +include/llvm/Analysis/FindUsedTypes.h +include/llvm/Analysis/Interval.h +include/llvm/Analysis/IntervalIterator.h +include/llvm/Analysis/IntervalPartition.h +include/llvm/Analysis/LibCallAliasAnalysis.h +include/llvm/Analysis/LibCallSemantics.h +include/llvm/Analysis/LoopInfo.h +include/llvm/Analysis/LoopPass.h +include/llvm/Analysis/LoopVR.h +include/llvm/Analysis/MemoryDependenceAnalysis.h +include/llvm/Analysis/Passes.h +include/llvm/Analysis/PostDominators.h +include/llvm/Analysis/ProfileInfo.h +include/llvm/Analysis/ProfileInfoLoader.h +include/llvm/Analysis/ProfileInfoTypes.h +include/llvm/Analysis/ScalarEvolution.h +include/llvm/Analysis/ScalarEvolutionExpander.h +include/llvm/Analysis/ScalarEvolutionExpressions.h +include/llvm/Analysis/SparsePropagation.h +include/llvm/Analysis/Trace.h +include/llvm/Analysis/ValueTracking.h +include/llvm/Analysis/Verifier.h +include/llvm/Argument.h +include/llvm/Assembly/ +include/llvm/Assembly/AsmAnnotationWriter.h +include/llvm/Assembly/Parser.h +include/llvm/Assembly/PrintModulePass.h +include/llvm/Assembly/Writer.h +include/llvm/Attributes.h +include/llvm/AutoUpgrade.h +include/llvm/BasicBlock.h +include/llvm/Bitcode/ +include/llvm/Bitcode/Archive.h +include/llvm/Bitcode/BitCodes.h +include/llvm/Bitcode/BitstreamReader.h +include/llvm/Bitcode/BitstreamWriter.h +include/llvm/Bitcode/Deserialize.h +include/llvm/Bitcode/LLVMBitCodes.h +include/llvm/Bitcode/ReaderWriter.h +include/llvm/Bitcode/Serialization.h +include/llvm/Bitcode/SerializationFwd.h +include/llvm/Bitcode/Serialize.h +include/llvm/CallGraphSCCPass.h +include/llvm/CallingConv.h +include/llvm/CodeGen/ +include/llvm/CodeGen/AsmPrinter.h +include/llvm/CodeGen/BreakCriticalMachineEdge.h +include/llvm/CodeGen/CallingConvLower.h +include/llvm/CodeGen/DAGISelHeader.h +include/llvm/CodeGen/DwarfWriter.h +include/llvm/CodeGen/ELFRelocation.h +include/llvm/CodeGen/FastISel.h +include/llvm/CodeGen/FileWriters.h +include/llvm/CodeGen/GCMetadata.h +include/llvm/CodeGen/GCMetadataPrinter.h +include/llvm/CodeGen/GCStrategy.h +include/llvm/CodeGen/GCs.h +include/llvm/CodeGen/IntrinsicLowering.h +include/llvm/CodeGen/LinkAllAsmWriterComponents.h +include/llvm/CodeGen/LinkAllCodegenComponents.h +include/llvm/CodeGen/LiveInterval.h +include/llvm/CodeGen/LiveIntervalAnalysis.h +include/llvm/CodeGen/LiveStackAnalysis.h +include/llvm/CodeGen/LiveVariables.h +include/llvm/CodeGen/MachORelocation.h +include/llvm/CodeGen/MachineBasicBlock.h +include/llvm/CodeGen/MachineCodeEmitter.h +include/llvm/CodeGen/MachineConstantPool.h +include/llvm/CodeGen/MachineDominators.h +include/llvm/CodeGen/MachineFrameInfo.h +include/llvm/CodeGen/MachineFunction.h +include/llvm/CodeGen/MachineFunctionPass.h +include/llvm/CodeGen/MachineInstr.h +include/llvm/CodeGen/MachineInstrBuilder.h +include/llvm/CodeGen/MachineJumpTableInfo.h +include/llvm/CodeGen/MachineLocation.h +include/llvm/CodeGen/MachineLoopInfo.h +include/llvm/CodeGen/MachineMemOperand.h +include/llvm/CodeGen/MachineModuleInfo.h +include/llvm/CodeGen/MachineOperand.h +include/llvm/CodeGen/MachinePassRegistry.h +include/llvm/CodeGen/MachineRegisterInfo.h +include/llvm/CodeGen/MachineRelocation.h +include/llvm/CodeGen/Passes.h +include/llvm/CodeGen/PseudoSourceValue.h +include/llvm/CodeGen/RegAllocRegistry.h +include/llvm/CodeGen/RegisterCoalescer.h +include/llvm/CodeGen/RegisterScavenging.h +include/llvm/CodeGen/RuntimeLibcalls.h +include/llvm/CodeGen/ScheduleDAG.h +include/llvm/CodeGen/SchedulerRegistry.h +include/llvm/CodeGen/SelectionDAG.h +include/llvm/CodeGen/SelectionDAGISel.h +include/llvm/CodeGen/SelectionDAGNodes.h +include/llvm/CodeGen/ValueTypes.h +include/llvm/CodeGen/ValueTypes.td +include/llvm/CompilerDriver/ +include/llvm/CompilerDriver/Action.h +include/llvm/CompilerDriver/Common.td +include/llvm/CompilerDriver/CompilationGraph.h +include/llvm/CompilerDriver/Plugin.h +include/llvm/CompilerDriver/Tool.h +include/llvm/CompilerDriver/Tools.td +include/llvm/Config/ +include/llvm/Config/alloca.h +include/llvm/Config/config.h +include/llvm/Config/config.h.cmake +include/llvm/Constant.h +include/llvm/Constants.h +include/llvm/Debugger/ +include/llvm/Debugger/Debugger.h +include/llvm/Debugger/InferiorProcess.h +include/llvm/Debugger/ProgramInfo.h +include/llvm/Debugger/RuntimeInfo.h +include/llvm/Debugger/SourceFile.h +include/llvm/Debugger/SourceLanguage.h +include/llvm/DerivedTypes.h +include/llvm/ExecutionEngine/ +include/llvm/ExecutionEngine/ExecutionEngine.h +include/llvm/ExecutionEngine/GenericValue.h +include/llvm/ExecutionEngine/Interpreter.h +include/llvm/ExecutionEngine/JIT.h +include/llvm/ExecutionEngine/JITMemoryManager.h +include/llvm/Function.h +include/llvm/GlobalAlias.h +include/llvm/GlobalValue.h +include/llvm/GlobalVariable.h +include/llvm/InlineAsm.h +include/llvm/InstrTypes.h +include/llvm/Instruction.def +include/llvm/Instruction.h +include/llvm/Instructions.h +include/llvm/IntrinsicInst.h +include/llvm/Intrinsics.gen +include/llvm/Intrinsics.h +include/llvm/Intrinsics.td +include/llvm/IntrinsicsARM.td +include/llvm/IntrinsicsAlpha.td +include/llvm/IntrinsicsCellSPU.td +include/llvm/IntrinsicsPowerPC.td +include/llvm/IntrinsicsX86.td +include/llvm/LinkAllPasses.h +include/llvm/LinkAllVMCore.h +include/llvm/Linker.h +include/llvm/Module.h +include/llvm/ModuleProvider.h +include/llvm/OperandTraits.h +include/llvm/Pass.h +include/llvm/PassAnalysisSupport.h +include/llvm/PassManager.h +include/llvm/PassManagers.h +include/llvm/PassSupport.h +include/llvm/Support/ +include/llvm/Support/AIXDataTypesFix.h +include/llvm/Support/AlignOf.h +include/llvm/Support/Allocator.h +include/llvm/Support/Annotation.h +include/llvm/Support/CFG.h +include/llvm/Support/CallSite.h +include/llvm/Support/Casting.h +include/llvm/Support/CommandLine.h +include/llvm/Support/Compiler.h +include/llvm/Support/ConstantFolder.h +include/llvm/Support/ConstantRange.h +include/llvm/Support/DOTGraphTraits.h +include/llvm/Support/DataFlow.h +include/llvm/Support/DataTypes.h +include/llvm/Support/DataTypes.h.cmake +include/llvm/Support/Debug.h +include/llvm/Support/DebugInfoBuilder.h +include/llvm/Support/Dwarf.h +include/llvm/Support/DynamicLinker.h +include/llvm/Support/ELF.h +include/llvm/Support/FileUtilities.h +include/llvm/Support/Format.h +include/llvm/Support/GetElementPtrTypeIterator.h +include/llvm/Support/GraphWriter.h +include/llvm/Support/IRBuilder.h +include/llvm/Support/InstIterator.h +include/llvm/Support/InstVisitor.h +include/llvm/Support/LeakDetector.h +include/llvm/Support/ManagedStatic.h +include/llvm/Support/Mangler.h +include/llvm/Support/MathExtras.h +include/llvm/Support/MemoryBuffer.h +include/llvm/Support/MutexGuard.h +include/llvm/Support/NoFolder.h +include/llvm/Support/OutputBuffer.h +include/llvm/Support/PassNameParser.h +include/llvm/Support/PatternMatch.h +include/llvm/Support/PluginLoader.h +include/llvm/Support/Recycler.h +include/llvm/Support/RecyclingAllocator.h +include/llvm/Support/Registry.h +include/llvm/Support/SlowOperationInformer.h +include/llvm/Support/StableBasicBlockNumbering.h +include/llvm/Support/Streams.h +include/llvm/Support/StringPool.h +include/llvm/Support/SystemUtils.h +include/llvm/Support/TargetFolder.h +include/llvm/Support/Timer.h +include/llvm/Support/raw_ostream.h +include/llvm/Support/type_traits.h +include/llvm/SymbolTableListTraits.h +include/llvm/System/ +include/llvm/System/Alarm.h +include/llvm/System/Disassembler.h +include/llvm/System/DynamicLibrary.h +include/llvm/System/Host.h +include/llvm/System/IncludeFile.h +include/llvm/System/LICENSE.TXT +include/llvm/System/Memory.h +include/llvm/System/Mutex.h +include/llvm/System/Path.h +include/llvm/System/Process.h +include/llvm/System/Program.h +include/llvm/System/Signals.h +include/llvm/System/Solaris.h +include/llvm/System/TimeValue.h +include/llvm/Target/ +include/llvm/Target/DarwinTargetAsmInfo.h +include/llvm/Target/ELFTargetAsmInfo.h +include/llvm/Target/SubtargetFeature.h +include/llvm/Target/TargetAsmInfo.h +include/llvm/Target/TargetData.h +include/llvm/Target/TargetELFWriterInfo.h +include/llvm/Target/TargetFrameInfo.h +include/llvm/Target/TargetInstrDesc.h +include/llvm/Target/TargetInstrInfo.h +include/llvm/Target/TargetInstrItineraries.h +include/llvm/Target/TargetJITInfo.h +include/llvm/Target/TargetLowering.h +include/llvm/Target/TargetMachOWriterInfo.h +include/llvm/Target/TargetMachine.h +include/llvm/Target/TargetMachineRegistry.h +include/llvm/Target/TargetOptions.h +include/llvm/Target/TargetRegisterInfo.h +include/llvm/Target/TargetSubtarget.h +include/llvm/Transforms/ +include/llvm/Transforms/IPO/ +include/llvm/Transforms/IPO.h +include/llvm/Transforms/IPO/InlinerPass.h +include/llvm/Transforms/Instrumentation.h +include/llvm/Transforms/RSProfiling.h +include/llvm/Transforms/Scalar.h +include/llvm/Transforms/Utils/ +include/llvm/Transforms/Utils/BasicBlockUtils.h +include/llvm/Transforms/Utils/BasicInliner.h +include/llvm/Transforms/Utils/Cloning.h +include/llvm/Transforms/Utils/FunctionUtils.h +include/llvm/Transforms/Utils/InlineCost.h +include/llvm/Transforms/Utils/Local.h +include/llvm/Transforms/Utils/PromoteMemToReg.h +include/llvm/Transforms/Utils/UnifyFunctionExitNodes.h +include/llvm/Transforms/Utils/UnrollLoop.h +include/llvm/Transforms/Utils/ValueMapper.h +include/llvm/Type.h +include/llvm/TypeSymbolTable.h +include/llvm/Use.h +include/llvm/User.h +include/llvm/Value.h +include/llvm/ValueSymbolTable.h +@comment lib/.dir +lib/LLVMARMAsmPrinter.o +lib/LLVMARMCodeGen.o +lib/LLVMAlpha.o +lib/LLVMCBackend.o +lib/LLVMCBase.o +lib/LLVMCellSPU.o +lib/LLVMCppBackend.o +lib/LLVMExecutionEngine.o +lib/LLVMHello.a +lib/LLVMHello.la +lib/LLVMHello.so.0.0 +lib/LLVMIA64.o +lib/LLVMInterpreter.o +lib/LLVMJIT.o +lib/LLVMMSIL.o +lib/LLVMMips.o +lib/LLVMPIC16.o +lib/LLVMPowerPCAsmPrinter.o +lib/LLVMPowerPCCodeGen.o +lib/LLVMSparc.o +lib/LLVMX86AsmPrinter.o +lib/LLVMX86CodeGen.o +lib/libLLVMAnalysis.a +lib/libLLVMArchive.a +lib/libLLVMAsmParser.a +lib/libLLVMAsmPrinter.a +lib/libLLVMBitReader.a +lib/libLLVMBitWriter.a +lib/libLLVMCodeGen.a +lib/libLLVMCore.a +lib/libLLVMDebugger.a +lib/libLLVMInstrumentation.a +lib/libLLVMLinker.a +lib/libLLVMScalarOpts.a +lib/libLLVMSelectionDAG.a +lib/libLLVMSupport.a +lib/libLLVMSystem.a +lib/libLLVMTarget.a +lib/libLLVMTransformUtils.a +lib/libLLVMipa.a +lib/libLLVMipo.a +lib/libclangAST.a +lib/libclangAnalysis.a +lib/libclangBasic.a +lib/libclangCodeGen.a +lib/libclangDriver.a +lib/libclangLex.a +lib/libclangParse.a +lib/libclangRewrite.a +lib/libclangSema.a +share/llvm/ +share/llvm/scanview.css +share/llvm/sorttable.js +share/man/ +share/man/man1/ +@man share/man/man1/bugpoint.1 +@man share/man/man1/llc.1 +@man share/man/man1/lli.1 +@man share/man/man1/llvm-ar.1 +@man share/man/man1/llvm-as.1 +@man share/man/man1/llvm-bcanalyzer.1 +@man share/man/man1/llvm-config.1 +@man share/man/man1/llvm-db.1 +@man share/man/man1/llvm-dis.1 +@man share/man/man1/llvm-extract.1 +@man share/man/man1/llvm-ld.1 +@man share/man/man1/llvm-link.1 +@man share/man/man1/llvm-nm.1 +@man share/man/man1/llvm-prof.1 +@man share/man/man1/llvm-ranlib.1 +@man share/man/man1/llvmgcc.1 +@man share/man/man1/llvmgxx.1 +@man share/man/man1/opt.1 +@man share/man/man1/tblgen.1