History log of /freebsd-10-stable/contrib/llvm/include/
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
286033 29-Jul-2015 dim

Reapply r286007, modified to compile with pre-C++11 compilers:

Pull in r219009 from upstream llvm trunk (by Adam Nemet):

[ISel] Keep matching state consistent when folding during X86 address match

In the X86 backend, matching an address is initiated by the 'addr' complex
pattern and its friends. During this process we may reassociate and-of-shift
into shift-of-and (FoldMaskedShiftToScaledMask) to allow folding of the
shift into the scale of the address.

However as demonstrated by the testcase, this can trigger CSE of not only the
shift and the AND which the code is prepared for but also the underlying load
node. In the testcase this node is sitting in the RecordedNode and MatchScope
data structures of the matcher and becomes a deleted node upon CSE. Returning
from the complex pattern function, we try to access it again hitting an assert
because the node is no longer a load even though this was checked before.

Now obviously changing the DAG this late is bending the rules but I think it
makes sense somewhat. Outside of addresses we prefer and-of-shift because it
may lead to smaller immediates (FoldMaskAndShiftToScale is an even better
example because it create a non-canonical node). We currently don't recognize
addresses during DAGCombiner where arguably this canonicalization should be
performed. On the other hand, having this in the matcher allows us to cover
all the cases where an address can be used in an instruction.

I've also talked a little bit to Dan Gohman on llvm-dev who added the RAUW for
the new shift node in FoldMaskedShiftToScaledMask. This RAUW is responsible
for initiating the recursive CSE on users
(http://lists.cs.uiuc.edu/pipermail/llvmdev/2014-September/076903.html) but it
is not strictly necessary since the shift is hooked into the visited user. Of
course it's safer to keep the DAG consistent at all times (e.g. for accurate
number of uses, etc.).

