History log of /freebsd-10-stable/contrib/llvm/tools/clang/lib/
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
330080 27-Feb-2018 dim

Avoid using the C++11 auto keyword, which was introduced in r328555, as
part of an upstream change. This is not supported by gcc 4.2.1, which
is still the default system compiler for some architectures.

Direct commit to stable/9 and stable/10, since this does not apply to
stable/11 and head.

Reported by: jau@iki.fi
PR: 202665,226068

328555 29-Jan-2018 dim

Pull in r217197 from upstream clang trunk (by Richard Smith):

PR20844: If we fail to list-initialize a reference, map to the
referenced type before retrying the initialization to produce
diagnostics. Otherwise, we may fail to produce any diagnostics, and
silently produce invalid AST in a -Asserts build. Also add a note to
this codepath to make it more clear why we were trying to create a
temporary.

This should fix assertions when parsing some forms of incomplete list
intializers.

Direct commit to stable/9 and stable/10, since stable/11 and head
already have this upstream fix.

Reported by: ajcbowhill@gmail.com
PR: 202665

326976 19-Dec-2017 dim

MFC r326880:

Pull in r320755 from upstream clang trunk (by me):

Don't trigger -Wuser-defined-literals for system headers

Summary:
In D41064, I proposed adding `#pragma clang diagnostic ignored
"-Wuser-defined-literals"` to some of libc++'s headers, since these
warnings are now triggered by clang's new `-std=gnu++14` default:

$ cat test.cpp
#include <string>

$ clang -std=c++14 -Wsystem-headers -Wall -Wextra -c test.cpp
In file included from test.cpp:1:
In file included from /usr/include/c++/v1/string:470:
/usr/include/c++/v1/string_view:763:29: warning: user-defined literal suffixes not starting with '_' are reserved [-Wuser-defined-literals]
basic_string_view<char> operator "" sv(const char *__str, size_t __len)
^
/usr/include/c++/v1/string_view:769:32: warning: user-defined literal suffixes not starting with '_' are reserved [-Wuser-defined-literals]
basic_string_view<wchar_t> operator "" sv(const wchar_t *__str, size_t __len)
^
/usr/include/c++/v1/string_view:775:33: warning: user-defined literal suffixes not starting with '_' are reserved [-Wuser-defined-literals]
basic_string_view<char16_t> operator "" sv(const char16_t *__str, size_t __len)
^
/usr/include/c++/v1/string_view:781:33: warning: user-defined literal suffixes not starting with '_' are reserved [-Wuser-defined-literals]
basic_string_view<char32_t> operator "" sv(const char32_t *__str, size_t __len)
^
In file included from test.cpp:1:
/usr/include/c++/v1/string:4012:24: warning: user-defined literal suffixes not starting with '_' are reserved [-Wuser-defined-literals]
basic_string<char> operator "" s( const char *__str, size_t __len )
^
/usr/include/c++/v1/string:4018:27: warning: user-defined literal suffixes not starting with '_' are reserved [-Wuser-defined-literals]
basic_string<wchar_t> operator "" s( const wchar_t *__str, size_t __len )
^
/usr/include/c++/v1/string:4024:28: warning: user-defined literal suffixes not starting with '_' are reserved [-Wuser-defined-literals]
basic_string<char16_t> operator "" s( const char16_t *__str, size_t __len )
^
/usr/include/c++/v1/string:4030:28: warning: user-defined literal suffixes not starting with '_' are reserved [-Wuser-defined-literals]
basic_string<char32_t> operator "" s( const char32_t *__str, size_t __len )
^
8 warnings generated.

Both @aaron.ballman and @mclow.lists felt that adding this workaround
to the libc++ headers was the wrong way, and it should be fixed in
clang instead.

Here is a proposal to do just that. I verified that this suppresses
the warning, even when -Wsystem-headers is used, and that the warning
is still emitted for a declaration outside of system headers.

Reviewers: aaron.ballman, mclow.lists, rsmith

Reviewed By: aaron.ballman

Subscribers: mclow.lists, aaron.ballman, andrew, emaste, cfe-commits

Differential Revision: https://reviews.llvm.org/D41080

This will allow to compile some of the libc++ headers in C++14 mode
(which is the default for gcc 6 and higher, and will be the default for
clang 6.0.0 and higher), with -Wsystem-headers and -Werror enabled.

Reported by: andrew

303170 22-Jul-2016 emaste

MFC r303031: clang++: Always use --eh-frame-hdr on FreeBSD, even for -static

FreeBSD uses LLVM's libunwind on FreeBSD/arm64 today (and we expect to
use it more widely in the future) and it requires the EH frame segment
in static binaries.

296942 16-Mar-2016 ian

Revert r296940, it contained unintended changes, and will be redone.

296940 16-Mar-2016 ian

MFC r296807:

Require firewall setup before running rc.d/netwait, otherwise the ping
packets sent by netwait may not get through.

PR: 207916

283036 17-May-2015 dim

For clang 3.4.1, when using -fformat-extensions, and warning about the
FreeBSD-specific %D and %b printf format specifiers, avoid possible
argument overruns. Also reduce the differences with the version added
in r280031 (which has been sent upstream).

Direct commit to stable/10, since head already has clang 3.6.0.

279302 25-Feb-2015 emaste

Implement the -fuse-ld= option.

Merge upstream Clang revision 211785:
This commit implements the -fuse-ld= option, so that the user
can specify -fuse-ld=bfd to use ld.bfd.

This commit re-applies r194328 with some test case changes.
It seems that r194328 was breaking macosx or mingw build
because clang can't find ld.bfd or ld.gold in the given sysroot.
We should use -B to specify the executable search path instead.

Patch originally by David Chisnall.

This is a direct commit to stable/10 as this is change is already
included in Clang 3.5 in HEAD. The patch is also reworked slightly for
Clang 3.4.1.

Reviewed by: dim
Sponsored by: The FreeBSD Foundation

279289 25-Feb-2015 dim

Pull in r199571 from upstream clang trunk (by Ted Kremenek):

Harden InitListExpr::isStringLiteralInit() against getInit()
returning null.

This led to a crash on invalid code (sorry, no good test case).

Fixes <rdar://problem/15831804>.

This fixes an assertion when compiling certain incorrect code, as
reported upstream in http://llvm.org/PR22684 .

Direct commit to stable/10 and stable/9, since head has clang 3.5.1,
which already includes this change.

Reported by: hbowden@securelabsllc.com

278788 14-Feb-2015 dim

Pull in r201130 from upstream clang trunk (by Ted Kremenek):

Fix PCH deserialization bug with local static symbols being treated
as local extern.

This triggered a miscompilation of code using Boost's
function_template.hpp when it was included inside a PCH file. A
local static within that header would be treated as local extern,
resulting in the wrong mangling. This only occurred during PCH
deserialization.

Fixes <rdar://problem/15975816> and <rdar://problem/15926311>.

This fixes a crash in audio/murmur, which is using both PCH and Boost.

Direct commit to stable/10 and stable/9, since head has clang 3.5.1,
which already includes this change.

Reported by: smh
PR: 197389

275872 17-Dec-2014 dim

MFC r275759:

Pull in r221170 from upstream clang trunk (by Roman Divacky):

Implement vaarg lowering for ppc32. Lowering of scalars and
aggregates is supported. Complex numbers are not.

This adds va_args support for PowerPC (32 bit) to clang.

Reviewed by: jhibbits
Differential Revision: https://reviews.freebsd.org/D1308

271729 18-Sep-2014 emaste

MFC Clang debuginfo crash fix

r271432: Merge upstream Clang rev 205331 debuginfo crash fix:

Debug info: fix a crash when emitting IndirectFieldDecls, which were
previously not handled at all.
rdar://problem/16348575

r271433: Add clang patch corresponding to r271432

Approved by: re
Sponsored by: DARPA, AFRL

271414 11-Sep-2014 emaste

MFC Clang debug info crash fix

r271282: Merge Clang debug info crash fix rev 200797:

Debug info: fix a crasher when when emitting debug info for
not-yet-completed templated types. getTypeSize() needs a complete type.

rdar://problem/15931354

r271283: Add clang patch for r271282

Note that r271282 contains only the src change from Clang rev 200797.
This patch file includes two follow-on changes to the test case, which
do not apply to the copy in the FreeBSD tree.

Upstream Clang revisions:

200797:

Debug info: fix a crasher when when emitting debug info for
not-yet-completed templated types. getTypeSize() needs a complete type.

rdar://problem/15931354

200798:

Simplify testcase from r200797 some more.

200805:

Further simplify r200797 and add an explanatory comment.

PR: 193347
Approved by: re
Sponsored by: DARPA, AFRL

270072 17-Aug-2014 ian

MFC r269387: Update the ARMv6 core clang targets to be an arm1176jzf-s.

269011 23-Jul-2014 emaste

MFC r265477: Merge -fstandalone-debug from Clang r198655:

Implement a new -fstandalone-debug option. rdar://problem/15685848
It controls everything that -flimit-debug-info used to, plus the
vtable type optimization. The old -fno-limit-debug-info option is now an
alias to -fstandalone-debug and vice versa.

