aboutsummaryrefslogtreecommitdiffstats
path: root/devel
diff options
context:
space:
mode:
authorbrooks <brooks@FreeBSD.org>2013-10-19 06:06:39 +0800
committerbrooks <brooks@FreeBSD.org>2013-10-19 06:06:39 +0800
commit4b7d4e01187127f75db1828fe4b34684c53b9950 (patch)
treea3288d0e5a1c0c79ef902867cd7518f713a9b34c /devel
parent3bf26945032854d59ad3199c091373c36073a5cf (diff)
downloadfreebsd-ports-gnome-4b7d4e01187127f75db1828fe4b34684c53b9950.tar.gz
freebsd-ports-gnome-4b7d4e01187127f75db1828fe4b34684c53b9950.tar.zst
freebsd-ports-gnome-4b7d4e01187127f75db1828fe4b34684c53b9950.zip
Add llvm32 and clang32 ports modeled on the llvm33 and clang33 ports.
These ports install binaries with "32" suffixes and most data lives in ${PREFIX}/llvm32 so there are no conflicts. NOTE: devel/llvm and lang/clang will shortly be removed in favor of these ports.
Diffstat (limited to 'devel')
-rw-r--r--devel/Makefile1
-rw-r--r--devel/llvm32/Makefile262
-rw-r--r--devel/llvm32/files/llvm-wrapper.sh.in10
-rw-r--r--devel/llvm32/files/patch-lib_Target_X86_X86JITInfo.cpp26
-rw-r--r--devel/llvm32/files/patch-svn-r17035346
-rw-r--r--devel/llvm32/files/patch-svn-r17505755
-rw-r--r--devel/llvm32/files/patch-svn-r17536040
-rw-r--r--devel/llvm32/files/patch-svn-r17596249
-rw-r--r--devel/llvm32/files/patch-utils_llvm-build_llvmbuild_main.py20
-rw-r--r--devel/llvm32/pkg-descr10
-rw-r--r--devel/llvm32/pkg-plist907
11 files changed, 1426 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile
index 96bedc6a992a..ffd3eb8dcda4 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -1150,6 +1150,7 @@
SUBDIR += llvm
SUBDIR += llvm-devel
SUBDIR += llvm31
+ SUBDIR += llvm32
SUBDIR += llvm33
SUBDIR += lmdbg
SUBDIR += lndir
diff --git a/devel/llvm32/Makefile b/devel/llvm32/Makefile
new file mode 100644
index 000000000000..2102ca862833
--- /dev/null
+++ b/devel/llvm32/Makefile
@@ -0,0 +1,262 @@
+# $FreeBSD$
+
+PORTNAME= llvm
+PORTVERSION= 3.2
+CATEGORIES= devel lang
+MASTER_SITES= http://llvm.org/releases/${PORTVERSION}/
+DISTNAME= ${PORTNAME}-${PORTVERSION}.src
+PKGNAMESUFFIX= ${LLVM_SUFFIX}
+
+MAINTAINER= brooks@FreeBSD.org
+COMMENT= The LLVM Compiler Infrastructure
+
+LIB_DEPENDS= execinfo:${PORTSDIR}/devel/libexecinfo
+
+LLVM_SUFFIX= ${PORTVERSION:S/.//g}
+LLVM_PREFIX= ${PREFIX}/llvm${LLVM_SUFFIX}
+DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}${LLVM_SUFFIX}
+DATADIR= ${PREFIX}/share/${PORTNAME}${LLVM_SUFFIX}
+
+USES= gmake perl5
+GNU_CONFIGURE= yes
+GNU_CONFIGURE_PREFIX= ${LLVM_PREFIX}
+USE_LDCONFIG= ${LLVM_PREFIX}/lib
+
+SUB_FILES= llvm-wrapper.sh
+SUB_LIST= LLVM_PREFIX="${LLVM_PREFIX}" LLVM_SUFFIX="${LLVM_SUFFIX}"
+
+# Suggested tweaks from http://llvm.org/docs/Packaging.html
+CONFIGURE_ARGS+= --enable-shared
+MAKE_ARGS+= REQUIRES_RTTI=1
+LIBNAME= libLLVM-${DISTVERSION:C/\rc[0-9]//}.so
+
+CONFIGURE_ARGS+= --enable-bindings=none
+CONFIGURE_ARGS+= --enable-optimized
+
+OPTIONS_DEFINE= ASSERTS CMAKE DOCS LIT LTOPLUGIN MANPAGES
+
+ASSERTS_DESC= Enable assertions (thread unsafe)
+CMAKE_DESC= Build cmake support files
+LIT_DESC= Install lit and FileCheck test tools (requires python)
+LTOPLUGIN_DESC= Build LTO plugin (requires gold)
+
+OPTIONS_DEFAULT= CMAKE LIT MANPAGES
+OPTIONS_SUB= yes
+
+PLIST_SUB+= PORTVERSION=${PORTVERSION}
+
+COMMANDS= bugpoint \
+ llc \
+ lli \
+ llvm-ar \
+ llvm-as \
+ llvm-bcanalyzer \
+ llvm-config \
+ llvm-cov \
+ llvm-diff \
+ llvm-dis \
+ llvm-dwarfdump \
+ llvm-extract \
+ llvm-link \
+ llvm-mc \
+ llvm-mcmarkup \
+ llvm-nm \
+ llvm-objdump \
+ llvm-prof \
+ llvm-ranlib \
+ llvm-readobj \
+ llvm-rtdyld \
+ llvm-size \
+ llvm-stress \
+ llvm-tblgen \
+ macho-dump \
+ opt
+FIRST_COMMAND= ${COMMANDS:C/^/XXXX/1:MXXXX*:C/^XXXX//}
+
+.include <bsd.port.options.mk>
+
+.if ${PORT_OPTIONS:MASSERTS}
+CONFIGURE_ARGS+= --enable-assertions
+.else
+CONFIGURE_ARGS+= --disable-assertions
+.endif
+
+.if ${PORT_OPTIONS:MCMAKE}
+BUILD_DEPENDS+= cmake:${PORTSDIR}/devel/cmake
+PORTDATA+= cmake
+.endif
+
+.if ${PORT_OPTIONS:MDOCS} || ${PORT_OPTIONS:MMANPAGES}
+BUILD_DEPENDS+= sphinx-build:${PORTSDIR}/textproc/py-sphinx
+.endif
+
+.if ${PORT_OPTIONS:MDOCS}
+CONFIGURE_ARGS+= --enable-docs
+.else
+CONFIGURE_ARGS+= --disable-docs
+.endif
+
+.if ${PORT_OPTIONS:MLIT}
+MAN1SRCS+= lit.1
+USE_PYTHON= yes
+LIT_COMMANDS= lit llvm-lit FileCheck
+.else
+USE_PYTHON_BUILD= yes
+.endif
+
+.if ${PORT_OPTIONS:MLTOPLUGIN}
+BUILD_DEPENDS+= ld.gold:${PORTSDIR}/devel/binutils
+RUN_DEPENDS+= ld.gold:${PORTSDIR}/devel/binutils
+CONFIGURE_ARGS+= --with-binutils-include=${LOCALBASE}/include
+PLIST_FILES+= llvm${LLVM_SUFFIX}/lib/LLVMgold.so
+.endif
+
+.if ${PORT_OPTIONS:MMANPAGES}
+MAN1SRCS+= bugpoint.1 llc.1 lli.1 llvm-ar.1 llvm-as.1 \
+ llvm-bcanalyzer.1 llvm-config.1 llvm-cov.1 llvm-diff.1 \
+ llvm-dis.1 llvm-extract.1 llvm-link.1 llvm-nm.1 \
+ llvm-prof.1 llvm-ranlib.1 llvm-stress.1 opt.1 tblgen.1
+PLIST_FILES+= ${MAN1SRCS:S|^|man/man1/|:S|.1$|${LLVM_SUFFIX}.1.gz|}
+.endif
+
+.include <bsd.port.pre.mk>
+
+.if ${ARCH} == "arm"
+BROKEN= Does not compile on arm
+.elif ${ARCH} == "sparc64"
+BROKEN= does not compile on sparc64
+.endif
+
+.if ${ARCH} == "amd64" || ${ARCH} == "ia64"
+CONFIGURE_ARGS+= --enable-pic --with-pic
+.endif
+
+.if ${ARCH} == "i386"
+CONFIGURE_ARGS+= --with-optimize-option=-O2
+.endif
+
+post-patch:
+ ${REINPLACE_CMD} -e 's|${PORTVERSION}svn|${PORTVERSION}|g' \
+ ${WRKSRC}/configure
+ ${REINPLACE_CMD} -e 's|\(PROJ_docsdir.*:=\).*$$|\1${DOCSDIR}|g' \
+ ${WRKSRC}/Makefile.config.in
+ ${REINPLACE_CMD} -e 's|\(PROJ_mandir.*:=\).*$$|\1${MANPREFIX}/man|g' \
+ ${WRKSRC}/Makefile.config.in
+ ${REINPLACE_CMD} -e 's|import lit|import lit${LLVM_SUFFIX}|' \
+ -e 's|from lit|from lit${LLVM_SUFFIX}|' \
+ -e 's|lit\.|lit${LLVM_SUFFIX}.|' \
+ ${WRKSRC}/utils/lit/lit.py ${WRKSRC}/utils/lit/lit/*.py
+
+.if ${PORT_OPTIONS:MCMAKE}
+post-configure:
+ ${MKDIR} ${WRKDIR}/cmake
+ cd ${WRKDIR}/cmake && cmake -G "Unix Makefiles" ${WRKSRC}
+ ${REINPLACE_CMD} -e 's|${WRKDIR}/cmake|${LLVM_PREFIX}|' \
+ -e 's|${WRKSRC}/cmake/modules|${DATADIR}/cmake|' \
+ ${WRKDIR}/cmake/share/llvm/cmake/LLVMConfig.cmake
+.endif
+
+post-build:
+.if ${PORT_OPTIONS:MMANPAGES}
+ @cd ${WRKSRC}/docs && ${GMAKE} -f Makefile.sphinx man
+.endif
+.if ${PORT_OPTIONS:MDOCS}
+ @cd ${WRKSRC}/docs && ${GMAKE} -f Makefile.sphinx html
+.endif
+
+post-install:
+ ${MV} ${STAGEDIR}${LLVM_PREFIX}/lib/${LIBNAME} \
+ ${STAGEDIR}${LLVM_PREFIX}/lib/${LIBNAME}.0
+ ${LN} -sf ${LIBNAME}.0 ${STAGEDIR}${LLVM_PREFIX}/lib/${LIBNAME}
+ ${INSTALL_SCRIPT} ${WRKDIR}/llvm-wrapper.sh \
+ ${STAGEDIR}${PREFIX}/bin/${FIRST_COMMAND}${LLVM_SUFFIX}
+.for command in ${COMMANDS:C/^/XXXX/1:NXXXX*}
+ test -e ${STAGEDIR}${LLVM_PREFIX}/bin/${command}
+ ${LN} -f ${STAGEDIR}${PREFIX}/bin/${FIRST_COMMAND}${LLVM_SUFFIX} \
+ ${STAGEDIR}${PREFIX}/bin/${command}${LLVM_SUFFIX}
+.endfor
+.if ${PORT_OPTIONS:MCMAKE}
+ ${MKDIR} ${STAGEDIR}${DATADIR}/cmake
+ ${INSTALL_DATA} ${WRKSRC}/cmake/modules/*.cmake \
+ ${WRKDIR}/cmake/share/llvm/cmake/*.cmake \
+ ${STAGEDIR}${DATADIR}/cmake/
+.endif
+.if ${PORT_OPTIONS:MDOCS}
+ ${MKDIR} ${STAGEDIR}${DOCSDIR}/html
+ ${FIND} ${WRKSRC}/docs/_build/html -type f | \
+ ${XARGS} -I _DOC_ ${INSTALL_DATA} _DOC_ ${STAGEDIR}${DOCSDIR}/html/
+.endif
+.if ${PORT_OPTIONS:MLIT}
+ ${INSTALL_SCRIPT} ${WRKSRC}/utils/lit/lit.py \
+ ${STAGEDIR}${LLVM_PREFIX}/bin/lit
+ ${LN} -f ${STAGEDIR}${LLVM_PREFIX}/bin/lit \
+ ${STAGEDIR}${LLVM_PREFIX}/bin/llvm-lit
+ ${LN} -f ${STAGEDIR}${LLVM_PREFIX}/bin/lit \
+ ${STAGEDIR}${PREFIX}/bin/lit${LLVM_SUFFIX}
+ ${LN} -f ${STAGEDIR}${LLVM_PREFIX}/bin/lit \
+ ${STAGEDIR}${PREFIX}/bin/llvm-lit${LLVM_SUFFIX}
+ ${MKDIR} ${STAGEDIR}${PYTHON_SITELIBDIR}/lit${LLVM_SUFFIX}
+ ${INSTALL_DATA} ${WRKSRC}/utils/lit/lit/*.py \
+ ${STAGEDIR}${PYTHON_SITELIBDIR}/lit${LLVM_SUFFIX}
+ ${INSTALL_PROGRAM} ${WRKSRC}/Release/bin/FileCheck \
+ ${STAGEDIR}${LLVM_PREFIX}/bin/
+ ${LN} -f ${STAGEDIR}${LLVM_PREFIX}/bin/FileCheck \
+ ${STAGEDIR}${PREFIX}/bin/FileCheck${LLVM_SUFFIX}
+.endif
+.if ${PORT_OPTIONS:MMANPAGES}
+ for man in ${MAN1SRCS}; do \
+ ${INSTALL_MAN} ${WRKSRC}/docs/_build/man/$${man} \
+ ${STAGEDIR}${MANPREFIX}/man/man1/$${man%.1}${LLVM_SUFFIX}.1 ; \
+ done
+.endif
+
+TEST_CMD= '(cd ${WRKSRC}/test; ${SETENV} ${MAKE_ENV} LD_LIBRARY_PATH=${WRKSRC}/Release/lib ${GMAKE} check-local-lit)'
+regression-test: ${BUILD_COOKIE}
+ if [ `${ID} -u` = 0 ]; then \
+ ${CHOWN} -R nobody ${WRKSRC}/test; \
+ su -m nobody -c ${TEST_CMD}; \
+ else \
+ ${SH} -c ${TEST_CMD}; \
+ fi
+
+build-plist:
+ ${RM} -f ${PLIST}
+.for command in ${COMMANDS}
+ ${ECHO_CMD} bin/${command}${LLVM_SUFFIX} >> ${PLIST}
+.endfor
+.for command in ${LIT_COMMANDS}
+ ${ECHO_CMD} %%LIT%%bin/${command}${LLVM_SUFFIX} >> ${PLIST}
+ ${ECHO_CMD} %%LIT%%${LLVM_PREFIX:S|${PREFIX}/||}/bin/${command} >> ${PLIST}
+.endfor
+ ${FIND} ${STAGEDIR}${LLVM_PREFIX} -type f -o -type l | \
+ ${GREP} -v 'lit$$' | ${GREP} -v 'FileCheck$$' | \
+ ${GREP} -v man/man1 | ${SED} -e 's|${STAGEDIR}${PREFIX}/||' \
+ -e 's|${PORTVERSION}|%%PORTVERSION%%|' | \
+ ${SORT} >> ${PLIST}
+ ${FIND} ${STAGEDIR}${PYTHON_SITELIBDIR}/lit${LLVM_SUFFIX} -type f | \
+ ${SED} -e 's|${STAGEDIR}${PYTHON_SITELIBDIR}|%%LIT%%%%PYTHON_SITELIBDIR%%|' | \
+ ${SORT} >> ${PLIST}
+ ${FIND} ${STAGEDIR}${DOCSDIR} -type f | \
+ ${SED} -e 's|${STAGEDIR}${DOCSDIR}|%%PORTDOCS%%%%DOCSDIR%%|' | \
+ ${SORT} >> ${PLIST}
+ ${FIND} ${STAGEDIR}${LLVM_PREFIX} -type d | \
+ ${SED} -e 's|${STAGEDIR}${PREFIX}/||' | \
+ ${SORT} -r | ${SED} -e 's|^|@dirrm |' >> ${PLIST}
+ echo "%%LIT%%@dirrm %%PYTHON_SITELIBDIR%%/lit${LLVM_SUFFIX}" >> ${PLIST}
+ ${FIND} ${STAGEDIR}${DOCSDIR} -type d | \
+ ${SED} -e 's|${STAGEDIR}${DOCSDIR}|%%PORTDOCS%%@dirrm %%DOCSDIR%%|' | \
+ ${SORT} -r >> ${PLIST}
+
+.if make(svn-patch)
+.if !defined(PATCH_REV)
+.error svn-patch requires that PATCH_REV be set
+.endif
+_PATCH_FILE=${FILESDIR}/patch-svn-${PATCH_REV}
+_LLVM_BASE=http://llvm.org/svn/llvm-project/llvm/trunk
+svn-patch:
+ ${PRINTF} "$$%s$$\n" FreeBSD > ${_PATCH_FILE}
+ svn log -c ${PATCH_REV} ${_LLVM_BASE} >> ${_PATCH_FILE}
+ svn diff -c ${PATCH_REV} ${_LLVM_BASE} >> ${_PATCH_FILE}
+.endif
+
+.include <bsd.port.post.mk>
diff --git a/devel/llvm32/files/llvm-wrapper.sh.in b/devel/llvm32/files/llvm-wrapper.sh.in
new file mode 100644
index 000000000000..0a460f3156e5
--- /dev/null
+++ b/devel/llvm32/files/llvm-wrapper.sh.in
@@ -0,0 +1,10 @@
+#!/bin/sh
+# $FreeBSD$
+
+LLVM_PREFIX="%%LLVM_PREFIX%%"
+LLVM_SUFFIX="%%LLVM_SUFFIX%%"
+
+tool=$(basename $0)
+tool="${LLVM_PREFIX}/bin/${tool%${LLVM_SUFFIX}}"
+LD_LIBRARY_PATH="${LD_LIBRARY_PATH:+${LD_LIBRARY_PATH}:}${LLVM_PREFIX}/lib" \
+ "${tool}" "${@}"
diff --git a/devel/llvm32/files/patch-lib_Target_X86_X86JITInfo.cpp b/devel/llvm32/files/patch-lib_Target_X86_X86JITInfo.cpp
new file mode 100644
index 000000000000..b1d4cb90d8cd
--- /dev/null
+++ b/devel/llvm32/files/patch-lib_Target_X86_X86JITInfo.cpp
@@ -0,0 +1,26 @@
+$NetBSD: patch-lib_Target_X86_X86JITInfo.cpp,v 1.1 2013/04/02 12:00:05 joerg Exp $
+$FreeBSD$
+
+It is not yet decided whether extern "C" applies to static functions, so
+be explicit for now.
+
+--- lib/Target/X86/X86JITInfo.cpp.orig 2013-04-01 12:16:22.000000000 +0000
++++ lib/Target/X86/X86JITInfo.cpp
+@@ -342,6 +342,17 @@ extern "C" {
+ /// must locate the start of the stub or call site and pass it into the JIT
+ /// compiler function.
+ extern "C" {
++
++#if !(defined (X86_64_JIT) && defined(_MSC_VER))
++ // the following function is called only from this translation unit,
++ // unless we are under 64bit Windows with MSC, where there is
++ // no support for inline assembly
++static
++#endif
++void LLVM_ATTRIBUTE_USED
++X86CompilationCallback2(intptr_t *StackPtr, intptr_t RetAddr)
++__asm__("X86CompilationCallback2");
++
+ #if !(defined (X86_64_JIT) && defined(_MSC_VER))
+ // the following function is called only from this translation unit,
+ // unless we are under 64bit Windows with MSC, where there is
diff --git a/devel/llvm32/files/patch-svn-r170353 b/devel/llvm32/files/patch-svn-r170353
new file mode 100644
index 000000000000..9642619c58df
--- /dev/null
+++ b/devel/llvm32/files/patch-svn-r170353
@@ -0,0 +1,46 @@
+$FreeBSD$
+------------------------------------------------------------------------
+r170353 | chandlerc | 2012-12-17 18:48:07 +0000 (Mon, 17 Dec 2012) | 5 lines
+
+Fix another SROA crasher, PR14601.
+
+This was a silly oversight, we weren't pruning allocas which were used
+by variable-length memory intrinsics from the set that could be widened
+and promoted as integers. Fix that.
+------------------------------------------------------------------------
+Index: lib/Transforms/Scalar/SROA.cpp
+===================================================================
+--- lib/Transforms/Scalar/SROA.cpp (revision 170352)
++++ lib/Transforms/Scalar/SROA.cpp (revision 170353)
+@@ -2150,7 +2150,7 @@
+ !canConvertValue(TD, ValueTy, AllocaTy))
+ return false;
+ } else if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(I->U->getUser())) {
+- if (MI->isVolatile())
++ if (MI->isVolatile() || !isa<Constant>(MI->getLength()))
+ return false;
+ if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(I->U->getUser())) {
+ const AllocaPartitioning::MemTransferOffsets &MTO
+Index: test/Transforms/SROA/basictest.ll
+===================================================================
+--- test/Transforms/SROA/basictest.ll (revision 170352)
++++ test/Transforms/SROA/basictest.ll (revision 170353)
+@@ -1208,3 +1208,18 @@
+ ret i32 %y
+ ; CHECK: ret i32
+ }
++
++define i32 @PR14601(i32 %x) {
++; Don't try to form a promotable integer alloca when there is a variable length
++; memory intrinsic.
++; CHECK: @PR14601
++
++entry:
++ %a = alloca i32
++; CHECK: alloca
++
++ %a.i8 = bitcast i32* %a to i8*
++ call void @llvm.memset.p0i8.i32(i8* %a.i8, i8 0, i32 %x, i32 1, i1 false)
++ %v = load i32* %a
++ ret i32 %v
++}
diff --git a/devel/llvm32/files/patch-svn-r175057 b/devel/llvm32/files/patch-svn-r175057
new file mode 100644
index 000000000000..a1b6baaf228a
--- /dev/null
+++ b/devel/llvm32/files/patch-svn-r175057
@@ -0,0 +1,55 @@
+$FreeBSD$
+------------------------------------------------------------------------
+r175057 | d0k | 2013-02-13 13:40:35 +0000 (Wed, 13 Feb 2013) | 8 lines
+
+X86: Disable generation of rep;movsl when %esi is used as a base pointer.
+
+This happens when there is both stack realignment and a dynamic alloca in the
+function. If we overwrite %esi (rep;movsl uses fixed registers) we'll lose the
+base pointer and the next register spill will write into oblivion.
+
+Fixes PR15249 and unbreaks firefox on i386/freebsd. Mozilla uses dynamic allocas
+and freebsd a 4 byte stack alignment.
+------------------------------------------------------------------------
+Index: lib/Target/X86/X86SelectionDAGInfo.cpp
+===================================================================
+--- lib/Target/X86/X86SelectionDAGInfo.cpp (revision 175056)
++++ lib/Target/X86/X86SelectionDAGInfo.cpp (revision 175057)
+@@ -202,6 +202,14 @@
+ SrcPtrInfo.getAddrSpace() >= 256)
+ return SDValue();
+
++ // ESI might be used as a base pointer, in that case we can't simply overwrite
++ // the register. Fall back to generic code.
++ const X86RegisterInfo *TRI =
++ static_cast<const X86RegisterInfo *>(DAG.getTarget().getRegisterInfo());
++ if (TRI->hasBasePointer(DAG.getMachineFunction()) &&
++ TRI->getBaseRegister() == X86::ESI)
++ return SDValue();
++
+ MVT AVT;
+ if (Align & 1)
+ AVT = MVT::i8;
+Index: test/CodeGen/X86/stack-align-memcpy.ll
+===================================================================
+--- test/CodeGen/X86/stack-align-memcpy.ll (revision 0)
++++ test/CodeGen/X86/stack-align-memcpy.ll (revision 175057)
+@@ -0,0 +1,18 @@
++; RUN: llc < %s -force-align-stack -mtriple i386-apple-darwin -mcpu=i486 | FileCheck %s
++
++%struct.foo = type { [88 x i8] }
++
++; PR15249
++; We can't use rep;movsl here because it clobbers the base pointer in %esi.
++define void @test1(%struct.foo* nocapture %x, i32 %y) nounwind {
++ %dynalloc = alloca i8, i32 %y, align 1
++ call void @bar(i8* %dynalloc, %struct.foo* align 4 byval %x)
++ ret void
++
++; CHECK: test1:
++; CHECK: andl $-16, %esp
++; CHECK: movl %esp, %esi
++; CHECK-NOT: rep;movsl
++}
++
++declare void @bar(i8* nocapture, %struct.foo* align 4 byval) nounwind
diff --git a/devel/llvm32/files/patch-svn-r175360 b/devel/llvm32/files/patch-svn-r175360
new file mode 100644
index 000000000000..bfcfceb11f1c
--- /dev/null
+++ b/devel/llvm32/files/patch-svn-r175360
@@ -0,0 +1,40 @@
+$FreeBSD$
+------------------------------------------------------------------------
+r175360 | d0k | 2013-02-16 15:00:16 +0000 (Sat, 16 Feb 2013) | 5 lines
+
+MCParser: Reject .balign with non-pow2 alignments.
+
+GNU as rejects them and there are configure scripts in the wild that check if
+the assembler rejects ".align 3" to determine whether the alignment is in bytes
+or powers of two.
+------------------------------------------------------------------------
+Index: lib/MC/MCParser/AsmParser.cpp
+===================================================================
+--- lib/MC/MCParser/AsmParser.cpp (revision 175359)
++++ lib/MC/MCParser/AsmParser.cpp (revision 175360)
+@@ -2456,6 +2456,10 @@
+ }
+
+ Alignment = 1ULL << Alignment;
++ } else {
++ // Reject alignments that aren't a power of two, for gas compatibility.
++ if (!isPowerOf2_64(Alignment))
++ Error(AlignmentLoc, "alignment must be a power of 2");
+ }
+
+ // Diagnose non-sensical max bytes to align.
+Index: test/MC/AsmParser/align_invalid.s
+===================================================================
+--- test/MC/AsmParser/align_invalid.s (revision 0)
++++ test/MC/AsmParser/align_invalid.s (revision 175360)
+@@ -0,0 +1,10 @@
++# RUN: llvm-mc -triple i386-linux-gnu < %s 2>&1 | FileCheck %s -check-prefix=ELF
++# RUN: llvm-mc -triple i386-apple-darwin < %s 2>&1 | FileCheck %s -check-prefix=DARWIN
++
++.align 3
++# ELF: error: alignment must be a power of 2
++# DARWIN-NOT: error
++
++.align 32
++# ELF-NOT: error
++# DARWIN: error: invalid alignment value
diff --git a/devel/llvm32/files/patch-svn-r175962 b/devel/llvm32/files/patch-svn-r175962
new file mode 100644
index 000000000000..4286266f86e6
--- /dev/null
+++ b/devel/llvm32/files/patch-svn-r175962
@@ -0,0 +1,49 @@
+$FreeBSD$
+------------------------------------------------------------------------
+r175962 | d0k | 2013-02-23 10:40:58 +0000 (Sat, 23 Feb 2013) | 3 lines
+
+X86: Disable cmov-memory patterns on subtargets without cmov.
+
+Fixes PR15115.
+------------------------------------------------------------------------
+Index: test/CodeGen/X86/no-cmov.ll
+===================================================================
+--- test/CodeGen/X86/no-cmov.ll (revision 0)
++++ test/CodeGen/X86/no-cmov.ll (revision 175962)
+@@ -0,0 +1,11 @@
++; RUN: llc -march=x86 -mcpu=i486 < %s | FileCheck %s
++
++define i32 @test1(i32 %g, i32* %j) {
++ %tobool = icmp eq i32 %g, 0
++ %cmp = load i32* %j, align 4
++ %retval.0 = select i1 %tobool, i32 1, i32 %cmp
++ ret i32 %retval.0
++
++; CHECK: test1:
++; CHECK-NOT: cmov
++}
+Index: lib/Target/X86/X86InstrCompiler.td
+===================================================================
+--- lib/Target/X86/X86InstrCompiler.td (revision 175961)
++++ lib/Target/X86/X86InstrCompiler.td (revision 175962)
+@@ -1081,12 +1081,14 @@
+ // inverted.
+ multiclass CMOVmr<PatLeaf InvertedCond, Instruction Inst16, Instruction Inst32,
+ Instruction Inst64> {
+- def : Pat<(X86cmov (loadi16 addr:$src1), GR16:$src2, InvertedCond, EFLAGS),
+- (Inst16 GR16:$src2, addr:$src1)>;
+- def : Pat<(X86cmov (loadi32 addr:$src1), GR32:$src2, InvertedCond, EFLAGS),
+- (Inst32 GR32:$src2, addr:$src1)>;
+- def : Pat<(X86cmov (loadi64 addr:$src1), GR64:$src2, InvertedCond, EFLAGS),
+- (Inst64 GR64:$src2, addr:$src1)>;
++ let Predicates = [HasCMov] in {
++ def : Pat<(X86cmov (loadi16 addr:$src1), GR16:$src2, InvertedCond, EFLAGS),
++ (Inst16 GR16:$src2, addr:$src1)>;
++ def : Pat<(X86cmov (loadi32 addr:$src1), GR32:$src2, InvertedCond, EFLAGS),
++ (Inst32 GR32:$src2, addr:$src1)>;
++ def : Pat<(X86cmov (loadi64 addr:$src1), GR64:$src2, InvertedCond, EFLAGS),
++ (Inst64 GR64:$src2, addr:$src1)>;
++ }
+ }
+
+ defm : CMOVmr<X86_COND_B , CMOVAE16rm, CMOVAE32rm, CMOVAE64rm>;
diff --git a/devel/llvm32/files/patch-utils_llvm-build_llvmbuild_main.py b/devel/llvm32/files/patch-utils_llvm-build_llvmbuild_main.py
new file mode 100644
index 000000000000..1e2de0273d55
--- /dev/null
+++ b/devel/llvm32/files/patch-utils_llvm-build_llvmbuild_main.py
@@ -0,0 +1,20 @@
+
+$FreeBSD$
+
+--- utils/llvm-build/llvmbuild/main.py.orig
++++ utils/llvm-build/llvmbuild/main.py
+@@ -633,7 +633,13 @@
+
+ # We handle a few special cases of target names here for historical
+ # reasons, as these are the names configure currently comes up with.
+- native_target_name = { 'x86' : 'X86',
++ native_target_name = { 'amd64' : 'X86',
++ 'arm' : 'ARM',
++ 'i386' : 'X86',
++ 'mips' : 'Mips',
++ 'powerpc' : 'PowerPC',
++ 'sparc64' : 'Sparc',
++ 'x86' : 'X86',
+ 'x86_64' : 'X86',
+ 'Unknown' : None }.get(opts.native_target,
+ opts.native_target)
diff --git a/devel/llvm32/pkg-descr b/devel/llvm32/pkg-descr
new file mode 100644
index 000000000000..ffbc479a8f10
--- /dev/null
+++ b/devel/llvm32/pkg-descr
@@ -0,0 +1,10 @@
+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.
+
+WWW: http://llvm.org/
diff --git a/devel/llvm32/pkg-plist b/devel/llvm32/pkg-plist
new file mode 100644
index 000000000000..dc6601044b93
--- /dev/null
+++ b/devel/llvm32/pkg-plist
@@ -0,0 +1,907 @@
+bin/bugpoint32
+bin/llc32
+bin/lli32
+bin/llvm-ar32
+bin/llvm-as32
+bin/llvm-bcanalyzer32
+bin/llvm-config32
+bin/llvm-cov32
+bin/llvm-diff32
+bin/llvm-dis32
+bin/llvm-dwarfdump32
+bin/llvm-extract32
+bin/llvm-link32
+bin/llvm-mc32
+bin/llvm-mcmarkup32
+bin/llvm-nm32
+bin/llvm-objdump32
+bin/llvm-prof32
+bin/llvm-ranlib32
+bin/llvm-readobj32
+bin/llvm-rtdyld32
+bin/llvm-size32
+bin/llvm-stress32
+bin/llvm-tblgen32
+bin/macho-dump32
+bin/opt32
+%%LIT%%bin/lit32
+%%LIT%%llvm32/bin/lit
+%%LIT%%bin/llvm-lit32
+%%LIT%%llvm32/bin/llvm-lit
+%%LIT%%bin/FileCheck32
+%%LIT%%llvm32/bin/FileCheck
+llvm32/bin/bugpoint
+llvm32/bin/llc
+llvm32/bin/lli
+llvm32/bin/llvm-ar
+llvm32/bin/llvm-as
+llvm32/bin/llvm-bcanalyzer
+llvm32/bin/llvm-config
+llvm32/bin/llvm-cov
+llvm32/bin/llvm-diff
+llvm32/bin/llvm-dis
+llvm32/bin/llvm-dwarfdump
+llvm32/bin/llvm-extract
+llvm32/bin/llvm-link
+llvm32/bin/llvm-mc
+llvm32/bin/llvm-mcmarkup
+llvm32/bin/llvm-nm
+llvm32/bin/llvm-objdump
+llvm32/bin/llvm-prof
+llvm32/bin/llvm-ranlib
+llvm32/bin/llvm-readobj
+llvm32/bin/llvm-rtdyld
+llvm32/bin/llvm-size
+llvm32/bin/llvm-stress
+llvm32/bin/llvm-tblgen
+llvm32/bin/macho-dump
+llvm32/bin/opt
+llvm32/include/llvm-c/Analysis.h
+llvm32/include/llvm-c/BitReader.h
+llvm32/include/llvm-c/BitWriter.h
+llvm32/include/llvm-c/Core.h
+llvm32/include/llvm-c/Disassembler.h
+llvm32/include/llvm-c/EnhancedDisassembly.h
+llvm32/include/llvm-c/ExecutionEngine.h
+llvm32/include/llvm-c/Initialization.h
+llvm32/include/llvm-c/LinkTimeOptimizer.h
+llvm32/include/llvm-c/Linker.h
+llvm32/include/llvm-c/Object.h
+llvm32/include/llvm-c/Target.h
+llvm32/include/llvm-c/TargetMachine.h
+llvm32/include/llvm-c/Transforms/IPO.h
+llvm32/include/llvm-c/Transforms/PassManagerBuilder.h
+llvm32/include/llvm-c/Transforms/Scalar.h
+llvm32/include/llvm-c/Transforms/Vectorize.h
+llvm32/include/llvm-c/lto.h
+llvm32/include/llvm/ADT/APFloat.h
+llvm32/include/llvm/ADT/APInt.h
+llvm32/include/llvm/ADT/APSInt.h
+llvm32/include/llvm/ADT/ArrayRef.h
+llvm32/include/llvm/ADT/BitVector.h
+llvm32/include/llvm/ADT/DAGDeltaAlgorithm.h
+llvm32/include/llvm/ADT/DeltaAlgorithm.h
+llvm32/include/llvm/ADT/DenseMap.h
+llvm32/include/llvm/ADT/DenseMapInfo.h
+llvm32/include/llvm/ADT/DenseSet.h
+llvm32/include/llvm/ADT/DepthFirstIterator.h
+llvm32/include/llvm/ADT/EquivalenceClasses.h
+llvm32/include/llvm/ADT/FoldingSet.h
+llvm32/include/llvm/ADT/GraphTraits.h
+llvm32/include/llvm/ADT/Hashing.h
+llvm32/include/llvm/ADT/ImmutableIntervalMap.h
+llvm32/include/llvm/ADT/ImmutableList.h
+llvm32/include/llvm/ADT/ImmutableMap.h
+llvm32/include/llvm/ADT/ImmutableSet.h
+llvm32/include/llvm/ADT/InMemoryStruct.h
+llvm32/include/llvm/ADT/IndexedMap.h
+llvm32/include/llvm/ADT/IntEqClasses.h
+llvm32/include/llvm/ADT/IntervalMap.h
+llvm32/include/llvm/ADT/IntrusiveRefCntPtr.h
+llvm32/include/llvm/ADT/MapVector.h
+llvm32/include/llvm/ADT/NullablePtr.h
+llvm32/include/llvm/ADT/Optional.h
+llvm32/include/llvm/ADT/OwningPtr.h
+llvm32/include/llvm/ADT/PackedVector.h
+llvm32/include/llvm/ADT/PointerIntPair.h
+llvm32/include/llvm/ADT/PointerUnion.h
+llvm32/include/llvm/ADT/PostOrderIterator.h
+llvm32/include/llvm/ADT/PriorityQueue.h
+llvm32/include/llvm/ADT/SCCIterator.h
+llvm32/include/llvm/ADT/STLExtras.h
+llvm32/include/llvm/ADT/ScopedHashTable.h
+llvm32/include/llvm/ADT/SetOperations.h
+llvm32/include/llvm/ADT/SetVector.h
+llvm32/include/llvm/ADT/SmallBitVector.h
+llvm32/include/llvm/ADT/SmallPtrSet.h
+llvm32/include/llvm/ADT/SmallSet.h
+llvm32/include/llvm/ADT/SmallString.h
+llvm32/include/llvm/ADT/SmallVector.h
+llvm32/include/llvm/ADT/SparseBitVector.h
+llvm32/include/llvm/ADT/SparseSet.h
+llvm32/include/llvm/ADT/Statistic.h
+llvm32/include/llvm/ADT/StringExtras.h
+llvm32/include/llvm/ADT/StringMap.h
+llvm32/include/llvm/ADT/StringRef.h
+llvm32/include/llvm/ADT/StringSet.h
+llvm32/include/llvm/ADT/StringSwitch.h
+llvm32/include/llvm/ADT/TinyPtrVector.h
+llvm32/include/llvm/ADT/Triple.h
+llvm32/include/llvm/ADT/Twine.h
+llvm32/include/llvm/ADT/UniqueVector.h
+llvm32/include/llvm/ADT/ValueMap.h
+llvm32/include/llvm/ADT/VariadicFunction.h
+llvm32/include/llvm/ADT/edit_distance.h
+llvm32/include/llvm/ADT/ilist.h
+llvm32/include/llvm/ADT/ilist_node.h
+llvm32/include/llvm/AddressingMode.h
+llvm32/include/llvm/Analysis/AliasAnalysis.h
+llvm32/include/llvm/Analysis/AliasSetTracker.h
+llvm32/include/llvm/Analysis/BlockFrequencyImpl.h
+llvm32/include/llvm/Analysis/BlockFrequencyInfo.h
+llvm32/include/llvm/Analysis/BranchProbabilityInfo.h
+llvm32/include/llvm/Analysis/CFGPrinter.h
+llvm32/include/llvm/Analysis/CallGraph.h
+llvm32/include/llvm/Analysis/CaptureTracking.h
+llvm32/include/llvm/Analysis/CodeMetrics.h
+llvm32/include/llvm/Analysis/ConstantFolding.h
+llvm32/include/llvm/Analysis/ConstantsScanner.h
+llvm32/include/llvm/Analysis/DOTGraphTraitsPass.h
+llvm32/include/llvm/Analysis/DependenceAnalysis.h
+llvm32/include/llvm/Analysis/DomPrinter.h
+llvm32/include/llvm/Analysis/DominanceFrontier.h
+llvm32/include/llvm/Analysis/DominatorInternals.h
+llvm32/include/llvm/Analysis/Dominators.h
+llvm32/include/llvm/Analysis/FindUsedTypes.h
+llvm32/include/llvm/Analysis/IVUsers.h
+llvm32/include/llvm/Analysis/InlineCost.h
+llvm32/include/llvm/Analysis/InstructionSimplify.h
+llvm32/include/llvm/Analysis/Interval.h
+llvm32/include/llvm/Analysis/IntervalIterator.h
+llvm32/include/llvm/Analysis/IntervalPartition.h
+llvm32/include/llvm/Analysis/LazyValueInfo.h
+llvm32/include/llvm/Analysis/LibCallAliasAnalysis.h
+llvm32/include/llvm/Analysis/LibCallSemantics.h
+llvm32/include/llvm/Analysis/Lint.h
+llvm32/include/llvm/Analysis/Loads.h
+llvm32/include/llvm/Analysis/LoopInfo.h
+llvm32/include/llvm/Analysis/LoopInfoImpl.h
+llvm32/include/llvm/Analysis/LoopIterator.h
+llvm32/include/llvm/Analysis/LoopPass.h
+llvm32/include/llvm/Analysis/MemoryBuiltins.h
+llvm32/include/llvm/Analysis/MemoryDependenceAnalysis.h
+llvm32/include/llvm/Analysis/PHITransAddr.h
+llvm32/include/llvm/Analysis/Passes.h
+llvm32/include/llvm/Analysis/PathNumbering.h
+llvm32/include/llvm/Analysis/PathProfileInfo.h
+llvm32/include/llvm/Analysis/PostDominators.h
+llvm32/include/llvm/Analysis/ProfileDataLoader.h
+llvm32/include/llvm/Analysis/ProfileDataTypes.h
+llvm32/include/llvm/Analysis/ProfileInfo.h
+llvm32/include/llvm/Analysis/ProfileInfoLoader.h
+llvm32/include/llvm/Analysis/ProfileInfoTypes.h
+llvm32/include/llvm/Analysis/RegionInfo.h
+llvm32/include/llvm/Analysis/RegionIterator.h
+llvm32/include/llvm/Analysis/RegionPass.h
+llvm32/include/llvm/Analysis/RegionPrinter.h
+llvm32/include/llvm/Analysis/ScalarEvolution.h
+llvm32/include/llvm/Analysis/ScalarEvolutionExpander.h
+llvm32/include/llvm/Analysis/ScalarEvolutionExpressions.h
+llvm32/include/llvm/Analysis/ScalarEvolutionNormalization.h
+llvm32/include/llvm/Analysis/SparsePropagation.h
+llvm32/include/llvm/Analysis/Trace.h
+llvm32/include/llvm/Analysis/ValueTracking.h
+llvm32/include/llvm/Analysis/Verifier.h
+llvm32/include/llvm/Argument.h
+llvm32/include/llvm/Assembly/AssemblyAnnotationWriter.h
+llvm32/include/llvm/Assembly/Parser.h
+llvm32/include/llvm/Assembly/PrintModulePass.h
+llvm32/include/llvm/Assembly/Writer.h
+llvm32/include/llvm/Attributes.h
+llvm32/include/llvm/AutoUpgrade.h
+llvm32/include/llvm/BasicBlock.h
+llvm32/include/llvm/Bitcode/Archive.h
+llvm32/include/llvm/Bitcode/BitCodes.h
+llvm32/include/llvm/Bitcode/BitstreamReader.h
+llvm32/include/llvm/Bitcode/BitstreamWriter.h
+llvm32/include/llvm/Bitcode/LLVMBitCodes.h
+llvm32/include/llvm/Bitcode/ReaderWriter.h
+llvm32/include/llvm/CallGraphSCCPass.h
+llvm32/include/llvm/CallingConv.h
+llvm32/include/llvm/CodeGen/Analysis.h
+llvm32/include/llvm/CodeGen/AsmPrinter.h
+llvm32/include/llvm/CodeGen/CalcSpillWeights.h
+llvm32/include/llvm/CodeGen/CallingConvLower.h
+llvm32/include/llvm/CodeGen/CommandFlags.h
+llvm32/include/llvm/CodeGen/DFAPacketizer.h
+llvm32/include/llvm/CodeGen/EdgeBundles.h
+llvm32/include/llvm/CodeGen/FastISel.h
+llvm32/include/llvm/CodeGen/FunctionLoweringInfo.h
+llvm32/include/llvm/CodeGen/GCMetadata.h
+llvm32/include/llvm/CodeGen/GCMetadataPrinter.h
+llvm32/include/llvm/CodeGen/GCStrategy.h
+llvm32/include/llvm/CodeGen/GCs.h
+llvm32/include/llvm/CodeGen/ISDOpcodes.h
+llvm32/include/llvm/CodeGen/IntrinsicLowering.h
+llvm32/include/llvm/CodeGen/JITCodeEmitter.h
+llvm32/include/llvm/CodeGen/LatencyPriorityQueue.h
+llvm32/include/llvm/CodeGen/LexicalScopes.h
+llvm32/include/llvm/CodeGen/LinkAllAsmWriterComponents.h
+llvm32/include/llvm/CodeGen/LinkAllCodegenComponents.h
+llvm32/include/llvm/CodeGen/LiveInterval.h
+llvm32/include/llvm/CodeGen/LiveIntervalAnalysis.h
+llvm32/include/llvm/CodeGen/LiveRangeEdit.h
+llvm32/include/llvm/CodeGen/LiveStackAnalysis.h
+llvm32/include/llvm/CodeGen/LiveVariables.h
+llvm32/include/llvm/CodeGen/MachORelocation.h
+llvm32/include/llvm/CodeGen/MachineBasicBlock.h
+llvm32/include/llvm/CodeGen/MachineBlockFrequencyInfo.h
+llvm32/include/llvm/CodeGen/MachineBranchProbabilityInfo.h
+llvm32/include/llvm/CodeGen/MachineCodeEmitter.h
+llvm32/include/llvm/CodeGen/MachineCodeInfo.h
+llvm32/include/llvm/CodeGen/MachineConstantPool.h
+llvm32/include/llvm/CodeGen/MachineDominators.h
+llvm32/include/llvm/CodeGen/MachineFrameInfo.h
+llvm32/include/llvm/CodeGen/MachineFunction.h
+llvm32/include/llvm/CodeGen/MachineFunctionAnalysis.h
+llvm32/include/llvm/CodeGen/MachineFunctionPass.h
+llvm32/include/llvm/CodeGen/MachineInstr.h
+llvm32/include/llvm/CodeGen/MachineInstrBuilder.h
+llvm32/include/llvm/CodeGen/MachineInstrBundle.h
+llvm32/include/llvm/CodeGen/MachineJumpTableInfo.h
+llvm32/include/llvm/CodeGen/MachineLoopInfo.h
+llvm32/include/llvm/CodeGen/MachineLoopRanges.h
+llvm32/include/llvm/CodeGen/MachineMemOperand.h
+llvm32/include/llvm/CodeGen/MachineModuleInfo.h
+llvm32/include/llvm/CodeGen/MachineModuleInfoImpls.h
+llvm32/include/llvm/CodeGen/MachineOperand.h
+llvm32/include/llvm/CodeGen/MachinePassRegistry.h
+llvm32/include/llvm/CodeGen/MachinePostDominators.h
+llvm32/include/llvm/CodeGen/MachineRegisterInfo.h
+llvm32/include/llvm/CodeGen/MachineRelocation.h
+llvm32/include/llvm/CodeGen/MachineSSAUpdater.h
+llvm32/include/llvm/CodeGen/MachineScheduler.h
+llvm32/include/llvm/CodeGen/PBQP/Graph.h
+llvm32/include/llvm/CodeGen/PBQP/HeuristicBase.h
+llvm32/include/llvm/CodeGen/PBQP/HeuristicSolver.h
+llvm32/include/llvm/CodeGen/PBQP/Heuristics/Briggs.h
+llvm32/include/llvm/CodeGen/PBQP/Math.h
+llvm32/include/llvm/CodeGen/PBQP/Solution.h
+llvm32/include/llvm/CodeGen/Passes.h
+llvm32/include/llvm/CodeGen/PseudoSourceValue.h
+llvm32/include/llvm/CodeGen/RegAllocPBQP.h
+llvm32/include/llvm/CodeGen/RegAllocRegistry.h
+llvm32/include/llvm/CodeGen/RegisterClassInfo.h
+llvm32/include/llvm/CodeGen/RegisterPressure.h
+llvm32/include/llvm/CodeGen/RegisterScavenging.h
+llvm32/include/llvm/CodeGen/ResourcePriorityQueue.h
+llvm32/include/llvm/CodeGen/RuntimeLibcalls.h
+llvm32/include/llvm/CodeGen/ScheduleDAG.h
+llvm32/include/llvm/CodeGen/ScheduleDAGILP.h
+llvm32/include/llvm/CodeGen/ScheduleDAGInstrs.h
+llvm32/include/llvm/CodeGen/ScheduleHazardRecognizer.h
+llvm32/include/llvm/CodeGen/SchedulerRegistry.h
+llvm32/include/llvm/CodeGen/ScoreboardHazardRecognizer.h
+llvm32/include/llvm/CodeGen/SelectionDAG.h
+llvm32/include/llvm/CodeGen/SelectionDAGISel.h
+llvm32/include/llvm/CodeGen/SelectionDAGNodes.h
+llvm32/include/llvm/CodeGen/SlotIndexes.h
+llvm32/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
+llvm32/include/llvm/CodeGen/TargetSchedule.h
+llvm32/include/llvm/CodeGen/ValueTypes.h
+llvm32/include/llvm/CodeGen/ValueTypes.td
+llvm32/include/llvm/Config/AsmParsers.def
+llvm32/include/llvm/Config/AsmPrinters.def
+llvm32/include/llvm/Config/Disassemblers.def
+llvm32/include/llvm/Config/Targets.def
+llvm32/include/llvm/Config/config.h
+llvm32/include/llvm/Config/llvm-config.h
+llvm32/include/llvm/Constant.h
+llvm32/include/llvm/Constants.h
+llvm32/include/llvm/DIBuilder.h
+llvm32/include/llvm/DataLayout.h
+llvm32/include/llvm/DebugInfo.h
+llvm32/include/llvm/DebugInfo/DIContext.h
+llvm32/include/llvm/DefaultPasses.h
+llvm32/include/llvm/DerivedTypes.h
+llvm32/include/llvm/ExecutionEngine/ExecutionEngine.h
+llvm32/include/llvm/ExecutionEngine/GenericValue.h
+llvm32/include/llvm/ExecutionEngine/Interpreter.h
+llvm32/include/llvm/ExecutionEngine/JIT.h
+llvm32/include/llvm/ExecutionEngine/JITEventListener.h
+llvm32/include/llvm/ExecutionEngine/JITMemoryManager.h
+llvm32/include/llvm/ExecutionEngine/MCJIT.h
+llvm32/include/llvm/ExecutionEngine/OProfileWrapper.h
+llvm32/include/llvm/ExecutionEngine/ObjectBuffer.h
+llvm32/include/llvm/ExecutionEngine/ObjectImage.h
+llvm32/include/llvm/ExecutionEngine/RuntimeDyld.h
+llvm32/include/llvm/Function.h
+llvm32/include/llvm/GVMaterializer.h
+llvm32/include/llvm/GlobalAlias.h
+llvm32/include/llvm/GlobalValue.h
+llvm32/include/llvm/GlobalVariable.h
+llvm32/include/llvm/IRBuilder.h
+llvm32/include/llvm/InitializePasses.h
+llvm32/include/llvm/InlineAsm.h
+llvm32/include/llvm/InstrTypes.h
+llvm32/include/llvm/Instruction.def
+llvm32/include/llvm/Instruction.h
+llvm32/include/llvm/Instructions.h
+llvm32/include/llvm/IntrinsicInst.h
+llvm32/include/llvm/Intrinsics.gen
+llvm32/include/llvm/Intrinsics.h
+llvm32/include/llvm/Intrinsics.td
+llvm32/include/llvm/IntrinsicsARM.td
+llvm32/include/llvm/IntrinsicsCellSPU.td
+llvm32/include/llvm/IntrinsicsHexagon.td
+llvm32/include/llvm/IntrinsicsMips.td
+llvm32/include/llvm/IntrinsicsNVVM.td
+llvm32/include/llvm/IntrinsicsPowerPC.td
+llvm32/include/llvm/IntrinsicsX86.td
+llvm32/include/llvm/IntrinsicsXCore.td
+llvm32/include/llvm/LLVMContext.h
+llvm32/include/llvm/LinkAllPasses.h
+llvm32/include/llvm/LinkAllVMCore.h
+llvm32/include/llvm/Linker.h
+llvm32/include/llvm/MC/EDInstInfo.h
+llvm32/include/llvm/MC/MCAsmBackend.h
+llvm32/include/llvm/MC/MCAsmInfo.h
+llvm32/include/llvm/MC/MCAsmInfoCOFF.h
+llvm32/include/llvm/MC/MCAsmInfoDarwin.h
+llvm32/include/llvm/MC/MCAsmLayout.h
+llvm32/include/llvm/MC/MCAssembler.h
+llvm32/include/llvm/MC/MCAtom.h
+llvm32/include/llvm/MC/MCCodeEmitter.h
+llvm32/include/llvm/MC/MCCodeGenInfo.h
+llvm32/include/llvm/MC/MCContext.h
+llvm32/include/llvm/MC/MCDirectives.h
+llvm32/include/llvm/MC/MCDisassembler.h
+llvm32/include/llvm/MC/MCDwarf.h
+llvm32/include/llvm/MC/MCELFObjectWriter.h
+llvm32/include/llvm/MC/MCELFSymbolFlags.h
+llvm32/include/llvm/MC/MCExpr.h
+llvm32/include/llvm/MC/MCFixedLenDisassembler.h
+llvm32/include/llvm/MC/MCFixup.h
+llvm32/include/llvm/MC/MCFixupKindInfo.h
+llvm32/include/llvm/MC/MCInst.h
+llvm32/include/llvm/MC/MCInstPrinter.h
+llvm32/include/llvm/MC/MCInstrAnalysis.h
+llvm32/include/llvm/MC/MCInstrDesc.h
+llvm32/include/llvm/MC/MCInstrInfo.h
+llvm32/include/llvm/MC/MCInstrItineraries.h
+llvm32/include/llvm/MC/MCLabel.h
+llvm32/include/llvm/MC/MCMachOSymbolFlags.h
+llvm32/include/llvm/MC/MCMachObjectWriter.h
+llvm32/include/llvm/MC/MCModule.h
+llvm32/include/llvm/MC/MCObjectFileInfo.h
+llvm32/include/llvm/MC/MCObjectStreamer.h
+llvm32/include/llvm/MC/MCObjectWriter.h
+llvm32/include/llvm/MC/MCParser/AsmCond.h
+llvm32/include/llvm/MC/MCParser/AsmLexer.h
+llvm32/include/llvm/MC/MCParser/MCAsmLexer.h
+llvm32/include/llvm/MC/MCParser/MCAsmParser.h
+llvm32/include/llvm/MC/MCParser/MCAsmParserExtension.h
+llvm32/include/llvm/MC/MCParser/MCParsedAsmOperand.h
+llvm32/include/llvm/MC/MCRegisterInfo.h
+llvm32/include/llvm/MC/MCSchedule.h
+llvm32/include/llvm/MC/MCSection.h
+llvm32/include/llvm/MC/MCSectionCOFF.h
+llvm32/include/llvm/MC/MCSectionELF.h
+llvm32/include/llvm/MC/MCSectionMachO.h
+llvm32/include/llvm/MC/MCStreamer.h
+llvm32/include/llvm/MC/MCSubtargetInfo.h
+llvm32/include/llvm/MC/MCSymbol.h
+llvm32/include/llvm/MC/MCTargetAsmLexer.h
+llvm32/include/llvm/MC/MCTargetAsmParser.h
+llvm32/include/llvm/MC/MCValue.h
+llvm32/include/llvm/MC/MCWin64EH.h
+llvm32/include/llvm/MC/MCWinCOFFObjectWriter.h
+llvm32/include/llvm/MC/MachineLocation.h
+llvm32/include/llvm/MC/SectionKind.h
+llvm32/include/llvm/MC/SubtargetFeature.h
+llvm32/include/llvm/MDBuilder.h
+llvm32/include/llvm/Metadata.h
+llvm32/include/llvm/Module.h
+llvm32/include/llvm/Object/Archive.h
+llvm32/include/llvm/Object/Binary.h
+llvm32/include/llvm/Object/COFF.h
+llvm32/include/llvm/Object/ELF.h
+llvm32/include/llvm/Object/Error.h
+llvm32/include/llvm/Object/MachO.h
+llvm32/include/llvm/Object/MachOFormat.h
+llvm32/include/llvm/Object/MachOObject.h
+llvm32/include/llvm/Object/ObjectFile.h
+llvm32/include/llvm/Object/RelocVisitor.h
+llvm32/include/llvm/OperandTraits.h
+llvm32/include/llvm/Operator.h
+llvm32/include/llvm/Pass.h
+llvm32/include/llvm/PassAnalysisSupport.h
+llvm32/include/llvm/PassManager.h
+llvm32/include/llvm/PassManagers.h
+llvm32/include/llvm/PassRegistry.h
+llvm32/include/llvm/PassSupport.h
+llvm32/include/llvm/Support/AIXDataTypesFix.h
+llvm32/include/llvm/Support/AlignOf.h
+llvm32/include/llvm/Support/Allocator.h
+llvm32/include/llvm/Support/Atomic.h
+llvm32/include/llvm/Support/BlockFrequency.h
+llvm32/include/llvm/Support/BranchProbability.h
+llvm32/include/llvm/Support/CFG.h
+llvm32/include/llvm/Support/COFF.h
+llvm32/include/llvm/Support/CallSite.h
+llvm32/include/llvm/Support/Capacity.h
+llvm32/include/llvm/Support/Casting.h
+llvm32/include/llvm/Support/CodeGen.h
+llvm32/include/llvm/Support/CommandLine.h
+llvm32/include/llvm/Support/Compiler.h
+llvm32/include/llvm/Support/ConstantFolder.h
+llvm32/include/llvm/Support/ConstantRange.h
+llvm32/include/llvm/Support/CrashRecoveryContext.h
+llvm32/include/llvm/Support/DOTGraphTraits.h
+llvm32/include/llvm/Support/DataExtractor.h
+llvm32/include/llvm/Support/DataFlow.h
+llvm32/include/llvm/Support/DataStream.h
+llvm32/include/llvm/Support/DataTypes.h
+llvm32/include/llvm/Support/Debug.h
+llvm32/include/llvm/Support/DebugLoc.h
+llvm32/include/llvm/Support/Disassembler.h
+llvm32/include/llvm/Support/Dwarf.h
+llvm32/include/llvm/Support/DynamicLibrary.h
+llvm32/include/llvm/Support/ELF.h
+llvm32/include/llvm/Support/Endian.h
+llvm32/include/llvm/Support/Errno.h
+llvm32/include/llvm/Support/ErrorHandling.h
+llvm32/include/llvm/Support/FEnv.h
+llvm32/include/llvm/Support/FileOutputBuffer.h
+llvm32/include/llvm/Support/FileSystem.h
+llvm32/include/llvm/Support/FileUtilities.h
+llvm32/include/llvm/Support/Format.h
+llvm32/include/llvm/Support/FormattedStream.h
+llvm32/include/llvm/Support/GCOV.h
+llvm32/include/llvm/Support/GetElementPtrTypeIterator.h
+llvm32/include/llvm/Support/GraphWriter.h
+llvm32/include/llvm/Support/Host.h
+llvm32/include/llvm/Support/IRReader.h
+llvm32/include/llvm/Support/IncludeFile.h
+llvm32/include/llvm/Support/InstIterator.h
+llvm32/include/llvm/Support/InstVisitor.h
+llvm32/include/llvm/Support/IntegersSubset.h
+llvm32/include/llvm/Support/IntegersSubsetMapping.h
+llvm32/include/llvm/Support/LEB128.h
+llvm32/include/llvm/Support/LICENSE.TXT
+llvm32/include/llvm/Support/LeakDetector.h
+llvm32/include/llvm/Support/Locale.h
+llvm32/include/llvm/Support/LockFileManager.h
+llvm32/include/llvm/Support/MachO.h
+llvm32/include/llvm/Support/ManagedStatic.h
+llvm32/include/llvm/Support/MathExtras.h
+llvm32/include/llvm/Support/Memory.h
+llvm32/include/llvm/Support/MemoryBuffer.h
+llvm32/include/llvm/Support/MemoryObject.h
+llvm32/include/llvm/Support/Mutex.h
+llvm32/include/llvm/Support/MutexGuard.h
+llvm32/include/llvm/Support/NoFolder.h
+llvm32/include/llvm/Support/OutputBuffer.h
+llvm32/include/llvm/Support/PassNameParser.h
+llvm32/include/llvm/Support/Path.h
+llvm32/include/llvm/Support/PathV1.h
+llvm32/include/llvm/Support/PathV2.h
+llvm32/include/llvm/Support/PatternMatch.h
+llvm32/include/llvm/Support/PluginLoader.h
+llvm32/include/llvm/Support/PointerLikeTypeTraits.h
+llvm32/include/llvm/Support/PredIteratorCache.h
+llvm32/include/llvm/Support/PrettyStackTrace.h
+llvm32/include/llvm/Support/Process.h
+llvm32/include/llvm/Support/Program.h
+llvm32/include/llvm/Support/RWMutex.h
+llvm32/include/llvm/Support/Recycler.h
+llvm32/include/llvm/Support/RecyclingAllocator.h
+llvm32/include/llvm/Support/Regex.h
+llvm32/include/llvm/Support/Registry.h
+llvm32/include/llvm/Support/RegistryParser.h
+llvm32/include/llvm/Support/SMLoc.h
+llvm32/include/llvm/Support/SaveAndRestore.h
+llvm32/include/llvm/Support/Signals.h
+llvm32/include/llvm/Support/Solaris.h
+llvm32/include/llvm/Support/SourceMgr.h
+llvm32/include/llvm/Support/StreamableMemoryObject.h
+llvm32/include/llvm/Support/StringPool.h
+llvm32/include/llvm/Support/SwapByteOrder.h
+llvm32/include/llvm/Support/SystemUtils.h
+llvm32/include/llvm/Support/TargetFolder.h
+llvm32/include/llvm/Support/TargetRegistry.h
+llvm32/include/llvm/Support/TargetSelect.h
+llvm32/include/llvm/Support/ThreadLocal.h
+llvm32/include/llvm/Support/Threading.h
+llvm32/include/llvm/Support/TimeValue.h
+llvm32/include/llvm/Support/Timer.h
+llvm32/include/llvm/Support/ToolOutputFile.h
+llvm32/include/llvm/Support/Valgrind.h
+llvm32/include/llvm/Support/ValueHandle.h
+llvm32/include/llvm/Support/Win64EH.h
+llvm32/include/llvm/Support/YAMLParser.h
+llvm32/include/llvm/Support/circular_raw_ostream.h
+llvm32/include/llvm/Support/raw_os_ostream.h
+llvm32/include/llvm/Support/raw_ostream.h
+llvm32/include/llvm/Support/system_error.h
+llvm32/include/llvm/Support/type_traits.h
+llvm32/include/llvm/SymbolTableListTraits.h
+llvm32/include/llvm/TableGen/Error.h
+llvm32/include/llvm/TableGen/Main.h
+llvm32/include/llvm/TableGen/Record.h
+llvm32/include/llvm/TableGen/StringMatcher.h
+llvm32/include/llvm/TableGen/TableGenBackend.h
+llvm32/include/llvm/Target/Mangler.h
+llvm32/include/llvm/Target/Target.td
+llvm32/include/llvm/Target/TargetCallingConv.h
+llvm32/include/llvm/Target/TargetCallingConv.td
+llvm32/include/llvm/Target/TargetFrameLowering.h
+llvm32/include/llvm/Target/TargetInstrInfo.h
+llvm32/include/llvm/Target/TargetIntrinsicInfo.h
+llvm32/include/llvm/Target/TargetItinerary.td
+llvm32/include/llvm/Target/TargetJITInfo.h
+llvm32/include/llvm/Target/TargetLibraryInfo.h
+llvm32/include/llvm/Target/TargetLowering.h
+llvm32/include/llvm/Target/TargetLoweringObjectFile.h
+llvm32/include/llvm/Target/TargetMachine.h
+llvm32/include/llvm/Target/TargetOpcodes.h
+llvm32/include/llvm/Target/TargetOptions.h
+llvm32/include/llvm/Target/TargetRegisterInfo.h
+llvm32/include/llvm/Target/TargetSchedule.td
+llvm32/include/llvm/Target/TargetSelectionDAG.td
+llvm32/include/llvm/Target/TargetSelectionDAGInfo.h
+llvm32/include/llvm/Target/TargetSubtargetInfo.h
+llvm32/include/llvm/Target/TargetTransformImpl.h
+llvm32/include/llvm/TargetTransformInfo.h
+llvm32/include/llvm/Transforms/IPO.h
+llvm32/include/llvm/Transforms/IPO/InlinerPass.h
+llvm32/include/llvm/Transforms/IPO/PassManagerBuilder.h
+llvm32/include/llvm/Transforms/Instrumentation.h
+llvm32/include/llvm/Transforms/Scalar.h
+llvm32/include/llvm/Transforms/Utils/AddrModeMatcher.h
+llvm32/include/llvm/Transforms/Utils/BasicBlockUtils.h
+llvm32/include/llvm/Transforms/Utils/BuildLibCalls.h
+llvm32/include/llvm/Transforms/Utils/BypassSlowDivision.h
+llvm32/include/llvm/Transforms/Utils/Cloning.h
+llvm32/include/llvm/Transforms/Utils/CmpInstAnalysis.h
+llvm32/include/llvm/Transforms/Utils/CodeExtractor.h
+llvm32/include/llvm/Transforms/Utils/IntegerDivision.h
+llvm32/include/llvm/Transforms/Utils/Local.h
+llvm32/include/llvm/Transforms/Utils/ModuleUtils.h
+llvm32/include/llvm/Transforms/Utils/PromoteMemToReg.h
+llvm32/include/llvm/Transforms/Utils/SSAUpdater.h
+llvm32/include/llvm/Transforms/Utils/SSAUpdaterImpl.h
+llvm32/include/llvm/Transforms/Utils/SimplifyIndVar.h
+llvm32/include/llvm/Transforms/Utils/SimplifyLibCalls.h
+llvm32/include/llvm/Transforms/Utils/UnifyFunctionExitNodes.h
+llvm32/include/llvm/Transforms/Utils/UnrollLoop.h
+llvm32/include/llvm/Transforms/Utils/ValueMapper.h
+llvm32/include/llvm/Transforms/Vectorize.h
+llvm32/include/llvm/Type.h
+llvm32/include/llvm/TypeBuilder.h
+llvm32/include/llvm/TypeFinder.h
+llvm32/include/llvm/Use.h
+llvm32/include/llvm/User.h
+llvm32/include/llvm/Value.h
+llvm32/include/llvm/ValueSymbolTable.h
+llvm32/lib/BugpointPasses.so
+llvm32/lib/LLVMHello.so
+llvm32/lib/libLLVM-%%PORTVERSION%%.so
+llvm32/lib/libLLVM-%%PORTVERSION%%.so.0
+llvm32/lib/libLLVMARMAsmParser.a
+llvm32/lib/libLLVMARMAsmPrinter.a
+llvm32/lib/libLLVMARMCodeGen.a
+llvm32/lib/libLLVMARMDesc.a
+llvm32/lib/libLLVMARMDisassembler.a
+llvm32/lib/libLLVMARMInfo.a
+llvm32/lib/libLLVMAnalysis.a
+llvm32/lib/libLLVMArchive.a
+llvm32/lib/libLLVMAsmParser.a
+llvm32/lib/libLLVMAsmPrinter.a
+llvm32/lib/libLLVMBitReader.a
+llvm32/lib/libLLVMBitWriter.a
+llvm32/lib/libLLVMCellSPUCodeGen.a
+llvm32/lib/libLLVMCellSPUDesc.a
+llvm32/lib/libLLVMCellSPUInfo.a
+llvm32/lib/libLLVMCodeGen.a
+llvm32/lib/libLLVMCore.a
+llvm32/lib/libLLVMCppBackendCodeGen.a
+llvm32/lib/libLLVMCppBackendInfo.a
+llvm32/lib/libLLVMDebugInfo.a
+llvm32/lib/libLLVMExecutionEngine.a
+llvm32/lib/libLLVMHexagonAsmPrinter.a
+llvm32/lib/libLLVMHexagonCodeGen.a
+llvm32/lib/libLLVMHexagonDesc.a
+llvm32/lib/libLLVMHexagonInfo.a
+llvm32/lib/libLLVMInstCombine.a
+llvm32/lib/libLLVMInstrumentation.a
+llvm32/lib/libLLVMInterpreter.a
+llvm32/lib/libLLVMJIT.a
+llvm32/lib/libLLVMLinker.a
+llvm32/lib/libLLVMMBlazeAsmParser.a
+llvm32/lib/libLLVMMBlazeAsmPrinter.a
+llvm32/lib/libLLVMMBlazeCodeGen.a
+llvm32/lib/libLLVMMBlazeDesc.a
+llvm32/lib/libLLVMMBlazeDisassembler.a
+llvm32/lib/libLLVMMBlazeInfo.a
+llvm32/lib/libLLVMMC.a
+llvm32/lib/libLLVMMCDisassembler.a
+llvm32/lib/libLLVMMCJIT.a
+llvm32/lib/libLLVMMCParser.a
+llvm32/lib/libLLVMMSP430AsmPrinter.a
+llvm32/lib/libLLVMMSP430CodeGen.a
+llvm32/lib/libLLVMMSP430Desc.a
+llvm32/lib/libLLVMMSP430Info.a
+llvm32/lib/libLLVMMipsAsmParser.a
+llvm32/lib/libLLVMMipsAsmPrinter.a
+llvm32/lib/libLLVMMipsCodeGen.a
+llvm32/lib/libLLVMMipsDesc.a
+llvm32/lib/libLLVMMipsDisassembler.a
+llvm32/lib/libLLVMMipsInfo.a
+llvm32/lib/libLLVMNVPTXAsmPrinter.a
+llvm32/lib/libLLVMNVPTXCodeGen.a
+llvm32/lib/libLLVMNVPTXDesc.a
+llvm32/lib/libLLVMNVPTXInfo.a
+llvm32/lib/libLLVMObject.a
+llvm32/lib/libLLVMPowerPCAsmPrinter.a
+llvm32/lib/libLLVMPowerPCCodeGen.a
+llvm32/lib/libLLVMPowerPCDesc.a
+llvm32/lib/libLLVMPowerPCInfo.a
+llvm32/lib/libLLVMRuntimeDyld.a
+llvm32/lib/libLLVMScalarOpts.a
+llvm32/lib/libLLVMSelectionDAG.a
+llvm32/lib/libLLVMSparcCodeGen.a
+llvm32/lib/libLLVMSparcDesc.a
+llvm32/lib/libLLVMSparcInfo.a
+llvm32/lib/libLLVMSupport.a
+llvm32/lib/libLLVMTableGen.a
+llvm32/lib/libLLVMTarget.a
+llvm32/lib/libLLVMTransformUtils.a
+llvm32/lib/libLLVMVectorize.a
+llvm32/lib/libLLVMX86AsmParser.a
+llvm32/lib/libLLVMX86AsmPrinter.a
+llvm32/lib/libLLVMX86CodeGen.a
+llvm32/lib/libLLVMX86Desc.a
+llvm32/lib/libLLVMX86Disassembler.a
+llvm32/lib/libLLVMX86Info.a
+llvm32/lib/libLLVMX86Utils.a
+llvm32/lib/libLLVMXCoreCodeGen.a
+llvm32/lib/libLLVMXCoreDesc.a
+llvm32/lib/libLLVMXCoreInfo.a
+llvm32/lib/libLLVMipa.a
+llvm32/lib/libLLVMipo.a
+llvm32/lib/libLTO.a
+llvm32/lib/libLTO.so
+llvm32/lib/libprofile_rt.a
+llvm32/lib/libprofile_rt.so
+%%LIT%%%%PYTHON_SITELIBDIR%%/lit32/LitConfig.py
+%%LIT%%%%PYTHON_SITELIBDIR%%/lit32/LitFormats.py
+%%LIT%%%%PYTHON_SITELIBDIR%%/lit32/LitTestCase.py
+%%LIT%%%%PYTHON_SITELIBDIR%%/lit32/ProgressBar.py
+%%LIT%%%%PYTHON_SITELIBDIR%%/lit32/ShCommands.py
+%%LIT%%%%PYTHON_SITELIBDIR%%/lit32/ShUtil.py
+%%LIT%%%%PYTHON_SITELIBDIR%%/lit32/TclUtil.py
+%%LIT%%%%PYTHON_SITELIBDIR%%/lit32/Test.py
+%%LIT%%%%PYTHON_SITELIBDIR%%/lit32/TestFormats.py
+%%LIT%%%%PYTHON_SITELIBDIR%%/lit32/TestRunner.py
+%%LIT%%%%PYTHON_SITELIBDIR%%/lit32/TestingConfig.py
+%%LIT%%%%PYTHON_SITELIBDIR%%/lit32/Util.py
+%%LIT%%%%PYTHON_SITELIBDIR%%/lit32/__init__.py
+%%LIT%%%%PYTHON_SITELIBDIR%%/lit32/main.py
+%%PORTDOCS%%%%DOCSDIR%%/html.tar.gz
+%%PORTDOCS%%%%DOCSDIR%%/html/.buildinfo
+%%PORTDOCS%%%%DOCSDIR%%/html/AliasAnalysis.html
+%%PORTDOCS%%%%DOCSDIR%%/html/AliasAnalysis.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/Atomics.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Atomics.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/BitCodeFormat.html
+%%PORTDOCS%%%%DOCSDIR%%/html/BitCodeFormat.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/BranchWeightMetadata.html
+%%PORTDOCS%%%%DOCSDIR%%/html/BranchWeightMetadata.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/Bugpoint.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Bugpoint.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/CMake.html
+%%PORTDOCS%%%%DOCSDIR%%/html/CMake.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/CodeGenerator.html
+%%PORTDOCS%%%%DOCSDIR%%/html/CodeGenerator.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/CodingStandards.html
+%%PORTDOCS%%%%DOCSDIR%%/html/CodingStandards.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/CommandLine.html
+%%PORTDOCS%%%%DOCSDIR%%/html/CommandLine.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/CompilerWriterInfo.html
+%%PORTDOCS%%%%DOCSDIR%%/html/CompilerWriterInfo.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/DebuggingJITedCode.html
+%%PORTDOCS%%%%DOCSDIR%%/html/DebuggingJITedCode.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/DeveloperPolicy.html
+%%PORTDOCS%%%%DOCSDIR%%/html/DeveloperPolicy.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/ExceptionHandling.html
+%%PORTDOCS%%%%DOCSDIR%%/html/ExceptionHandling.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/ExtendingLLVM.html
+%%PORTDOCS%%%%DOCSDIR%%/html/ExtendingLLVM.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/FAQ.html
+%%PORTDOCS%%%%DOCSDIR%%/html/FAQ.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/FileCheck.html
+%%PORTDOCS%%%%DOCSDIR%%/html/FileCheck.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/GCCFEBuildInstrs.html
+%%PORTDOCS%%%%DOCSDIR%%/html/GarbageCollection.html
+%%PORTDOCS%%%%DOCSDIR%%/html/GetElementPtr.html
+%%PORTDOCS%%%%DOCSDIR%%/html/GetElementPtr.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/GettingStarted.html
+%%PORTDOCS%%%%DOCSDIR%%/html/GettingStarted.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/GettingStartedVS.html
+%%PORTDOCS%%%%DOCSDIR%%/html/GettingStartedVS.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/GoldPlugin.html
+%%PORTDOCS%%%%DOCSDIR%%/html/GoldPlugin.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/HowToAddABuilder.html
+%%PORTDOCS%%%%DOCSDIR%%/html/HowToAddABuilder.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/HowToBuildOnARM.html
+%%PORTDOCS%%%%DOCSDIR%%/html/HowToBuildOnARM.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/HowToReleaseLLVM.html
+%%PORTDOCS%%%%DOCSDIR%%/html/HowToSetUpLLVMStyleRTTI.html
+%%PORTDOCS%%%%DOCSDIR%%/html/HowToSetUpLLVMStyleRTTI.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/HowToSubmitABug.html
+%%PORTDOCS%%%%DOCSDIR%%/html/HowToSubmitABug.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/HowToUseInstrMappings.html
+%%PORTDOCS%%%%DOCSDIR%%/html/HowToUseInstrMappings.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/LLVMBuild.html
+%%PORTDOCS%%%%DOCSDIR%%/html/LangImpl1.html
+%%PORTDOCS%%%%DOCSDIR%%/html/LangImpl2.html
+%%PORTDOCS%%%%DOCSDIR%%/html/LangImpl3.html
+%%PORTDOCS%%%%DOCSDIR%%/html/LangImpl4.html
+%%PORTDOCS%%%%DOCSDIR%%/html/LangImpl5-cfg.png
+%%PORTDOCS%%%%DOCSDIR%%/html/LangImpl5.html
+%%PORTDOCS%%%%DOCSDIR%%/html/LangImpl6.html
+%%PORTDOCS%%%%DOCSDIR%%/html/LangImpl7.html
+%%PORTDOCS%%%%DOCSDIR%%/html/LangImpl8.html
+%%PORTDOCS%%%%DOCSDIR%%/html/LangRef.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Lexicon.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Lexicon.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/LinkTimeOptimization.html
+%%PORTDOCS%%%%DOCSDIR%%/html/LinkTimeOptimization.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/MakefileGuide.html
+%%PORTDOCS%%%%DOCSDIR%%/html/MakefileGuide.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/MarkedUpDisassembly.html
+%%PORTDOCS%%%%DOCSDIR%%/html/MarkedUpDisassembly.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/OCamlLangImpl1.html
+%%PORTDOCS%%%%DOCSDIR%%/html/OCamlLangImpl2.html
+%%PORTDOCS%%%%DOCSDIR%%/html/OCamlLangImpl3.html
+%%PORTDOCS%%%%DOCSDIR%%/html/OCamlLangImpl4.html
+%%PORTDOCS%%%%DOCSDIR%%/html/OCamlLangImpl5.html
+%%PORTDOCS%%%%DOCSDIR%%/html/OCamlLangImpl6.html
+%%PORTDOCS%%%%DOCSDIR%%/html/OCamlLangImpl7.html
+%%PORTDOCS%%%%DOCSDIR%%/html/OCamlLangImpl8.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Packaging.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Packaging.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/Passes.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Phabricator.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Phabricator.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/ProgrammersManual.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Projects.html
+%%PORTDOCS%%%%DOCSDIR%%/html/Projects.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/ReleaseNotes.html
+%%PORTDOCS%%%%DOCSDIR%%/html/SegmentedStacks.html
+%%PORTDOCS%%%%DOCSDIR%%/html/SegmentedStacks.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/SourceLevelDebugging.html
+%%PORTDOCS%%%%DOCSDIR%%/html/SphinxQuickstartTemplate.html
+%%PORTDOCS%%%%DOCSDIR%%/html/SphinxQuickstartTemplate.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/SystemLibrary.html
+%%PORTDOCS%%%%DOCSDIR%%/html/TableGenFundamentals.html
+%%PORTDOCS%%%%DOCSDIR%%/html/TableGenFundamentals.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/TestSuiteMakefileGuide.html
+%%PORTDOCS%%%%DOCSDIR%%/html/TestingGuide.html
+%%PORTDOCS%%%%DOCSDIR%%/html/WritingAnLLVMBackend.html
+%%PORTDOCS%%%%DOCSDIR%%/html/WritingAnLLVMPass.html
+%%PORTDOCS%%%%DOCSDIR%%/html/ajax-loader.gif
+%%PORTDOCS%%%%DOCSDIR%%/html/basic.css
+%%PORTDOCS%%%%DOCSDIR%%/html/bugpoint.html
+%%PORTDOCS%%%%DOCSDIR%%/html/bugpoint.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/comment-bright.png
+%%PORTDOCS%%%%DOCSDIR%%/html/comment-close.png
+%%PORTDOCS%%%%DOCSDIR%%/html/comment.png
+%%PORTDOCS%%%%DOCSDIR%%/html/contents.png
+%%PORTDOCS%%%%DOCSDIR%%/html/design_and_overview.html
+%%PORTDOCS%%%%DOCSDIR%%/html/design_and_overview.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/development_process.html
+%%PORTDOCS%%%%DOCSDIR%%/html/development_process.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/doctools.js
+%%PORTDOCS%%%%DOCSDIR%%/html/down-pressed.png
+%%PORTDOCS%%%%DOCSDIR%%/html/down.png
+%%PORTDOCS%%%%DOCSDIR%%/html/doxygen.css
+%%PORTDOCS%%%%DOCSDIR%%/html/file.png
+%%PORTDOCS%%%%DOCSDIR%%/html/genindex.html
+%%PORTDOCS%%%%DOCSDIR%%/html/index.html
+%%PORTDOCS%%%%DOCSDIR%%/html/index.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/jquery.js
+%%PORTDOCS%%%%DOCSDIR%%/html/lines.gif
+%%PORTDOCS%%%%DOCSDIR%%/html/lit.html
+%%PORTDOCS%%%%DOCSDIR%%/html/lit.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/llc.html
+%%PORTDOCS%%%%DOCSDIR%%/html/llc.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/lli.html
+%%PORTDOCS%%%%DOCSDIR%%/html/lli.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-ar.html
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-ar.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-as.html
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-as.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-bcanalyzer.html
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-bcanalyzer.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-build.html
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-build.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-config.html
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-config.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-cov.html
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-cov.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-diff.html
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-diff.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-dis.html
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-dis.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-extract.html
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-extract.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-link.html
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-link.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-nm.html
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-nm.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-prof.html
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-prof.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-ranlib.html
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-ranlib.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-stress.html
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-stress.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm-theme.css
+%%PORTDOCS%%%%DOCSDIR%%/html/llvm.css
+%%PORTDOCS%%%%DOCSDIR%%/html/logo.png
+%%PORTDOCS%%%%DOCSDIR%%/html/mailing_lists.html
+%%PORTDOCS%%%%DOCSDIR%%/html/mailing_lists.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/minus.png
+%%PORTDOCS%%%%DOCSDIR%%/html/navigation.png
+%%PORTDOCS%%%%DOCSDIR%%/html/objects.inv
+%%PORTDOCS%%%%DOCSDIR%%/html/opt.html
+%%PORTDOCS%%%%DOCSDIR%%/html/opt.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/plus.png
+%%PORTDOCS%%%%DOCSDIR%%/html/programming.html
+%%PORTDOCS%%%%DOCSDIR%%/html/programming.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/pygments.css
+%%PORTDOCS%%%%DOCSDIR%%/html/search.html
+%%PORTDOCS%%%%DOCSDIR%%/html/searchindex.js
+%%PORTDOCS%%%%DOCSDIR%%/html/searchtools.js
+%%PORTDOCS%%%%DOCSDIR%%/html/subsystems.html
+%%PORTDOCS%%%%DOCSDIR%%/html/subsystems.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/tblgen.html
+%%PORTDOCS%%%%DOCSDIR%%/html/tblgen.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/underscore.js
+%%PORTDOCS%%%%DOCSDIR%%/html/up-pressed.png
+%%PORTDOCS%%%%DOCSDIR%%/html/up.png
+%%PORTDOCS%%%%DOCSDIR%%/html/userguides.html
+%%PORTDOCS%%%%DOCSDIR%%/html/userguides.txt
+%%PORTDOCS%%%%DOCSDIR%%/html/websupport.js
+%%PORTDOCS%%%%DOCSDIR%%/html/yaml2obj.html
+%%PORTDOCS%%%%DOCSDIR%%/html/yaml2obj.txt
+@dirrm llvm32/lib
+@dirrm llvm32/include/llvm/Transforms/Utils
+@dirrm llvm32/include/llvm/Transforms/IPO
+@dirrm llvm32/include/llvm/Transforms
+@dirrm llvm32/include/llvm/Target
+@dirrm llvm32/include/llvm/TableGen
+@dirrm llvm32/include/llvm/Support
+@dirrm llvm32/include/llvm/Object
+@dirrm llvm32/include/llvm/MC/MCParser
+@dirrm llvm32/include/llvm/MC
+@dirrm llvm32/include/llvm/ExecutionEngine
+@dirrm llvm32/include/llvm/DebugInfo
+@dirrm llvm32/include/llvm/Config
+@dirrm llvm32/include/llvm/CodeGen/PBQP/Heuristics
+@dirrm llvm32/include/llvm/CodeGen/PBQP
+@dirrm llvm32/include/llvm/CodeGen
+@dirrm llvm32/include/llvm/Bitcode
+@dirrm llvm32/include/llvm/Assembly
+@dirrm llvm32/include/llvm/Analysis
+@dirrm llvm32/include/llvm/ADT
+@dirrm llvm32/include/llvm-c/Transforms
+@dirrm llvm32/include/llvm-c
+@dirrm llvm32/include/llvm
+@dirrm llvm32/include
+@dirrm llvm32/bin
+@dirrm llvm32
+%%LIT%%@dirrm %%PYTHON_SITELIBDIR%%/lit32
+%%PORTDOCS%%@dirrm %%DOCSDIR%%/html
+%%PORTDOCS%%@dirrm %%DOCSDIR%%