So rather than changing the fundamentals, I've decided to continue along the
previous patches and detect the CSE. This patch installs a very targeted
DAGUpdateListener for the duration of a complex-pattern match and updates the
matching state accordingly. (Previous patches used HandleSDNode to detect the
CSE but that's not practical here). The listener is only installed on X86.

I tested that there is no measurable overhead due to this while running
through the spec2k BC files with llc. The only thing we pay for is the
creation of the listener. The callback never ever triggers in spec2k since
this is a corner case.

Fixes rdar://problem/18206171

This fixes a possible crash in x86 code generation when compiling recent
llvm/clang trunk sources.

Direct commit to stable/10, since head already has llvm/clang 3.6.1,
which includes this fix.

Reported by: jonathan, theraven
Upstream PR: https://llvm.org/bugs/show_bug.cgi?id=24249

286012 29-Jul-2015 dim

Revert r286007-r286009 for now, until I can figure out how to make the
fix compile with older gcc and libstdc++.

286007 29-Jul-2015 dim

Pull in r219009 from upstream llvm trunk (by Adam Nemet):

[ISel] Keep matching state consistent when folding during X86 address match

In the X86 backend, matching an address is initiated by the 'addr' complex
pattern and its friends. During this process we may reassociate and-of-shift
into shift-of-and (FoldMaskedShiftToScaledMask) to allow folding of the
shift into the scale of the address.

However as demonstrated by the testcase, this can trigger CSE of not only the
shift and the AND which the code is prepared for but also the underlying load
node. In the testcase this node is sitting in the RecordedNode and MatchScope
data structures of the matcher and becomes a deleted node upon CSE. Returning
from the complex pattern function, we try to access it again hitting an assert
because the node is no longer a load even though this was checked before.

Now obviously changing the DAG this late is bending the rules but I think it
makes sense somewhat. Outside of addresses we prefer and-of-shift because it
may lead to smaller immediates (FoldMaskAndShiftToScale is an even better
example because it create a non-canonical node). We currently don't recognize
addresses during DAGCombiner where arguably this canonicalization should be
performed. On the other hand, having this in the matcher allows us to cover
all the cases where an address can be used in an instruction.

I've also talked a little bit to Dan Gohman on llvm-dev who added the RAUW for
the new shift node in FoldMaskedShiftToScaledMask. This RAUW is responsible
for initiating the recursive CSE on users
(http://lists.cs.uiuc.edu/pipermail/llvmdev/2014-September/076903.html) but it
is not strictly necessary since the shift is hooked into the visited user. Of
course it's safer to keep the DAG consistent at all times (e.g. for accurate
number of uses, etc.).

So rather than changing the fundamentals, I've decided to continue along the
previous patches and detect the CSE. This patch installs a very targeted
DAGUpdateListener for the duration of a complex-pattern match and updates the
matching state accordingly. (Previous patches used HandleSDNode to detect the
CSE but that's not practical here). The listener is only installed on X86.

I tested that there is no measurable overhead due to this while running
through the spec2k BC files with llc. The only thing we pay for is the
creation of the listener. The callback never ever triggers in spec2k since
this is a corner case.

Fixes rdar://problem/18206171

This fixes a possible crash in x86 code generation when compiling recent
llvm/clang trunk sources.

Direct commit to stable/10, since head already has llvm/clang 3.6.1,
which includes this fix.

Reported by: jonathan, theraven
Upstream PR: https://llvm.org/bugs/show_bug.cgi?id=24249

274696 19-Nov-2014 dim

MFC r274442:

Pull in r221709 from upstream llvm trunk (by Frédéric Riss):

Totally forget deallocated SDNodes in SDDbgInfo.

What would happen before that commit is that the SDDbgValues associated with
a deallocated SDNode would be marked Invalidated, but SDDbgInfo would keep
a map entry keyed by the SDNode pointer pointing to this list of invalidated
SDDbgNodes. As the memory gets reused, the list might get wrongly associated
with another new SDNode. As the SDDbgValues are cloned when they are transfered,
this can lead to an exponential number of SDDbgValues being produced during
DAGCombine like in http://llvm.org/bugs/show_bug.cgi?id=20893

Note that the previous behavior wasn't really buggy as the invalidation made
sure that the SDDbgValues won't be used. This commit can be considered a
memory optimization and as such is really hard to validate in a unit-test.

This should fix abnormally large memory usage and resulting OOM crashes
when compiling certain ports with debug information.

Reported by: Dmitry Marakasov <amdmi3@amdmi3.ru>
Upstream PRs: http://llvm.org/PR19031 http://llvm.org/PR20893

MFC r274483:

The fix imported into llvm in r274442 contains some C++11 constructs,
which gcc in base cannot handle. Replace these with C++98 equivalents.

While here, add the patch for the adapted fix.

Reported by: bz, kib
Pointy hat to: dim

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

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
llvm/IR/IntrinsicsX86.td
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
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/ASTDumper.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/ExprConstant.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/StmtPrinter.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Analysis/Consumed.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Basic/Targets.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Basic/Version.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Driver/Driver.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Driver/ToolChain.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Driver/Tools.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/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
263765 26-Mar-2014 dim

MFC r263312:

Pull in r196939 from upstream llvm trunk (by Reid Kleckner):

Reland "Fix miscompile of MS inline assembly with stack realignment"

This re-lands commit r196876, which was reverted in r196879.

The tests have been fixed to pass on platforms with a stack alignment
larger than 4.

Update to clang side tests will land shortly.

Pull in r196986 from upstream llvm trunk (by Reid Kleckner):

Revert the backend fatal error from r196939

The combination of inline asm, stack realignment, and dynamic allocas
turns out to be too common to reject out of hand.

ASan inserts empy inline asm fragments and uses aligned allocas.
Compiling any trivial function containing a dynamic alloca with ASan is
enough to trigger the check.

XFAIL the test cases that would be miscompiled and add one that uses the
relevant functionality.

Pull in r202930 from upstream llvm trunk (by Hans Wennborg):

Check for dynamic allocas and inline asm that clobbers sp before building
selection dag (PR19012)

In X86SelectionDagInfo::EmitTargetCodeForMemcpy we check with MachineFrameInfo
to make sure that ESI isn't used as a base pointer register before we choose to
emit rep movs (which clobbers esi).

The problem is that MachineFrameInfo wouldn't know about dynamic allocas or
inline asm that clobbers the stack pointer until SelectionDAGBuilder has
encountered them.

This patch fixes the problem by checking for such things when building the
FunctionLoweringInfo.

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

Together, these commits fix the problem encountered in the devel/emacs
port on the i386 architecture, where a combination of stack realignment,
alloca() and memcpy() could incidentally clobber the %esi register,
leading to segfaults in the temacs build-time utility.

See also: http://llvm.org/PR18171 and http://llvm.org/PR19012

Reported by: ashish
PR: ports/183064

MFC r263313:

Pull in r203311 from upstream llvm trunk (by Arnold Schwaighofer):

ISel: Make VSELECT selection terminate in cases where the condition type has to
be split and the result type widened.

When the condition of a vselect has to be split it makes no sense widening the
vselect and thereby widening the condition. We end up in an endless loop of
widening (vselect result type) and splitting (condition mask type) doing this.
Instead, split both the condition and the vselect and widen the result.

I ran this over the test suite with i686 and mattr=+sse and saw no regressions.

Fixes PR18036.

With this fix the original problem case from the graphics/rawtherapee
port (posted in http://llvm.org/PR18036 ) now compiles within ~97MB RSS.

Reported by: mandree

MFC r263320:

Add separate patch files for all the customizations we have currently
applied to our copy of llvm/clang. These can be applied in alphabetical
order to a pristine llvm/clang 3.4 release source tree, to result in the
same version used in FreeBSD.

This is intended to clearly document all the changes until now, which
mostly consist of cherry pickings from the respective upstream trunks,
plus a number of hand-written FreeBSD-specific ones. Hopefully those
can eventually be cleaned up and sent upstream too.

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
llvm/MC/MCAsmInfo.h
llvm/Object/ELFObjectFile.h
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
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Basic/Targets.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/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
llvm-c/BitReader.h
llvm-c/BitWriter.h
llvm-c/Core.h
llvm-c/Disassembler.h
llvm-c/ExecutionEngine.h
llvm-c/IRReader.h
llvm-c/LinkTimeOptimizer.h
llvm-c/Object.h
llvm-c/Support.h
llvm-c/Target.h
llvm-c/TargetMachine.h
llvm-c/Transforms/Scalar.h
llvm-c/lto.h
llvm/ADT/APFloat.h
llvm/ADT/APInt.h
llvm/ADT/APSInt.h
llvm/ADT/ArrayRef.h
llvm/ADT/BitVector.h
llvm/ADT/DenseMap.h
llvm/ADT/FoldingSet.h
llvm/ADT/ImmutableMap.h
llvm/ADT/ImmutableSet.h
llvm/ADT/IntervalMap.h
llvm/ADT/NullablePtr.h
llvm/ADT/OwningPtr.h
llvm/ADT/PointerIntPair.h
llvm/ADT/PointerUnion.h
llvm/ADT/STLExtras.h
llvm/ADT/SetVector.h
llvm/ADT/SmallBitVector.h
llvm/ADT/SmallPtrSet.h
llvm/ADT/SmallVector.h
llvm/ADT/SparseBitVector.h
llvm/ADT/StringExtras.h
llvm/ADT/StringMap.h
llvm/ADT/StringRef.h
llvm/ADT/Triple.h
llvm/ADT/ilist.h
llvm/ADT/polymorphic_ptr.h
llvm/Analysis/AliasAnalysis.h
llvm/Analysis/BlockFrequencyImpl.h
llvm/Analysis/BlockFrequencyInfo.h
llvm/Analysis/BranchProbabilityInfo.h
llvm/Analysis/CFG.h
llvm/Analysis/CFGPrinter.h
llvm/Analysis/CallGraph.h
llvm/Analysis/ConstantFolding.h
llvm/Analysis/DependenceAnalysis.h
llvm/Analysis/Dominators.h
llvm/Analysis/InlineCost.h
llvm/Analysis/InstructionSimplify.h
llvm/Analysis/LoopInfo.h
llvm/Analysis/LoopInfoImpl.h
llvm/Analysis/LoopPass.h
llvm/Analysis/MemoryBuiltins.h
llvm/Analysis/Passes.h
llvm/Analysis/PathNumbering.h
llvm/Analysis/PathProfileInfo.h
llvm/Analysis/PostDominators.h
llvm/Analysis/ProfileDataLoader.h
llvm/Analysis/ProfileDataTypes.h
llvm/Analysis/ProfileInfo.h
llvm/Analysis/ProfileInfoLoader.h
llvm/Analysis/ProfileInfoTypes.h
llvm/Analysis/RegionPass.h
llvm/Analysis/ScalarEvolution.h
llvm/Analysis/ScalarEvolutionExpander.h
llvm/Analysis/ScalarEvolutionExpressions.h
llvm/Analysis/TargetTransformInfo.h
llvm/Analysis/ValueTracking.h
llvm/AutoUpgrade.h
llvm/Bitcode/Archive.h
llvm/Bitcode/BitstreamReader.h
llvm/Bitcode/BitstreamWriter.h
llvm/Bitcode/LLVMBitCodes.h
llvm/CodeGen/Analysis.h
llvm/CodeGen/AsmPrinter.h
llvm/CodeGen/CalcSpillWeights.h
llvm/CodeGen/CallingConvLower.h
llvm/CodeGen/CommandFlags.h
llvm/CodeGen/FastISel.h
llvm/CodeGen/FunctionLoweringInfo.h
llvm/CodeGen/ISDOpcodes.h
llvm/CodeGen/LexicalScopes.h
llvm/CodeGen/LiveInterval.h
llvm/CodeGen/LiveIntervalAnalysis.h
llvm/CodeGen/LiveIntervalUnion.h
llvm/CodeGen/LiveRangeEdit.h
llvm/CodeGen/LiveRegUnits.h
llvm/CodeGen/LiveVariables.h
llvm/CodeGen/MachineBasicBlock.h
llvm/CodeGen/MachineBranchProbabilityInfo.h
llvm/CodeGen/MachineConstantPool.h
llvm/CodeGen/MachineFrameInfo.h
llvm/CodeGen/MachineInstr.h
llvm/CodeGen/MachineInstrBuilder.h
llvm/CodeGen/MachineModuleInfo.h
llvm/CodeGen/MachineOperand.h
llvm/CodeGen/MachineRegisterInfo.h
llvm/CodeGen/MachineRelocation.h
llvm/CodeGen/MachineScheduler.h
llvm/CodeGen/PBQP/Graph.h
llvm/CodeGen/PBQP/HeuristicBase.h
llvm/CodeGen/PBQP/HeuristicSolver.h
llvm/CodeGen/PBQP/Heuristics/Briggs.h
llvm/CodeGen/PBQP/Solution.h
llvm/CodeGen/Passes.h
llvm/CodeGen/PseudoSourceValue.h
llvm/CodeGen/RegAllocPBQP.h
llvm/CodeGen/RegisterClassInfo.h
llvm/CodeGen/RegisterPressure.h
llvm/CodeGen/RegisterScavenging.h
llvm/CodeGen/RuntimeLibcalls.h
llvm/CodeGen/ScheduleDAG.h
llvm/CodeGen/ScheduleDAGInstrs.h
llvm/CodeGen/SelectionDAG.h
llvm/CodeGen/SelectionDAGISel.h
llvm/CodeGen/SelectionDAGNodes.h
llvm/CodeGen/SlotIndexes.h
llvm/CodeGen/StackMaps.h
llvm/CodeGen/StackProtector.h
llvm/CodeGen/TargetSchedule.h
llvm/CodeGen/ValueTypes.h
llvm/CodeGen/ValueTypes.td
llvm/DIBuilder.h
llvm/DebugInfo.h
llvm/DebugInfo/DIContext.h
llvm/DebugInfo/DWARFFormValue.h
llvm/ExecutionEngine/ExecutionEngine.h
llvm/ExecutionEngine/JITMemoryManager.h
llvm/ExecutionEngine/ObjectBuffer.h
llvm/ExecutionEngine/ObjectCache.h
llvm/ExecutionEngine/ObjectImage.h
llvm/ExecutionEngine/RTDyldMemoryManager.h
llvm/ExecutionEngine/RuntimeDyld.h
llvm/ExecutionEngine/SectionMemoryManager.h
llvm/GVMaterializer.h
llvm/IR/Argument.h
llvm/IR/Attributes.h
llvm/IR/CallingConv.h
llvm/IR/Constants.h
llvm/IR/DataLayout.h
llvm/IR/Function.h
llvm/IR/GlobalAlias.h
llvm/IR/GlobalValue.h
llvm/IR/GlobalVariable.h
llvm/IR/IRBuilder.h
llvm/IR/InlineAsm.h
llvm/IR/InstrTypes.h
llvm/IR/Instruction.def
llvm/IR/Instructions.h
llvm/IR/Intrinsics.h
llvm/IR/Intrinsics.td
llvm/IR/IntrinsicsAArch64.td
llvm/IR/IntrinsicsARM.td
llvm/IR/IntrinsicsMips.td
llvm/IR/IntrinsicsNVVM.td
llvm/IR/IntrinsicsPowerPC.td
llvm/IR/IntrinsicsX86.td
llvm/IR/IntrinsicsXCore.td
llvm/IR/LLVMContext.h
llvm/IR/LegacyPassManager.h
llvm/IR/LegacyPassManagers.h
llvm/IR/Metadata.h
llvm/IR/Module.h
llvm/IR/Operator.h
llvm/IR/PassManager.h
llvm/IR/Type.h
llvm/IR/TypeBuilder.h
llvm/IR/Use.h
llvm/IR/Value.h
llvm/InitializePasses.h
llvm/InstVisitor.h
llvm/LTO
llvm/LinkAllPasses.h
llvm/Linker.h
llvm/MC/MCAsmBackend.h
llvm/MC/MCAsmInfo.h
llvm/MC/MCAsmInfoELF.h
llvm/MC/MCAssembler.h
llvm/MC/MCAtom.h
llvm/MC/MCCodeGenInfo.h
llvm/MC/MCContext.h
llvm/MC/MCDisassembler.h
llvm/MC/MCDwarf.h
llvm/MC/MCELFObjectWriter.h
llvm/MC/MCELFStreamer.h
llvm/MC/MCELFSymbolFlags.h
llvm/MC/MCExpr.h
llvm/MC/MCExternalSymbolizer.h
llvm/MC/MCFunction.h
llvm/MC/MCInstPrinter.h
llvm/MC/MCInstrAnalysis.h
llvm/MC/MCInstrDesc.h
llvm/MC/MCInstrItineraries.h
llvm/MC/MCMachOSymbolFlags.h
llvm/MC/MCMachObjectWriter.h
llvm/MC/MCModule.h
llvm/MC/MCModuleYAML.h
llvm/MC/MCObjectDisassembler.h
llvm/MC/MCObjectFileInfo.h
llvm/MC/MCObjectStreamer.h
llvm/MC/MCObjectSymbolizer.h
llvm/MC/MCParser/AsmLexer.h
llvm/MC/MCParser/MCAsmParser.h
llvm/MC/MCRegisterInfo.h
llvm/MC/MCRelocationInfo.h
llvm/MC/MCSchedule.h
llvm/MC/MCSectionCOFF.h
llvm/MC/MCSectionMachO.h
llvm/MC/MCStreamer.h
llvm/MC/MCSubtargetInfo.h
llvm/MC/MCSymbolizer.h
llvm/MC/MCTargetAsmParser.h
llvm/MC/MCWinCOFFObjectWriter.h
llvm/MC/MachineLocation.h
llvm/MC/SubtargetFeature.h
llvm/Object/Archive.h
llvm/Object/Binary.h
llvm/Object/COFF.h
llvm/Object/COFFYAML.h
llvm/Object/ELF.h
llvm/Object/ELFObjectFile.h
llvm/Object/ELFTypes.h
llvm/Object/ELFYAML.h
llvm/Object/Error.h
llvm/Object/MachO.h
llvm/Object/MachOFormat.h
llvm/Object/MachOUniversal.h
llvm/Object/ObjectFile.h
llvm/Object/RelocVisitor.h
llvm/Object/YAML.h
llvm/Option/ArgList.h
llvm/Option/OptParser.td
llvm/Option/OptTable.h
llvm/Option/Option.h
llvm/PassManager.h
llvm/PassManagers.h
llvm/Support/Allocator.h
llvm/Support/BlockFrequency.h
llvm/Support/CFG.h
llvm/Support/COFF.h
llvm/Support/CallSite.h
llvm/Support/Casting.h
llvm/Support/CommandLine.h
llvm/Support/Compiler.h
llvm/Support/Compression.h
llvm/Support/ConstantRange.h
llvm/Support/ConvertUTF.h
llvm/Support/DataTypes.h.in
llvm/Support/Debug.h
llvm/Support/DebugLoc.h
llvm/Support/Dwarf.h
llvm/Support/ELF.h
llvm/Support/ErrorOr.h
llvm/Support/FileSystem.h
llvm/Support/FileUtilities.h
llvm/Support/FormattedStream.h
llvm/Support/GCOV.h
llvm/Support/GetElementPtrTypeIterator.h
llvm/Support/GraphWriter.h
llvm/Support/Host.h
llvm/Support/IntegersSubset.h
llvm/Support/IntegersSubsetMapping.h
llvm/Support/LEB128.h
llvm/Support/MD5.h
llvm/Support/MachO.h
llvm/Support/ManagedStatic.h
llvm/Support/MathExtras.h
llvm/Support/MemoryBuffer.h
llvm/Support/MemoryObject.h
llvm/Support/PassNameParser.h
llvm/Support/Path.h
llvm/Support/PathV1.h
llvm/Support/PathV2.h
llvm/Support/PatternMatch.h
llvm/Support/PrettyStackTrace.h
llvm/Support/Process.h
llvm/Support/Program.h
llvm/Support/RecyclingAllocator.h
llvm/Support/Regex.h
llvm/Support/Registry.h
llvm/Support/Signals.h
llvm/Support/Solaris.h
llvm/Support/SourceMgr.h
llvm/Support/StreamableMemoryObject.h
llvm/Support/StringRefMemoryObject.h
llvm/Support/SystemUtils.h
llvm/Support/TargetRegistry.h
llvm/Support/TimeValue.h
llvm/Support/ToolOutputFile.h
llvm/Support/Unicode.h
llvm/Support/UnicodeCharRanges.h
llvm/Support/Valgrind.h
llvm/Support/ValueHandle.h
llvm/Support/YAMLParser.h
llvm/Support/YAMLTraits.h
llvm/Support/raw_ostream.h
llvm/TableGen/Record.h
llvm/TableGen/StringToOffsetTable.h
llvm/TableGen/TableGenBackend.h
llvm/Target/CostTable.h
llvm/Target/Mangler.h
llvm/Target/Target.td
llvm/Target/TargetCallingConv.h
llvm/Target/TargetCallingConv.td
llvm/Target/TargetFrameLowering.h
llvm/Target/TargetInstrInfo.h
llvm/Target/TargetLibraryInfo.h
llvm/Target/TargetLowering.h
llvm/Target/TargetLoweringObjectFile.h
llvm/Target/TargetMachine.h
llvm/Target/TargetOpcodes.h
llvm/Target/TargetOptions.h
llvm/Target/TargetRegisterInfo.h
llvm/Target/TargetSchedule.td
llvm/Target/TargetSelectionDAG.td
llvm/Target/TargetSelectionDAGInfo.h
llvm/Target/TargetSubtargetInfo.h
llvm/Transforms/IPO.h
llvm/Transforms/IPO/PassManagerBuilder.h
llvm/Transforms/Instrumentation.h
llvm/Transforms/Scalar.h
llvm/Transforms/Utils/BasicBlockUtils.h
llvm/Transforms/Utils/BlackList.h
llvm/Transforms/Utils/Cloning.h
llvm/Transforms/Utils/GlobalStatus.h
llvm/Transforms/Utils/Local.h
llvm/Transforms/Utils/LoopUtils.h
llvm/Transforms/Utils/ModuleUtils.h
llvm/Transforms/Utils/PromoteMemToReg.h
llvm/Transforms/Utils/SSAUpdater.h
llvm/Transforms/Utils/SpecialCaseList.h
llvm/Transforms/Utils/UnifyFunctionExitNodes.h
llvm/Transforms/Utils/ValueMapper.h
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
/freebsd-10-stable/contrib/llvm/tools/clang/lib/ARCMigrate/ARCMT.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/ARCMigrate/FileRemapper.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/ARCMigrate/ObjCMT.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/ARCMigrate/TransUnbridgedCasts.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/ARCMigrate/Transforms.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/ARCMigrate/Transforms.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/APValue.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/ASTContext.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/ASTDiagnostic.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/ASTDumper.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/ASTImporter.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/ASTTypeTraits.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/AttrImpl.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/CXXABI.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/CXXInheritance.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/Comment.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/CommentCommandTraits.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/CommentLexer.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/CommentParser.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/CommentSema.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/Decl.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/DeclBase.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/DeclCXX.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/DeclFriend.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/DeclObjC.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/DeclOpenMP.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/DeclPrinter.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/DeclTemplate.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/DeclarationName.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/DumpXML.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/Expr.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/ExprCXX.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/ExprClassification.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/ExprConstant.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/InheritViz.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/ItaniumCXXABI.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/ItaniumMangle.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/LambdaMangleContext.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/Mangle.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/MangleNumberingContext.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/MicrosoftCXXABI.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/MicrosoftMangle.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/NestedNameSpecifier.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/ParentMap.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/RawCommentList.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/RecordLayout.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/RecordLayoutBuilder.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/Stmt.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/StmtIterator.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/StmtPrinter.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/StmtProfile.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/TemplateBase.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/Type.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/TypeLoc.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/TypePrinter.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/VTableBuilder.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/ASTMatchers/ASTMatchFinder.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/ASTMatchers/ASTMatchersInternal.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Analysis/AnalysisDeclContext.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Analysis/CFG.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Analysis/CFGReachabilityAnalysis.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Analysis/Consumed.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Analysis/FormatString.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Analysis/LiveVariables.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Analysis/PrintfFormatString.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Analysis/ReachableCode.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Analysis/ScanfFormatString.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Analysis/ThreadSafety.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Analysis/UninitializedValues.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Basic/Builtins.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Basic/DiagnosticIDs.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Basic/FileManager.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Basic/FileSystemStatCache.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Basic/IdentifierTable.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Basic/Module.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Basic/ObjCRuntime.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Basic/OpenMPKinds.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Basic/OperatorPrecedence.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Basic/SourceManager.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Basic/TargetInfo.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Basic/Targets.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Basic/Version.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/ABIInfo.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/BackendUtil.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CGAtomic.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CGBlocks.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CGBuiltin.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCUDARuntime.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCXX.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCall.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCall.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CGClass.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCleanup.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CGCleanup.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CGDecl.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CGDeclCXX.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CGException.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CGExpr.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CGExprAgg.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CGExprCXX.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CGExprComplex.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CGExprConstant.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CGExprScalar.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CGObjC.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CGObjCGNU.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CGObjCMac.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CGRTTI.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CGRecordLayoutBuilder.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CGStmt.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CGVTT.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CGVTables.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CGVTables.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CGValue.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenABITypes.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenAction.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/EHScopeStack.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/ItaniumCXXABI.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/MicrosoftCXXABI.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/MicrosoftVBTables.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/MicrosoftVBTables.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/ModuleBuilder.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Driver/Action.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Driver/Arg.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Driver/ArgList.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Driver/CC1AsOptions.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Driver/Compilation.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Driver/Driver.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Driver/DriverOptions.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Driver/InputInfo.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Driver/Job.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Driver/OptTable.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Driver/Option.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Driver/SanitizerArgs.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Driver/SanitizerArgs.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Driver/ToolChain.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Driver/ToolChains.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Driver/Tools.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Driver/Tools.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Driver/Types.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Driver/WindowsToolChain.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Edit/Commit.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Format/BreakableToken.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Format/BreakableToken.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Format/ContinuationIndenter.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Format/ContinuationIndenter.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Format/Encoding.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Format/Format.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Format/FormatToken.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Format/FormatToken.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Format/TokenAnnotator.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Format/TokenAnnotator.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Format/UnwrappedLineParser.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Format/UnwrappedLineParser.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Format/WhitespaceManager.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Format/WhitespaceManager.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Frontend/ASTConsumers.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Frontend/ASTUnit.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Frontend/CacheTokens.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Frontend/ChainedIncludesSource.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Frontend/CompilerInstance.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Frontend/CompilerInvocation.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Frontend/CreateInvocationFromCommandLine.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Frontend/DependencyFile.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Frontend/FrontendAction.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Frontend/FrontendActions.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Frontend/FrontendOptions.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Frontend/HeaderIncludeGen.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Frontend/InitHeaderSearch.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Frontend/InitPreprocessor.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Frontend/MultiplexConsumer.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Frontend/PrintPreprocessedOutput.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Frontend/TextDiagnostic.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Frontend/TextDiagnosticPrinter.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Frontend/VerifyDiagnosticConsumer.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Headers/Intrin.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Headers/avx2intrin.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Headers/avxintrin.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Headers/emmintrin.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Headers/f16cintrin.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Headers/immintrin.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Headers/limits.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Headers/module.map
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Headers/prfchwintrin.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Headers/rdseedintrin.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Headers/rtmintrin.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Headers/shaintrin.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Headers/smmintrin.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Headers/tbmintrin.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Headers/tgmath.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Headers/unwind.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Headers/x86intrin.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Headers/xmmintrin.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Headers/xopintrin.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Index
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Lex/HeaderMap.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Lex/HeaderSearch.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Lex/Lexer.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Lex/LiteralSupport.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Lex/ModuleMap.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Lex/PPConditionalDirectiveRecord.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Lex/PPDirectives.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Lex/PPExpressions.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Lex/PPLexerChange.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Lex/PPMacroExpansion.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Lex/PTHLexer.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Lex/Pragma.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Lex/PreprocessingRecord.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Lex/Preprocessor.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Lex/PreprocessorLexer.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Lex/TokenLexer.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Lex/UnicodeCharSets.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Parse/ParseAST.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Parse/ParseCXXInlineMethods.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Parse/ParseDecl.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Parse/ParseDeclCXX.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Parse/ParseExpr.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Parse/ParseExprCXX.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Parse/ParseInit.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Parse/ParseObjc.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Parse/ParseOpenMP.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Parse/ParsePragma.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Parse/ParsePragma.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Parse/ParseStmt.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Parse/ParseTemplate.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Parse/ParseTentative.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Parse/Parser.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Parse/RAIIObjectsForParser.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Rewrite/Core/HTMLRewrite.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Rewrite/Core/Rewriter.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Rewrite/Frontend/FixItRewriter.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Rewrite/Frontend/FrontendActions.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Rewrite/Frontend/InclusionRewriter.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Rewrite/Frontend/RewriteMacros.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Rewrite/Frontend/RewriteModernObjC.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Rewrite/Frontend/RewriteObjC.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/AnalysisBasedWarnings.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/AttributeList.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/DeclSpec.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/IdentifierResolver.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/JumpDiagnostics.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/MultiplexExternalSemaSource.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/ScopeInfo.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/Sema.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/SemaAccess.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/SemaAttr.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/SemaCXXScopeSpec.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/SemaCast.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/SemaChecking.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/SemaCodeComplete.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/SemaDecl.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/SemaDeclAttr.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/SemaDeclCXX.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/SemaDeclObjC.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/SemaExceptionSpec.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/SemaExpr.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/SemaExprCXX.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/SemaExprMember.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/SemaExprObjC.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/SemaFixItUtils.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/SemaInit.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/SemaLambda.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/SemaLookup.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/SemaObjCProperty.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/SemaOpenMP.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/SemaOverload.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/SemaPseudoObject.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/SemaStmt.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/SemaStmtAsm.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/SemaTemplate.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/SemaTemplateDeduction.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiate.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/SemaTemplateVariadic.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/SemaType.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/TargetAttributesSema.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/TreeTransform.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/TypeLocBuilder.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/TypeLocBuilder.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Serialization/ASTCommon.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Serialization/ASTCommon.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Serialization/ASTReader.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Serialization/ASTReaderDecl.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Serialization/ASTReaderStmt.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Serialization/ASTWriter.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Serialization/ASTWriterDecl.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Serialization/ASTWriterStmt.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Serialization/GeneratePCH.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Serialization/GlobalModuleIndex.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Serialization/ModuleManager.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BasicObjCFoundationChecks.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BuiltinFunctionChecker.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringSyntaxChecker.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSizeofPointer.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckerDocumentation.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/Checkers.td
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ClangSACheckers.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CommonBugCategories.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DeadStoresChecker.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DebugCheckers.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DirectIvarAssignment.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DynamicTypePropagation.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ExprInspectionChecker.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IdempotentOperationChecker.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IdenticalExprChecker.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocOverflowSecurityChecker.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocSizeofChecker.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NoReturnFunctionChecker.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersASTChecker.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/SimpleStreamChecker.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefResultChecker.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedArraySubscriptChecker.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedAssignmentChecker.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnreachableCodeChecker.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporter.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CallEvent.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerContext.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerManager.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CommonBugCategories.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExplodedGraph.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/HTMLDiagnostics.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/MemRegion.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PrettyStackTraceLocationContext.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ProgramState.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RegionStore.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SValBuilder.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.h
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleSValBuilder.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Store.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SymbolManager.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/TextPathDiagnostics.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Tooling/ArgumentsAdjusters.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Tooling/CommonOptionsParser.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Tooling/CompilationDatabase.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Tooling/FileMatchTrie.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Tooling/JSONCompilationDatabase.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Tooling/Refactoring.cpp
/freebsd-10-stable/contrib/llvm/tools/clang/lib/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
263378 19-Mar-2014 emaste

MFC r258005: Merge upstream LLVM r192118:

Formally added an explicit enum for DWARF TLS support. No functionality
change.

Sponsored by: DARPA, AFRL

263374 19-Mar-2014 emaste

MFC r258003: Merge upstream LLVM r182803:

[Mips] Add Mips specific dynamic table entry tags.

Sponsored by: DARPA, AFRL

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


254790 24-Aug-2013 emaste

Import llvm r187614 (git 44c8e34), for lldb's use:

Author: Daniel Malea <daniel.malea@intel.com>
Date: Thu Aug 1 21:18:16 2013 +0000

Fixed the Intel-syntax X86 disassembler to respect the (existing)
option for hexadecimal immediates, to match AT&T syntax. This also
brings a new option for C-vs-MASM-style hex.

Patch by Richard Mitton
Reviewed: http://llvm-reviews.chandlerc.com/D1243


252720 04-Jul-2013 dim

Pull in r185594 from llvm trunk:

Add MachineBasicBlock::addLiveIn().

This function adds a live-in physical register to an MBB and ensures
that it is copied to a virtual register immediately.

Pull in r185615 from llvm trunk:

Live-in copies go *after* EH_LABELs.

This will soon be tested by exception handling working at all.

Pull in r185617 from llvm trunk:

Simplify landing pad lowering.

Stop using the ISD::EXCEPTIONADDR and ISD::EHSELECTION when lowering
landing pad arguments. These nodes were previously legalized into
CopyFromReg nodes, but that never worked properly because the
CopyFromReg node weren't guaranteed to be scheduled at the top of the
basic block.

This meant the exception pointer and selector registers could be
clobbered before being copied to a virtual register.

This patch copies the two physical registers to virtual registers at
the beginning of the basic block, and lowers the landingpad instruction
directly to two CopyFromReg nodes reading the *virtual* registers. This
is safe because virtual registers don't get clobbered.

A future patch will remove the ISD::EXCEPTIONADDR and ISD::EHSELECTION
nodes.

Together, these changes fix llvm PR 16038 ('qt4 webcore file results in
"Bad machine code: Using an undefined physical register"'), and should
make it possible again to compile the www/qt4-webkit port again on the
i386 arch, without using a CPUTYPE=i686 or higher setting.


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


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.


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.


241430 10-Oct-2012 dim

Pull in r164132 from upstream llvm trunk:

When creating MCAsmBackend pass the CPU string as well. In X86AsmBackend
store this and use it to not emit long nops when the CPU is geode which
doesnt support them.

Fixes PR11212.

Pull in r164133 from upstream clang trunk:

Follow up on llvm r164132.

This should prevent illegal instructions when building world on Geode
CPUs (e.g. Soekris).

MFC after: 3 days


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.


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


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


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


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.


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'.


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.


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)


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)


212904 20-Sep-2010 dim

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

Approved-by: rpaulo (mentor)


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


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


208599 27-May-2010 rdivacky

Update LLVM to r104832.


207618 04-May-2010 rdivacky

Update LLVM to r103004.


206274 06-Apr-2010 rdivacky

Update LLVM to r100520.


206124 03-Apr-2010 rdivacky

Update LLVM to r100285.


206083 02-Apr-2010 rdivacky

Update LLVM to r100181.


205407 21-Mar-2010 rdivacky

Update LLVM to r99115.


205218 16-Mar-2010 rdivacky

Update LLVM to r98631.


204961 10-Mar-2010 rdivacky

Update LLVM to r98164.


204792 06-Mar-2010 rdivacky

Update LLVM to r97873.


204642 03-Mar-2010 rdivacky

Update LLVM to 97654.


203954 16-Feb-2010 rdivacky

Update LLVM to r96341.


202878 23-Jan-2010 rdivacky

Update LLVM to r94309.


202375 15-Jan-2010 rdivacky

Update LLVM to 93512.


201360 01-Jan-2010 rdivacky

Update LLVM to 92395.


200581 15-Dec-2009 rdivacky

Update LLVM to 91430.


199989 01-Dec-2009 rdivacky

Update LLVM to r90226.


199513 19-Nov-2009 rdivacky

Remove includes that were removed upstream.


199511 19-Nov-2009 rdivacky

Update LLVM to r89337.


199481 18-Nov-2009 rdivacky

Update LLVM to r89205.


198953 05-Nov-2009 rdivacky

Update LLVM to r86140.


198892 04-Nov-2009 rdivacky

Update LLVM to r86025.


198403 23-Oct-2009 rdivacky

These files does not belong here.


198396 23-Oct-2009 rdivacky

Update LLVM to r84949.


198138 15-Oct-2009 rdivacky

Delete all stale files.


198113 15-Oct-2009 rdivacky

Update llvm to r84175.


198090 14-Oct-2009 rdivacky

Update llvm to r84119.


195340 04-Jul-2009 ed

Import LLVM 74788.


195098 27-Jun-2009 ed

Import LLVM r74383.


194754 23-Jun-2009 ed

Import LLVM r73984.

It seems I keep importing sources at very unlucky moments. Let's see
what this revision of LLVM does.


194710 23-Jun-2009 ed

Import LLVM r73954.


194612 22-Jun-2009 ed

Update LLVM sources to r73879.


194178 14-Jun-2009 ed

Import LLVM r73340.


193724 08-Jun-2009 ed

Import LLVM r73070.

Now I'm going to stop importing code for a while. I spent a lot of time
the last couple of days figuring out which LLVM commit caused g++ to
miscompile, which in its turn caused Clang to miscompile the next build.
I had to run `make buildworld' twice each time I bisected a revision.


193630 07-Jun-2009 ed

Import LLVM r73021.


193574 06-Jun-2009 ed

Import LLVM, at r72995.

We should now have support for #pragma weak.


193399 03-Jun-2009 ed

Import LLVM, at r72805, which fixes PR4315 and PR4316.

Normally I'm not updating sources this often, but I want to get rid of
this breakage, because right now I can't offer a proper source snapshot
yet.


193378 03-Jun-2009 ed

Import LLVM, at r72770.

This should fix LLVM PR4225.


193323 02-Jun-2009 ed

Import LLVM, at r72732.