Standalone is the default on Darwin until dtrace is updated to work with
non-standalone debug info (rdar://problem/15758808).

Note: I kept the LimitedDebugInfo name in CodeGenOptions::DebugInfoKind
because NoStandaloneDebugInfo sounded even more confusing.

269000 22-Jul-2014 emaste

MFC debug info for variadic functions

r264826: Merge LLVM r202188:

Debug info: Support variadic functions.
Variadic functions have an unspecified parameter tag after the last
argument. In IR this is represented as an unspecified parameter in the
subroutine type.

Paired commit with CFE r202185.

rdar://problem/13690847

This re-applies r202184 + a bugfix in DwarfDebug's argument handling.

This merge includes a change to use the LLVM 3.4 API in
lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp:

DwarfUnit -> CompileUnit

r264827: Merge Clang r202185:

Debug info: Generate debug info for variadic functions.
Paired commit with LLVM.

rdar://problem/13690847

This merege includes changes to use the Clang 3.4 API (revisions
199686 and 200082) in lib/CodeGen/CGDebugInfo.cpp:

getParamType -> getArgType
getNumParams -> getNumArgs
getReturnType -> getResultType

r264828: Add patches corresponding to r264826 and r264827

Sponsored by: DARPA, AFRL

266789 28-May-2014 dim

MFC r266674:

Pull in r209489 from upstream clang trunk (by Akira Hatanaka):

Fix a bug in xmmintrin.h.

The last step of _mm_cvtps_pi16 should use _mm_packs_pi32, which is a function
that reads two __m64 values and packs four 32-bit values into four 16-bit
values.

<rdar://problem/16873717>

266715 26-May-2014 dim

MFC r265925:

Upgrade our copy of llvm/clang to 3.4.1 release. This release contains
mostly fixes, for the following upstream bugs:

http://llvm.org/PR16365 http://llvm.org/PR17473 http://llvm.org/PR18000
http://llvm.org/PR18068 http://llvm.org/PR18102 http://llvm.org/PR18165
http://llvm.org/PR18260 http://llvm.org/PR18290 http://llvm.org/PR18316
http://llvm.org/PR18460 http://llvm.org/PR18473 http://llvm.org/PR18515
http://llvm.org/PR18526 http://llvm.org/PR18600 http://llvm.org/PR18762
http://llvm.org/PR18773 http://llvm.org/PR18860 http://llvm.org/PR18994
http://llvm.org/PR19007 http://llvm.org/PR19010 http://llvm.org/PR19033
http://llvm.org/PR19059 http://llvm.org/PR19144 http://llvm.org/PR19326


/freebsd-10-stable/ObsoleteFiles.inc
/freebsd-10-stable/UPDATING
/freebsd-10-stable/contrib/llvm/include/llvm/IR/IntrinsicsX86.td
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MCAsmInfo.h
/freebsd-10-stable/contrib/llvm/lib/Analysis/BasicAliasAnalysis.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/IVUsers.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/ScalarEvolution.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCAsmInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCAsmInfoCOFF.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCAsmInfoDarwin.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCDwarf.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCParser/AsmParser.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/AArch64InstrInfo.td
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/AArch64TargetObjectFile.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/AArch64TargetObjectFile.h
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/A15SDOptimizer.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMInstrNEON.td
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCCTRLoops.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCFastISel.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.td
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.td
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.h
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDGPUISelLowering.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDGPUInstructions.td
/freebsd-10-stable/contrib/llvm/lib/Target/R600/MCTargetDesc/AMDGPUMCAsmInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/R600ControlFlowFinalizer.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/R600InstrInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/R600Instructions.td
/freebsd-10-stable/contrib/llvm/lib/Target/R600/SIFixSGPRCopies.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/SIInsertWaits.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/SIInstrInfo.td
/freebsd-10-stable/contrib/llvm/lib/Target/R600/SIInstructions.td
/freebsd-10-stable/contrib/llvm/lib/Target/R600/SIIntrinsics.td
/freebsd-10-stable/contrib/llvm/lib/Target/R600/SILowerControlFlow.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.c
/freebsd-10-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86AsmPrinter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86ISelLowering.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86InstrCompiler.td
/freebsd-10-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineVectorOps.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Scalar/LoopRerollPass.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Utils/LCSSA.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
/freebsd-10-stable/contrib/llvm/patches/patch-r262809-clang-r203007-destructor-calling-conv.diff
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Driver/Driver.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Driver/ToolChain.h
AST/ASTDumper.cpp
AST/ExprConstant.cpp
AST/StmtPrinter.cpp
Analysis/Consumed.cpp
Basic/Targets.cpp
Basic/Version.cpp
Driver/Driver.cpp
Driver/ToolChain.cpp
Driver/ToolChains.cpp
Driver/ToolChains.h
Driver/Tools.cpp
Sema/SemaExprCXX.cpp
/freebsd-10-stable/etc/mtree/BSD.include.dist
/freebsd-10-stable/lib/clang/include/Makefile
/freebsd-10-stable/lib/clang/include/clang/Basic/Version.inc
/freebsd-10-stable/lib/clang/include/llvm/Config/config.h
/freebsd-10-stable/lib/clang/include/llvm/Config/llvm-config.h
/freebsd-10-stable/tools/build/mk/OptionalObsoleteFiles.inc
264464 14-Apr-2014 dim

MFC r264345:

Amend r263891, by making clang default to DWARF2 debug info format for
all FreeBSD versions, not just 10.x and earlier. Apparently too many
people seem to have trouble with post-1993 formats.

Also remove the related notes about messing with kernel configuration
files from UPDATING, which are now superfluous.

Requested by: many

263984 01-Apr-2014 dim

MFC r263891:

Make clang default to DWARF2 debug info format for FreeBSD 10.x and
earlier. For head, this commit does not change anything, but it is
purely meant to be MFC'd.

263763 26-Mar-2014 dim

MFC r262613:

Merge the projects/clang-sparc64 branch back to head. This brings in
several updates from the llvm and clang trunks to make the sparc64
backend fully functional.

Apart from one patch to sys/sparc64/include/pcpu.h which is still under
discussion, this makes it possible to let clang fully build world and
kernel for sparc64.

Any assistance with testing this on actual sparc64 hardware is greatly
appreciated, as there will unavoidably be bugs left.

Many thanks go to Roman Divacky for his upstream work on getting the
sparc64 backend into shape.

MFC r262985:

Repair a few minor mismerges from r262261 in the clang-sparc64 project
branch. This is also to minimize differences with upstream.


/freebsd-10-stable/contrib/compiler-rt/lib/absvti2.c
/freebsd-10-stable/contrib/compiler-rt/lib/addvti3.c
/freebsd-10-stable/contrib/compiler-rt/lib/ashlti3.c
/freebsd-10-stable/contrib/compiler-rt/lib/ashrti3.c
/freebsd-10-stable/contrib/compiler-rt/lib/clzti2.c
/freebsd-10-stable/contrib/compiler-rt/lib/cmpti2.c
/freebsd-10-stable/contrib/compiler-rt/lib/ctzti2.c
/freebsd-10-stable/contrib/compiler-rt/lib/divti3.c
/freebsd-10-stable/contrib/compiler-rt/lib/ffsti2.c
/freebsd-10-stable/contrib/compiler-rt/lib/fixdfti.c
/freebsd-10-stable/contrib/compiler-rt/lib/fixsfti.c
/freebsd-10-stable/contrib/compiler-rt/lib/fixunsdfti.c
/freebsd-10-stable/contrib/compiler-rt/lib/fixunssfti.c
/freebsd-10-stable/contrib/compiler-rt/lib/fixunsxfti.c
/freebsd-10-stable/contrib/compiler-rt/lib/fixxfti.c
/freebsd-10-stable/contrib/compiler-rt/lib/floattidf.c
/freebsd-10-stable/contrib/compiler-rt/lib/floattisf.c
/freebsd-10-stable/contrib/compiler-rt/lib/floattixf.c
/freebsd-10-stable/contrib/compiler-rt/lib/floatuntidf.c
/freebsd-10-stable/contrib/compiler-rt/lib/floatuntisf.c
/freebsd-10-stable/contrib/compiler-rt/lib/floatuntixf.c
/freebsd-10-stable/contrib/compiler-rt/lib/int_types.h
/freebsd-10-stable/contrib/compiler-rt/lib/lshrti3.c
/freebsd-10-stable/contrib/compiler-rt/lib/modti3.c
/freebsd-10-stable/contrib/compiler-rt/lib/muloti4.c
/freebsd-10-stable/contrib/compiler-rt/lib/multi3.c
/freebsd-10-stable/contrib/compiler-rt/lib/mulvti3.c
/freebsd-10-stable/contrib/compiler-rt/lib/negti2.c
/freebsd-10-stable/contrib/compiler-rt/lib/negvti2.c
/freebsd-10-stable/contrib/compiler-rt/lib/parityti2.c
/freebsd-10-stable/contrib/compiler-rt/lib/popcountti2.c
/freebsd-10-stable/contrib/compiler-rt/lib/subvti3.c
/freebsd-10-stable/contrib/compiler-rt/lib/ucmpti2.c
/freebsd-10-stable/contrib/compiler-rt/lib/udivmodti4.c
/freebsd-10-stable/contrib/compiler-rt/lib/udivti3.c
/freebsd-10-stable/contrib/compiler-rt/lib/umodti3.c
/freebsd-10-stable/contrib/gcc/longlong.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MCAsmInfo.h
/freebsd-10-stable/contrib/llvm/include/llvm/Object/ELFObjectFile.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/ELF.h
/freebsd-10-stable/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCObjectFileInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Object/ELF.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMISelLowering.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/AsmParser
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/DelaySlotFiller.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/Disassembler
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/InstPrinter
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/InstPrinter/SparcInstPrinter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcAsmBackend.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcBaseInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcELFObjectWriter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcFixupKinds.h
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCAsmInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCAsmInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCCodeEmitter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCExpr.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCExpr.h
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.h
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcTargetStreamer.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/Sparc.h
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/Sparc.td
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcAsmPrinter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcCallingConv.td
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcCodeEmitter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcISelLowering.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcISelLowering.h
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcInstr64Bit.td
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcInstrAliases.td
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcInstrFormats.td
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.td
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcJITInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcMCInstLower.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcRelocations.h
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcSubtarget.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcSubtarget.h
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcTargetObjectFile.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcTargetObjectFile.h
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcTargetStreamer.h
Basic/Targets.cpp
CodeGen/TargetInfo.cpp
Driver/ToolChains.cpp
Driver/Tools.cpp
/freebsd-10-stable/lib/clang/Makefile
/freebsd-10-stable/lib/clang/clang.build.mk
/freebsd-10-stable/lib/clang/include/SparcGenAsmMatcher.inc
/freebsd-10-stable/lib/clang/include/SparcGenAsmWriter.inc
/freebsd-10-stable/lib/clang/include/SparcGenCallingConv.inc
/freebsd-10-stable/lib/clang/include/SparcGenCodeEmitter.inc
/freebsd-10-stable/lib/clang/include/SparcGenDAGISel.inc
/freebsd-10-stable/lib/clang/include/SparcGenDisassemblerTables.inc
/freebsd-10-stable/lib/clang/include/SparcGenInstrInfo.inc
/freebsd-10-stable/lib/clang/include/SparcGenMCCodeEmitter.inc
/freebsd-10-stable/lib/clang/include/SparcGenRegisterInfo.inc
/freebsd-10-stable/lib/clang/include/SparcGenSubtargetInfo.inc
/freebsd-10-stable/lib/clang/include/llvm/Config/AsmParsers.def
/freebsd-10-stable/lib/clang/include/llvm/Config/AsmPrinters.def
/freebsd-10-stable/lib/clang/include/llvm/Config/Disassemblers.def
/freebsd-10-stable/lib/clang/include/llvm/Config/Targets.def
/freebsd-10-stable/lib/clang/libllvmsparcasmparser
/freebsd-10-stable/lib/clang/libllvmsparccodegen
/freebsd-10-stable/lib/clang/libllvmsparcdesc
/freebsd-10-stable/lib/clang/libllvmsparcdisassembler
/freebsd-10-stable/lib/clang/libllvmsparcinfo
/freebsd-10-stable/lib/clang/libllvmsparcinstprinter
/freebsd-10-stable/lib/libc/sparc64/sys/__sparc_utrap_setup.c
/freebsd-10-stable/lib/msun/Makefile
/freebsd-10-stable/share/mk/bsd.sys.mk
/freebsd-10-stable/sys/boot/sparc64/boot1/Makefile
/freebsd-10-stable/sys/conf/kern.mk
/freebsd-10-stable/sys/dev/esp/esp_sbus.c
/freebsd-10-stable/sys/dev/fb/creator.c
/freebsd-10-stable/sys/dev/fb/machfb.c
/freebsd-10-stable/sys/dev/mk48txx/mk48txx.c
/freebsd-10-stable/sys/sparc64/conf/GENERIC
/freebsd-10-stable/sys/sparc64/isa/isa.c
/freebsd-10-stable/sys/sparc64/pci/firereg.h
/freebsd-10-stable/usr.bin/clang/clang/Makefile
/freebsd-10-stable/usr.bin/clang/llc/Makefile
/freebsd-10-stable/usr.bin/clang/llvm-mc/Makefile
/freebsd-10-stable/usr.bin/clang/llvm-objdump/Makefile
/freebsd-10-stable/usr.bin/clang/llvm-rtdyld/Makefile
/freebsd-10-stable/usr.bin/clang/opt/Makefile
/freebsd-10-stable/usr.sbin/eeprom/ofw_options.c
263508 21-Mar-2014 dim

MFC 261991:

Upgrade our copy of llvm/clang to 3.4 release. This version supports
all of the features in the current working draft of the upcoming C++
standard, provisionally named C++1y.

The code generator's performance is greatly increased, and the loop
auto-vectorizer is now enabled at -Os and -O2 in addition to -O3. The
PowerPC backend has made several major improvements to code generation
quality and compile time, and the X86, SPARC, ARM32, Aarch64 and SystemZ
backends have all seen major feature work.

Release notes for llvm and clang can be found here:
<http://llvm.org/releases/3.4/docs/ReleaseNotes.html>
<http://llvm.org/releases/3.4/tools/clang/docs/ReleaseNotes.html>

MFC 262121 (by emaste):

Update lldb for clang/llvm 3.4 import

This commit largely restores the lldb source to the upstream r196259
snapshot with the addition of threaded inferior support and a few bug
fixes.

Specific upstream lldb revisions restored include:
SVN git
181387 779e6ac
181703 7bef4e2
182099 b31044e
182650 f2dcf35
182683 0d91b80
183862 15c1774
183929 99447a6
184177 0b2934b
184948 4dc3761
184954 007e7bc
186990 eebd175

Sponsored by: DARPA, AFRL

MFC 262186 (by emaste):

Fix mismerge in r262121

A break statement was lost in the merge. The error had no functional
impact, but restore it to reduce the diff against upstream.

MFC 262303:

Pull in r197521 from upstream clang trunk (by rdivacky):

Use the integrated assembler by default on FreeBSD/ppc and ppc64.

Requested by: jhibbits

MFC 262611:

Pull in r196874 from upstream llvm trunk:

Fix a crash that occurs when PWD is invalid.

MCJIT needs to be able to run in hostile environments, even when PWD
is invalid. There's no need to crash MCJIT in this case.

The obvious fix is to simply leave MCContext's CompilationDir empty
when PWD can't be determined. This way, MCJIT clients,
and other clients that link with LLVM don't need a valid working directory.

If we do want to guarantee valid CompilationDir, that should be done
only for clients of getCompilationDir(). This is as simple as checking
for an empty string.

The only current use of getCompilationDir is EmitGenDwarfInfo, which
won't conceivably run with an invalid working dir. However, in the
purely hypothetically and untestable case that this happens, the
AT_comp_dir will be omitted from the compilation_unit DIE.

This should help fix assertions occurring with ports-mgmt/tinderbox,
when it is using jails, and sometimes invalidates clang's current
working directory.

Reported by: decke

MFC 262809:

Pull in r203007 from upstream clang trunk:

Don't produce an alias between destructors with different calling conventions.

Fixes pr19007.

(Please note that is an LLVM PR identifier, not a FreeBSD one.)

This should fix Firefox and/or libxul crashes (due to problems with
regparm/stdcall calling conventions) on i386.

Reported by: multiple users on freebsd-current
PR: bin/187103

MFC 263048:

Repair recognition of "CC" as an alias for the C++ compiler, since it
was silently broken by upstream for a Windows-specific use-case.

Apparently some versions of CMake still rely on this archaic feature...

Reported by: rakuco

MFC 263049:

Garbage collect the old way of adding the libstdc++ include directories
in clang's InitHeaderSearch.cpp. This has been superseded by David
Chisnall's commit in r255321.

Moreover, if libc++ is used, the libstdc++ include directories should
not be in the search path at all. These directories are now only used
if you pass -stdlib=libstdc++.


/freebsd-10-stable/ObsoleteFiles.inc
/freebsd-10-stable/UPDATING
/freebsd-10-stable/contrib/gcc/libgcc2.c
/freebsd-10-stable/contrib/gcc/libgcc2.h
/freebsd-10-stable/contrib/llvm/LICENSE.TXT
/freebsd-10-stable/contrib/llvm/include/llvm-c/BitReader.h
/freebsd-10-stable/contrib/llvm/include/llvm-c/BitWriter.h
/freebsd-10-stable/contrib/llvm/include/llvm-c/Core.h
/freebsd-10-stable/contrib/llvm/include/llvm-c/Disassembler.h
/freebsd-10-stable/contrib/llvm/include/llvm-c/ExecutionEngine.h
/freebsd-10-stable/contrib/llvm/include/llvm-c/IRReader.h
/freebsd-10-stable/contrib/llvm/include/llvm-c/LinkTimeOptimizer.h
/freebsd-10-stable/contrib/llvm/include/llvm-c/Object.h
/freebsd-10-stable/contrib/llvm/include/llvm-c/Support.h
/freebsd-10-stable/contrib/llvm/include/llvm-c/Target.h
/freebsd-10-stable/contrib/llvm/include/llvm-c/TargetMachine.h
/freebsd-10-stable/contrib/llvm/include/llvm-c/Transforms/Scalar.h
/freebsd-10-stable/contrib/llvm/include/llvm-c/lto.h
/freebsd-10-stable/contrib/llvm/include/llvm/ADT/APFloat.h
/freebsd-10-stable/contrib/llvm/include/llvm/ADT/APInt.h
/freebsd-10-stable/contrib/llvm/include/llvm/ADT/APSInt.h
/freebsd-10-stable/contrib/llvm/include/llvm/ADT/ArrayRef.h
/freebsd-10-stable/contrib/llvm/include/llvm/ADT/BitVector.h
/freebsd-10-stable/contrib/llvm/include/llvm/ADT/DenseMap.h
/freebsd-10-stable/contrib/llvm/include/llvm/ADT/FoldingSet.h
/freebsd-10-stable/contrib/llvm/include/llvm/ADT/ImmutableMap.h
/freebsd-10-stable/contrib/llvm/include/llvm/ADT/ImmutableSet.h
/freebsd-10-stable/contrib/llvm/include/llvm/ADT/IntervalMap.h
/freebsd-10-stable/contrib/llvm/include/llvm/ADT/NullablePtr.h
/freebsd-10-stable/contrib/llvm/include/llvm/ADT/OwningPtr.h
/freebsd-10-stable/contrib/llvm/include/llvm/ADT/PointerIntPair.h
/freebsd-10-stable/contrib/llvm/include/llvm/ADT/PointerUnion.h
/freebsd-10-stable/contrib/llvm/include/llvm/ADT/STLExtras.h
/freebsd-10-stable/contrib/llvm/include/llvm/ADT/SetVector.h
/freebsd-10-stable/contrib/llvm/include/llvm/ADT/SmallBitVector.h
/freebsd-10-stable/contrib/llvm/include/llvm/ADT/SmallPtrSet.h
/freebsd-10-stable/contrib/llvm/include/llvm/ADT/SmallVector.h
/freebsd-10-stable/contrib/llvm/include/llvm/ADT/SparseBitVector.h
/freebsd-10-stable/contrib/llvm/include/llvm/ADT/StringExtras.h
/freebsd-10-stable/contrib/llvm/include/llvm/ADT/StringMap.h
/freebsd-10-stable/contrib/llvm/include/llvm/ADT/StringRef.h
/freebsd-10-stable/contrib/llvm/include/llvm/ADT/Triple.h
/freebsd-10-stable/contrib/llvm/include/llvm/ADT/ilist.h
/freebsd-10-stable/contrib/llvm/include/llvm/ADT/polymorphic_ptr.h
/freebsd-10-stable/contrib/llvm/include/llvm/Analysis/AliasAnalysis.h
/freebsd-10-stable/contrib/llvm/include/llvm/Analysis/BlockFrequencyImpl.h
/freebsd-10-stable/contrib/llvm/include/llvm/Analysis/BlockFrequencyInfo.h
/freebsd-10-stable/contrib/llvm/include/llvm/Analysis/BranchProbabilityInfo.h
/freebsd-10-stable/contrib/llvm/include/llvm/Analysis/CFG.h
/freebsd-10-stable/contrib/llvm/include/llvm/Analysis/CFGPrinter.h
/freebsd-10-stable/contrib/llvm/include/llvm/Analysis/CallGraph.h
/freebsd-10-stable/contrib/llvm/include/llvm/Analysis/ConstantFolding.h
/freebsd-10-stable/contrib/llvm/include/llvm/Analysis/DependenceAnalysis.h
/freebsd-10-stable/contrib/llvm/include/llvm/Analysis/Dominators.h
/freebsd-10-stable/contrib/llvm/include/llvm/Analysis/InlineCost.h
/freebsd-10-stable/contrib/llvm/include/llvm/Analysis/InstructionSimplify.h
/freebsd-10-stable/contrib/llvm/include/llvm/Analysis/LoopInfo.h
/freebsd-10-stable/contrib/llvm/include/llvm/Analysis/LoopInfoImpl.h
/freebsd-10-stable/contrib/llvm/include/llvm/Analysis/LoopPass.h
/freebsd-10-stable/contrib/llvm/include/llvm/Analysis/MemoryBuiltins.h
/freebsd-10-stable/contrib/llvm/include/llvm/Analysis/Passes.h
/freebsd-10-stable/contrib/llvm/include/llvm/Analysis/PathNumbering.h
/freebsd-10-stable/contrib/llvm/include/llvm/Analysis/PathProfileInfo.h
/freebsd-10-stable/contrib/llvm/include/llvm/Analysis/PostDominators.h
/freebsd-10-stable/contrib/llvm/include/llvm/Analysis/ProfileDataLoader.h
/freebsd-10-stable/contrib/llvm/include/llvm/Analysis/ProfileDataTypes.h
/freebsd-10-stable/contrib/llvm/include/llvm/Analysis/ProfileInfo.h
/freebsd-10-stable/contrib/llvm/include/llvm/Analysis/ProfileInfoLoader.h
/freebsd-10-stable/contrib/llvm/include/llvm/Analysis/ProfileInfoTypes.h
/freebsd-10-stable/contrib/llvm/include/llvm/Analysis/RegionPass.h
/freebsd-10-stable/contrib/llvm/include/llvm/Analysis/ScalarEvolution.h
/freebsd-10-stable/contrib/llvm/include/llvm/Analysis/ScalarEvolutionExpander.h
/freebsd-10-stable/contrib/llvm/include/llvm/Analysis/ScalarEvolutionExpressions.h
/freebsd-10-stable/contrib/llvm/include/llvm/Analysis/TargetTransformInfo.h
/freebsd-10-stable/contrib/llvm/include/llvm/Analysis/ValueTracking.h
/freebsd-10-stable/contrib/llvm/include/llvm/AutoUpgrade.h
/freebsd-10-stable/contrib/llvm/include/llvm/Bitcode/Archive.h
/freebsd-10-stable/contrib/llvm/include/llvm/Bitcode/BitstreamReader.h
/freebsd-10-stable/contrib/llvm/include/llvm/Bitcode/BitstreamWriter.h
/freebsd-10-stable/contrib/llvm/include/llvm/Bitcode/LLVMBitCodes.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/Analysis.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/AsmPrinter.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/CalcSpillWeights.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/CallingConvLower.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/CommandFlags.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/FastISel.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/FunctionLoweringInfo.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/ISDOpcodes.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/LexicalScopes.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/LiveInterval.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/LiveIntervalUnion.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/LiveRangeEdit.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/LiveRegUnits.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/LiveVariables.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/MachineBasicBlock.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/MachineBranchProbabilityInfo.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/MachineConstantPool.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/MachineFrameInfo.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/MachineInstr.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/MachineInstrBuilder.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/MachineModuleInfo.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/MachineOperand.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/MachineRegisterInfo.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/MachineRelocation.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/MachineScheduler.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/PBQP/Graph.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/PBQP/HeuristicBase.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/PBQP/HeuristicSolver.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/PBQP/Heuristics/Briggs.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/PBQP/Solution.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/Passes.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/PseudoSourceValue.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/RegAllocPBQP.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/RegisterClassInfo.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/RegisterPressure.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/RegisterScavenging.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/RuntimeLibcalls.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/ScheduleDAG.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/ScheduleDAGInstrs.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/SelectionDAG.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/SelectionDAGISel.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/SelectionDAGNodes.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/SlotIndexes.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/StackMaps.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/StackProtector.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/TargetSchedule.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/ValueTypes.h
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/ValueTypes.td
/freebsd-10-stable/contrib/llvm/include/llvm/DIBuilder.h
/freebsd-10-stable/contrib/llvm/include/llvm/DebugInfo.h
/freebsd-10-stable/contrib/llvm/include/llvm/DebugInfo/DIContext.h
/freebsd-10-stable/contrib/llvm/include/llvm/DebugInfo/DWARFFormValue.h
/freebsd-10-stable/contrib/llvm/include/llvm/ExecutionEngine/ExecutionEngine.h
/freebsd-10-stable/contrib/llvm/include/llvm/ExecutionEngine/JITMemoryManager.h
/freebsd-10-stable/contrib/llvm/include/llvm/ExecutionEngine/ObjectBuffer.h
/freebsd-10-stable/contrib/llvm/include/llvm/ExecutionEngine/ObjectCache.h
/freebsd-10-stable/contrib/llvm/include/llvm/ExecutionEngine/ObjectImage.h
/freebsd-10-stable/contrib/llvm/include/llvm/ExecutionEngine/RTDyldMemoryManager.h
/freebsd-10-stable/contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h
/freebsd-10-stable/contrib/llvm/include/llvm/ExecutionEngine/SectionMemoryManager.h
/freebsd-10-stable/contrib/llvm/include/llvm/GVMaterializer.h
/freebsd-10-stable/contrib/llvm/include/llvm/IR/Argument.h
/freebsd-10-stable/contrib/llvm/include/llvm/IR/Attributes.h
/freebsd-10-stable/contrib/llvm/include/llvm/IR/CallingConv.h
/freebsd-10-stable/contrib/llvm/include/llvm/IR/Constants.h
/freebsd-10-stable/contrib/llvm/include/llvm/IR/DataLayout.h
/freebsd-10-stable/contrib/llvm/include/llvm/IR/Function.h
/freebsd-10-stable/contrib/llvm/include/llvm/IR/GlobalAlias.h
/freebsd-10-stable/contrib/llvm/include/llvm/IR/GlobalValue.h
/freebsd-10-stable/contrib/llvm/include/llvm/IR/GlobalVariable.h
/freebsd-10-stable/contrib/llvm/include/llvm/IR/IRBuilder.h
/freebsd-10-stable/contrib/llvm/include/llvm/IR/InlineAsm.h
/freebsd-10-stable/contrib/llvm/include/llvm/IR/InstrTypes.h
/freebsd-10-stable/contrib/llvm/include/llvm/IR/Instruction.def
/freebsd-10-stable/contrib/llvm/include/llvm/IR/Instructions.h
/freebsd-10-stable/contrib/llvm/include/llvm/IR/Intrinsics.h
/freebsd-10-stable/contrib/llvm/include/llvm/IR/Intrinsics.td
/freebsd-10-stable/contrib/llvm/include/llvm/IR/IntrinsicsAArch64.td
/freebsd-10-stable/contrib/llvm/include/llvm/IR/IntrinsicsARM.td
/freebsd-10-stable/contrib/llvm/include/llvm/IR/IntrinsicsMips.td
/freebsd-10-stable/contrib/llvm/include/llvm/IR/IntrinsicsNVVM.td
/freebsd-10-stable/contrib/llvm/include/llvm/IR/IntrinsicsPowerPC.td
/freebsd-10-stable/contrib/llvm/include/llvm/IR/IntrinsicsX86.td
/freebsd-10-stable/contrib/llvm/include/llvm/IR/IntrinsicsXCore.td
/freebsd-10-stable/contrib/llvm/include/llvm/IR/LLVMContext.h
/freebsd-10-stable/contrib/llvm/include/llvm/IR/LegacyPassManager.h
/freebsd-10-stable/contrib/llvm/include/llvm/IR/LegacyPassManagers.h
/freebsd-10-stable/contrib/llvm/include/llvm/IR/Metadata.h
/freebsd-10-stable/contrib/llvm/include/llvm/IR/Module.h
/freebsd-10-stable/contrib/llvm/include/llvm/IR/Operator.h
/freebsd-10-stable/contrib/llvm/include/llvm/IR/PassManager.h
/freebsd-10-stable/contrib/llvm/include/llvm/IR/Type.h
/freebsd-10-stable/contrib/llvm/include/llvm/IR/TypeBuilder.h
/freebsd-10-stable/contrib/llvm/include/llvm/IR/Use.h
/freebsd-10-stable/contrib/llvm/include/llvm/IR/Value.h
/freebsd-10-stable/contrib/llvm/include/llvm/InitializePasses.h
/freebsd-10-stable/contrib/llvm/include/llvm/InstVisitor.h
/freebsd-10-stable/contrib/llvm/include/llvm/LTO
/freebsd-10-stable/contrib/llvm/include/llvm/LinkAllPasses.h
/freebsd-10-stable/contrib/llvm/include/llvm/Linker.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MCAsmBackend.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MCAsmInfo.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MCAsmInfoELF.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MCAssembler.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MCAtom.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MCCodeGenInfo.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MCContext.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MCDisassembler.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MCDwarf.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MCELFObjectWriter.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MCELFStreamer.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MCELFSymbolFlags.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MCExpr.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MCExternalSymbolizer.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MCFunction.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MCInstPrinter.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MCInstrAnalysis.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MCInstrDesc.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MCInstrItineraries.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MCMachOSymbolFlags.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MCMachObjectWriter.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MCModule.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MCModuleYAML.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MCObjectDisassembler.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MCObjectFileInfo.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MCObjectStreamer.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MCObjectSymbolizer.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MCParser/AsmLexer.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MCParser/MCAsmParser.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MCRegisterInfo.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MCRelocationInfo.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MCSchedule.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MCSectionCOFF.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MCSectionMachO.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MCStreamer.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MCSubtargetInfo.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MCSymbolizer.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MCTargetAsmParser.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MCWinCOFFObjectWriter.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/MachineLocation.h
/freebsd-10-stable/contrib/llvm/include/llvm/MC/SubtargetFeature.h
/freebsd-10-stable/contrib/llvm/include/llvm/Object/Archive.h
/freebsd-10-stable/contrib/llvm/include/llvm/Object/Binary.h
/freebsd-10-stable/contrib/llvm/include/llvm/Object/COFF.h
/freebsd-10-stable/contrib/llvm/include/llvm/Object/COFFYAML.h
/freebsd-10-stable/contrib/llvm/include/llvm/Object/ELF.h
/freebsd-10-stable/contrib/llvm/include/llvm/Object/ELFObjectFile.h
/freebsd-10-stable/contrib/llvm/include/llvm/Object/ELFTypes.h
/freebsd-10-stable/contrib/llvm/include/llvm/Object/ELFYAML.h
/freebsd-10-stable/contrib/llvm/include/llvm/Object/Error.h
/freebsd-10-stable/contrib/llvm/include/llvm/Object/MachO.h
/freebsd-10-stable/contrib/llvm/include/llvm/Object/MachOFormat.h
/freebsd-10-stable/contrib/llvm/include/llvm/Object/MachOUniversal.h
/freebsd-10-stable/contrib/llvm/include/llvm/Object/ObjectFile.h
/freebsd-10-stable/contrib/llvm/include/llvm/Object/RelocVisitor.h
/freebsd-10-stable/contrib/llvm/include/llvm/Object/YAML.h
/freebsd-10-stable/contrib/llvm/include/llvm/Option/ArgList.h
/freebsd-10-stable/contrib/llvm/include/llvm/Option/OptParser.td
/freebsd-10-stable/contrib/llvm/include/llvm/Option/OptTable.h
/freebsd-10-stable/contrib/llvm/include/llvm/Option/Option.h
/freebsd-10-stable/contrib/llvm/include/llvm/PassManager.h
/freebsd-10-stable/contrib/llvm/include/llvm/PassManagers.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/Allocator.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/BlockFrequency.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/CFG.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/COFF.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/CallSite.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/Casting.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/CommandLine.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/Compiler.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/Compression.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/ConstantRange.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/ConvertUTF.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/DataTypes.h.in
/freebsd-10-stable/contrib/llvm/include/llvm/Support/Debug.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/DebugLoc.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/Dwarf.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/ELF.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/ErrorOr.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/FileSystem.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/FileUtilities.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/FormattedStream.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/GCOV.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/GetElementPtrTypeIterator.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/GraphWriter.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/Host.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/IntegersSubset.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/IntegersSubsetMapping.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/LEB128.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/MD5.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/MachO.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/ManagedStatic.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/MathExtras.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/MemoryBuffer.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/MemoryObject.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/PassNameParser.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/Path.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/PathV1.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/PathV2.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/PatternMatch.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/PrettyStackTrace.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/Process.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/Program.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/RecyclingAllocator.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/Regex.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/Registry.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/Signals.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/Solaris.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/SourceMgr.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/StreamableMemoryObject.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/StringRefMemoryObject.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/SystemUtils.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/TargetRegistry.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/TimeValue.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/ToolOutputFile.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/Unicode.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/UnicodeCharRanges.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/Valgrind.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/ValueHandle.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/YAMLParser.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/YAMLTraits.h
/freebsd-10-stable/contrib/llvm/include/llvm/Support/raw_ostream.h
/freebsd-10-stable/contrib/llvm/include/llvm/TableGen/Record.h
/freebsd-10-stable/contrib/llvm/include/llvm/TableGen/StringToOffsetTable.h
/freebsd-10-stable/contrib/llvm/include/llvm/TableGen/TableGenBackend.h
/freebsd-10-stable/contrib/llvm/include/llvm/Target/CostTable.h
/freebsd-10-stable/contrib/llvm/include/llvm/Target/Mangler.h
/freebsd-10-stable/contrib/llvm/include/llvm/Target/Target.td
/freebsd-10-stable/contrib/llvm/include/llvm/Target/TargetCallingConv.h
/freebsd-10-stable/contrib/llvm/include/llvm/Target/TargetCallingConv.td
/freebsd-10-stable/contrib/llvm/include/llvm/Target/TargetFrameLowering.h
/freebsd-10-stable/contrib/llvm/include/llvm/Target/TargetInstrInfo.h
/freebsd-10-stable/contrib/llvm/include/llvm/Target/TargetLibraryInfo.h
/freebsd-10-stable/contrib/llvm/include/llvm/Target/TargetLowering.h
/freebsd-10-stable/contrib/llvm/include/llvm/Target/TargetLoweringObjectFile.h
/freebsd-10-stable/contrib/llvm/include/llvm/Target/TargetMachine.h
/freebsd-10-stable/contrib/llvm/include/llvm/Target/TargetOpcodes.h
/freebsd-10-stable/contrib/llvm/include/llvm/Target/TargetOptions.h
/freebsd-10-stable/contrib/llvm/include/llvm/Target/TargetRegisterInfo.h
/freebsd-10-stable/contrib/llvm/include/llvm/Target/TargetSchedule.td
/freebsd-10-stable/contrib/llvm/include/llvm/Target/TargetSelectionDAG.td
/freebsd-10-stable/contrib/llvm/include/llvm/Target/TargetSelectionDAGInfo.h
/freebsd-10-stable/contrib/llvm/include/llvm/Target/TargetSubtargetInfo.h
/freebsd-10-stable/contrib/llvm/include/llvm/Transforms/IPO.h
/freebsd-10-stable/contrib/llvm/include/llvm/Transforms/IPO/PassManagerBuilder.h
/freebsd-10-stable/contrib/llvm/include/llvm/Transforms/Instrumentation.h
/freebsd-10-stable/contrib/llvm/include/llvm/Transforms/Scalar.h
/freebsd-10-stable/contrib/llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h
/freebsd-10-stable/contrib/llvm/include/llvm/Transforms/Utils/BlackList.h
/freebsd-10-stable/contrib/llvm/include/llvm/Transforms/Utils/Cloning.h
/freebsd-10-stable/contrib/llvm/include/llvm/Transforms/Utils/GlobalStatus.h
/freebsd-10-stable/contrib/llvm/include/llvm/Transforms/Utils/Local.h
/freebsd-10-stable/contrib/llvm/include/llvm/Transforms/Utils/LoopUtils.h
/freebsd-10-stable/contrib/llvm/include/llvm/Transforms/Utils/ModuleUtils.h
/freebsd-10-stable/contrib/llvm/include/llvm/Transforms/Utils/PromoteMemToReg.h
/freebsd-10-stable/contrib/llvm/include/llvm/Transforms/Utils/SSAUpdater.h
/freebsd-10-stable/contrib/llvm/include/llvm/Transforms/Utils/SpecialCaseList.h
/freebsd-10-stable/contrib/llvm/include/llvm/Transforms/Utils/UnifyFunctionExitNodes.h
/freebsd-10-stable/contrib/llvm/include/llvm/Transforms/Utils/ValueMapper.h
/freebsd-10-stable/contrib/llvm/include/llvm/Transforms/Vectorize.h
/freebsd-10-stable/contrib/llvm/lib/Analysis/AliasAnalysis.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/AliasSetTracker.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/Analysis.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/BasicAliasAnalysis.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/BlockFrequencyInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/BranchProbabilityInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/CFG.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/CaptureTracking.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/ConstantFolding.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/CostModel.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/Delinearization.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/DependenceAnalysis.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/IPA/CallGraph.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/IPA/CallGraphSCCPass.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/IPA/GlobalsModRef.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/IPA/IPA.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/IPA/InlineCost.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/InstructionSimplify.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/LazyValueInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/Lint.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/LoopInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/LoopPass.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/MemoryBuiltins.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/PathNumbering.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/PathProfileInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/PathProfileVerifier.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/ProfileDataLoader.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/ProfileDataLoaderPass.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/ProfileEstimatorPass.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/ProfileInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/ProfileInfoLoader.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/ProfileInfoLoaderPass.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/ProfileVerifierPass.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/RegionInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/ScalarEvolution.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/ScalarEvolutionExpander.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/ScalarEvolutionNormalization.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/TargetTransformInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/TypeBasedAliasAnalysis.cpp
/freebsd-10-stable/contrib/llvm/lib/Analysis/ValueTracking.cpp
/freebsd-10-stable/contrib/llvm/lib/Archive
/freebsd-10-stable/contrib/llvm/lib/AsmParser/LLLexer.cpp
/freebsd-10-stable/contrib/llvm/lib/AsmParser/LLParser.cpp
/freebsd-10-stable/contrib/llvm/lib/AsmParser/LLParser.h
/freebsd-10-stable/contrib/llvm/lib/AsmParser/LLToken.h
/freebsd-10-stable/contrib/llvm/lib/AsmParser/Parser.cpp
/freebsd-10-stable/contrib/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
/freebsd-10-stable/contrib/llvm/lib/Bitcode/Reader/BitcodeReader.h
/freebsd-10-stable/contrib/llvm/lib/Bitcode/Reader/BitstreamReader.cpp
/freebsd-10-stable/contrib/llvm/lib/Bitcode/Writer/BitWriter.cpp
/freebsd-10-stable/contrib/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
/freebsd-10-stable/contrib/llvm/lib/Bitcode/Writer/ValueEnumerator.cpp
/freebsd-10-stable/contrib/llvm/lib/Bitcode/Writer/ValueEnumerator.h
/freebsd-10-stable/contrib/llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/Analysis.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/AsmPrinter/ARMException.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DIE.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DIE.h
/freebsd-10-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DIEHash.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DIEHash.h
/freebsd-10-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.h
/freebsd-10-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCFIException.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h
/freebsd-10-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h
/freebsd-10-stable/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfException.h
/freebsd-10-stable/contrib/llvm/lib/CodeGen/BasicTargetTransformInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/BranchFolding.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/BranchFolding.h
/freebsd-10-stable/contrib/llvm/lib/CodeGen/CalcSpillWeights.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/CallingConvLower.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/CodeGen.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/CriticalAntiDepBreaker.h
/freebsd-10-stable/contrib/llvm/lib/CodeGen/DFAPacketizer.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/DwarfEHPrepare.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/ExecutionDepsFix.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/ExpandPostRAPseudos.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/IfConversion.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/InlineSpiller.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/InterferenceCache.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/InterferenceCache.h
/freebsd-10-stable/contrib/llvm/lib/CodeGen/IntrinsicLowering.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/LLVMTargetMachine.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/LexicalScopes.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/LiveDebugVariables.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/LiveDebugVariables.h
/freebsd-10-stable/contrib/llvm/lib/CodeGen/LiveInterval.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/LiveRangeCalc.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/LiveRangeCalc.h
/freebsd-10-stable/contrib/llvm/lib/CodeGen/LiveRangeEdit.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/LiveRegMatrix.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/LiveRegUnits.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/LiveVariables.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/MachineBasicBlock.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/MachineBlockFrequencyInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/MachineBlockPlacement.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/MachineCSE.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/MachineCopyPropagation.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/MachineFunction.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/MachineInstr.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/MachineLICM.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/MachineModuleInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/MachineRegisterInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/MachineSSAUpdater.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/MachineScheduler.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/MachineSink.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/MachineTraceMetrics.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/MachineVerifier.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/PHIElimination.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/PHIEliminationUtils.h
/freebsd-10-stable/contrib/llvm/lib/CodeGen/Passes.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/PeepholeOptimizer.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/PostRASchedulerList.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/ProcessImplicitDefs.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/PrologEpilogInserter.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/PrologEpilogInserter.h
/freebsd-10-stable/contrib/llvm/lib/CodeGen/RegAllocBase.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/RegAllocBase.h
/freebsd-10-stable/contrib/llvm/lib/CodeGen/RegAllocBasic.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/RegAllocFast.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/RegAllocGreedy.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/RegAllocPBQP.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/RegisterClassInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/RegisterCoalescer.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/RegisterPressure.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/RegisterScavenging.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/ScheduleDAG.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.h
/freebsd-10-stable/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h
/freebsd-10-stable/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/SelectionDAG/ResourcePriorityQueue.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/SelectionDAG/SDNodeOrdering.h
/freebsd-10-stable/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
/freebsd-10-stable/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/ShrinkWrapping.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/SjLjEHPrepare.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/SpillPlacement.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/SpillPlacement.h
/freebsd-10-stable/contrib/llvm/lib/CodeGen/Spiller.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/SplitKit.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/SplitKit.h
/freebsd-10-stable/contrib/llvm/lib/CodeGen/StackColoring.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/StackMaps.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/StackProtector.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/StackSlotColoring.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/StrongPHIElimination.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/TailDuplication.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/TargetInstrInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/TargetLoweringBase.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/TargetOptionsImpl.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/TargetRegisterInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/TargetSchedule.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/UnreachableBlockElim.cpp
/freebsd-10-stable/contrib/llvm/lib/CodeGen/VirtRegMap.cpp
/freebsd-10-stable/contrib/llvm/lib/DebugInfo/DWARFAbbreviationDeclaration.cpp
/freebsd-10-stable/contrib/llvm/lib/DebugInfo/DWARFAbbreviationDeclaration.h
/freebsd-10-stable/contrib/llvm/lib/DebugInfo/DWARFAttribute.h
/freebsd-10-stable/contrib/llvm/lib/DebugInfo/DWARFCompileUnit.cpp
/freebsd-10-stable/contrib/llvm/lib/DebugInfo/DWARFCompileUnit.h
/freebsd-10-stable/contrib/llvm/lib/DebugInfo/DWARFContext.cpp
/freebsd-10-stable/contrib/llvm/lib/DebugInfo/DWARFContext.h
/freebsd-10-stable/contrib/llvm/lib/DebugInfo/DWARFDebugArangeSet.cpp
/freebsd-10-stable/contrib/llvm/lib/DebugInfo/DWARFDebugArangeSet.h
/freebsd-10-stable/contrib/llvm/lib/DebugInfo/DWARFDebugAranges.cpp
/freebsd-10-stable/contrib/llvm/lib/DebugInfo/DWARFDebugAranges.h
/freebsd-10-stable/contrib/llvm/lib/DebugInfo/DWARFDebugInfoEntry.cpp
/freebsd-10-stable/contrib/llvm/lib/DebugInfo/DWARFDebugInfoEntry.h
/freebsd-10-stable/contrib/llvm/lib/DebugInfo/DWARFDebugLine.cpp
/freebsd-10-stable/contrib/llvm/lib/DebugInfo/DWARFDebugLoc.cpp
/freebsd-10-stable/contrib/llvm/lib/DebugInfo/DWARFDebugLoc.h
/freebsd-10-stable/contrib/llvm/lib/DebugInfo/DWARFFormValue.cpp
/freebsd-10-stable/contrib/llvm/lib/DebugInfo/DWARFTypeUnit.cpp
/freebsd-10-stable/contrib/llvm/lib/DebugInfo/DWARFTypeUnit.h
/freebsd-10-stable/contrib/llvm/lib/DebugInfo/DWARFUnit.cpp
/freebsd-10-stable/contrib/llvm/lib/DebugInfo/DWARFUnit.h
/freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/ExecutionEngine.cpp
/freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp
/freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventsWrapper.h
/freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp
/freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp
/freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
/freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/JIT/JIT.cpp
/freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/JIT/JITDwarfEmitter.cpp
/freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/JIT/JITDwarfEmitter.h
/freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp
/freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp
/freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp
/freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.h
/freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/MCJIT/SectionMemoryManager.cpp
/freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/OProfileJIT/OProfileJITEventListener.cpp
/freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/OProfileJIT/OProfileWrapper.cpp
/freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/RTDyldMemoryManager.cpp
/freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/JITRegistrar.h
/freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/ObjectImageCommon.h
/freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
/freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp
/freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.h
/freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h
/freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp
/freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.h
/freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/TargetSelect.cpp
/freebsd-10-stable/contrib/llvm/lib/IR/AsmWriter.cpp
/freebsd-10-stable/contrib/llvm/lib/IR/AsmWriter.h
/freebsd-10-stable/contrib/llvm/lib/IR/AttributeImpl.h
/freebsd-10-stable/contrib/llvm/lib/IR/Attributes.cpp
/freebsd-10-stable/contrib/llvm/lib/IR/AutoUpgrade.cpp
/freebsd-10-stable/contrib/llvm/lib/IR/ConstantFold.cpp
/freebsd-10-stable/contrib/llvm/lib/IR/Constants.cpp
/freebsd-10-stable/contrib/llvm/lib/IR/Core.cpp
/freebsd-10-stable/contrib/llvm/lib/IR/DIBuilder.cpp
/freebsd-10-stable/contrib/llvm/lib/IR/DataLayout.cpp
/freebsd-10-stable/contrib/llvm/lib/IR/DebugInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/IR/Function.cpp
/freebsd-10-stable/contrib/llvm/lib/IR/GCOV.cpp
/freebsd-10-stable/contrib/llvm/lib/IR/Globals.cpp
/freebsd-10-stable/contrib/llvm/lib/IR/Instruction.cpp
/freebsd-10-stable/contrib/llvm/lib/IR/Instructions.cpp
/freebsd-10-stable/contrib/llvm/lib/IR/LLVMContextImpl.h
/freebsd-10-stable/contrib/llvm/lib/IR/LegacyPassManager.cpp
/freebsd-10-stable/contrib/llvm/lib/IR/Metadata.cpp
/freebsd-10-stable/contrib/llvm/lib/IR/Module.cpp
/freebsd-10-stable/contrib/llvm/lib/IR/PassManager.cpp
/freebsd-10-stable/contrib/llvm/lib/IR/PassRegistry.cpp
/freebsd-10-stable/contrib/llvm/lib/IR/Type.cpp
/freebsd-10-stable/contrib/llvm/lib/IR/TypeFinder.cpp
/freebsd-10-stable/contrib/llvm/lib/IR/Value.cpp
/freebsd-10-stable/contrib/llvm/lib/IR/ValueTypes.cpp
/freebsd-10-stable/contrib/llvm/lib/IR/Verifier.cpp
/freebsd-10-stable/contrib/llvm/lib/IRReader/IRReader.cpp
/freebsd-10-stable/contrib/llvm/lib/LTO
/freebsd-10-stable/contrib/llvm/lib/Linker/LinkModules.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/ELFObjectWriter.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCAsmBackend.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCAsmInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCAsmInfoCOFF.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCAsmInfoDarwin.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCAsmInfoELF.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCAsmStreamer.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCAssembler.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCAtom.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCContext.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCDisassembler.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCDisassembler/Disassembler.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCDisassembler/Disassembler.h
/freebsd-10-stable/contrib/llvm/lib/MC/MCDwarf.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCELF.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCELFObjectTargetWriter.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCELFStreamer.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCExpr.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCExternalSymbolizer.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCFunction.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCInstPrinter.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCInstrAnalysis.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCMachOStreamer.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCModule.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCModuleYAML.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCNullStreamer.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCObjectDisassembler.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCObjectFileInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCObjectStreamer.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCObjectSymbolizer.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCParser/AsmLexer.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCParser/AsmParser.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCParser/COFFAsmParser.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCParser/DarwinAsmParser.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCParser/ELFAsmParser.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCPureStreamer.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCRegisterInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCRelocationInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCSectionCOFF.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCSectionELF.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCStreamer.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCSubtargetInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCSymbol.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCSymbolizer.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MCWin64EH.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/MachObjectWriter.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/SubtargetFeature.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/WinCOFFObjectWriter.cpp
/freebsd-10-stable/contrib/llvm/lib/MC/WinCOFFStreamer.cpp
/freebsd-10-stable/contrib/llvm/lib/Object/Archive.cpp
/freebsd-10-stable/contrib/llvm/lib/Object/Binary.cpp
/freebsd-10-stable/contrib/llvm/lib/Object/COFFObjectFile.cpp
/freebsd-10-stable/contrib/llvm/lib/Object/COFFYAML.cpp
/freebsd-10-stable/contrib/llvm/lib/Object/ELF.cpp
/freebsd-10-stable/contrib/llvm/lib/Object/ELFObjectFile.cpp
/freebsd-10-stable/contrib/llvm/lib/Object/ELFYAML.cpp
/freebsd-10-stable/contrib/llvm/lib/Object/Error.cpp
/freebsd-10-stable/contrib/llvm/lib/Object/MachOObjectFile.cpp
/freebsd-10-stable/contrib/llvm/lib/Object/MachOUniversal.cpp
/freebsd-10-stable/contrib/llvm/lib/Object/Object.cpp
/freebsd-10-stable/contrib/llvm/lib/Object/ObjectFile.cpp
/freebsd-10-stable/contrib/llvm/lib/Object/YAML.cpp
/freebsd-10-stable/contrib/llvm/lib/Option/ArgList.cpp
/freebsd-10-stable/contrib/llvm/lib/Option/OptTable.cpp
/freebsd-10-stable/contrib/llvm/lib/Option/Option.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/APFloat.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/APInt.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/Allocator.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/BlockFrequency.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/CommandLine.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/Compression.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/ConstantRange.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/ConvertUTFWrapper.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/CrashRecoveryContext.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/DataStream.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/Disassembler.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/Dwarf.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/DynamicLibrary.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/Errno.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/ErrorHandling.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/FileOutputBuffer.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/FileUtilities.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/FormattedStream.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/GraphWriter.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/Host.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/Locale.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/LocaleGeneric.inc
/freebsd-10-stable/contrib/llvm/lib/Support/LocaleWindows.inc
/freebsd-10-stable/contrib/llvm/lib/Support/LocaleXlocale.inc
/freebsd-10-stable/contrib/llvm/lib/Support/LockFileManager.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/MD5.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/MemoryBuffer.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/MemoryObject.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/Path.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/PathV2.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/PrettyStackTrace.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/Process.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/Program.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/Regex.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/SmallPtrSet.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/SourceMgr.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/StreamableMemoryObject.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/StringRef.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/StringRefMemoryObject.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/SystemUtils.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/TargetRegistry.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/ThreadLocal.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/Timer.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/ToolOutputFile.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/Triple.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/Unicode.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/Unix/Memory.inc
/freebsd-10-stable/contrib/llvm/lib/Support/Unix/Path.inc
/freebsd-10-stable/contrib/llvm/lib/Support/Unix/PathV2.inc
/freebsd-10-stable/contrib/llvm/lib/Support/Unix/Process.inc
/freebsd-10-stable/contrib/llvm/lib/Support/Unix/Program.inc
/freebsd-10-stable/contrib/llvm/lib/Support/Unix/Signals.inc
/freebsd-10-stable/contrib/llvm/lib/Support/Unix/ThreadLocal.inc
/freebsd-10-stable/contrib/llvm/lib/Support/Unix/TimeValue.inc
/freebsd-10-stable/contrib/llvm/lib/Support/Unix/Unix.h
/freebsd-10-stable/contrib/llvm/lib/Support/Windows/DynamicLibrary.inc
/freebsd-10-stable/contrib/llvm/lib/Support/Windows/Memory.inc
/freebsd-10-stable/contrib/llvm/lib/Support/Windows/Path.inc
/freebsd-10-stable/contrib/llvm/lib/Support/Windows/PathV2.inc
/freebsd-10-stable/contrib/llvm/lib/Support/Windows/Process.inc
/freebsd-10-stable/contrib/llvm/lib/Support/Windows/Program.inc
/freebsd-10-stable/contrib/llvm/lib/Support/Windows/RWMutex.inc
/freebsd-10-stable/contrib/llvm/lib/Support/Windows/Signals.inc
/freebsd-10-stable/contrib/llvm/lib/Support/Windows/TimeValue.inc
/freebsd-10-stable/contrib/llvm/lib/Support/Windows/Windows.h
/freebsd-10-stable/contrib/llvm/lib/Support/YAMLParser.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/YAMLTraits.cpp
/freebsd-10-stable/contrib/llvm/lib/Support/raw_ostream.cpp
/freebsd-10-stable/contrib/llvm/lib/TableGen/Main.cpp
/freebsd-10-stable/contrib/llvm/lib/TableGen/Record.cpp
/freebsd-10-stable/contrib/llvm/lib/TableGen/TGParser.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/AArch64.td
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/AArch64AsmPrinter.h
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/AArch64BranchFixupPass.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/AArch64CallingConv.td
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/AArch64FrameLowering.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/AArch64FrameLowering.h
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/AArch64ISelLowering.h
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/AArch64InstrFormats.td
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/AArch64InstrInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/AArch64InstrInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/AArch64InstrInfo.td
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/AArch64InstrNEON.td
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/AArch64MCInstLower.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/AArch64RegisterInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/AArch64RegisterInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/AArch64RegisterInfo.td
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/AArch64Subtarget.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/AArch64Subtarget.h
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/AArch64TargetMachine.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/InstPrinter/AArch64InstPrinter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/InstPrinter/AArch64InstPrinter.h
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64AsmBackend.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFStreamer.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCCodeEmitter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.h
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/TargetInfo/AArch64TargetInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/A15SDOptimizer.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARM.td
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMAsmPrinter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMAsmPrinter.h
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMBuildAttrs.h
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMCallingConv.td
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMCodeEmitter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMConstantPoolValue.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMConstantPoolValue.h
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMFPUName.def
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMFPUName.h
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMFastISel.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMFeatures.h
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMFrameLowering.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMHazardRecognizer.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMHazardRecognizer.h
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMISelLowering.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMISelLowering.h
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMInstrFormats.td
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMInstrInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMInstrInfo.td
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMInstrNEON.td
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMInstrThumb.td
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMInstrThumb2.td
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMInstrVFP.td
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMMCInstLower.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMMachineFunctionInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMRegisterInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMRegisterInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMRegisterInfo.td
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMSchedule.td
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMScheduleA9.td
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMScheduleSwift.td
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMSelectionDAGInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMSelectionDAGInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMSubtarget.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMSubtarget.h
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMTargetMachine.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMTargetObjectFile.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/ARMTargetTransformInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.h
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAddressingModes.h
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMBaseInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMELFStreamer.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMELFStreamer.h
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.h
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMachORelocationInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.h
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/Thumb1FrameLowering.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/Thumb1InstrInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/Thumb1RegisterInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/Thumb1RegisterInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/Thumb2InstrInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/Thumb2RegisterInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/Thumb2RegisterInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/CppBackend/CPPBackend.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/Hexagon.h
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/Hexagon.td
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/HexagonAsmPrinter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/HexagonCallingConvLower.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/HexagonCallingConvLower.h
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/HexagonCopyToCombine.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/HexagonFrameLowering.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/HexagonHardwareLoops.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/HexagonISelDAGToDAG.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/HexagonISelLowering.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/HexagonISelLowering.h
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormats.td
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.td
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV4.td
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV5.td
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/HexagonMCInstLower.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/HexagonMachineFunctionInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/HexagonMachineFunctionInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/HexagonMachineScheduler.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/HexagonMachineScheduler.h
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/HexagonNewValueJump.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/HexagonPeephole.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.td
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/HexagonSelectionDAGInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/HexagonSelectionDAGInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/HexagonSplitConst32AndConst64.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/HexagonSubtarget.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/HexagonSubtarget.h
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/HexagonTargetMachine.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/HexagonTargetObjectFile.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/HexagonTargetObjectFile.h
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/InstPrinter/HexagonInstPrinter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonBaseInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCTargetDesc.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/MBlaze
/freebsd-10-stable/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/MSP430/MSP430AsmPrinter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/MSP430/MSP430CallingConv.td
/freebsd-10-stable/contrib/llvm/lib/Target/MSP430/MSP430FrameLowering.h
/freebsd-10-stable/contrib/llvm/lib/Target/MSP430/MSP430ISelDAGToDAG.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.h
/freebsd-10-stable/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.td
/freebsd-10-stable/contrib/llvm/lib/Target/MSP430/MSP430MCInstLower.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.td
/freebsd-10-stable/contrib/llvm/lib/Target/MSP430/MSP430TargetMachine.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Mangler.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/Disassembler/MipsDisassembler.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.h
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsDirectObjLower.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsDirectObjLower.h
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFStreamer.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFStreamer.h
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsFixupKinds.h
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.h
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsTargetStreamer.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MSA.txt
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MicroMipsInstrFormats.td
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MicroMipsInstrInfo.td
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/Mips.h
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/Mips.td
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/Mips16FrameLowering.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/Mips16FrameLowering.h
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/Mips16HardFloat.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/Mips16HardFloat.h
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.h
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/Mips16ISelLowering.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/Mips16ISelLowering.h
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/Mips16InstrFormats.td
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.td
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/Mips16RegisterInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/Mips16RegisterInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/Mips64InstrInfo.td
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsAnalyzeImmediate.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsAnalyzeImmediate.h
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.h
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsCallingConv.td
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsCodeEmitter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsCondMov.td
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsConstantIslandPass.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsDSPInstrInfo.td
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsDelaySlotFiller.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsISelDAGToDAG.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsISelDAGToDAG.h
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsISelLowering.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsISelLowering.h
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsInstrFPU.td
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsInstrFormats.td
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsInstrInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsInstrInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsInstrInfo.td
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsJITInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsLongBranch.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsMCInstLower.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsMCInstLower.h
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsMSAInstrFormats.td
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsMSAInstrInfo.td
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsMachineFunction.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsMachineFunction.h
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsOs16.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.td
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsSEFrameLowering.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsSEFrameLowering.h
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.h
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsSEISelLowering.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsSEISelLowering.h
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsSEInstrInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsSEInstrInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsSERegisterInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsSERegisterInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsSchedule.td
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsSubtarget.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsSubtarget.h
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsTargetMachine.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsTargetMachine.h
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/MipsTargetStreamer.h
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/InstPrinter/NVPTXInstPrinter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/InstPrinter/NVPTXInstPrinter.h
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXBaseInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCTargetDesc.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/ManagedStringPool.h
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/NVPTX.h
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/NVPTX.td
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/NVPTXAllocaHoisting.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.h
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/NVPTXFrameLowering.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/NVPTXGenericToNVVM.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.h
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/NVPTXISelLowering.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/NVPTXISelLowering.h
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/NVPTXInstrInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/NVPTXInstrInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/NVPTXInstrInfo.td
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/NVPTXIntrinsics.td
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/NVPTXMCExpr.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/NVPTXMCExpr.h
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/NVPTXNumRegisters.h
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/NVPTXPrologEpilogPass.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.td
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/NVPTXSection.h
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/NVPTXSplitBBatBar.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/NVPTXSubtarget.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/NVPTXSubtarget.h
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/NVPTXTargetMachine.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/NVPTXTargetObjectFile.h
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/NVVMReflect.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/AsmParser/PPCAsmParser.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.h
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCAsmBackend.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCFixupKinds.h
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCExpr.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCExpr.h
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.h
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMachObjectWriter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCPredicates.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCPredicates.h
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPC.h
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPC.td
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCCTRLoops.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCCallingConv.td
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCFastISel.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.h
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCHazardRecognizers.h
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.h
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCInstr64Bit.td
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCInstrAltivec.td
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCInstrFormats.td
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.td
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCJITInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCMCInstLower.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.td
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCSchedule.td
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleA2.td
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleE500mc.td
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCScheduleE5500.td
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.h
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCTargetObjectFile.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCTargetObjectFile.h
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCTargetStreamer.h
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDGPU.h
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDGPU.td
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDGPUAsmPrinter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDGPUAsmPrinter.h
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDGPUCallingConv.td
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDGPUFrameLowering.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDGPUISelDAGToDAG.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDGPUISelLowering.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDGPUISelLowering.h
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDGPUIndirectAddressing.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDGPUInstrInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDGPUInstrInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDGPUInstrInfo.td
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDGPUInstructions.td
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDGPUIntrinsics.td
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDGPUMCInstLower.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDGPUMachineFunction.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDGPUMachineFunction.h
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDGPURegisterInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDGPURegisterInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDGPURegisterInfo.td
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDGPUStructurizeCFG.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDGPUSubtarget.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDGPUSubtarget.h
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDGPUTargetMachine.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDGPUTargetMachine.h
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDGPUTargetTransformInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDIL.h
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDIL7XXDevice.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDIL7XXDevice.h
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDILBase.td
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDILCFGStructurizer.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDILDevice.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDILDevice.h
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDILDeviceInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDILDeviceInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDILDevices.h
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDILEvergreenDevice.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDILEvergreenDevice.h
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDILISelDAGToDAG.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDILISelLowering.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDILInstrInfo.td
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDILIntrinsicInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDILNIDevice.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDILNIDevice.h
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDILSIDevice.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/AMDILSIDevice.h
/freebsd-10-stable/contrib/llvm/lib/Target/R600/InstPrinter/AMDGPUInstPrinter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/InstPrinter/AMDGPUInstPrinter.h
/freebsd-10-stable/contrib/llvm/lib/Target/R600/MCTargetDesc/AMDGPUAsmBackend.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/MCTargetDesc/AMDGPUMCAsmInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/MCTargetDesc/AMDGPUMCAsmInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/R600/MCTargetDesc/AMDGPUMCCodeEmitter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/MCTargetDesc/AMDGPUMCCodeEmitter.h
/freebsd-10-stable/contrib/llvm/lib/Target/R600/MCTargetDesc/AMDGPUMCTargetDesc.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/MCTargetDesc/AMDGPUMCTargetDesc.h
/freebsd-10-stable/contrib/llvm/lib/Target/R600/MCTargetDesc/R600MCCodeEmitter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/Processors.td
/freebsd-10-stable/contrib/llvm/lib/Target/R600/R600ClauseMergePass.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/R600ControlFlowFinalizer.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/R600Defines.h
/freebsd-10-stable/contrib/llvm/lib/Target/R600/R600EmitClauseMarkers.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/R600ExpandSpecialInstrs.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/R600ISelLowering.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/R600ISelLowering.h
/freebsd-10-stable/contrib/llvm/lib/Target/R600/R600InstrFormats.td
/freebsd-10-stable/contrib/llvm/lib/Target/R600/R600InstrInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/R600InstrInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/R600/R600Instructions.td
/freebsd-10-stable/contrib/llvm/lib/Target/R600/R600Intrinsics.td
/freebsd-10-stable/contrib/llvm/lib/Target/R600/R600MachineFunctionInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/R600MachineFunctionInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/R600/R600MachineScheduler.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/R600MachineScheduler.h
/freebsd-10-stable/contrib/llvm/lib/Target/R600/R600OptimizeVectorRegisters.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/R600Packetizer.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/R600RegisterInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/R600RegisterInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/R600/R600RegisterInfo.td
/freebsd-10-stable/contrib/llvm/lib/Target/R600/R600Schedule.td
/freebsd-10-stable/contrib/llvm/lib/Target/R600/R600TextureIntrinsicsReplacer.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/SIAnnotateControlFlow.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/SIDefines.h
/freebsd-10-stable/contrib/llvm/lib/Target/R600/SIFixSGPRCopies.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/SIISelLowering.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/SIISelLowering.h
/freebsd-10-stable/contrib/llvm/lib/Target/R600/SIInsertWaits.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/SIInstrFormats.td
/freebsd-10-stable/contrib/llvm/lib/Target/R600/SIInstrInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/SIInstrInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/R600/SIInstrInfo.td
/freebsd-10-stable/contrib/llvm/lib/Target/R600/SIInstructions.td
/freebsd-10-stable/contrib/llvm/lib/Target/R600/SIIntrinsics.td
/freebsd-10-stable/contrib/llvm/lib/Target/R600/SILowerControlFlow.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/SIMachineFunctionInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/SIMachineFunctionInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/R600/SIRegisterInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/SIRegisterInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/R600/SIRegisterInfo.td
/freebsd-10-stable/contrib/llvm/lib/Target/R600/SITypeRewriter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/R600/TargetInfo/AMDGPUTargetInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/DelaySlotFiller.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/FPMover.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcBaseInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCAsmInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCAsmInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/Sparc.h
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/Sparc.td
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcAsmPrinter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcCallingConv.td
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcCodeEmitter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcFrameLowering.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcFrameLowering.h
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcISelLowering.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcISelLowering.h
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcInstr64Bit.td
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcInstrFormats.td
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.td
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcJITInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcJITInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcMachineFunctionInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.td
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcRelocations.h
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcSubtarget.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcSubtarget.h
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcTargetMachine.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/SparcTargetMachine.h
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/TargetInfo/SparcTargetInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/AsmParser/SystemZAsmParser.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/Disassembler
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/InstPrinter/SystemZInstPrinter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/InstPrinter/SystemZInstPrinter.h
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmBackend.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCCodeEmitter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.h
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/README.txt
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/SystemZ.h
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/SystemZ.td
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/SystemZCallingConv.td
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/SystemZConstantPoolValue.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/SystemZElimCompare.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/SystemZFrameLowering.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/SystemZFrameLowering.h
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/SystemZISelDAGToDAG.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/SystemZISelLowering.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/SystemZISelLowering.h
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/SystemZInstrFP.td
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/SystemZInstrFormats.td
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/SystemZInstrInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/SystemZInstrInfo.td
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/SystemZLongBranch.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/SystemZMCInstLower.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/SystemZMCInstLower.h
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/SystemZMachineFunctionInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/SystemZMachineFunctionInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/SystemZOperands.td
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/SystemZOperators.td
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/SystemZPatterns.td
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/SystemZProcessors.td
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.td
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/SystemZSelectionDAGInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/SystemZSelectionDAGInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/SystemZShortenInst.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/SystemZSubtarget.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/SystemZSubtarget.h
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/SystemZTargetMachine.h
/freebsd-10-stable/contrib/llvm/lib/Target/Target.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/TargetLibraryInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/TargetLoweringObjectFile.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/TargetMachine.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/TargetMachineC.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/TargetSubtargetInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/X86/Disassembler/X86Disassembler.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.c
/freebsd-10-stable/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.h
/freebsd-10-stable/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoderCommon.h
/freebsd-10-stable/contrib/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.h
/freebsd-10-stable/contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.h
/freebsd-10-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86BaseInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86ELFRelocationInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.h
/freebsd-10-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MachORelocationInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MachObjectWriter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86.td
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86AsmPrinter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86AsmPrinter.h
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86CallingConv.h
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86CallingConv.td
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86CodeEmitter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86FastISel.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86FixupLEAs.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86FloatingPoint.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86FrameLowering.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86FrameLowering.h
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86ISelLowering.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86ISelLowering.h
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86InstrAVX512.td
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86InstrArithmetic.td
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86InstrCompiler.td
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86InstrControl.td
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86InstrExtension.td
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86InstrFMA.td
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86InstrFPStack.td
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86InstrFormats.td
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86InstrFragmentsSIMD.td
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86InstrInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86InstrInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86InstrInfo.td
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86InstrMMX.td
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86InstrSSE.td
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86InstrSVM.td
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86InstrShiftRotate.td
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86InstrSystem.td
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86InstrTSX.td
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86InstrXOP.td
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86JITInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86MCInstLower.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86RegisterInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86RegisterInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86RegisterInfo.td
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86SchedHaswell.td
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86SchedSandyBridge.td
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86Schedule.td
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86ScheduleAtom.td
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86ScheduleSLM.td
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86SelectionDAGInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86SelectionDAGInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86Subtarget.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86Subtarget.h
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86TargetMachine.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86TargetObjectFile.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86TargetObjectFile.h
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86TargetTransformInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/X86/X86VZeroUpper.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/XCore/Disassembler/XCoreDisassembler.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCAsmInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCAsmInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/XCore/XCore.h
/freebsd-10-stable/contrib/llvm/lib/Target/XCore/XCoreAsmPrinter.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/XCore/XCoreFrameLowering.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/XCore/XCoreISelDAGToDAG.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/XCore/XCoreISelLowering.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/XCore/XCoreISelLowering.h
/freebsd-10-stable/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.td
/freebsd-10-stable/contrib/llvm/lib/Target/XCore/XCoreLowerThreadLocal.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/XCore/XCoreMCInstLower.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.h
/freebsd-10-stable/contrib/llvm/lib/Target/XCore/XCoreTargetMachine.cpp
/freebsd-10-stable/contrib/llvm/lib/Target/XCore/XCoreTargetMachine.h
/freebsd-10-stable/contrib/llvm/lib/Target/XCore/XCoreTargetTransformInfo.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/IPO/ConstantMerge.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/IPO/ExtractGV.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/IPO/FunctionAttrs.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/IPO/GlobalDCE.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/IPO/GlobalOpt.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/IPO/InlineAlways.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/IPO/InlineSimple.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/IPO/Inliner.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/IPO/Internalize.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/IPO/MergeFunctions.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/IPO/PruneEH.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/IPO/StripSymbols.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombine.h
/freebsd-10-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombinePHI.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineVectorOps.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/InstCombine/InstCombineWorklist.h
/freebsd-10-stable/contrib/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Instrumentation/BlackList.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Instrumentation/BoundsChecking.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Instrumentation/DebugIR.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Instrumentation/DebugIR.h
/freebsd-10-stable/contrib/llvm/lib/Transforms/Instrumentation/EdgeProfiling.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Instrumentation/Instrumentation.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Instrumentation/OptimalEdgeProfiling.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Instrumentation/PathProfiling.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Instrumentation/ProfilingUtils.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Instrumentation/ProfilingUtils.h
/freebsd-10-stable/contrib/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/ObjCARC/ARCRuntimeEntryPoints.h
/freebsd-10-stable/contrib/llvm/lib/Transforms/ObjCARC/DependencyAnalysis.h
/freebsd-10-stable/contrib/llvm/lib/Transforms/ObjCARC/ObjCARC.h
/freebsd-10-stable/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCAliasAnalysis.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCAliasAnalysis.h
/freebsd-10-stable/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCContract.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCOpts.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCUtil.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysis.h
/freebsd-10-stable/contrib/llvm/lib/Transforms/Scalar/ADCE.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Scalar/BasicBlockPlacement.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Scalar/CodeGenPrepare.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Scalar/EarlyCSE.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Scalar/FlattenCFGPass.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Scalar/GVN.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Scalar/GlobalMerge.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Scalar/JumpThreading.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Scalar/LoopDeletion.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Scalar/LoopRerollPass.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Scalar/LoopUnrollPass.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Scalar/LoopUnswitch.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Scalar/PartiallyInlineLibCalls.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Scalar/Reassociate.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Scalar/SCCP.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Scalar/SROA.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Scalar/SampleProfile.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Scalar/Scalar.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Scalar/ScalarReplAggregates.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Scalar/StructurizeCFG.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Scalar/TailRecursionElimination.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Utils/CloneFunction.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Utils/CodeExtractor.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Utils/DemoteRegToStack.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Utils/FlattenCFG.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Utils/GlobalStatus.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Utils/InlineFunction.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Utils/LCSSA.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Utils/Local.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Utils/LoopSimplify.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Utils/LoopUnroll.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Utils/LowerExpectIntrinsic.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Utils/LowerInvoke.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Utils/LowerSwitch.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Utils/MetaRenamer.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Utils/ModuleUtils.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Utils/SSAUpdater.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Utils/SimplifyCFG.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Utils/SimplifyIndVar.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Utils/SimplifyLibCalls.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Utils/SpecialCaseList.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Utils/ValueMapper.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Vectorize/BBVectorize.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Vectorize/VecUtils.cpp
/freebsd-10-stable/contrib/llvm/lib/Transforms/Vectorize/VecUtils.h
/freebsd-10-stable/contrib/llvm/tools/bugpoint/BugDriver.cpp
/freebsd-10-stable/contrib/llvm/tools/bugpoint/BugDriver.h
/freebsd-10-stable/contrib/llvm/tools/bugpoint/CrashDebugger.cpp
/freebsd-10-stable/contrib/llvm/tools/bugpoint/ExecutionDriver.cpp
/freebsd-10-stable/contrib/llvm/tools/bugpoint/ExtractFunction.cpp
/freebsd-10-stable/contrib/llvm/tools/bugpoint/FindBugs.cpp
/freebsd-10-stable/contrib/llvm/tools/bugpoint/Miscompilation.cpp
/freebsd-10-stable/contrib/llvm/tools/bugpoint/OptimizerDriver.cpp
/freebsd-10-stable/contrib/llvm/tools/bugpoint/ToolRunner.cpp
/freebsd-10-stable/contrib/llvm/tools/bugpoint/ToolRunner.h
/freebsd-10-stable/contrib/llvm/tools/bugpoint/bugpoint.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang-c/CXCompilationDatabase.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang-c/CXString.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang-c/Index.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/ARCMigrate/ARCMT.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/ARCMigrate/ARCMTActions.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/ARCMigrate/FileRemapper.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/APValue.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/ASTConsumer.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/ASTContext.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/ASTDiagnostic.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/ASTFwd.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/ASTImporter.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/ASTLambda.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/ASTMutationListener.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/ASTTypeTraits.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/ASTUnresolvedSet.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/ASTVector.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/Attr.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/CXXInheritance.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/CanonicalType.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/CharUnits.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/Comment.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/CommentCommandTraits.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/CommentCommands.td
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/CommentDiagnostic.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/CommentParser.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/CommentSema.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/Decl.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/DeclAccessPair.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/DeclBase.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/DeclCXX.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/DeclContextInternals.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/DeclFriend.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/DeclLookups.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/DeclObjC.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/DeclOpenMP.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/DeclTemplate.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/DeclarationName.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/EvaluatedExprVisitor.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/Expr.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/ExprCXX.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/ExprObjC.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/ExternalASTSource.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/GlobalDecl.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/LambdaMangleContext.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/Mangle.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/MangleNumberingContext.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/NestedNameSpecifier.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/ParentMap.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/PrettyPrinter.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/RawCommentList.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/RecordLayout.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/RecursiveASTVisitor.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/Redeclarable.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/Stmt.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/StmtCXX.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/StmtIterator.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/StmtObjC.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/StmtOpenMP.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/StmtVisitor.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/TemplateBase.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/Type.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/TypeLoc.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/TypeNodes.def
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/TypeOrdering.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/TypeVisitor.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/UnresolvedSet.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/VTTBuilder.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/VTableBuilder.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchFinder.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchers.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchersInternal.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchersMacros.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/ASTMatchers/Dynamic
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/Consumed.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/FormatString.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafety.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/UninitializedValues.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Analysis/AnalysisContext.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Analysis/AnalysisDiagnostic.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Analysis/CFG.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Analysis/CallGraph.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Analysis/FlowSensitive/DataflowSolver.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Analysis/Support/BlkExprDeclBitVector.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Analysis/Visitors
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/ABI.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/Attr.td
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/AttrKinds.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/Builtins.def
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/Builtins.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsAArch64.def
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsARM.def
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsMips.def
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsNVPTX.def
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsX86.def
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsXCore.def
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/CapturedStmt.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/DeclNodes.td
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/Diagnostic.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/Diagnostic.td
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticASTKinds.td
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommentKinds.td
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommonKinds.td
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticDriverKinds.td
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticFrontendKinds.td
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticGroups.td
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticIDs.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticLexKinds.td
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.def
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticParseKinds.td
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSemaKinds.td
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSerializationKinds.td
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/FileManager.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/FileSystemStatCache.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/IdentifierTable.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/Lambda.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.def
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/Linkage.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/Module.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/ObjCRuntime.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenMPKinds.def
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/OpenMPKinds.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/OperatorKinds.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/PartialDiagnostic.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/Sanitizers.def
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/SourceLocation.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/SourceManager.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/Specifiers.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/StmtNodes.td
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/TargetBuiltins.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/TargetCXXABI.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/TargetInfo.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/TargetOptions.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/TemplateKinds.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/TokenKinds.def
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/TypeTraits.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/Visibility.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/arm_neon.td
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/CodeGen/CGFunctionInfo.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/CodeGen/CodeGenABITypes.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Driver/Action.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Driver/Arg.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Driver/ArgList.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Driver/CC1AsOptions.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Driver/CC1AsOptions.td
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Driver/CC1Options.td
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Driver/CLCompatOptions.td
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Driver/Compilation.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Driver/Driver.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Driver/DriverDiagnostic.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Driver/Job.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Driver/OptParser.td
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Driver/OptSpecifier.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Driver/OptTable.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Driver/Option.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Driver/Options.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Driver/Options.td
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Driver/SanitizerArgs.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Driver/Tool.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Driver/ToolChain.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Driver/Types.def
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Driver/Types.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Driver/Util.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Edit/Commit.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Edit/EditedSource.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Edit/Rewriters.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Format/Format.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Frontend/ASTConsumers.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Frontend/ASTUnit.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.def
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInstance.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInvocation.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Frontend/DependencyOutputOptions.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Frontend/FrontendAction.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Frontend/FrontendActions.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Frontend/FrontendDiagnostic.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Frontend/FrontendOptions.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnostic.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Frontend/Utils.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Index
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Lex/DirectoryLookup.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Lex/HeaderSearch.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Lex/HeaderSearchOptions.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Lex/LexDiagnostic.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Lex/Lexer.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Lex/LiteralSupport.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Lex/MacroInfo.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Lex/ModuleLoader.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Lex/ModuleMap.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Lex/MultipleIncludeOpt.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Lex/PPCallbacks.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Lex/PPConditionalDirectiveRecord.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Lex/PTHLexer.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Lex/PreprocessingRecord.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Lex/Preprocessor.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Lex/PreprocessorLexer.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Lex/Token.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Lex/TokenLexer.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Parse/ParseDiagnostic.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Parse/Parser.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Rewrite/Core/HTMLRewrite.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Rewrite/Core/Rewriter.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Sema/AnalysisBasedWarnings.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Sema/AttributeList.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Sema/CodeCompleteConsumer.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Sema/DeclSpec.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Sema/DelayedDiagnostic.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Sema/ExternalSemaSource.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Sema/IdentifierResolver.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Sema/Initialization.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Sema/Lookup.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Sema/MultiplexExternalSemaSource.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Sema/Overload.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Sema/Ownership.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Sema/Scope.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Sema/ScopeInfo.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Sema/Sema.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Sema/SemaDiagnostic.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Sema/SemaInternal.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Sema/SemaLambda.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Sema/Template.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Sema/TemplateDeduction.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Sema/TypoCorrection.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Serialization/ASTBitCodes.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Serialization/ASTReader.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Serialization/ASTWriter.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Serialization/GlobalModuleIndex.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Serialization/ModuleManager.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Serialization/SerializationDiagnostic.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/CommonBugCategories.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/ObjCRetainCount.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Analyses.def
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugType.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/CommonBugCategories.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Checker.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerManager.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerRegistry.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathDiagnosticConsumers.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SValBuilder.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Store.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SubEngine.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Tooling/ArgumentsAdjusters.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Tooling/CommonOptionsParser.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Tooling/CompilationDatabase.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Tooling/ReplacementsYaml.h
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Tooling/Tooling.h
ARCMigrate/ARCMT.cpp
ARCMigrate/FileRemapper.cpp
ARCMigrate/ObjCMT.cpp
ARCMigrate/TransUnbridgedCasts.cpp
ARCMigrate/Transforms.cpp
ARCMigrate/Transforms.h
AST/APValue.cpp
AST/ASTContext.cpp
AST/ASTDiagnostic.cpp
AST/ASTDumper.cpp
AST/ASTImporter.cpp
AST/ASTTypeTraits.cpp
AST/AttrImpl.cpp
AST/CXXABI.h
AST/CXXInheritance.cpp
AST/Comment.cpp
AST/CommentCommandTraits.cpp
AST/CommentLexer.cpp
AST/CommentParser.cpp
AST/CommentSema.cpp
AST/Decl.cpp
AST/DeclBase.cpp
AST/DeclCXX.cpp
AST/DeclFriend.cpp
AST/DeclObjC.cpp
AST/DeclOpenMP.cpp
AST/DeclPrinter.cpp
AST/DeclTemplate.cpp
AST/DeclarationName.cpp
AST/DumpXML.cpp
AST/Expr.cpp
AST/ExprCXX.cpp
AST/ExprClassification.cpp
AST/ExprConstant.cpp
AST/InheritViz.cpp
AST/ItaniumCXXABI.cpp
AST/ItaniumMangle.cpp
AST/LambdaMangleContext.cpp
AST/Mangle.cpp
AST/MangleNumberingContext.cpp
AST/MicrosoftCXXABI.cpp
AST/MicrosoftMangle.cpp
AST/NestedNameSpecifier.cpp
AST/ParentMap.cpp
AST/RawCommentList.cpp
AST/RecordLayout.cpp
AST/RecordLayoutBuilder.cpp
AST/Stmt.cpp
AST/StmtIterator.cpp
AST/StmtPrinter.cpp
AST/StmtProfile.cpp
AST/TemplateBase.cpp
AST/Type.cpp
AST/TypeLoc.cpp
AST/TypePrinter.cpp
AST/VTableBuilder.cpp
ASTMatchers/ASTMatchFinder.cpp
ASTMatchers/ASTMatchersInternal.cpp
ASTMatchers/Dynamic
Analysis/AnalysisDeclContext.cpp
Analysis/CFG.cpp
Analysis/CFGReachabilityAnalysis.cpp
Analysis/Consumed.cpp
Analysis/FormatString.cpp
Analysis/LiveVariables.cpp
Analysis/PrintfFormatString.cpp
Analysis/ReachableCode.cpp
Analysis/ScanfFormatString.cpp
Analysis/ThreadSafety.cpp
Analysis/UninitializedValues.cpp
Basic/Builtins.cpp
Basic/DiagnosticIDs.cpp
Basic/FileManager.cpp
Basic/FileSystemStatCache.cpp
Basic/IdentifierTable.cpp
Basic/Module.cpp
Basic/ObjCRuntime.cpp
Basic/OpenMPKinds.cpp
Basic/OperatorPrecedence.cpp
Basic/SourceManager.cpp
Basic/TargetInfo.cpp
Basic/Targets.cpp
Basic/Version.cpp
CodeGen/ABIInfo.h
CodeGen/BackendUtil.cpp
CodeGen/CGAtomic.cpp
CodeGen/CGBlocks.cpp
CodeGen/CGBuiltin.cpp
CodeGen/CGCUDARuntime.cpp
CodeGen/CGCXX.cpp
CodeGen/CGCXXABI.cpp
CodeGen/CGCXXABI.h
CodeGen/CGCall.cpp
CodeGen/CGCall.h
CodeGen/CGClass.cpp
CodeGen/CGCleanup.cpp
CodeGen/CGCleanup.h
CodeGen/CGDebugInfo.cpp
CodeGen/CGDebugInfo.h
CodeGen/CGDecl.cpp
CodeGen/CGDeclCXX.cpp
CodeGen/CGException.cpp
CodeGen/CGExpr.cpp
CodeGen/CGExprAgg.cpp
CodeGen/CGExprCXX.cpp
CodeGen/CGExprComplex.cpp
CodeGen/CGExprConstant.cpp
CodeGen/CGExprScalar.cpp
CodeGen/CGObjC.cpp
CodeGen/CGObjCGNU.cpp
CodeGen/CGObjCMac.cpp
CodeGen/CGObjCRuntime.cpp
CodeGen/CGRTTI.cpp
CodeGen/CGRecordLayoutBuilder.cpp
CodeGen/CGStmt.cpp
CodeGen/CGVTT.cpp
CodeGen/CGVTables.cpp
CodeGen/CGVTables.h
CodeGen/CGValue.h
CodeGen/CodeGenABITypes.cpp
CodeGen/CodeGenAction.cpp
CodeGen/CodeGenFunction.cpp
CodeGen/CodeGenFunction.h
CodeGen/CodeGenModule.cpp
CodeGen/CodeGenModule.h
CodeGen/CodeGenTBAA.cpp
CodeGen/CodeGenTBAA.h
CodeGen/CodeGenTypes.cpp
CodeGen/CodeGenTypes.h
CodeGen/EHScopeStack.h
CodeGen/ItaniumCXXABI.cpp
CodeGen/MicrosoftCXXABI.cpp
CodeGen/MicrosoftVBTables.cpp
CodeGen/MicrosoftVBTables.h
CodeGen/ModuleBuilder.cpp
CodeGen/TargetInfo.cpp
CodeGen/TargetInfo.h
Driver/Action.cpp
Driver/Arg.cpp
Driver/ArgList.cpp
Driver/CC1AsOptions.cpp
Driver/Compilation.cpp
Driver/Driver.cpp
Driver/DriverOptions.cpp
Driver/InputInfo.h
Driver/Job.cpp
Driver/OptTable.cpp
Driver/Option.cpp
Driver/SanitizerArgs.cpp
Driver/SanitizerArgs.h
Driver/ToolChain.cpp
Driver/ToolChains.cpp
Driver/ToolChains.h
Driver/Tools.cpp
Driver/Tools.h
Driver/Types.cpp
Driver/WindowsToolChain.cpp
Edit/Commit.cpp
Format/BreakableToken.cpp
Format/BreakableToken.h
Format/ContinuationIndenter.cpp
Format/ContinuationIndenter.h
Format/Encoding.h
Format/Format.cpp
Format/FormatToken.cpp
Format/FormatToken.h
Format/TokenAnnotator.cpp
Format/TokenAnnotator.h
Format/UnwrappedLineParser.cpp
Format/UnwrappedLineParser.h
Format/WhitespaceManager.cpp
Format/WhitespaceManager.h
Frontend/ASTConsumers.cpp
Frontend/ASTUnit.cpp
Frontend/CacheTokens.cpp
Frontend/ChainedIncludesSource.cpp
Frontend/CompilerInstance.cpp
Frontend/CompilerInvocation.cpp
Frontend/CreateInvocationFromCommandLine.cpp
Frontend/DependencyFile.cpp
Frontend/FrontendAction.cpp
Frontend/FrontendActions.cpp
Frontend/FrontendOptions.cpp
Frontend/HeaderIncludeGen.cpp
Frontend/InitHeaderSearch.cpp
Frontend/InitPreprocessor.cpp
Frontend/MultiplexConsumer.cpp
Frontend/PrintPreprocessedOutput.cpp
Frontend/TextDiagnostic.cpp
Frontend/TextDiagnosticPrinter.cpp
Frontend/VerifyDiagnosticConsumer.cpp
FrontendTool/ExecuteCompilerInvocation.cpp
Headers/Intrin.h
Headers/avx2intrin.h
Headers/avxintrin.h
Headers/emmintrin.h
Headers/f16cintrin.h
Headers/immintrin.h
Headers/limits.h
Headers/module.map
Headers/prfchwintrin.h
Headers/rdseedintrin.h
Headers/rtmintrin.h
Headers/shaintrin.h
Headers/smmintrin.h
Headers/tbmintrin.h
Headers/tgmath.h
Headers/unwind.h
Headers/x86intrin.h
Headers/xmmintrin.h
Headers/xopintrin.h
Index
Lex/HeaderMap.cpp
Lex/HeaderSearch.cpp
Lex/Lexer.cpp
Lex/LiteralSupport.cpp
Lex/ModuleMap.cpp
Lex/PPConditionalDirectiveRecord.cpp
Lex/PPDirectives.cpp
Lex/PPExpressions.cpp
Lex/PPLexerChange.cpp
Lex/PPMacroExpansion.cpp
Lex/PTHLexer.cpp
Lex/Pragma.cpp
Lex/PreprocessingRecord.cpp
Lex/Preprocessor.cpp
Lex/PreprocessorLexer.cpp
Lex/TokenLexer.cpp
Lex/UnicodeCharSets.h
Parse/ParseAST.cpp
Parse/ParseCXXInlineMethods.cpp
Parse/ParseDecl.cpp
Parse/ParseDeclCXX.cpp
Parse/ParseExpr.cpp
Parse/ParseExprCXX.cpp
Parse/ParseInit.cpp
Parse/ParseObjc.cpp
Parse/ParseOpenMP.cpp
Parse/ParsePragma.cpp
Parse/ParsePragma.h
Parse/ParseStmt.cpp
Parse/ParseTemplate.cpp
Parse/ParseTentative.cpp
Parse/Parser.cpp
Parse/RAIIObjectsForParser.h
Rewrite/Core/HTMLRewrite.cpp
Rewrite/Core/Rewriter.cpp
Rewrite/Frontend/FixItRewriter.cpp
Rewrite/Frontend/FrontendActions.cpp
Rewrite/Frontend/InclusionRewriter.cpp
Rewrite/Frontend/RewriteMacros.cpp
Rewrite/Frontend/RewriteModernObjC.cpp
Rewrite/Frontend/RewriteObjC.cpp
Sema/AnalysisBasedWarnings.cpp
Sema/AttributeList.cpp
Sema/DeclSpec.cpp
Sema/IdentifierResolver.cpp
Sema/JumpDiagnostics.cpp
Sema/MultiplexExternalSemaSource.cpp
Sema/ScopeInfo.cpp
Sema/Sema.cpp
Sema/SemaAccess.cpp
Sema/SemaAttr.cpp
Sema/SemaCXXScopeSpec.cpp
Sema/SemaCast.cpp
Sema/SemaChecking.cpp
Sema/SemaCodeComplete.cpp
Sema/SemaDecl.cpp
Sema/SemaDeclAttr.cpp
Sema/SemaDeclCXX.cpp
Sema/SemaDeclObjC.cpp
Sema/SemaExceptionSpec.cpp
Sema/SemaExpr.cpp
Sema/SemaExprCXX.cpp
Sema/SemaExprMember.cpp
Sema/SemaExprObjC.cpp
Sema/SemaFixItUtils.cpp
Sema/SemaInit.cpp
Sema/SemaLambda.cpp
Sema/SemaLookup.cpp
Sema/SemaObjCProperty.cpp
Sema/SemaOpenMP.cpp
Sema/SemaOverload.cpp
Sema/SemaPseudoObject.cpp
Sema/SemaStmt.cpp
Sema/SemaStmtAsm.cpp
Sema/SemaTemplate.cpp
Sema/SemaTemplateDeduction.cpp
Sema/SemaTemplateInstantiate.cpp
Sema/SemaTemplateInstantiateDecl.cpp
Sema/SemaTemplateVariadic.cpp
Sema/SemaType.cpp
Sema/TargetAttributesSema.cpp
Sema/TreeTransform.h
Sema/TypeLocBuilder.cpp
Sema/TypeLocBuilder.h
Serialization/ASTCommon.cpp
Serialization/ASTCommon.h
Serialization/ASTReader.cpp
Serialization/ASTReaderDecl.cpp
Serialization/ASTReaderStmt.cpp
Serialization/ASTWriter.cpp
Serialization/ASTWriterDecl.cpp
Serialization/ASTWriterStmt.cpp
Serialization/GeneratePCH.cpp
Serialization/GlobalModuleIndex.cpp
Serialization/ModuleManager.cpp
StaticAnalyzer/Checkers/BasicObjCFoundationChecks.cpp
StaticAnalyzer/Checkers/BuiltinFunctionChecker.cpp
StaticAnalyzer/Checkers/CStringChecker.cpp
StaticAnalyzer/Checkers/CStringSyntaxChecker.cpp
StaticAnalyzer/Checkers/CallAndMessageChecker.cpp
StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp
StaticAnalyzer/Checkers/CheckSizeofPointer.cpp
StaticAnalyzer/Checkers/CheckerDocumentation.cpp
StaticAnalyzer/Checkers/Checkers.td
StaticAnalyzer/Checkers/ClangSACheckers.h
StaticAnalyzer/Checkers/CommonBugCategories.cpp
StaticAnalyzer/Checkers/DeadStoresChecker.cpp
StaticAnalyzer/Checkers/DebugCheckers.cpp
StaticAnalyzer/Checkers/DirectIvarAssignment.cpp
StaticAnalyzer/Checkers/DynamicTypePropagation.cpp
StaticAnalyzer/Checkers/ExprInspectionChecker.cpp
StaticAnalyzer/Checkers/GenericTaintChecker.cpp
StaticAnalyzer/Checkers/IdempotentOperationChecker.cpp
StaticAnalyzer/Checkers/IdenticalExprChecker.cpp
StaticAnalyzer/Checkers/MallocChecker.cpp
StaticAnalyzer/Checkers/MallocOverflowSecurityChecker.cpp
StaticAnalyzer/Checkers/MallocSizeofChecker.cpp
StaticAnalyzer/Checkers/NoReturnFunctionChecker.cpp
StaticAnalyzer/Checkers/ObjCContainersASTChecker.cpp
StaticAnalyzer/Checkers/RetainCountChecker.cpp
StaticAnalyzer/Checkers/SimpleStreamChecker.cpp
StaticAnalyzer/Checkers/UndefResultChecker.cpp
StaticAnalyzer/Checkers/UndefinedArraySubscriptChecker.cpp
StaticAnalyzer/Checkers/UndefinedAssignmentChecker.cpp
StaticAnalyzer/Checkers/UnreachableCodeChecker.cpp
StaticAnalyzer/Checkers/VirtualCallChecker.cpp
StaticAnalyzer/Core/AnalyzerOptions.cpp
StaticAnalyzer/Core/BugReporter.cpp
StaticAnalyzer/Core/BugReporterVisitors.cpp
StaticAnalyzer/Core/CallEvent.cpp
StaticAnalyzer/Core/CheckerContext.cpp
StaticAnalyzer/Core/CheckerManager.cpp
StaticAnalyzer/Core/CommonBugCategories.cpp
StaticAnalyzer/Core/ExplodedGraph.cpp
StaticAnalyzer/Core/ExprEngine.cpp
StaticAnalyzer/Core/ExprEngineC.cpp
StaticAnalyzer/Core/ExprEngineCXX.cpp
StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp
StaticAnalyzer/Core/HTMLDiagnostics.cpp
StaticAnalyzer/Core/MemRegion.cpp
StaticAnalyzer/Core/PathDiagnostic.cpp
StaticAnalyzer/Core/PlistDiagnostics.cpp
StaticAnalyzer/Core/PrettyStackTraceLocationContext.h
StaticAnalyzer/Core/ProgramState.cpp
StaticAnalyzer/Core/RegionStore.cpp
StaticAnalyzer/Core/SValBuilder.cpp
StaticAnalyzer/Core/SimpleConstraintManager.cpp
StaticAnalyzer/Core/SimpleConstraintManager.h
StaticAnalyzer/Core/SimpleSValBuilder.cpp
StaticAnalyzer/Core/Store.cpp
StaticAnalyzer/Core/SymbolManager.cpp
StaticAnalyzer/Core/TextPathDiagnostics.cpp
StaticAnalyzer/Frontend/AnalysisConsumer.cpp
Tooling/ArgumentsAdjusters.cpp
Tooling/CommonOptionsParser.cpp
Tooling/CompilationDatabase.cpp
Tooling/FileMatchTrie.cpp
Tooling/JSONCompilationDatabase.cpp
Tooling/Refactoring.cpp
Tooling/Tooling.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/tools/driver/cc1_main.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/tools/driver/cc1as_main.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/tools/driver/driver.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/utils/TableGen/ClangAttrEmitter.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/utils/TableGen/ClangCommentCommandInfoEmitter.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/utils/TableGen/ClangDiagnosticsEmitter.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/utils/TableGen/NeonEmitter.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/utils/TableGen/OptParserEmitter.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/utils/TableGen/TableGen.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/utils/TableGen/TableGenBackends.h
/freebsd-10-stable/contrib/llvm/tools/llc/llc.cpp
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Expression/IRExecutionUnit.h
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Core/ArchSpec.cpp
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Expression/ClangExpressionParser.cpp
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Expression/IRExecutionUnit.cpp
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Expression/IRForTarget.cpp
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Host/common/FileSpec.cpp
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.cpp
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Symbol/ClangASTType.cpp
/freebsd-10-stable/contrib/llvm/tools/lli/ChildTarget
/freebsd-10-stable/contrib/llvm/tools/lli/RecordingMemoryManager.cpp
/freebsd-10-stable/contrib/llvm/tools/lli/RecordingMemoryManager.h
/freebsd-10-stable/contrib/llvm/tools/lli/RemoteMemoryManager.cpp
/freebsd-10-stable/contrib/llvm/tools/lli/RemoteMemoryManager.h
/freebsd-10-stable/contrib/llvm/tools/lli/RemoteTarget.cpp
/freebsd-10-stable/contrib/llvm/tools/lli/RemoteTarget.h
/freebsd-10-stable/contrib/llvm/tools/lli/RemoteTargetExternal.cpp
/freebsd-10-stable/contrib/llvm/tools/lli/RemoteTargetExternal.h
/freebsd-10-stable/contrib/llvm/tools/lli/RemoteTargetMessage.h
/freebsd-10-stable/contrib/llvm/tools/lli/Unix
/freebsd-10-stable/contrib/llvm/tools/lli/Windows
/freebsd-10-stable/contrib/llvm/tools/lli/lli.cpp
/freebsd-10-stable/contrib/llvm/tools/llvm-ar/llvm-ar.cpp
/freebsd-10-stable/contrib/llvm/tools/llvm-as/llvm-as.cpp
/freebsd-10-stable/contrib/llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp
/freebsd-10-stable/contrib/llvm/tools/llvm-diff/DifferenceEngine.cpp
/freebsd-10-stable/contrib/llvm/tools/llvm-diff/llvm-diff.cpp
/freebsd-10-stable/contrib/llvm/tools/llvm-dis/llvm-dis.cpp
/freebsd-10-stable/contrib/llvm/tools/llvm-extract/llvm-extract.cpp
/freebsd-10-stable/contrib/llvm/tools/llvm-link/llvm-link.cpp
/freebsd-10-stable/contrib/llvm/tools/llvm-mc/Disassembler.cpp
/freebsd-10-stable/contrib/llvm/tools/llvm-mc/llvm-mc.cpp
/freebsd-10-stable/contrib/llvm/tools/llvm-nm/llvm-nm.cpp
/freebsd-10-stable/contrib/llvm/tools/llvm-objdump/COFFDump.cpp
/freebsd-10-stable/contrib/llvm/tools/llvm-objdump/ELFDump.cpp
/freebsd-10-stable/contrib/llvm/tools/llvm-objdump/MCFunction.cpp
/freebsd-10-stable/contrib/llvm/tools/llvm-objdump/MCFunction.h
/freebsd-10-stable/contrib/llvm/tools/llvm-objdump/MachODump.cpp
/freebsd-10-stable/contrib/llvm/tools/llvm-objdump/llvm-objdump.cpp
/freebsd-10-stable/contrib/llvm/tools/llvm-objdump/llvm-objdump.h
/freebsd-10-stable/contrib/llvm/tools/llvm-prof
/freebsd-10-stable/contrib/llvm/tools/llvm-ranlib
/freebsd-10-stable/contrib/llvm/tools/llvm-readobj/COFFDumper.cpp
/freebsd-10-stable/contrib/llvm/tools/llvm-readobj/ELFDumper.cpp
/freebsd-10-stable/contrib/llvm/tools/llvm-readobj/MachODumper.cpp
/freebsd-10-stable/contrib/llvm/tools/llvm-readobj/llvm-readobj.cpp
/freebsd-10-stable/contrib/llvm/tools/llvm-rtdyld/llvm-rtdyld.cpp
/freebsd-10-stable/contrib/llvm/tools/llvm-stress/llvm-stress.cpp
/freebsd-10-stable/contrib/llvm/tools/llvm-stub
/freebsd-10-stable/contrib/llvm/tools/llvm-symbolizer/LLVMSymbolize.cpp
/freebsd-10-stable/contrib/llvm/tools/llvm-symbolizer/LLVMSymbolize.h
/freebsd-10-stable/contrib/llvm/tools/llvm-symbolizer/llvm-symbolizer.cpp
/freebsd-10-stable/contrib/llvm/tools/macho-dump/macho-dump.cpp
/freebsd-10-stable/contrib/llvm/tools/opt/opt.cpp
/freebsd-10-stable/contrib/llvm/utils/TableGen/AsmMatcherEmitter.cpp
/freebsd-10-stable/contrib/llvm/utils/TableGen/AsmWriterEmitter.cpp
/freebsd-10-stable/contrib/llvm/utils/TableGen/AsmWriterInst.cpp
/freebsd-10-stable/contrib/llvm/utils/TableGen/CodeGenDAGPatterns.cpp
/freebsd-10-stable/contrib/llvm/utils/TableGen/CodeGenDAGPatterns.h
/freebsd-10-stable/contrib/llvm/utils/TableGen/CodeGenInstruction.cpp
/freebsd-10-stable/contrib/llvm/utils/TableGen/CodeGenInstruction.h
/freebsd-10-stable/contrib/llvm/utils/TableGen/CodeGenIntrinsics.h
/freebsd-10-stable/contrib/llvm/utils/TableGen/CodeGenMapTable.cpp
/freebsd-10-stable/contrib/llvm/utils/TableGen/CodeGenRegisters.cpp
/freebsd-10-stable/contrib/llvm/utils/TableGen/CodeGenRegisters.h
/freebsd-10-stable/contrib/llvm/utils/TableGen/CodeGenSchedule.cpp
/freebsd-10-stable/contrib/llvm/utils/TableGen/CodeGenSchedule.h
/freebsd-10-stable/contrib/llvm/utils/TableGen/CodeGenTarget.cpp
/freebsd-10-stable/contrib/llvm/utils/TableGen/DAGISelEmitter.cpp
/freebsd-10-stable/contrib/llvm/utils/TableGen/DAGISelMatcher.cpp
/freebsd-10-stable/contrib/llvm/utils/TableGen/DAGISelMatcher.h
/freebsd-10-stable/contrib/llvm/utils/TableGen/DAGISelMatcherEmitter.cpp
/freebsd-10-stable/contrib/llvm/utils/TableGen/DAGISelMatcherOpt.cpp
/freebsd-10-stable/contrib/llvm/utils/TableGen/FastISelEmitter.cpp
/freebsd-10-stable/contrib/llvm/utils/TableGen/FixedLenDecoderEmitter.cpp
/freebsd-10-stable/contrib/llvm/utils/TableGen/InstrInfoEmitter.cpp
/freebsd-10-stable/contrib/llvm/utils/TableGen/IntrinsicEmitter.cpp
/freebsd-10-stable/contrib/llvm/utils/TableGen/OptParserEmitter.cpp
/freebsd-10-stable/contrib/llvm/utils/TableGen/RegisterInfoEmitter.cpp
/freebsd-10-stable/contrib/llvm/utils/TableGen/SequenceToOffsetTable.h
/freebsd-10-stable/contrib/llvm/utils/TableGen/SetTheory.cpp
/freebsd-10-stable/contrib/llvm/utils/TableGen/StringToOffsetTable.h
/freebsd-10-stable/contrib/llvm/utils/TableGen/SubtargetEmitter.cpp
/freebsd-10-stable/contrib/llvm/utils/TableGen/TGValueTypes.cpp
/freebsd-10-stable/contrib/llvm/utils/TableGen/X86DisassemblerTables.cpp
/freebsd-10-stable/contrib/llvm/utils/TableGen/X86DisassemblerTables.h
/freebsd-10-stable/contrib/llvm/utils/TableGen/X86RecognizableInstr.cpp
/freebsd-10-stable/contrib/llvm/utils/TableGen/X86RecognizableInstr.h
/freebsd-10-stable/etc/mtree/BSD.include.dist
/freebsd-10-stable/lib/clang/Makefile
/freebsd-10-stable/lib/clang/clang.build.mk
/freebsd-10-stable/lib/clang/include/Makefile
/freebsd-10-stable/lib/clang/include/PPCGenFastISel.inc
/freebsd-10-stable/lib/clang/include/clang/Basic/Version.inc
/freebsd-10-stable/lib/clang/include/clang/Parse/AttrExprArgs.inc
/freebsd-10-stable/lib/clang/include/clang/Parse/AttrIdentifierArg.inc
/freebsd-10-stable/lib/clang/include/clang/Parse/AttrTypeArg.inc
/freebsd-10-stable/lib/clang/include/clang/Sema/AttrParsedAttrImpl.inc
/freebsd-10-stable/lib/clang/include/llvm/Config/config.h
/freebsd-10-stable/lib/clang/include/llvm/Config/llvm-config.h
/freebsd-10-stable/lib/clang/libclanganalysis/Makefile
/freebsd-10-stable/lib/clang/libclangast/Makefile
/freebsd-10-stable/lib/clang/libclangcodegen/Makefile
/freebsd-10-stable/lib/clang/libclangdriver/Makefile
/freebsd-10-stable/lib/clang/libclangparse/Makefile
/freebsd-10-stable/lib/clang/libclangsema/Makefile
/freebsd-10-stable/lib/clang/libclangstaticanalyzercheckers/Makefile
/freebsd-10-stable/lib/clang/libclangstaticanalyzercore/Makefile
/freebsd-10-stable/lib/clang/libllvmanalysis/Makefile
/freebsd-10-stable/lib/clang/libllvmarchive
/freebsd-10-stable/lib/clang/libllvmarmdesc/Makefile
/freebsd-10-stable/lib/clang/libllvmasmprinter/Makefile
/freebsd-10-stable/lib/clang/libllvmcodegen/Makefile
/freebsd-10-stable/lib/clang/libllvmcore/Makefile
/freebsd-10-stable/lib/clang/libllvmdebuginfo/Makefile
/freebsd-10-stable/lib/clang/libllvmexecutionengine/Makefile
/freebsd-10-stable/lib/clang/libllvminstrumentation/Makefile
/freebsd-10-stable/lib/clang/libllvmjit/Makefile
/freebsd-10-stable/lib/clang/libllvmmc/Makefile
/freebsd-10-stable/lib/clang/libllvmmipscodegen/Makefile
/freebsd-10-stable/lib/clang/libllvmmipsdesc/Makefile
/freebsd-10-stable/lib/clang/libllvmobject/Makefile
/freebsd-10-stable/lib/clang/libllvmoption
/freebsd-10-stable/lib/clang/libllvmpowerpccodegen/Makefile
/freebsd-10-stable/lib/clang/libllvmpowerpcdesc/Makefile
/freebsd-10-stable/lib/clang/libllvmscalaropts/Makefile
/freebsd-10-stable/lib/clang/libllvmsupport/Makefile
/freebsd-10-stable/lib/clang/libllvmtransformutils/Makefile
/freebsd-10-stable/lib/clang/libllvmvectorize/Makefile
/freebsd-10-stable/lib/clang/libllvmx86desc/Makefile
/freebsd-10-stable/share/mk/bsd.sys.mk
/freebsd-10-stable/sys/amd64/conf/GENERIC
/freebsd-10-stable/sys/conf/kern.mk
/freebsd-10-stable/sys/i386/conf/GENERIC
/freebsd-10-stable/sys/i386/conf/XEN
/freebsd-10-stable/sys/sys/param.h
/freebsd-10-stable/tools/build/mk/OptionalObsoleteFiles.inc
/freebsd-10-stable/usr.bin/clang/Makefile
/freebsd-10-stable/usr.bin/clang/bugpoint/bugpoint.1
/freebsd-10-stable/usr.bin/clang/clang-tblgen/Makefile
/freebsd-10-stable/usr.bin/clang/clang.prog.mk
/freebsd-10-stable/usr.bin/clang/clang/Makefile
/freebsd-10-stable/usr.bin/clang/clang/clang.1
/freebsd-10-stable/usr.bin/clang/llc/Makefile
/freebsd-10-stable/usr.bin/clang/llc/llc.1
/freebsd-10-stable/usr.bin/clang/lldb/Makefile
/freebsd-10-stable/usr.bin/clang/lli/Makefile
/freebsd-10-stable/usr.bin/clang/lli/lli.1
/freebsd-10-stable/usr.bin/clang/llvm-ar/Makefile
/freebsd-10-stable/usr.bin/clang/llvm-ar/llvm-ar.1
/freebsd-10-stable/usr.bin/clang/llvm-as/llvm-as.1
/freebsd-10-stable/usr.bin/clang/llvm-bcanalyzer/llvm-bcanalyzer.1
/freebsd-10-stable/usr.bin/clang/llvm-diff/llvm-diff.1
/freebsd-10-stable/usr.bin/clang/llvm-dis/llvm-dis.1
/freebsd-10-stable/usr.bin/clang/llvm-extract/llvm-extract.1
/freebsd-10-stable/usr.bin/clang/llvm-link/llvm-link.1
/freebsd-10-stable/usr.bin/clang/llvm-mc/Makefile
/freebsd-10-stable/usr.bin/clang/llvm-nm/Makefile
/freebsd-10-stable/usr.bin/clang/llvm-nm/llvm-nm.1
/freebsd-10-stable/usr.bin/clang/llvm-objdump/Makefile
/freebsd-10-stable/usr.bin/clang/llvm-prof
/freebsd-10-stable/usr.bin/clang/llvm-ranlib
/freebsd-10-stable/usr.bin/clang/llvm-rtdyld/Makefile
/freebsd-10-stable/usr.bin/clang/opt/Makefile
/freebsd-10-stable/usr.bin/clang/opt/opt.1
/freebsd-10-stable/usr.bin/clang/tblgen/tblgen.1
261794 12-Feb-2014 dim

MFC r261680:

Pull in r200899 from upstream clang trunk:

Allow transformation of VariableArray to ConstantArray.

In the following code:

struct A { static const int sz; };
template<class T> void f() { T arr[A::sz]; }

the array 'arr' is represented as a variable size array in the template.
If 'A::sz' gets value below in the translation unit, the array in
instantiation can turn into constant size array.

This change fixes PR18633.

Differential Revision: http://llvm-reviews.chandlerc.com/D2688

This fixes "Assertion failed: (T::isKind(*this)), function castAs"
errors, which can occur when building the security/quantis port.

Reported by: ale

259664 20-Dec-2013 dim

MFC r259498:

Pull in r197399 from upstream clang trunk:

Add bit_FXSAVE as an alias for bit_FXSR, for gcc compat.

259214 11-Dec-2013 dim

MFC r259100:

Pull in r196658 from upstream clang trunk:

CodeGen: Don't emit linkage on thunks that aren't emitted because they're
vararg.

This can happen when we're trying to emit a thunk with available_externally
linkage with optimization enabled but bail because it doesn't make sense for
vararg functions.

[LLVM] PR18098.

This should fix clang "Broken module found, compilation aborted" errors when
building the qt4-based dvbcut port.

Reported by: se

259157 10-Dec-2013 dim

MFC r259053:

Pull in r196590 from upstream clang trunk (by rdivacky):

Move the body of GCCInstallationDetector ctor into an init() function
and call it from its only user. The linux toolchain. This saves quite
a lot of directory searching on other platforms.

See http://docs.freebsd.org/cgi/mid.cgi?51E6FAF5.3080802 for the
original discussion. With this fix, the search for gcc installations is
completely eliminated on FreeBSD.

Reported by: Kurt Lidl <lidl@pix.net>

258747 29-Nov-2013 dim

MFC r258620:

Pull in r195558 from upstream clang trunk:

Fix a SSE2 intrinsics typo

Full discourse at:

http://lists.cs.uiuc.edu/pipermail/cfe-commits/Week-of-Mon-20131104/092514.html
http://lists.cs.uiuc.edu/pipermail/llvmdev/2013-November/068124.html

Patch by Dimitry Andric and Alexey Dokuchaev!

Reported by: danfe
Approved by: re (gjb)

256281 10-Oct-2013 gjb

Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.

Approved by: re (implicit)
Sponsored by: The FreeBSD Foundation


256030 03-Oct-2013 dim

Pull in r189644 from upstream llvm trunk:

Add ms_abi and sysv_abi attribute handling.

Based on a patch by Benno Rice!

This will help to develop EFI support.

Approved by: re (kib)
Verified by: benno
MFC after: 1 week


255321 06-Sep-2013 theraven

On platforms where clang is the default compiler, don't build gcc or libstdc++.
To enable them, set WITH_GCC and WITH_GNUCXX in src.conf.
Make clang default to using libc++ on FreeBSD 10.
Bumped __FreeBSD_version for the change.

GCC is still enabled on PC98, because the PC98 bootloader requires GCC to build
(or, at least, hard-codes the use of gcc into its build).

Thanks to everyone who helped make the ports tree ready for this (and bapt
for coordinating them all). Also to imp for reviewing this and working on the
forward-porting of the changes in our gcc so that we're getting to a much
better place with regard to external toolchains.

Sorry to all of the people who helped who I forgot to mention by name.

Reviewed by: bapt, imp, dim, ...


254582 20-Aug-2013 dim

Pull in r182983 from upstream clang trunk:

Fix handling of braced-init-list as reference initializer within
aggregate initialization. Previously we would incorrectly require an
extra set of braces around such initializers.

Pull in r188718 from upstream clang trunk:

Handle init lists and _Atomic fields.

Fixes PR16931.

These fixes are needed for the atomic_flag type to work correctly in our
stdatomic.h.

Requested by: theraven


254581 20-Aug-2013 dim

Pull in r188716 from upstream clang trunk:

PR16727: don't try to evaluate a potentially value-dependent
expression when checking for missing parens in &&/|| expressions.

This fixes an assertion encountered when building the lang/sdcc port.

Reported by: kwm


253802 30-Jul-2013 dim

Pull in r186696 from upstream clang trunk:

This patch implements __get_cpuid_max() as an inline and __cpuid()
and __cpuid_count() as macros to be compatible with GCC's cpuid.h.
It also adds bit_<foo> constants for the various feature bits as
described in version 039 (May 2011) of Intel's SDM Volume 2 in the
description of the CPUID instruction. The list of bit_<foo>
constants is a bit exhaustive (GCC doesn't do near this many). More
bits could be added from a newer version of SDM if desired.

Patch by John Baldwin!

This should fix several ports which depend on this functionality being
available.

MFC after: 1 week


252587 03-Jul-2013 dim

Pull in r185446 from clang trunk:

Fix to PR15826 - clang hits assert in clang::ASTContext::getASTRecordLayout.

Reported by: glebius


251790 15-Jun-2013 andrew

Pull in r183926 from LLVM trunk:

Allow clang to build __clear_cache on ARM.

__clear_cache is special. It needs no signature, but is a real function in
compiler_rt or libgcc.

Patch by Andrew Turner.

This allows us to build the __clear_cache function in compiler-rt.


251785 15-Jun-2013 ed

Pull in r184040 from upstream clang trunk:

Emit native implementations of atomic operations on FreeBSD/armv6.

Just like on Linux, FreeBSD/armv6 assumes the system supports
ldrex/strex unconditionally. It is also used by the kernel. We can
therefore enable support for it, like we do on Linux.

While there, change one of the unit tests to explicitly test against
armv5 instead of armv7, as it actually tests whether libcalls are
emitted.


251662 12-Jun-2013 dim

Upgrade our copy of llvm/clang to 3.3 release.

Release notes are still in the works, these will follow soon.

MFC after: 1 month


251216 01-Jun-2013 ed

Pull in r183033 and r183036 from LLVM trunk:

Add support for optimized (non-generic) atomic libcalls.

For integer types of sizes 1, 2, 4 and 8, libcompiler-rt (and libgcc)
provide atomic functions that pass parameters by value and return
results directly.

libgcc and libcompiler-rt only provide optimized libcalls for
__atomic_fetch_*, as generic libcalls on non-integer types would make
little sense. This means that we can finally make __atomic_fetch_*
work
on architectures for which we don't provide these operations as
builtins
(e.g. ARM).

This should fix the dreaded "cannot compile this atomic library call
yet" error that would pop up once every while.

This should make it possible for me to get C11 atomics working on all of
our platforms.


249423 12-Apr-2013 dim

Upgrade our copy of llvm/clang to trunk r178860, in preparation of the
upcoming 3.3 release (branching and freezing expected in a few weeks).

Preliminary release notes can be found at the usual location:
<http://llvm.org/docs/ReleaseNotes.html>

An MFC is planned once the actual 3.3 release is finished.


248548 20-Mar-2013 andrew

Pull in r177252 from upstream clang trunk:

Make sure to use same EABI version for external assembler as for
integrated as.

This allows us to use gcc on a world built with clang on ARM.


247166 22-Feb-2013 dim

Pull in r172354 from upstream clang trunk:

Refactor the x86 CPU name logic in the driver and pass -march and -mcpu
flag information down from the Clang driver into the Gold linker plugin
for LTO. This allows specifying -march on the linker commandline and
should hopefully have it pass all the way through to the LTO optimizer.

Fixes PR14697.

Pull in r175919 from upstream clang trunk:

Driver: Pass down the -march setting down to -cc1as on x86 too.

The assembler historically didn't make use of any target features, but this has
changed when support for old CPUs that don't support long nops was added.

This should fix the long nops that still occurred in crt*.o, and
possibly other object files, if the system was compiled for a CPU that
does not support those, such as Geode.

Note that gcc on i386 also does not pass through any -march, -mcpu or
-mtune setting to gas, but this has not caused any trouble yet, because
gas defaults to i386.

Reported by: lev
MFC after: 1 week


246259 02-Feb-2013 dim

Pull in r170135 from upstream clang trunk:

Dont use/link ARCMT, StaticAnalyzer and Rewriter to clang when the user
specifies not to. Dont build ASTMatchers with Rewriter disabled and
StaticAnalyzer when it's disabled.

Without all those three, the clang binary shrinks (x86_64) from ~36MB
to ~32MB (unstripped).

To disable these clang components, and get a smaller clang binary built
and installed, set WITHOUT_CLANG_FULL in src.conf(5). During the
initial stages of buildworld, those extra components are already
disabled automatically, to save some build time.

MFC after: 1 week


244640 23-Dec-2012 andrew

Pull in r170096 from upstream clang trunk:

Initial support for FreeBSD on ARM.


244628 23-Dec-2012 dim

Upgrade our copy of llvm/clang to 3.2 release.

Release notes for llvm:
http://llvm.org/releases/3.2/docs/ReleaseNotes.html

Release notes for clang:
http://llvm.org/releases/3.2/tools/clang/docs/ReleaseNotes.html

MFC after: 2 weeks


243830 03-Dec-2012 dim

Upgrade our copy of llvm/clang to r168974, from upstream's release_32
branch. This is effectively llvm/clang 3.2 RC2; the 3.2 release is
coming soon.


242080 25-Oct-2012 ed

Pull in r166498 from upstream clang trunk:

Add a new warning -Wmissing-variable-declarations, to warn about variables
defined without a previous declaration. This is similar to
-Wmissing-prototypes, but for variables instead of functions.


241163 03-Oct-2012 dim

Pull in r164717 from upstream clang trunk:

Allow -MF to be used in combination with -E -M or -E -MM.

This should help with building the lang/ghc port.

MFC after: 1 week


239619 23-Aug-2012 dim

Pull in r162360 from upstream clang trunk:

Merge existing attributes before processing pragmas in friend template
declarations.
Fixes pr13662.

This should help when building Firefox with libc++.


239462 20-Aug-2012 dim

Upgrade our copy of llvm/clang to trunk r162107. With thanks to
Benjamin Kramer and Joerg Sonnenberger for their input and fixes.


238864 28-Jul-2012 dim

Similar to what is already done for Linux, make clang not complain about
unused -g, -emit-llvm or -w arguments when doing linking. E.g. invoking
"clang -g foo.o -o foo" will now be silent.

Reported by: Jakub Lach <jakub_lach@mailplus.pl>
MFC after: 1 week


238863 28-Jul-2012 dim

Similar to r238472, let clang pass --enable-new-dtags to the linker
invocation by default. Also make sure --hash-style=both is passed for
the same arches as gcc, e.g. arm, sparc and x86.

X-MFC-with: r238472


238429 13-Jul-2012 dim

Pull in r159895 from upstream clang trunk:

When marking virtual functions as used for a class' vtable, mark all functions
which will appear in the vtable as used, not just those ones which were
declared within the class itself. Fixes an issue reported as comment#3 in
PR12763 -- we sometimes assert in codegen if we try to emit a reference to a
function declaration which we've not marked as referenced. This also matches
gcc's observed behavior.

This should fix clang assertions when building certain components of the
LibreOffice port.

MFC after: 3 days


236260 29-May-2012 dim

Pull in r156591 from upstream llvm trunk:

Allow unique_file to take a mode for file permissions, but default
to user only read/write.

and r156592 from upstream clang trunk:

For final output files create them with mode 0664 to match other
compilers and expected defaults.

This should fix clang creating files with mode 0600.

Reported by: James <james@hicag.org>
MFC after: 3 days


236258 29-May-2012 dim

For clang, similar to r236137, enable gnu hash generation for dynamic
ELF binaries on x86.


236149 27-May-2012 dim

Pull in r157212 from upstream clang trunk:

Revert r115805. An array type is required to have a range type,
however, the range can be unknown for the upper bound.

Testcase to follow.

Part of rdar://11457152

This should fix ctfconvert producing error messages during kernel
builds, similar to:

ERROR: scsi_all.c: die 24561: failed to retrieve array bounds

These were caused by incorrect debug information for flexible array
members of structs.

MFC after: 3 days


235864 23-May-2012 dim

Upgrade our copy of llvm/clang to 3.1 release. Release notes can be
found at: http://llvm.org/releases/3.1/docs/ReleaseNotes.html

MFC after: 3 days


234982 03-May-2012 dim

Upgrade our copy of llvm/clang to r155985, from upstream's release_31
branch. This brings us very close to the 3.1 release, which is planned
for May 14th.

MFC after: 2 weeks


234353 16-Apr-2012 dim

Upgrade our copy of llvm/clang to trunk r154661, in preparation of the
upcoming 3.1 release (expected in a few weeks). Preliminary release
notes can be found at: <http://llvm.org/docs/ReleaseNotes.html>

MFC after: 2 weeks


232894 12-Mar-2012 dim

Pull in r145194 from upstream clang trunk:

Make our handling of MMX x SSE closer to what gcc does:

* Enabling sse enables mmx.
* Disabling (-mno-mmx) mmx, doesn't disable sse (we got this right already).
* The order in not important. -msse -mno-mmx is the same as -mno-mmx -msse.

Some configure scripts depend on this.

PR: i386/165968
MFC after: 3 days


228379 09-Dec-2011 dim

Upgrade our copy of llvm/clang to 3.0 release. Release notes can be
found at: http://llvm.org/releases/3.0/docs/ReleaseNotes.html

MFC after: 1 week


227739 19-Nov-2011 andreast

Rename the linker emulation name for powerpc and powerc64. This is needed that
we can also use the upstream binutils linker where we have to have a unique
name for the FreeBSD emulation.


227737 19-Nov-2011 dim

Pull in r144505 from upstream clang trunk:

Fix the signature of the getcontext builtin, eliminating incorrect
warnings about its prototype.

This also adds a -W(no-)builtin-requires-header option, which can be
used to enable or disable warnings of this kind.

MFC after: 1 week


227735 19-Nov-2011 dim

Pull in r144110 from upstream clang trunk:

Mark the overloaded atomic builtins as having custom type checking,
which they do. This avoids all of the default argument promotions that
we (1) don't want, and (2) undo during that custom type checking, and
makes sure that we don't run into trouble during template
instantiation. Fixes llvm/clang PR11320.

MFC after: 1 week


226951 30-Oct-2011 dim

Pull in r143305 and r143312 from upstream clang trunk, so using "clang
-march=native" on AMD K10 family processors no longer errors out with
"unknown target CPU 'amdfam10'". This also enables use of SSE4A.

Reported by: David Marec <david.marec@davenulle.org>
MFC after: 3 days


226633 22-Oct-2011 dim

Upgrade our copy of llvm/clang to r142614, from upstream's release_30
branch. This brings us very close to the 3.0 release, which is expected
in a week or two.

MFC after: 1 week


226525 19-Oct-2011 dim

Fix breakage introduced by r226518.

Spotted by: tinderbox, yanefbsd at gmail.com
Pointy hat to: dim


226518 18-Oct-2011 dim

Fix the way clang retrieves the major FreeBSD release number from the
target triple, so that the __FreeBSD__ and __FreeBSD_cc_version builtin
macros return the expected results.

Spotted by: nalitoja at gmail.com


224145 17-Jul-2011 dim

Upgrade our copy of llvm/clang to r135360, from upstream's trunk.


223017 12-Jun-2011 dim

Upgrade our copy of llvm/clang to r132879, from upstream's trunk.


221345 02-May-2011 dim

Upgrade our copy of llvm/clang to r130700, from upstream's trunk.


220754 17-Apr-2011 dim

For clang, make -mno-mmx imply -mno-3dnow. This is what gcc does.

Submitted by: arundel
Obtained from: http://llvm.org/viewvc/llvm-project?view=rev&revision=129665


219077 27-Feb-2011 dim

Update llvm/clang to trunk r126547.

There are several bugfixes in this update, but the most important one is
to ensure __start_ and __stop_ symbols for linker sets and kernel module
metadata are always emitted in object files:

http://llvm.org/bugs/show_bug.cgi?id=9292

Before this fix, if you compiled kernel modules with clang, they would
not be properly processed by kldxref, and if they had any dependencies,
the kernel would fail to load those. Another problem occurred when
attempting to mount a tmpfs filesystem, which would result in 'operation
not supported by device'.


219073 26-Feb-2011 dim

Remove getDriver().Dir + /../libexec and /usr/libexec from clang's
program paths. Unlike gcc, clang has no executables in libexec.


219072 26-Feb-2011 dim

Remove misapplied space.


219011 24-Feb-2011 dim

Recently, in upstream clang, a fix was done to add -L/usr/lib to the
arguments passed to ld, when linking. This was to appease configure
scripts in several ports, that grep for such a -L option in "${CC} -v"
output, to determine the startup objects passed to ld. Note ld itself
does not need to be told about /usr/lib, since it has this path builtin
anyway.

However, if clang is built as a bootstrap tool during buildworld, it
should not use *anything* outside ${WORLDTMP} to include or link with.
The upstream fix to add -L/usr/lib breaks this assumption, and can thus
cause libraries from /usr/lib to be linked in during buildworld.

This can result in buildworld dying during linking of zinject, where it
picks up the wrong copy of libzpool.so, eventually leading to:

/usr/obj/usr/src/tmp/lib/libthr.so.3: undefined reference to `_rtld_get_stack_prot'

Fix this issue by not adding any hardcoded paths, but by looping through
the run-time library path list, which is already correctly set for the
bootstrap phase.

Reported by: datastream.freecity@gmail.com
Pointy hat to: dim


218893 20-Feb-2011 dim

Upgrade our copy of llvm/clang to r126079, from upstream's trunk.

This contains many improvements, primarily better C++ support, an
integrated assembler for x86 and support for -pg.


213786 13-Oct-2010 rdivacky

Actually, check for any kind of "C string type".

Approved by: rpaulo (mentor)


213777 13-Oct-2010 rdivacky

Extend this check for const unsigned char *.

Approved by: rpaulo (mentor)


213695 11-Oct-2010 dim

Remove more unneeded files and directories from contrib/llvm. This
still allows us to build tblgen and clang, and further reduces the
footprint in the tree.

Approved by: rpaulo (mentor)


213694 11-Oct-2010 rpaulo

Rework the analysis of the 'r' specifier. It turns out that we can't
make it like xArg because they are different ('x' doesn't accept sign,
but 'r' does).
This fixes some warnings when building DDB with clang.

With help from: rdivacky


213681 11-Oct-2010 rpaulo

Restore the support for the 'r' and the 'y' conversion specifiers, first
added on r208987.
These are undocumented but are part of printf(9).


213534 07-Oct-2010 dim

Upgrade Clang and LLVM to the 2.8 release. See here for release notes:
http://llvm.org/releases/2.8/docs/ReleaseNotes.html

Approved by: rpaulo (mentor)


213492 06-Oct-2010 dim

Apply r207674 from the clangbsd project branch:

Make "clang -print-multi-os-directory" return "." on amd64, matching
gcc's behaviour. This is needed because some ports use the option to
determine the installation directory for their libraries.

Requested by: kwm
Approved by: rpaulo (mentor)


212904 20-Sep-2010 dim

Upgrade our Clang in base to r114020, from upstream's release_28 branch.

Approved-by: rpaulo (mentor)


211573 21-Aug-2010 rpaulo

Modify clang so that when TOOLS_PREFIX is defined we register the
CLANG_PREFIX macro. This changes the default header search path when we
are building clang as part of cross-tools.

Submitted by: Dimitry Andric <dimitry at andric.com>
Reviewed by: freebsd-current


210299 20-Jul-2010 ed

Upgrade our Clang in base to r108428.

This commit merges the latest LLVM sources from the vendor space. It
also updates the build glue to match the new sources. Clang's version
number is changed to match LLVM's, which means /usr/include/clang/2.0
has been renamed to /usr/include/clang/2.8.

Obtained from: projects/clangbsd


209107 12-Jun-2010 ed

Do the branding right this time.

I've looked at other places in the source tree where CLANG_VENDOR is
used and I suspect it might not be safe to use newlines here.
CLANG_VENDOR should just be defined to "FreeBSD ", just like the latest
Clang preview in OS X uses "Apple ". Properly use SVN_REVISION to define
it to the imported revision of Clang. I do want to have a date in there,
so slightly modify the code to support CLANG_VENDOR_SUFFIX.


208987 10-Jun-2010 rdivacky

Introduce -fformat-extensions. A local FreeBSD extension used
for additional printf modifiers in kernel.

Approved by: ed (mentor)


208962 09-Jun-2010 rdivacky

Remove the commented out piece that slipped as a mismerge.

Approved by: ed (mentor)


208961 09-Jun-2010 rdivacky

Adjust include paths to FreeBSD. Remove /usr/local/include and
add /usr/include/clang/$VERSION (currently VERSION is 2.0).

Approved by: ed (mentor)


208959 09-Jun-2010 rdivacky

Change the default CPU to i486 on i386 (architecture).

Approved by: ed (mentor)


208954 09-Jun-2010 rdivacky

Import LLVM/clang from vendor stripped of docs/ test/ website/ www/ examples/
in llvm/ and/or llvm/contrib/clang/ respectively.

Approved by: ed (mentor)
Approved by: core


208600 27-May-2010 rdivacky

Update clang to r104832.


207632 04-May-2010 rdivacky

Update clang to r103052.


207619 04-May-2010 rdivacky

Update clang to r103004.


206275 06-Apr-2010 rdivacky

Update clang to r100520.


206125 03-Apr-2010 rdivacky

Update clang to r100285.


206084 02-Apr-2010 rdivacky

Update clang to r100181.


205408 21-Mar-2010 rdivacky

Update clang to r99115.


205219 16-Mar-2010 rdivacky

Update clang to r98631.


204962 10-Mar-2010 rdivacky

Update clang to r98164.


204793 06-Mar-2010 rdivacky

Update clang to r97873.


204643 03-Mar-2010 rdivacky

Update clang to 97654.


203955 16-Feb-2010 rdivacky

Update clang to r96341.


202879 23-Jan-2010 rdivacky

Update clang to r94309.


202379 15-Jan-2010 rdivacky

Update clang to r93512.


201361 01-Jan-2010 rdivacky

Updaet clang to 92395.


200583 15-Dec-2009 rdivacky

Update clang to 91430.


199990 01-Dec-2009 rdivacky

Update clang to r90226.


199512 19-Nov-2009 rdivacky

Update clang to r89337.


199482 18-Nov-2009 rdivacky

Update clang to r89205.


198954 05-Nov-2009 rdivacky

Update clang to r86140.


198893 04-Nov-2009 rdivacky

Update clang to r86025.


198398 23-Oct-2009 rdivacky

Update clang to r84949.


198143 15-Oct-2009 rdivacky

Delete some more files.


198112 15-Oct-2009 rdivacky

Update clang to 84175.


198092 14-Oct-2009 rdivacky

Update clang to r84119.


195341 04-Jul-2009 ed

Import Clang r74788.


195099 27-Jun-2009 ed

Import Clang r74383.


194755 23-Jun-2009 ed

Import Clang r73984.


194711 23-Jun-2009 ed

Import Clang r73954.


194613 22-Jun-2009 ed

Update Clang sources to r73879.


194179 14-Jun-2009 ed

Import Clang r73340.


193725 08-Jun-2009 ed

Import Clang r73070.


193631 07-Jun-2009 ed

Import Clang r73021.


193576 06-Jun-2009 ed

Import clang, at r72995.


193401 03-Jun-2009 ed

Import Clang, at r72805.


193380 03-Jun-2009 ed

Import Clang, at r72770.


193326 02-Jun-2009 ed

Import Clang, at r72732.