]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/commit
Merge clang 3.3 release and various fixes: r241214, r246705, r248548,
authordim <dim@ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f>
Thu, 4 Jul 2013 20:17:04 +0000 (20:17 +0000)
committerdim <dim@ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f>
Thu, 4 Jul 2013 20:17:04 +0000 (20:17 +0000)
commit31a0f3049c8ed797e5ab95a450ef01dfc547e80e
tree020057ee54fb26b28dfe06eb709010a82b511c49
parentacebda92800466eaa6a2cfc2a77ac1611bc02cc6
Merge clang 3.3 release and various fixes: r241214, r246705, r248548,
r249423, r249817, r250217, r250593, r250616, r250997, r251216, r251662,
r251761, r251785, r251790, r252039.

MFC r241214 (by jkim):
  Do not install incomplete unwind.h from clang.  This header file was meant
  to be a wrapper for the canonical system header file.  Unfortunately, we do
  not have one (yet) and some times it is causing weird failures when clang
  is used for building ports.  More complete and correct file will come from
  libcxxrt in the future.

  Discussed with: dim, kib, theraven

MFC r246705 (by andrew):
  Allow us to build clang for ARM EABI. Clang and llvm use the
  arm-gnueabi-freebsd10.0 triple for EABI. Use this when we are on arm or
  armv6 and are building for EABI.

  Reviewed by: dim

MFC r248548 (by andrew):
  Pull in r177252 from upstream clang trunk:

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

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

MFC r249423:
  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.

MFC r249817:
  Pull in r180121 from upstream llvm trunk:

    LoopVectorizer: Fix 15830. When scalarizing and unrolling stores make
    sure that the order in which the elements are scalarized is the same
    as the original order.
    This fixes a miscompilation in FreeBSD's regex library.

  This should fix lib/libc/regex/regcomp.c at -O3 with clang 3.3 r178860
  on CPUs with SSE.  Before this change, the vectorizer could incorrectly
  rearrange the second loop in computejumps(), leading to possibly invalid
  entries in the re_gets::charjump table.

  The net result was that for example "sed s/@CC@/foo/" failed to work
  correctly, leading to trouble with many configure scripts.

MFC r250217:
  Allow building clang on older FreeBSD releases, where log2() does not
  exist yet.  With this change, I have verified that building head on
  8.1-RELEASE works.

  Noticed by: Ryan Stone <rysto32@gmail.com>

MFC r250593:
  Pull in r181286 from upstream llvm trunk:

    LoopVectorize: getConsecutiveVector must respect signed arithmetic

    We were passing an i32 to ConstantInt::get where an i64 was needed and we must
    also pass the sign if we pass negatives numbers. The start index passed to
    getConsecutiveVector must also be signed.

    Should fix PR15882.

  This should fix Firefox crashes some people have been reporting, when it
  is compiled with -O3.

MFC r250616:
  Use an ugly hack to get around bootstrapping problems when building
  clang on head between r239347 and r245428.

  The former revision introduced CLOCK_PROCESS_CPUTIME_ID as a clock id
  for the clock_gettime() function and friends, but it was only added in
  <sys/time.h>, not in <time.h>.  Any program including <time.h> would
  therefore not be able to use CLOCK_PROCESS_CPUTIME_ID, even though the
  value of _POSIX_CPUTIME indicates its existence.  The latter revision
  synchronized the defines again.

  Work around this problem by defining the id on the command line for the
  particular .cpp file that needs it.  If the id ever changes value, this
  hack will need to be updated.

MFC r250997:
  Pull in r182656 from upstream llvm trunk:

    LoopVectorize: LoopSimplify can't canonicalize loops with an
    indirectbr in it, don't assert on those cases.

    Fixes PR16139.

  This should fix clang assertion failures when optimizing at -O3, similar
  to:

    Assertion failed: (TheLoop->getLoopPreheader() && "No preheader!!"),
    function canVectorize, file
    contrib/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp, line 2171.

  Reported by: O. Hartmann <ohartman@zedat.fu-berlin.de>
  PR: ports/178332, ports/178977

MFC r251216 (by ed):
  Pull in r183033 and r183036 from LLVM trunk:

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

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

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

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

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

MFC r251662:
  Upgrade our copy of llvm/clang to 3.3 release.

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

MFC r251761:
  Pull in r181620 from llvm trunk:

    [ms-inline asm] Fix a crasher when we fail on a direct match.

    The issue was that the MatchingInlineAsm and VariantID args to the
    MatchInstructionImpl function weren't being set properly.  Specifically, when
    parsing intel syntax, the parser thought it was parsing inline assembly in the
    at&t dialect; that will never be the case.

    The crash was caused when the emitter tried to emit the instruction, but the
    operands weren't set.  When parsing inline assembly we only set the opcode, not
    the operands, which is used to lookup the instruction descriptor.
    rdar://13854391 and PR15945

    Also, this commit reverts r176036.  Now that we're correctly parsing the intel
    syntax the pushad/popad don't match properly.  I've reimplemented that fix using
    a MnemonicAlias.

  Pull in r183907 from llvm trunk:

    X86: Make the cmov aliases work with intel syntax too.

  These commits make a number of Intel-style inline assembly mnemonics
  aliases (occurring in several ports) work properly, which could cause
  assertions otherwise.

  Reported by: kwm, bapt

MFC r251785 (by ed)
  Pull in r184040 from upstream clang trunk:

    Emit native implementations of atomic operations on FreeBSD/armv6.

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

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

MFC r251790 (by andrew):
  Pull in r183926 from LLVM trunk:

    Allow clang to build __clear_cache on ARM.

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

    Patch by Andrew Turner.

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

MFC r252039:
  Pull in r183984 from llvm trunk:

    Make PrologEpilogInserter save/restore all callee saved registers in
    functions which call __builtin_unwind_init()

    __builtin_unwind_init() is an undocumented gcc intrinsic which has
    this effect, and is used in libgcc_eh.

    Goes part of the way toward fixing PR8541.

  This obsoletes the ugly hack to libgcc's unwind code from r245272, and
  should also work for other arches, so revert the hack too.

git-svn-id: svn://svn.freebsd.org/base/stable/9@252723 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f
2712 files changed:
Makefile.inc1
ObsoleteFiles.inc
contrib/gcc/unwind-dw2.c
contrib/llvm/LICENSE.TXT
contrib/llvm/include/llvm-c/Core.h
contrib/llvm/include/llvm-c/Disassembler.h
contrib/llvm/include/llvm-c/EnhancedDisassembly.h [deleted file]
contrib/llvm/include/llvm-c/ExecutionEngine.h
contrib/llvm/include/llvm-c/Initialization.h
contrib/llvm/include/llvm-c/LinkTimeOptimizer.h
contrib/llvm/include/llvm-c/Object.h
contrib/llvm/include/llvm-c/Target.h
contrib/llvm/include/llvm-c/TargetMachine.h
contrib/llvm/include/llvm-c/Transforms/PassManagerBuilder.h
contrib/llvm/include/llvm-c/Transforms/Vectorize.h
contrib/llvm/include/llvm-c/lto.h
contrib/llvm/include/llvm/ADT/APFloat.h
contrib/llvm/include/llvm/ADT/APInt.h
contrib/llvm/include/llvm/ADT/APSInt.h
contrib/llvm/include/llvm/ADT/ArrayRef.h
contrib/llvm/include/llvm/ADT/BitVector.h
contrib/llvm/include/llvm/ADT/DAGDeltaAlgorithm.h
contrib/llvm/include/llvm/ADT/DeltaAlgorithm.h
contrib/llvm/include/llvm/ADT/DenseMap.h
contrib/llvm/include/llvm/ADT/DenseSet.h
contrib/llvm/include/llvm/ADT/DepthFirstIterator.h
contrib/llvm/include/llvm/ADT/FoldingSet.h
contrib/llvm/include/llvm/ADT/Hashing.h
contrib/llvm/include/llvm/ADT/ImmutableIntervalMap.h
contrib/llvm/include/llvm/ADT/ImmutableList.h
contrib/llvm/include/llvm/ADT/ImmutableMap.h
contrib/llvm/include/llvm/ADT/ImmutableSet.h
contrib/llvm/include/llvm/ADT/InMemoryStruct.h [deleted file]
contrib/llvm/include/llvm/ADT/IntervalMap.h
contrib/llvm/include/llvm/ADT/IntrusiveRefCntPtr.h
contrib/llvm/include/llvm/ADT/MapVector.h
contrib/llvm/include/llvm/ADT/None.h [new file with mode: 0644]
contrib/llvm/include/llvm/ADT/NullablePtr.h
contrib/llvm/include/llvm/ADT/Optional.h
contrib/llvm/include/llvm/ADT/OwningPtr.h
contrib/llvm/include/llvm/ADT/PointerIntPair.h
contrib/llvm/include/llvm/ADT/PointerUnion.h
contrib/llvm/include/llvm/ADT/PostOrderIterator.h
contrib/llvm/include/llvm/ADT/PriorityQueue.h
contrib/llvm/include/llvm/ADT/SCCIterator.h
contrib/llvm/include/llvm/ADT/STLExtras.h
contrib/llvm/include/llvm/ADT/SmallBitVector.h
contrib/llvm/include/llvm/ADT/SmallPtrSet.h
contrib/llvm/include/llvm/ADT/SmallSet.h
contrib/llvm/include/llvm/ADT/SmallString.h
contrib/llvm/include/llvm/ADT/SmallVector.h
contrib/llvm/include/llvm/ADT/SparseMultiSet.h [new file with mode: 0644]
contrib/llvm/include/llvm/ADT/SparseSet.h
contrib/llvm/include/llvm/ADT/Statistic.h
contrib/llvm/include/llvm/ADT/StringExtras.h
contrib/llvm/include/llvm/ADT/StringMap.h
contrib/llvm/include/llvm/ADT/StringRef.h
contrib/llvm/include/llvm/ADT/StringSet.h
contrib/llvm/include/llvm/ADT/TinyPtrVector.h
contrib/llvm/include/llvm/ADT/Triple.h
contrib/llvm/include/llvm/ADT/Twine.h
contrib/llvm/include/llvm/ADT/ValueMap.h
contrib/llvm/include/llvm/ADT/VariadicFunction.h
contrib/llvm/include/llvm/ADT/ilist.h
contrib/llvm/include/llvm/ADT/ilist_node.h
contrib/llvm/include/llvm/AddressingMode.h [deleted file]
contrib/llvm/include/llvm/Analysis/AliasAnalysis.h
contrib/llvm/include/llvm/Analysis/AliasSetTracker.h
contrib/llvm/include/llvm/Analysis/BlockFrequencyImpl.h
contrib/llvm/include/llvm/Analysis/BranchProbabilityInfo.h
contrib/llvm/include/llvm/Analysis/CFGPrinter.h
contrib/llvm/include/llvm/Analysis/CallGraph.h
contrib/llvm/include/llvm/Analysis/CallGraphSCCPass.h [moved from contrib/llvm/include/llvm/CallGraphSCCPass.h with 96% similarity]
contrib/llvm/include/llvm/Analysis/CallPrinter.h [new file with mode: 0644]
contrib/llvm/include/llvm/Analysis/CaptureTracking.h
contrib/llvm/include/llvm/Analysis/CodeMetrics.h
contrib/llvm/include/llvm/Analysis/DOTGraphTraitsPass.h
contrib/llvm/include/llvm/Analysis/DependenceAnalysis.h
contrib/llvm/include/llvm/Analysis/DominatorInternals.h
contrib/llvm/include/llvm/Analysis/Dominators.h
contrib/llvm/include/llvm/Analysis/IVUsers.h
contrib/llvm/include/llvm/Analysis/InlineCost.h
contrib/llvm/include/llvm/Analysis/InstructionSimplify.h
contrib/llvm/include/llvm/Analysis/Interval.h
contrib/llvm/include/llvm/Analysis/IntervalIterator.h
contrib/llvm/include/llvm/Analysis/IntervalPartition.h
contrib/llvm/include/llvm/Analysis/LibCallAliasAnalysis.h
contrib/llvm/include/llvm/Analysis/Loads.h
contrib/llvm/include/llvm/Analysis/LoopInfo.h
contrib/llvm/include/llvm/Analysis/LoopInfoImpl.h
contrib/llvm/include/llvm/Analysis/LoopIterator.h
contrib/llvm/include/llvm/Analysis/LoopPass.h
contrib/llvm/include/llvm/Analysis/MemoryBuiltins.h
contrib/llvm/include/llvm/Analysis/MemoryDependenceAnalysis.h
contrib/llvm/include/llvm/Analysis/PHITransAddr.h
contrib/llvm/include/llvm/Analysis/Passes.h
contrib/llvm/include/llvm/Analysis/PathNumbering.h
contrib/llvm/include/llvm/Analysis/PathProfileInfo.h
contrib/llvm/include/llvm/Analysis/PostDominators.h
contrib/llvm/include/llvm/Analysis/ProfileDataLoader.h
contrib/llvm/include/llvm/Analysis/ProfileInfo.h
contrib/llvm/include/llvm/Analysis/ProfileInfoLoader.h
contrib/llvm/include/llvm/Analysis/PtrUseVisitor.h [new file with mode: 0644]
contrib/llvm/include/llvm/Analysis/RegionInfo.h
contrib/llvm/include/llvm/Analysis/RegionIterator.h
contrib/llvm/include/llvm/Analysis/RegionPass.h
contrib/llvm/include/llvm/Analysis/ScalarEvolution.h
contrib/llvm/include/llvm/Analysis/ScalarEvolutionExpander.h
contrib/llvm/include/llvm/Analysis/ScalarEvolutionExpressions.h
contrib/llvm/include/llvm/Analysis/ScalarEvolutionNormalization.h
contrib/llvm/include/llvm/Analysis/SparsePropagation.h
contrib/llvm/include/llvm/Analysis/TargetTransformInfo.h [new file with mode: 0644]
contrib/llvm/include/llvm/Analysis/Trace.h
contrib/llvm/include/llvm/Analysis/ValueTracking.h
contrib/llvm/include/llvm/Argument.h [deleted file]
contrib/llvm/include/llvm/Assembly/PrintModulePass.h
contrib/llvm/include/llvm/Attributes.h [deleted file]
contrib/llvm/include/llvm/Bitcode/Archive.h
contrib/llvm/include/llvm/Bitcode/BitCodes.h
contrib/llvm/include/llvm/Bitcode/BitstreamReader.h
contrib/llvm/include/llvm/Bitcode/BitstreamWriter.h
contrib/llvm/include/llvm/Bitcode/LLVMBitCodes.h
contrib/llvm/include/llvm/Bitcode/ReaderWriter.h
contrib/llvm/include/llvm/CodeGen/Analysis.h
contrib/llvm/include/llvm/CodeGen/AsmPrinter.h
contrib/llvm/include/llvm/CodeGen/CalcSpillWeights.h
contrib/llvm/include/llvm/CodeGen/CallingConvLower.h
contrib/llvm/include/llvm/CodeGen/CommandFlags.h
contrib/llvm/include/llvm/CodeGen/DAGCombine.h [new file with mode: 0644]
contrib/llvm/include/llvm/CodeGen/DFAPacketizer.h
contrib/llvm/include/llvm/CodeGen/FastISel.h
contrib/llvm/include/llvm/CodeGen/FunctionLoweringInfo.h
contrib/llvm/include/llvm/CodeGen/GCMetadata.h
contrib/llvm/include/llvm/CodeGen/GCs.h
contrib/llvm/include/llvm/CodeGen/ISDOpcodes.h
contrib/llvm/include/llvm/CodeGen/IntrinsicLowering.h
contrib/llvm/include/llvm/CodeGen/JITCodeEmitter.h
contrib/llvm/include/llvm/CodeGen/LatencyPriorityQueue.h
contrib/llvm/include/llvm/CodeGen/LexicalScopes.h
contrib/llvm/include/llvm/CodeGen/LinkAllAsmWriterComponents.h
contrib/llvm/include/llvm/CodeGen/LinkAllCodegenComponents.h
contrib/llvm/include/llvm/CodeGen/LiveInterval.h
contrib/llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h
contrib/llvm/include/llvm/CodeGen/LiveIntervalUnion.h [moved from contrib/llvm/lib/CodeGen/LiveIntervalUnion.h with 95% similarity]
contrib/llvm/include/llvm/CodeGen/LiveRangeEdit.h
contrib/llvm/include/llvm/CodeGen/LiveRegMatrix.h [moved from contrib/llvm/lib/CodeGen/LiveRegMatrix.h with 99% similarity]
contrib/llvm/include/llvm/CodeGen/LiveStackAnalysis.h
contrib/llvm/include/llvm/CodeGen/LiveVariables.h
contrib/llvm/include/llvm/CodeGen/MachORelocation.h
contrib/llvm/include/llvm/CodeGen/MachineBasicBlock.h
contrib/llvm/include/llvm/CodeGen/MachineBranchProbabilityInfo.h
contrib/llvm/include/llvm/CodeGen/MachineCodeEmitter.h
contrib/llvm/include/llvm/CodeGen/MachineCodeInfo.h
contrib/llvm/include/llvm/CodeGen/MachineDominators.h
contrib/llvm/include/llvm/CodeGen/MachineFrameInfo.h
contrib/llvm/include/llvm/CodeGen/MachineFunction.h
contrib/llvm/include/llvm/CodeGen/MachineFunctionAnalysis.h
contrib/llvm/include/llvm/CodeGen/MachineFunctionPass.h
contrib/llvm/include/llvm/CodeGen/MachineInstr.h
contrib/llvm/include/llvm/CodeGen/MachineInstrBuilder.h
contrib/llvm/include/llvm/CodeGen/MachineInstrBundle.h
contrib/llvm/include/llvm/CodeGen/MachineJumpTableInfo.h
contrib/llvm/include/llvm/CodeGen/MachineLoopInfo.h
contrib/llvm/include/llvm/CodeGen/MachineLoopRanges.h [deleted file]
contrib/llvm/include/llvm/CodeGen/MachineMemOperand.h
contrib/llvm/include/llvm/CodeGen/MachineModuleInfo.h
contrib/llvm/include/llvm/CodeGen/MachineOperand.h
contrib/llvm/include/llvm/CodeGen/MachinePostDominators.h
contrib/llvm/include/llvm/CodeGen/MachineRegisterInfo.h
contrib/llvm/include/llvm/CodeGen/MachineScheduler.h
contrib/llvm/include/llvm/CodeGen/MachineTraceMetrics.h [moved from contrib/llvm/lib/CodeGen/MachineTraceMetrics.h with 83% similarity]
contrib/llvm/include/llvm/CodeGen/PBQP/Graph.h
contrib/llvm/include/llvm/CodeGen/PBQP/HeuristicSolver.h
contrib/llvm/include/llvm/CodeGen/PBQP/Heuristics/Briggs.h
contrib/llvm/include/llvm/CodeGen/PBQP/Math.h
contrib/llvm/include/llvm/CodeGen/PBQP/Solution.h
contrib/llvm/include/llvm/CodeGen/Passes.h
contrib/llvm/include/llvm/CodeGen/PseudoSourceValue.h
contrib/llvm/include/llvm/CodeGen/RegAllocPBQP.h
contrib/llvm/include/llvm/CodeGen/RegAllocRegistry.h
contrib/llvm/include/llvm/CodeGen/RegisterClassInfo.h
contrib/llvm/include/llvm/CodeGen/RegisterPressure.h
contrib/llvm/include/llvm/CodeGen/RegisterScavenging.h
contrib/llvm/include/llvm/CodeGen/ResourcePriorityQueue.h
contrib/llvm/include/llvm/CodeGen/RuntimeLibcalls.h
contrib/llvm/include/llvm/CodeGen/ScheduleDAG.h
contrib/llvm/include/llvm/CodeGen/ScheduleDAGILP.h [deleted file]
contrib/llvm/include/llvm/CodeGen/ScheduleDAGInstrs.h
contrib/llvm/include/llvm/CodeGen/ScheduleDFS.h [new file with mode: 0644]
contrib/llvm/include/llvm/CodeGen/SchedulerRegistry.h
contrib/llvm/include/llvm/CodeGen/ScoreboardHazardRecognizer.h
contrib/llvm/include/llvm/CodeGen/SelectionDAG.h
contrib/llvm/include/llvm/CodeGen/SelectionDAGISel.h
contrib/llvm/include/llvm/CodeGen/SelectionDAGNodes.h
contrib/llvm/include/llvm/CodeGen/SlotIndexes.h
contrib/llvm/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
contrib/llvm/include/llvm/CodeGen/TargetSchedule.h
contrib/llvm/include/llvm/CodeGen/ValueTypes.h
contrib/llvm/include/llvm/CodeGen/ValueTypes.td
contrib/llvm/include/llvm/CodeGen/VirtRegMap.h [moved from contrib/llvm/lib/CodeGen/VirtRegMap.h with 95% similarity]
contrib/llvm/include/llvm/DIBuilder.h
contrib/llvm/include/llvm/DebugInfo.h
contrib/llvm/include/llvm/DebugInfo/DIContext.h
contrib/llvm/include/llvm/DebugInfo/DWARFFormValue.h [moved from contrib/llvm/lib/DebugInfo/DWARFFormValue.h with 87% similarity]
contrib/llvm/include/llvm/DefaultPasses.h [deleted file]
contrib/llvm/include/llvm/ExecutionEngine/ExecutionEngine.h
contrib/llvm/include/llvm/ExecutionEngine/GenericValue.h
contrib/llvm/include/llvm/ExecutionEngine/Interpreter.h
contrib/llvm/include/llvm/ExecutionEngine/JIT.h
contrib/llvm/include/llvm/ExecutionEngine/JITEventListener.h
contrib/llvm/include/llvm/ExecutionEngine/JITMemoryManager.h
contrib/llvm/include/llvm/ExecutionEngine/MCJIT.h
contrib/llvm/include/llvm/ExecutionEngine/OProfileWrapper.h
contrib/llvm/include/llvm/ExecutionEngine/ObjectBuffer.h
contrib/llvm/include/llvm/ExecutionEngine/ObjectCache.h [new file with mode: 0644]
contrib/llvm/include/llvm/ExecutionEngine/ObjectImage.h
contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h
contrib/llvm/include/llvm/ExecutionEngine/SectionMemoryManager.h [new file with mode: 0644]
contrib/llvm/include/llvm/GVMaterializer.h
contrib/llvm/include/llvm/IR/Argument.h [new file with mode: 0644]
contrib/llvm/include/llvm/IR/Attributes.h [new file with mode: 0644]
contrib/llvm/include/llvm/IR/BasicBlock.h [moved from contrib/llvm/include/llvm/BasicBlock.h with 52% similarity]
contrib/llvm/include/llvm/IR/CallingConv.h [moved from contrib/llvm/include/llvm/CallingConv.h with 96% similarity]
contrib/llvm/include/llvm/IR/Constant.h [moved from contrib/llvm/include/llvm/Constant.h with 92% similarity]
contrib/llvm/include/llvm/IR/Constants.h [moved from contrib/llvm/include/llvm/Constants.h with 96% similarity]
contrib/llvm/include/llvm/IR/DataLayout.h [moved from contrib/llvm/include/llvm/DataLayout.h with 84% similarity]
contrib/llvm/include/llvm/IR/DerivedTypes.h [moved from contrib/llvm/include/llvm/DerivedTypes.h with 95% similarity]
contrib/llvm/include/llvm/IR/Function.h [moved from contrib/llvm/include/llvm/Function.h with 80% similarity]
contrib/llvm/include/llvm/IR/GlobalAlias.h [moved from contrib/llvm/include/llvm/GlobalAlias.h with 95% similarity]
contrib/llvm/include/llvm/IR/GlobalValue.h [moved from contrib/llvm/include/llvm/GlobalValue.h with 98% similarity]
contrib/llvm/include/llvm/IR/GlobalVariable.h [moved from contrib/llvm/include/llvm/GlobalVariable.h with 80% similarity]
contrib/llvm/include/llvm/IR/IRBuilder.h [moved from contrib/llvm/include/llvm/IRBuilder.h with 80% similarity]
contrib/llvm/include/llvm/IR/InlineAsm.h [moved from contrib/llvm/include/llvm/InlineAsm.h with 99% similarity]
contrib/llvm/include/llvm/IR/InstrTypes.h [moved from contrib/llvm/include/llvm/InstrTypes.h with 99% similarity]
contrib/llvm/include/llvm/IR/Instruction.def [moved from contrib/llvm/include/llvm/Instruction.def with 100% similarity]
contrib/llvm/include/llvm/IR/Instruction.h [moved from contrib/llvm/include/llvm/Instruction.h with 84% similarity]
contrib/llvm/include/llvm/IR/Instructions.h [moved from contrib/llvm/include/llvm/Instructions.h with 96% similarity]
contrib/llvm/include/llvm/IR/IntrinsicInst.h [moved from contrib/llvm/include/llvm/IntrinsicInst.h with 97% similarity]
contrib/llvm/include/llvm/IR/Intrinsics.h [moved from contrib/llvm/include/llvm/Intrinsics.h with 80% similarity]
contrib/llvm/include/llvm/IR/Intrinsics.td [moved from contrib/llvm/include/llvm/Intrinsics.td with 95% similarity]
contrib/llvm/include/llvm/IR/IntrinsicsARM.td [moved from contrib/llvm/include/llvm/IntrinsicsARM.td with 100% similarity]
contrib/llvm/include/llvm/IR/IntrinsicsHexagon.td [moved from contrib/llvm/include/llvm/IntrinsicsHexagon.td with 100% similarity]
contrib/llvm/include/llvm/IR/IntrinsicsMips.td [moved from contrib/llvm/include/llvm/IntrinsicsMips.td with 97% similarity]
contrib/llvm/include/llvm/IR/IntrinsicsNVVM.td [moved from contrib/llvm/include/llvm/IntrinsicsNVVM.td with 97% similarity]
contrib/llvm/include/llvm/IR/IntrinsicsPowerPC.td [moved from contrib/llvm/include/llvm/IntrinsicsPowerPC.td with 97% similarity]
contrib/llvm/include/llvm/IR/IntrinsicsR600.td [new file with mode: 0644]
contrib/llvm/include/llvm/IR/IntrinsicsX86.td [moved from contrib/llvm/include/llvm/IntrinsicsX86.td with 99% similarity]
contrib/llvm/include/llvm/IR/IntrinsicsXCore.td [moved from contrib/llvm/include/llvm/IntrinsicsXCore.td with 100% similarity]
contrib/llvm/include/llvm/IR/LLVMContext.h [moved from contrib/llvm/include/llvm/LLVMContext.h with 86% similarity]
contrib/llvm/include/llvm/IR/MDBuilder.h [new file with mode: 0644]
contrib/llvm/include/llvm/IR/Metadata.h [moved from contrib/llvm/include/llvm/Metadata.h with 97% similarity]
contrib/llvm/include/llvm/IR/Module.h [moved from contrib/llvm/include/llvm/Module.h with 89% similarity]
contrib/llvm/include/llvm/IR/OperandTraits.h [moved from contrib/llvm/include/llvm/OperandTraits.h with 98% similarity]
contrib/llvm/include/llvm/IR/Operator.h [moved from contrib/llvm/include/llvm/Operator.h with 62% similarity]
contrib/llvm/include/llvm/IR/SymbolTableListTraits.h [moved from contrib/llvm/include/llvm/SymbolTableListTraits.h with 97% similarity]
contrib/llvm/include/llvm/IR/Type.h [moved from contrib/llvm/include/llvm/Type.h with 94% similarity]
contrib/llvm/include/llvm/IR/TypeBuilder.h [moved from contrib/llvm/include/llvm/TypeBuilder.h with 99% similarity]
contrib/llvm/include/llvm/IR/TypeFinder.h [moved from contrib/llvm/include/llvm/TypeFinder.h with 95% similarity]
contrib/llvm/include/llvm/IR/Use.h [moved from contrib/llvm/include/llvm/Use.h with 94% similarity]
contrib/llvm/include/llvm/IR/User.h [moved from contrib/llvm/include/llvm/User.h with 92% similarity]
contrib/llvm/include/llvm/IR/Value.h [moved from contrib/llvm/include/llvm/Value.h with 91% similarity]
contrib/llvm/include/llvm/IR/ValueSymbolTable.h [moved from contrib/llvm/include/llvm/ValueSymbolTable.h with 97% similarity]
contrib/llvm/include/llvm/IRReader/IRReader.h [new file with mode: 0644]
contrib/llvm/include/llvm/InitializePasses.h
contrib/llvm/include/llvm/InstVisitor.h [moved from contrib/llvm/include/llvm/Support/InstVisitor.h with 97% similarity]
contrib/llvm/include/llvm/IntrinsicsCellSPU.td [deleted file]
contrib/llvm/include/llvm/LinkAllIR.h [moved from contrib/llvm/include/llvm/LinkAllVMCore.h with 85% similarity]
contrib/llvm/include/llvm/LinkAllPasses.h
contrib/llvm/include/llvm/Linker.h
contrib/llvm/include/llvm/MC/EDInstInfo.h [deleted file]
contrib/llvm/include/llvm/MC/MCAsmBackend.h
contrib/llvm/include/llvm/MC/MCAsmInfo.h
contrib/llvm/include/llvm/MC/MCAsmInfoCOFF.h
contrib/llvm/include/llvm/MC/MCAsmInfoDarwin.h
contrib/llvm/include/llvm/MC/MCAsmLayout.h
contrib/llvm/include/llvm/MC/MCAssembler.h
contrib/llvm/include/llvm/MC/MCAtom.h
contrib/llvm/include/llvm/MC/MCCodeEmitter.h
contrib/llvm/include/llvm/MC/MCContext.h
contrib/llvm/include/llvm/MC/MCDisassembler.h
contrib/llvm/include/llvm/MC/MCDwarf.h
contrib/llvm/include/llvm/MC/MCELF.h [moved from contrib/llvm/lib/MC/MCELF.h with 90% similarity]
contrib/llvm/include/llvm/MC/MCELFObjectWriter.h
contrib/llvm/include/llvm/MC/MCELFStreamer.h [new file with mode: 0644]
contrib/llvm/include/llvm/MC/MCExpr.h
contrib/llvm/include/llvm/MC/MCFixedLenDisassembler.h
contrib/llvm/include/llvm/MC/MCInst.h
contrib/llvm/include/llvm/MC/MCInstBuilder.h [new file with mode: 0644]
contrib/llvm/include/llvm/MC/MCInstPrinter.h
contrib/llvm/include/llvm/MC/MCInstrDesc.h
contrib/llvm/include/llvm/MC/MCMachObjectWriter.h
contrib/llvm/include/llvm/MC/MCObjectFileInfo.h
contrib/llvm/include/llvm/MC/MCObjectStreamer.h
contrib/llvm/include/llvm/MC/MCObjectWriter.h
contrib/llvm/include/llvm/MC/MCParser/AsmCond.h
contrib/llvm/include/llvm/MC/MCParser/AsmLexer.h
contrib/llvm/include/llvm/MC/MCParser/MCAsmLexer.h
contrib/llvm/include/llvm/MC/MCParser/MCAsmParser.h
contrib/llvm/include/llvm/MC/MCParser/MCAsmParserExtension.h
contrib/llvm/include/llvm/MC/MCParser/MCParsedAsmOperand.h
contrib/llvm/include/llvm/MC/MCRegisterInfo.h
contrib/llvm/include/llvm/MC/MCSchedule.h
contrib/llvm/include/llvm/MC/MCSection.h
contrib/llvm/include/llvm/MC/MCSectionCOFF.h
contrib/llvm/include/llvm/MC/MCSectionELF.h
contrib/llvm/include/llvm/MC/MCSectionMachO.h
contrib/llvm/include/llvm/MC/MCStreamer.h
contrib/llvm/include/llvm/MC/MCSubtargetInfo.h
contrib/llvm/include/llvm/MC/MCTargetAsmLexer.h [deleted file]
contrib/llvm/include/llvm/MC/MCTargetAsmParser.h
contrib/llvm/include/llvm/MC/MCValue.h
contrib/llvm/include/llvm/MC/MCWinCOFFObjectWriter.h
contrib/llvm/include/llvm/MC/MachineLocation.h
contrib/llvm/include/llvm/MC/SubtargetFeature.h
contrib/llvm/include/llvm/MDBuilder.h [deleted file]
contrib/llvm/include/llvm/Object/Archive.h
contrib/llvm/include/llvm/Object/Binary.h
contrib/llvm/include/llvm/Object/ELF.h
contrib/llvm/include/llvm/Object/MachO.h
contrib/llvm/include/llvm/Object/MachOFormat.h
contrib/llvm/include/llvm/Object/MachOObject.h [deleted file]
contrib/llvm/include/llvm/Object/ObjectFile.h
contrib/llvm/include/llvm/Object/RelocVisitor.h
contrib/llvm/include/llvm/Option/Arg.h [new file with mode: 0644]
contrib/llvm/include/llvm/Option/ArgList.h [new file with mode: 0644]
contrib/llvm/include/llvm/Option/OptParser.td [new file with mode: 0644]
contrib/llvm/include/llvm/Option/OptSpecifier.h [new file with mode: 0644]
contrib/llvm/include/llvm/Option/OptTable.h [new file with mode: 0644]
contrib/llvm/include/llvm/Option/Option.h [new file with mode: 0644]
contrib/llvm/include/llvm/Pass.h
contrib/llvm/include/llvm/PassAnalysisSupport.h
contrib/llvm/include/llvm/PassManager.h
contrib/llvm/include/llvm/PassManagers.h
contrib/llvm/include/llvm/PassRegistry.h
contrib/llvm/include/llvm/PassSupport.h
contrib/llvm/include/llvm/Support/AlignOf.h
contrib/llvm/include/llvm/Support/Allocator.h
contrib/llvm/include/llvm/Support/ArrayRecycler.h [new file with mode: 0644]
contrib/llvm/include/llvm/Support/Atomic.h
contrib/llvm/include/llvm/Support/CBindingWrapping.h [new file with mode: 0644]
contrib/llvm/include/llvm/Support/CFG.h
contrib/llvm/include/llvm/Support/COFF.h
contrib/llvm/include/llvm/Support/CallSite.h
contrib/llvm/include/llvm/Support/Casting.h
contrib/llvm/include/llvm/Support/CodeGen.h
contrib/llvm/include/llvm/Support/CommandLine.h
contrib/llvm/include/llvm/Support/Compiler.h
contrib/llvm/include/llvm/Support/Compression.h [new file with mode: 0644]
contrib/llvm/include/llvm/Support/ConstantFolder.h
contrib/llvm/include/llvm/Support/ConstantRange.h
contrib/llvm/include/llvm/Support/ConvertUTF.h [moved from contrib/llvm/tools/clang/include/clang/Basic/ConvertUTF.h with 87% similarity]
contrib/llvm/include/llvm/Support/DOTGraphTraits.h
contrib/llvm/include/llvm/Support/DataExtractor.h
contrib/llvm/include/llvm/Support/DataFlow.h
contrib/llvm/include/llvm/Support/DataStream.h
contrib/llvm/include/llvm/Support/DebugLoc.h
contrib/llvm/include/llvm/Support/Dwarf.h
contrib/llvm/include/llvm/Support/DynamicLibrary.h
contrib/llvm/include/llvm/Support/ELF.h
contrib/llvm/include/llvm/Support/Endian.h
contrib/llvm/include/llvm/Support/Errno.h
contrib/llvm/include/llvm/Support/ErrorHandling.h
contrib/llvm/include/llvm/Support/ErrorOr.h [new file with mode: 0644]
contrib/llvm/include/llvm/Support/FEnv.h
contrib/llvm/include/llvm/Support/FileOutputBuffer.h
contrib/llvm/include/llvm/Support/FileSystem.h
contrib/llvm/include/llvm/Support/FormattedStream.h
contrib/llvm/include/llvm/Support/GCOV.h
contrib/llvm/include/llvm/Support/GetElementPtrTypeIterator.h
contrib/llvm/include/llvm/Support/GraphWriter.h
contrib/llvm/include/llvm/Support/Host.h
contrib/llvm/include/llvm/Support/IRReader.h [deleted file]
contrib/llvm/include/llvm/Support/IncludeFile.h
contrib/llvm/include/llvm/Support/InstIterator.h
contrib/llvm/include/llvm/Support/IntegersSubset.h
contrib/llvm/include/llvm/Support/IntegersSubsetMapping.h
contrib/llvm/include/llvm/Support/LEB128.h
contrib/llvm/include/llvm/Support/Locale.h
contrib/llvm/include/llvm/Support/LockFileManager.h
contrib/llvm/include/llvm/Support/MathExtras.h
contrib/llvm/include/llvm/Support/Memory.h
contrib/llvm/include/llvm/Support/MemoryBuffer.h
contrib/llvm/include/llvm/Support/MemoryObject.h
contrib/llvm/include/llvm/Support/Mutex.h
contrib/llvm/include/llvm/Support/NoFolder.h
contrib/llvm/include/llvm/Support/PassNameParser.h
contrib/llvm/include/llvm/Support/PathV1.h
contrib/llvm/include/llvm/Support/PatternMatch.h
contrib/llvm/include/llvm/Support/PredIteratorCache.h
contrib/llvm/include/llvm/Support/Process.h
contrib/llvm/include/llvm/Support/Program.h
contrib/llvm/include/llvm/Support/Recycler.h
contrib/llvm/include/llvm/Support/Regex.h
contrib/llvm/include/llvm/Support/RegistryParser.h
contrib/llvm/include/llvm/Support/SMLoc.h
contrib/llvm/include/llvm/Support/SaveAndRestore.h
contrib/llvm/include/llvm/Support/Signals.h
contrib/llvm/include/llvm/Support/Solaris.h
contrib/llvm/include/llvm/Support/SourceMgr.h
contrib/llvm/include/llvm/Support/StreamableMemoryObject.h
contrib/llvm/include/llvm/Support/StringPool.h
contrib/llvm/include/llvm/Support/SwapByteOrder.h
contrib/llvm/include/llvm/Support/TargetFolder.h
contrib/llvm/include/llvm/Support/TargetRegistry.h
contrib/llvm/include/llvm/Support/ThreadLocal.h
contrib/llvm/include/llvm/Support/Threading.h
contrib/llvm/include/llvm/Support/TimeValue.h
contrib/llvm/include/llvm/Support/Timer.h
contrib/llvm/include/llvm/Support/ToolOutputFile.h
contrib/llvm/include/llvm/Support/Valgrind.h
contrib/llvm/include/llvm/Support/ValueHandle.h
contrib/llvm/include/llvm/Support/Watchdog.h [new file with mode: 0644]
contrib/llvm/include/llvm/Support/Win64EH.h
contrib/llvm/include/llvm/Support/YAMLParser.h
contrib/llvm/include/llvm/Support/YAMLTraits.h [new file with mode: 0644]
contrib/llvm/include/llvm/Support/circular_raw_ostream.h
contrib/llvm/include/llvm/Support/raw_ostream.h
contrib/llvm/include/llvm/Support/system_error.h
contrib/llvm/include/llvm/Support/type_traits.h
contrib/llvm/include/llvm/TableGen/Error.h
contrib/llvm/include/llvm/TableGen/Record.h
contrib/llvm/include/llvm/TableGen/StringMatcher.h
contrib/llvm/include/llvm/Target/CostTable.h [new file with mode: 0644]
contrib/llvm/include/llvm/Target/Mangler.h
contrib/llvm/include/llvm/Target/Target.td
contrib/llvm/include/llvm/Target/TargetCallingConv.h
contrib/llvm/include/llvm/Target/TargetFrameLowering.h
contrib/llvm/include/llvm/Target/TargetInstrInfo.h
contrib/llvm/include/llvm/Target/TargetJITInfo.h
contrib/llvm/include/llvm/Target/TargetLibraryInfo.h
contrib/llvm/include/llvm/Target/TargetLowering.h
contrib/llvm/include/llvm/Target/TargetLoweringObjectFile.h
contrib/llvm/include/llvm/Target/TargetMachine.h
contrib/llvm/include/llvm/Target/TargetOptions.h
contrib/llvm/include/llvm/Target/TargetRegisterInfo.h
contrib/llvm/include/llvm/Target/TargetSchedule.td
contrib/llvm/include/llvm/Target/TargetSelectionDAG.td
contrib/llvm/include/llvm/Target/TargetSubtargetInfo.h
contrib/llvm/include/llvm/Target/TargetTransformImpl.h [deleted file]
contrib/llvm/include/llvm/TargetTransformInfo.h [deleted file]
contrib/llvm/include/llvm/Transforms/IPO.h
contrib/llvm/include/llvm/Transforms/IPO/InlinerPass.h
contrib/llvm/include/llvm/Transforms/IPO/PassManagerBuilder.h
contrib/llvm/include/llvm/Transforms/Instrumentation.h
contrib/llvm/include/llvm/Transforms/ObjCARC.h [new file with mode: 0644]
contrib/llvm/include/llvm/Transforms/Scalar.h
contrib/llvm/include/llvm/Transforms/Utils/AddrModeMatcher.h [deleted file]
contrib/llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h
contrib/llvm/include/llvm/Transforms/Utils/BlackList.h [moved from contrib/llvm/lib/Transforms/Instrumentation/BlackList.h with 87% similarity]
contrib/llvm/include/llvm/Transforms/Utils/BuildLibCalls.h
contrib/llvm/include/llvm/Transforms/Utils/BypassSlowDivision.h
contrib/llvm/include/llvm/Transforms/Utils/Cloning.h
contrib/llvm/include/llvm/Transforms/Utils/CmpInstAnalysis.h
contrib/llvm/include/llvm/Transforms/Utils/IntegerDivision.h
contrib/llvm/include/llvm/Transforms/Utils/Local.h
contrib/llvm/include/llvm/Transforms/Utils/ModuleUtils.h
contrib/llvm/include/llvm/Transforms/Utils/PromoteMemToReg.h
contrib/llvm/include/llvm/Transforms/Utils/SSAUpdater.h
contrib/llvm/include/llvm/Transforms/Utils/SimplifyLibCalls.h
contrib/llvm/include/llvm/Transforms/Vectorize.h
contrib/llvm/lib/Analysis/AliasAnalysis.cpp
contrib/llvm/lib/Analysis/AliasAnalysisCounter.cpp
contrib/llvm/lib/Analysis/AliasAnalysisEvaluator.cpp
contrib/llvm/lib/Analysis/AliasDebugger.cpp
contrib/llvm/lib/Analysis/AliasSetTracker.cpp
contrib/llvm/lib/Analysis/Analysis.cpp
contrib/llvm/lib/Analysis/BasicAliasAnalysis.cpp
contrib/llvm/lib/Analysis/BlockFrequencyInfo.cpp
contrib/llvm/lib/Analysis/BranchProbabilityInfo.cpp
contrib/llvm/lib/Analysis/CFGPrinter.cpp
contrib/llvm/lib/Analysis/CaptureTracking.cpp
contrib/llvm/lib/Analysis/CodeMetrics.cpp
contrib/llvm/lib/Analysis/ConstantFolding.cpp
contrib/llvm/lib/Analysis/CostModel.cpp
contrib/llvm/lib/Analysis/DbgInfoPrinter.cpp [deleted file]
contrib/llvm/lib/Analysis/DependenceAnalysis.cpp
contrib/llvm/lib/Analysis/DominanceFrontier.cpp
contrib/llvm/lib/Analysis/IPA/CallGraph.cpp
contrib/llvm/lib/Analysis/IPA/CallGraphSCCPass.cpp
contrib/llvm/lib/Analysis/IPA/CallPrinter.cpp [new file with mode: 0644]
contrib/llvm/lib/Analysis/IPA/FindUsedTypes.cpp
contrib/llvm/lib/Analysis/IPA/GlobalsModRef.cpp
contrib/llvm/lib/Analysis/IPA/IPA.cpp
contrib/llvm/lib/Analysis/IPA/InlineCost.cpp [moved from contrib/llvm/lib/Analysis/InlineCost.cpp with 75% similarity]
contrib/llvm/lib/Analysis/IVUsers.cpp
contrib/llvm/lib/Analysis/InstCount.cpp
contrib/llvm/lib/Analysis/InstructionSimplify.cpp
contrib/llvm/lib/Analysis/Interval.cpp
contrib/llvm/lib/Analysis/LazyValueInfo.cpp
contrib/llvm/lib/Analysis/LibCallAliasAnalysis.cpp
contrib/llvm/lib/Analysis/LibCallSemantics.cpp
contrib/llvm/lib/Analysis/Lint.cpp
contrib/llvm/lib/Analysis/Loads.cpp
contrib/llvm/lib/Analysis/LoopInfo.cpp
contrib/llvm/lib/Analysis/MemDepPrinter.cpp
contrib/llvm/lib/Analysis/MemoryBuiltins.cpp
contrib/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp
contrib/llvm/lib/Analysis/ModuleDebugInfoPrinter.cpp
contrib/llvm/lib/Analysis/NoAliasAnalysis.cpp
contrib/llvm/lib/Analysis/PHITransAddr.cpp
contrib/llvm/lib/Analysis/PathNumbering.cpp
contrib/llvm/lib/Analysis/PathProfileInfo.cpp
contrib/llvm/lib/Analysis/PathProfileVerifier.cpp
contrib/llvm/lib/Analysis/PostDominators.cpp
contrib/llvm/lib/Analysis/ProfileDataLoader.cpp
contrib/llvm/lib/Analysis/ProfileDataLoaderPass.cpp
contrib/llvm/lib/Analysis/ProfileEstimatorPass.cpp
contrib/llvm/lib/Analysis/ProfileInfo.cpp
contrib/llvm/lib/Analysis/ProfileInfoLoader.cpp
contrib/llvm/lib/Analysis/ProfileInfoLoaderPass.cpp
contrib/llvm/lib/Analysis/ProfileVerifierPass.cpp
contrib/llvm/lib/Analysis/PtrUseVisitor.cpp [new file with mode: 0644]
contrib/llvm/lib/Analysis/RegionInfo.cpp
contrib/llvm/lib/Analysis/RegionPrinter.cpp
contrib/llvm/lib/Analysis/ScalarEvolution.cpp
contrib/llvm/lib/Analysis/ScalarEvolutionAliasAnalysis.cpp
contrib/llvm/lib/Analysis/ScalarEvolutionExpander.cpp
contrib/llvm/lib/Analysis/SparsePropagation.cpp
contrib/llvm/lib/Analysis/TargetTransformInfo.cpp [new file with mode: 0644]
contrib/llvm/lib/Analysis/Trace.cpp
contrib/llvm/lib/Analysis/TypeBasedAliasAnalysis.cpp
contrib/llvm/lib/Analysis/ValueTracking.cpp
contrib/llvm/lib/Archive/Archive.cpp
contrib/llvm/lib/Archive/ArchiveInternals.h
contrib/llvm/lib/Archive/ArchiveReader.cpp
contrib/llvm/lib/Archive/ArchiveWriter.cpp
contrib/llvm/lib/AsmParser/LLLexer.cpp
contrib/llvm/lib/AsmParser/LLLexer.h
contrib/llvm/lib/AsmParser/LLParser.cpp
contrib/llvm/lib/AsmParser/LLParser.h
contrib/llvm/lib/AsmParser/LLToken.h
contrib/llvm/lib/AsmParser/Parser.cpp
contrib/llvm/lib/Bitcode/Reader/BitReader.cpp
contrib/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
contrib/llvm/lib/Bitcode/Reader/BitcodeReader.h
contrib/llvm/lib/Bitcode/Reader/BitstreamReader.cpp [new file with mode: 0644]
contrib/llvm/lib/Bitcode/Writer/BitWriter.cpp
contrib/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
contrib/llvm/lib/Bitcode/Writer/BitcodeWriterPass.cpp
contrib/llvm/lib/Bitcode/Writer/ValueEnumerator.cpp
contrib/llvm/lib/Bitcode/Writer/ValueEnumerator.h
contrib/llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp
contrib/llvm/lib/CodeGen/AggressiveAntiDepBreaker.h
contrib/llvm/lib/CodeGen/AllocationOrder.cpp
contrib/llvm/lib/CodeGen/AllocationOrder.h
contrib/llvm/lib/CodeGen/Analysis.cpp
contrib/llvm/lib/CodeGen/AsmPrinter/ARMException.cpp
contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp
contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp
contrib/llvm/lib/CodeGen/AsmPrinter/DIE.cpp
contrib/llvm/lib/CodeGen/AsmPrinter/DIE.h
contrib/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.cpp
contrib/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.h
contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCFIException.cpp
contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp
contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h
contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h
contrib/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp
contrib/llvm/lib/CodeGen/AsmPrinter/DwarfException.h
contrib/llvm/lib/CodeGen/AsmPrinter/ErlangGCPrinter.cpp [new file with mode: 0644]
contrib/llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp
contrib/llvm/lib/CodeGen/AsmPrinter/Win64Exception.cpp
contrib/llvm/lib/CodeGen/BasicTargetTransformInfo.cpp [new file with mode: 0644]
contrib/llvm/lib/CodeGen/BranchFolding.cpp
contrib/llvm/lib/CodeGen/CalcSpillWeights.cpp
contrib/llvm/lib/CodeGen/CallingConvLower.cpp
contrib/llvm/lib/CodeGen/CodeGen.cpp
contrib/llvm/lib/CodeGen/CodePlacementOpt.cpp [deleted file]
contrib/llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp
contrib/llvm/lib/CodeGen/CriticalAntiDepBreaker.h
contrib/llvm/lib/CodeGen/DFAPacketizer.cpp
contrib/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp
contrib/llvm/lib/CodeGen/DwarfEHPrepare.cpp
contrib/llvm/lib/CodeGen/EarlyIfConversion.cpp
contrib/llvm/lib/CodeGen/ErlangGC.cpp [new file with mode: 0644]
contrib/llvm/lib/CodeGen/ExecutionDepsFix.cpp
contrib/llvm/lib/CodeGen/ExpandISelPseudos.cpp
contrib/llvm/lib/CodeGen/ExpandPostRAPseudos.cpp
contrib/llvm/lib/CodeGen/GCMetadata.cpp
contrib/llvm/lib/CodeGen/GCStrategy.cpp
contrib/llvm/lib/CodeGen/IfConversion.cpp
contrib/llvm/lib/CodeGen/InlineSpiller.cpp
contrib/llvm/lib/CodeGen/InterferenceCache.cpp
contrib/llvm/lib/CodeGen/InterferenceCache.h
contrib/llvm/lib/CodeGen/IntrinsicLowering.cpp
contrib/llvm/lib/CodeGen/LLVMTargetMachine.cpp
contrib/llvm/lib/CodeGen/LexicalScopes.cpp
contrib/llvm/lib/CodeGen/LiveDebugVariables.cpp
contrib/llvm/lib/CodeGen/LiveInterval.cpp
contrib/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp
contrib/llvm/lib/CodeGen/LiveIntervalUnion.cpp
contrib/llvm/lib/CodeGen/LiveRangeCalc.cpp
contrib/llvm/lib/CodeGen/LiveRangeCalc.h
contrib/llvm/lib/CodeGen/LiveRangeEdit.cpp
contrib/llvm/lib/CodeGen/LiveRegMatrix.cpp
contrib/llvm/lib/CodeGen/LiveStackAnalysis.cpp
contrib/llvm/lib/CodeGen/LiveVariables.cpp
contrib/llvm/lib/CodeGen/LocalStackSlotAllocation.cpp
contrib/llvm/lib/CodeGen/MachineBasicBlock.cpp
contrib/llvm/lib/CodeGen/MachineBlockFrequencyInfo.cpp
contrib/llvm/lib/CodeGen/MachineBlockPlacement.cpp
contrib/llvm/lib/CodeGen/MachineBranchProbabilityInfo.cpp
contrib/llvm/lib/CodeGen/MachineCSE.cpp
contrib/llvm/lib/CodeGen/MachineCopyPropagation.cpp
contrib/llvm/lib/CodeGen/MachineFunction.cpp
contrib/llvm/lib/CodeGen/MachineFunctionPass.cpp
contrib/llvm/lib/CodeGen/MachineFunctionPrinterPass.cpp
contrib/llvm/lib/CodeGen/MachineInstr.cpp
contrib/llvm/lib/CodeGen/MachineInstrBundle.cpp
contrib/llvm/lib/CodeGen/MachineLICM.cpp
contrib/llvm/lib/CodeGen/MachineLoopInfo.cpp
contrib/llvm/lib/CodeGen/MachineLoopRanges.cpp [deleted file]
contrib/llvm/lib/CodeGen/MachineModuleInfo.cpp
contrib/llvm/lib/CodeGen/MachineRegisterInfo.cpp
contrib/llvm/lib/CodeGen/MachineSSAUpdater.cpp
contrib/llvm/lib/CodeGen/MachineScheduler.cpp
contrib/llvm/lib/CodeGen/MachineSink.cpp
contrib/llvm/lib/CodeGen/MachineTraceMetrics.cpp
contrib/llvm/lib/CodeGen/MachineVerifier.cpp
contrib/llvm/lib/CodeGen/OptimizePHIs.cpp
contrib/llvm/lib/CodeGen/PHIElimination.cpp
contrib/llvm/lib/CodeGen/PHIEliminationUtils.cpp
contrib/llvm/lib/CodeGen/Passes.cpp
contrib/llvm/lib/CodeGen/PeepholeOptimizer.cpp
contrib/llvm/lib/CodeGen/PostRASchedulerList.cpp
contrib/llvm/lib/CodeGen/PrologEpilogInserter.cpp
contrib/llvm/lib/CodeGen/PrologEpilogInserter.h
contrib/llvm/lib/CodeGen/PseudoSourceValue.cpp
contrib/llvm/lib/CodeGen/RegAllocBase.cpp
contrib/llvm/lib/CodeGen/RegAllocBase.h
contrib/llvm/lib/CodeGen/RegAllocBasic.cpp
contrib/llvm/lib/CodeGen/RegAllocFast.cpp
contrib/llvm/lib/CodeGen/RegAllocGreedy.cpp
contrib/llvm/lib/CodeGen/RegAllocPBQP.cpp
contrib/llvm/lib/CodeGen/RegisterClassInfo.cpp
contrib/llvm/lib/CodeGen/RegisterCoalescer.cpp
contrib/llvm/lib/CodeGen/RegisterPressure.cpp
contrib/llvm/lib/CodeGen/RegisterScavenging.cpp
contrib/llvm/lib/CodeGen/ScheduleDAG.cpp
contrib/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp
contrib/llvm/lib/CodeGen/ScheduleDAGPrinter.cpp
contrib/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
contrib/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp
contrib/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp
contrib/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp
contrib/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.h
contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp
contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h
contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp
contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp
contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
contrib/llvm/lib/CodeGen/SelectionDAG/ResourcePriorityQueue.cpp
contrib/llvm/lib/CodeGen/SelectionDAG/SDNodeDbgValue.h
contrib/llvm/lib/CodeGen/SelectionDAG/SDNodeOrdering.h
contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp
contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp
contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.h
contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp
contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp
contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
contrib/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
contrib/llvm/lib/CodeGen/ShadowStackGC.cpp
contrib/llvm/lib/CodeGen/ShrinkWrapping.cpp
contrib/llvm/lib/CodeGen/SjLjEHPrepare.cpp
contrib/llvm/lib/CodeGen/SlotIndexes.cpp
contrib/llvm/lib/CodeGen/SpillPlacement.cpp
contrib/llvm/lib/CodeGen/Spiller.cpp
contrib/llvm/lib/CodeGen/SplitKit.cpp
contrib/llvm/lib/CodeGen/StackColoring.cpp
contrib/llvm/lib/CodeGen/StackProtector.cpp
contrib/llvm/lib/CodeGen/StackSlotColoring.cpp
contrib/llvm/lib/CodeGen/StrongPHIElimination.cpp
contrib/llvm/lib/CodeGen/TailDuplication.cpp
contrib/llvm/lib/CodeGen/TargetFrameLoweringImpl.cpp
contrib/llvm/lib/CodeGen/TargetInstrInfo.cpp [moved from contrib/llvm/lib/CodeGen/TargetInstrInfoImpl.cpp with 80% similarity]
contrib/llvm/lib/CodeGen/TargetLoweringBase.cpp [new file with mode: 0644]
contrib/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp
contrib/llvm/lib/CodeGen/TargetOptionsImpl.cpp
contrib/llvm/lib/CodeGen/TargetRegisterInfo.cpp [moved from contrib/llvm/lib/Target/TargetRegisterInfo.cpp with 84% similarity]
contrib/llvm/lib/CodeGen/TargetSchedule.cpp
contrib/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp
contrib/llvm/lib/CodeGen/UnreachableBlockElim.cpp
contrib/llvm/lib/CodeGen/VirtRegMap.cpp
contrib/llvm/lib/DebugInfo/DIContext.cpp
contrib/llvm/lib/DebugInfo/DWARFAbbreviationDeclaration.cpp
contrib/llvm/lib/DebugInfo/DWARFAbbreviationDeclaration.h
contrib/llvm/lib/DebugInfo/DWARFCompileUnit.cpp
contrib/llvm/lib/DebugInfo/DWARFCompileUnit.h
contrib/llvm/lib/DebugInfo/DWARFContext.cpp
contrib/llvm/lib/DebugInfo/DWARFContext.h
contrib/llvm/lib/DebugInfo/DWARFDebugArangeSet.cpp
contrib/llvm/lib/DebugInfo/DWARFDebugArangeSet.h
contrib/llvm/lib/DebugInfo/DWARFDebugAranges.cpp
contrib/llvm/lib/DebugInfo/DWARFDebugAranges.h
contrib/llvm/lib/DebugInfo/DWARFDebugFrame.cpp [new file with mode: 0644]
contrib/llvm/lib/DebugInfo/DWARFDebugFrame.h [new file with mode: 0644]
contrib/llvm/lib/DebugInfo/DWARFDebugInfoEntry.cpp
contrib/llvm/lib/DebugInfo/DWARFDebugInfoEntry.h
contrib/llvm/lib/DebugInfo/DWARFDebugLine.cpp
contrib/llvm/lib/DebugInfo/DWARFDebugLine.h
contrib/llvm/lib/DebugInfo/DWARFFormValue.cpp
contrib/llvm/lib/DebugInfo/DWARFRelocMap.h [new file with mode: 0644]
contrib/llvm/lib/ExecutionEngine/EventListenerCommon.h
contrib/llvm/lib/ExecutionEngine/ExecutionEngine.cpp
contrib/llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp
contrib/llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventListener.cpp
contrib/llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventsWrapper.h
contrib/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp
contrib/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp
contrib/llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp
contrib/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
contrib/llvm/lib/ExecutionEngine/JIT/JIT.cpp
contrib/llvm/lib/ExecutionEngine/JIT/JITDwarfEmitter.cpp
contrib/llvm/lib/ExecutionEngine/JIT/JITDwarfEmitter.h
contrib/llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp
contrib/llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp
contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp
contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.h
contrib/llvm/lib/ExecutionEngine/MCJIT/SectionMemoryManager.cpp [new file with mode: 0644]
contrib/llvm/lib/ExecutionEngine/OProfileJIT/OProfileJITEventListener.cpp
contrib/llvm/lib/ExecutionEngine/OProfileJIT/OProfileWrapper.cpp
contrib/llvm/lib/ExecutionEngine/RuntimeDyld/GDBRegistrar.cpp
contrib/llvm/lib/ExecutionEngine/RuntimeDyld/ObjectImageCommon.h
contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp
contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.h
contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h
contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp
contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.h
contrib/llvm/lib/ExecutionEngine/TargetSelect.cpp
contrib/llvm/lib/IR/AsmWriter.cpp [moved from contrib/llvm/lib/VMCore/AsmWriter.cpp with 90% similarity]
contrib/llvm/lib/IR/AttributeImpl.h [new file with mode: 0644]
contrib/llvm/lib/IR/Attributes.cpp [new file with mode: 0644]
contrib/llvm/lib/IR/AutoUpgrade.cpp [moved from contrib/llvm/lib/VMCore/AutoUpgrade.cpp with 98% similarity]
contrib/llvm/lib/IR/BasicBlock.cpp [moved from contrib/llvm/lib/VMCore/BasicBlock.cpp with 98% similarity]
contrib/llvm/lib/IR/ConstantFold.cpp [moved from contrib/llvm/lib/VMCore/ConstantFold.cpp with 97% similarity]
contrib/llvm/lib/IR/ConstantFold.h [moved from contrib/llvm/lib/VMCore/ConstantFold.h with 100% similarity]
contrib/llvm/lib/IR/Constants.cpp [moved from contrib/llvm/lib/VMCore/Constants.cpp with 93% similarity]
contrib/llvm/lib/IR/ConstantsContext.h [moved from contrib/llvm/lib/VMCore/ConstantsContext.h with 99% similarity]
contrib/llvm/lib/IR/Core.cpp [moved from contrib/llvm/lib/VMCore/Core.cpp with 92% similarity]
contrib/llvm/lib/IR/DIBuilder.cpp [moved from contrib/llvm/lib/VMCore/DIBuilder.cpp with 78% similarity]
contrib/llvm/lib/IR/DataLayout.cpp [moved from contrib/llvm/lib/VMCore/DataLayout.cpp with 77% similarity]
contrib/llvm/lib/IR/DebugInfo.cpp [moved from contrib/llvm/lib/VMCore/DebugInfo.cpp with 77% similarity]
contrib/llvm/lib/IR/DebugLoc.cpp [moved from contrib/llvm/lib/VMCore/DebugLoc.cpp with 100% similarity]
contrib/llvm/lib/IR/Dominators.cpp [moved from contrib/llvm/lib/VMCore/Dominators.cpp with 99% similarity]
contrib/llvm/lib/IR/Function.cpp [moved from contrib/llvm/lib/VMCore/Function.cpp with 83% similarity]
contrib/llvm/lib/IR/GCOV.cpp [moved from contrib/llvm/lib/VMCore/GCOV.cpp with 100% similarity]
contrib/llvm/lib/IR/GVMaterializer.cpp [moved from contrib/llvm/lib/VMCore/GVMaterializer.cpp with 100% similarity]
contrib/llvm/lib/IR/Globals.cpp [moved from contrib/llvm/lib/VMCore/Globals.cpp with 91% similarity]
contrib/llvm/lib/IR/IRBuilder.cpp [moved from contrib/llvm/lib/VMCore/IRBuilder.cpp with 97% similarity]
contrib/llvm/lib/IR/InlineAsm.cpp [moved from contrib/llvm/lib/VMCore/InlineAsm.cpp with 97% similarity]
contrib/llvm/lib/IR/Instruction.cpp [moved from contrib/llvm/lib/VMCore/Instruction.cpp with 79% similarity]
contrib/llvm/lib/IR/Instructions.cpp [moved from contrib/llvm/lib/VMCore/Instructions.cpp with 97% similarity]
contrib/llvm/lib/IR/IntrinsicInst.cpp [moved from contrib/llvm/lib/VMCore/IntrinsicInst.cpp with 94% similarity]
contrib/llvm/lib/IR/LLVMContext.cpp [moved from contrib/llvm/lib/VMCore/LLVMContext.cpp with 90% similarity]
contrib/llvm/lib/IR/LLVMContextImpl.cpp [moved from contrib/llvm/lib/VMCore/LLVMContextImpl.cpp with 89% similarity]
contrib/llvm/lib/IR/LLVMContextImpl.h [moved from contrib/llvm/lib/VMCore/LLVMContextImpl.h with 95% similarity]
contrib/llvm/lib/IR/LeakDetector.cpp [moved from contrib/llvm/lib/VMCore/LeakDetector.cpp with 98% similarity]
contrib/llvm/lib/IR/LeaksContext.h [moved from contrib/llvm/lib/VMCore/LeaksContext.h with 98% similarity]
contrib/llvm/lib/IR/Metadata.cpp [moved from contrib/llvm/lib/VMCore/Metadata.cpp with 96% similarity]
contrib/llvm/lib/IR/Module.cpp [moved from contrib/llvm/lib/VMCore/Module.cpp with 94% similarity]
contrib/llvm/lib/IR/Pass.cpp [moved from contrib/llvm/lib/VMCore/Pass.cpp with 94% similarity]
contrib/llvm/lib/IR/PassManager.cpp [moved from contrib/llvm/lib/VMCore/PassManager.cpp with 96% similarity]
contrib/llvm/lib/IR/PassRegistry.cpp [moved from contrib/llvm/lib/VMCore/PassRegistry.cpp with 99% similarity]
contrib/llvm/lib/IR/PrintModulePass.cpp [moved from contrib/llvm/lib/VMCore/PrintModulePass.cpp with 70% similarity]
contrib/llvm/lib/IR/SymbolTableListTraitsImpl.h [moved from contrib/llvm/lib/VMCore/SymbolTableListTraitsImpl.h with 98% similarity]
contrib/llvm/lib/IR/Type.cpp [moved from contrib/llvm/lib/VMCore/Type.cpp with 96% similarity]
contrib/llvm/lib/IR/TypeFinder.cpp [moved from contrib/llvm/lib/VMCore/TypeFinder.cpp with 94% similarity]
contrib/llvm/lib/IR/Use.cpp [moved from contrib/llvm/lib/VMCore/Use.cpp with 98% similarity]
contrib/llvm/lib/IR/User.cpp [moved from contrib/llvm/lib/VMCore/User.cpp with 96% similarity]
contrib/llvm/lib/IR/Value.cpp [moved from contrib/llvm/lib/VMCore/Value.cpp with 95% similarity]
contrib/llvm/lib/IR/ValueSymbolTable.cpp [moved from contrib/llvm/lib/VMCore/ValueSymbolTable.cpp with 95% similarity]
contrib/llvm/lib/IR/ValueTypes.cpp [moved from contrib/llvm/lib/VMCore/ValueTypes.cpp with 87% similarity]
contrib/llvm/lib/IR/Verifier.cpp [moved from contrib/llvm/lib/VMCore/Verifier.cpp with 83% similarity]
contrib/llvm/lib/IRReader/IRReader.cpp [new file with mode: 0644]
contrib/llvm/lib/Linker/LinkArchives.cpp [deleted file]
contrib/llvm/lib/Linker/LinkItems.cpp [deleted file]
contrib/llvm/lib/Linker/LinkModules.cpp
contrib/llvm/lib/Linker/Linker.cpp [deleted file]
contrib/llvm/lib/MC/ELFObjectWriter.cpp
contrib/llvm/lib/MC/MCAsmInfo.cpp
contrib/llvm/lib/MC/MCAsmInfoCOFF.cpp
contrib/llvm/lib/MC/MCAsmStreamer.cpp
contrib/llvm/lib/MC/MCAssembler.cpp
contrib/llvm/lib/MC/MCContext.cpp
contrib/llvm/lib/MC/MCDisassembler/Disassembler.cpp
contrib/llvm/lib/MC/MCDisassembler/Disassembler.h
contrib/llvm/lib/MC/MCDisassembler/EDDisassembler.cpp [deleted file]
contrib/llvm/lib/MC/MCDisassembler/EDDisassembler.h [deleted file]
contrib/llvm/lib/MC/MCDisassembler/EDInfo.h [deleted file]
contrib/llvm/lib/MC/MCDisassembler/EDInst.cpp [deleted file]
contrib/llvm/lib/MC/MCDisassembler/EDInst.h [deleted file]
contrib/llvm/lib/MC/MCDisassembler/EDMain.cpp [deleted file]
contrib/llvm/lib/MC/MCDisassembler/EDOperand.cpp [deleted file]
contrib/llvm/lib/MC/MCDisassembler/EDOperand.h [deleted file]
contrib/llvm/lib/MC/MCDisassembler/EDToken.cpp [deleted file]
contrib/llvm/lib/MC/MCDisassembler/EDToken.h [deleted file]
contrib/llvm/lib/MC/MCDwarf.cpp
contrib/llvm/lib/MC/MCELF.cpp
contrib/llvm/lib/MC/MCELFObjectTargetWriter.cpp
contrib/llvm/lib/MC/MCELFStreamer.cpp
contrib/llvm/lib/MC/MCExpr.cpp
contrib/llvm/lib/MC/MCInstPrinter.cpp
contrib/llvm/lib/MC/MCMachOStreamer.cpp
contrib/llvm/lib/MC/MCNullStreamer.cpp
contrib/llvm/lib/MC/MCObjectFileInfo.cpp
contrib/llvm/lib/MC/MCObjectStreamer.cpp
contrib/llvm/lib/MC/MCParser/AsmLexer.cpp
contrib/llvm/lib/MC/MCParser/AsmParser.cpp
contrib/llvm/lib/MC/MCParser/COFFAsmParser.cpp
contrib/llvm/lib/MC/MCParser/DarwinAsmParser.cpp
contrib/llvm/lib/MC/MCParser/ELFAsmParser.cpp
contrib/llvm/lib/MC/MCParser/MCAsmLexer.cpp
contrib/llvm/lib/MC/MCParser/MCAsmParser.cpp
contrib/llvm/lib/MC/MCPureStreamer.cpp
contrib/llvm/lib/MC/MCSection.cpp
contrib/llvm/lib/MC/MCSectionCOFF.cpp
contrib/llvm/lib/MC/MCSectionELF.cpp
contrib/llvm/lib/MC/MCSectionMachO.cpp
contrib/llvm/lib/MC/MCStreamer.cpp
contrib/llvm/lib/MC/MCSubtargetInfo.cpp
contrib/llvm/lib/MC/MCWin64EH.cpp
contrib/llvm/lib/MC/MachObjectWriter.cpp
contrib/llvm/lib/MC/WinCOFFObjectWriter.cpp
contrib/llvm/lib/MC/WinCOFFStreamer.cpp
contrib/llvm/lib/Object/Archive.cpp
contrib/llvm/lib/Object/COFFObjectFile.cpp
contrib/llvm/lib/Object/ELFObjectFile.cpp
contrib/llvm/lib/Object/MachOObject.cpp [deleted file]
contrib/llvm/lib/Object/MachOObjectFile.cpp
contrib/llvm/lib/Object/Object.cpp
contrib/llvm/lib/Object/ObjectFile.cpp
contrib/llvm/lib/Option/Arg.cpp [new file with mode: 0644]
contrib/llvm/lib/Option/ArgList.cpp [new file with mode: 0644]
contrib/llvm/lib/Option/OptTable.cpp [new file with mode: 0644]
contrib/llvm/lib/Option/Option.cpp [new file with mode: 0644]
contrib/llvm/lib/Support/APFloat.cpp
contrib/llvm/lib/Support/APInt.cpp
contrib/llvm/lib/Support/Allocator.cpp
contrib/llvm/lib/Support/CommandLine.cpp
contrib/llvm/lib/Support/Compression.cpp [new file with mode: 0644]
contrib/llvm/lib/Support/ConstantRange.cpp
contrib/llvm/lib/Support/ConvertUTF.c [moved from contrib/llvm/tools/clang/lib/Basic/ConvertUTF.c with 99% similarity]
contrib/llvm/lib/Support/ConvertUTFWrapper.cpp [moved from contrib/llvm/tools/clang/lib/Basic/ConvertUTFWrapper.cpp with 96% similarity]
contrib/llvm/lib/Support/CrashRecoveryContext.cpp
contrib/llvm/lib/Support/DataExtractor.cpp
contrib/llvm/lib/Support/DataStream.cpp
contrib/llvm/lib/Support/Debug.cpp
contrib/llvm/lib/Support/Disassembler.cpp
contrib/llvm/lib/Support/Dwarf.cpp
contrib/llvm/lib/Support/DynamicLibrary.cpp
contrib/llvm/lib/Support/ErrorHandling.cpp
contrib/llvm/lib/Support/FileOutputBuffer.cpp
contrib/llvm/lib/Support/FileUtilities.cpp
contrib/llvm/lib/Support/FoldingSet.cpp
contrib/llvm/lib/Support/GraphWriter.cpp
contrib/llvm/lib/Support/Host.cpp
contrib/llvm/lib/Support/LocaleWindows.inc
contrib/llvm/lib/Support/LocaleXlocale.inc
contrib/llvm/lib/Support/LockFileManager.cpp
contrib/llvm/lib/Support/Memory.cpp
contrib/llvm/lib/Support/MemoryBuffer.cpp
contrib/llvm/lib/Support/Path.cpp
contrib/llvm/lib/Support/PathV2.cpp
contrib/llvm/lib/Support/PluginLoader.cpp
contrib/llvm/lib/Support/PrettyStackTrace.cpp
contrib/llvm/lib/Support/Process.cpp
contrib/llvm/lib/Support/Program.cpp
contrib/llvm/lib/Support/Regex.cpp
contrib/llvm/lib/Support/SmallPtrSet.cpp
contrib/llvm/lib/Support/SourceMgr.cpp
contrib/llvm/lib/Support/Statistic.cpp
contrib/llvm/lib/Support/StringRef.cpp
contrib/llvm/lib/Support/Threading.cpp
contrib/llvm/lib/Support/TimeValue.cpp
contrib/llvm/lib/Support/Timer.cpp
contrib/llvm/lib/Support/Triple.cpp
contrib/llvm/lib/Support/Unix/Memory.inc
contrib/llvm/lib/Support/Unix/PathV2.inc
contrib/llvm/lib/Support/Unix/Process.inc
contrib/llvm/lib/Support/Unix/Program.inc
contrib/llvm/lib/Support/Unix/Signals.inc
contrib/llvm/lib/Support/Unix/TimeValue.inc
contrib/llvm/lib/Support/Unix/Unix.h
contrib/llvm/lib/Support/Unix/Watchdog.inc [new file with mode: 0644]
contrib/llvm/lib/Support/Watchdog.cpp [new file with mode: 0644]
contrib/llvm/lib/Support/Windows/Memory.inc
contrib/llvm/lib/Support/Windows/Path.inc
contrib/llvm/lib/Support/Windows/PathV2.inc
contrib/llvm/lib/Support/Windows/Process.inc
contrib/llvm/lib/Support/Windows/Program.inc
contrib/llvm/lib/Support/Windows/Signals.inc
contrib/llvm/lib/Support/Windows/Watchdog.inc [new file with mode: 0644]
contrib/llvm/lib/Support/YAMLParser.cpp
contrib/llvm/lib/Support/YAMLTraits.cpp [new file with mode: 0644]
contrib/llvm/lib/Support/raw_ostream.cpp
contrib/llvm/lib/Support/regcomp.c
contrib/llvm/lib/Support/system_error.cpp
contrib/llvm/lib/TableGen/Error.cpp
contrib/llvm/lib/TableGen/Main.cpp
contrib/llvm/lib/TableGen/Record.cpp
contrib/llvm/lib/TableGen/TGLexer.cpp
contrib/llvm/lib/TableGen/TGLexer.h
contrib/llvm/lib/TableGen/TGParser.cpp
contrib/llvm/lib/TableGen/TGParser.h
contrib/llvm/lib/TableGen/TableGenBackend.cpp
contrib/llvm/lib/Target/AArch64/AArch64.h [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/AArch64.td [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/AArch64AsmPrinter.h [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/AArch64BranchFixupPass.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/AArch64CallingConv.td [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/AArch64FrameLowering.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/AArch64FrameLowering.h [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/AArch64ISelLowering.h [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/AArch64InstrFormats.td [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/AArch64InstrInfo.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/AArch64InstrInfo.h [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/AArch64InstrInfo.td [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/AArch64MCInstLower.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/AArch64MachineFunctionInfo.cpp [moved from contrib/llvm/lib/Target/CellSPU/SPUSelectionDAGInfo.cpp with 50% similarity]
contrib/llvm/lib/Target/AArch64/AArch64MachineFunctionInfo.h [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/AArch64RegisterInfo.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/AArch64RegisterInfo.h [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/AArch64RegisterInfo.td [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/AArch64Schedule.td [moved from contrib/llvm/lib/Target/CellSPU/SPUMachineFunction.cpp with 60% similarity]
contrib/llvm/lib/Target/AArch64/AArch64SelectionDAGInfo.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/AArch64SelectionDAGInfo.h [moved from contrib/llvm/lib/Target/CellSPU/SPUSelectionDAGInfo.h with 51% similarity]
contrib/llvm/lib/Target/AArch64/AArch64Subtarget.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/AArch64Subtarget.h [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/AArch64TargetMachine.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/AArch64TargetMachine.h [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/AArch64TargetObjectFile.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/AArch64TargetObjectFile.h [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/InstPrinter/AArch64InstPrinter.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/InstPrinter/AArch64InstPrinter.h [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64AsmBackend.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFStreamer.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFStreamer.h [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64FixupKinds.h [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.h [moved from contrib/llvm/lib/Target/CellSPU/MCTargetDesc/SPUMCAsmInfo.h with 51% similarity]
contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCCodeEmitter.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.h [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.h [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/README.txt [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/TargetInfo/AArch64TargetInfo.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.h [new file with mode: 0644]
contrib/llvm/lib/Target/ARM/A15SDOptimizer.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/ARM/ARM.h
contrib/llvm/lib/Target/ARM/ARM.td
contrib/llvm/lib/Target/ARM/ARMAsmPrinter.cpp
contrib/llvm/lib/Target/ARM/ARMAsmPrinter.h
contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp
contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.h
contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp
contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.h
contrib/llvm/lib/Target/ARM/ARMCallingConv.h
contrib/llvm/lib/Target/ARM/ARMCallingConv.td
contrib/llvm/lib/Target/ARM/ARMCodeEmitter.cpp
contrib/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp
contrib/llvm/lib/Target/ARM/ARMConstantPoolValue.cpp
contrib/llvm/lib/Target/ARM/ARMConstantPoolValue.h
contrib/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp
contrib/llvm/lib/Target/ARM/ARMFastISel.cpp
contrib/llvm/lib/Target/ARM/ARMFrameLowering.cpp
contrib/llvm/lib/Target/ARM/ARMFrameLowering.h
contrib/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp
contrib/llvm/lib/Target/ARM/ARMISelLowering.cpp
contrib/llvm/lib/Target/ARM/ARMISelLowering.h
contrib/llvm/lib/Target/ARM/ARMInstrInfo.cpp
contrib/llvm/lib/Target/ARM/ARMInstrInfo.td
contrib/llvm/lib/Target/ARM/ARMInstrNEON.td
contrib/llvm/lib/Target/ARM/ARMInstrThumb2.td
contrib/llvm/lib/Target/ARM/ARMJITInfo.cpp
contrib/llvm/lib/Target/ARM/ARMJITInfo.h
contrib/llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp
contrib/llvm/lib/Target/ARM/ARMMCInstLower.cpp
contrib/llvm/lib/Target/ARM/ARMMachineFunctionInfo.h
contrib/llvm/lib/Target/ARM/ARMSchedule.td
contrib/llvm/lib/Target/ARM/ARMScheduleA9.td
contrib/llvm/lib/Target/ARM/ARMScheduleSwift.td
contrib/llvm/lib/Target/ARM/ARMSelectionDAGInfo.cpp
contrib/llvm/lib/Target/ARM/ARMSubtarget.cpp
contrib/llvm/lib/Target/ARM/ARMSubtarget.h
contrib/llvm/lib/Target/ARM/ARMTargetMachine.cpp
contrib/llvm/lib/Target/ARM/ARMTargetMachine.h
contrib/llvm/lib/Target/ARM/ARMTargetObjectFile.cpp
contrib/llvm/lib/Target/ARM/ARMTargetObjectFile.h
contrib/llvm/lib/Target/ARM/ARMTargetTransformInfo.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/ARM/AsmParser/ARMAsmLexer.cpp [deleted file]
contrib/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp
contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp
contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.h
contrib/llvm/lib/Target/ARM/LICENSE.TXT [new file with mode: 0755]
contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp
contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp
contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMELFStreamer.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMELFStreamer.h [new file with mode: 0644]
contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp
contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCExpr.cpp
contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCExpr.h
contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp
contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp
contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOp.h [new file with mode: 0644]
contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.h [new file with mode: 0644]
contrib/llvm/lib/Target/ARM/MLxExpansionPass.cpp
contrib/llvm/lib/Target/ARM/TargetInfo/ARMTargetInfo.cpp
contrib/llvm/lib/Target/ARM/Thumb1FrameLowering.cpp
contrib/llvm/lib/Target/ARM/Thumb1FrameLowering.h
contrib/llvm/lib/Target/ARM/Thumb1InstrInfo.cpp
contrib/llvm/lib/Target/ARM/Thumb1RegisterInfo.cpp
contrib/llvm/lib/Target/ARM/Thumb1RegisterInfo.h
contrib/llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp
contrib/llvm/lib/Target/ARM/Thumb2InstrInfo.cpp
contrib/llvm/lib/Target/ARM/Thumb2RegisterInfo.cpp
contrib/llvm/lib/Target/ARM/Thumb2SizeReduction.cpp
contrib/llvm/lib/Target/CellSPU/CellSDKIntrinsics.td [deleted file]
contrib/llvm/lib/Target/CellSPU/MCTargetDesc/SPUMCAsmInfo.cpp [deleted file]
contrib/llvm/lib/Target/CellSPU/MCTargetDesc/SPUMCTargetDesc.cpp [deleted file]
contrib/llvm/lib/Target/CellSPU/MCTargetDesc/SPUMCTargetDesc.h [deleted file]
contrib/llvm/lib/Target/CellSPU/SPU.h [deleted file]
contrib/llvm/lib/Target/CellSPU/SPU.td [deleted file]
contrib/llvm/lib/Target/CellSPU/SPU128InstrInfo.td [deleted file]
contrib/llvm/lib/Target/CellSPU/SPU64InstrInfo.td [deleted file]
contrib/llvm/lib/Target/CellSPU/SPUAsmPrinter.cpp [deleted file]
contrib/llvm/lib/Target/CellSPU/SPUCallingConv.td [deleted file]
contrib/llvm/lib/Target/CellSPU/SPUFrameLowering.cpp [deleted file]
contrib/llvm/lib/Target/CellSPU/SPUFrameLowering.h [deleted file]
contrib/llvm/lib/Target/CellSPU/SPUHazardRecognizers.cpp [deleted file]
contrib/llvm/lib/Target/CellSPU/SPUHazardRecognizers.h [deleted file]
contrib/llvm/lib/Target/CellSPU/SPUISelDAGToDAG.cpp [deleted file]
contrib/llvm/lib/Target/CellSPU/SPUISelLowering.cpp [deleted file]
contrib/llvm/lib/Target/CellSPU/SPUISelLowering.h [deleted file]
contrib/llvm/lib/Target/CellSPU/SPUInstrBuilder.h [deleted file]
contrib/llvm/lib/Target/CellSPU/SPUInstrFormats.td [deleted file]
contrib/llvm/lib/Target/CellSPU/SPUInstrInfo.cpp [deleted file]
contrib/llvm/lib/Target/CellSPU/SPUInstrInfo.h [deleted file]
contrib/llvm/lib/Target/CellSPU/SPUInstrInfo.td [deleted file]
contrib/llvm/lib/Target/CellSPU/SPUMachineFunction.h [deleted file]
contrib/llvm/lib/Target/CellSPU/SPUMathInstr.td [deleted file]
contrib/llvm/lib/Target/CellSPU/SPUNodes.td [deleted file]
contrib/llvm/lib/Target/CellSPU/SPUNopFiller.cpp [deleted file]
contrib/llvm/lib/Target/CellSPU/SPUOperands.td [deleted file]
contrib/llvm/lib/Target/CellSPU/SPURegisterInfo.cpp [deleted file]
contrib/llvm/lib/Target/CellSPU/SPURegisterInfo.h [deleted file]
contrib/llvm/lib/Target/CellSPU/SPURegisterInfo.td [deleted file]
contrib/llvm/lib/Target/CellSPU/SPURegisterNames.h [deleted file]
contrib/llvm/lib/Target/CellSPU/SPUSchedule.td [deleted file]
contrib/llvm/lib/Target/CellSPU/SPUSubtarget.cpp [deleted file]
contrib/llvm/lib/Target/CellSPU/SPUSubtarget.h [deleted file]
contrib/llvm/lib/Target/CellSPU/SPUTargetMachine.cpp [deleted file]
contrib/llvm/lib/Target/CellSPU/SPUTargetMachine.h [deleted file]
contrib/llvm/lib/Target/CppBackend/CPPBackend.cpp
contrib/llvm/lib/Target/CppBackend/CPPTargetMachine.h
contrib/llvm/lib/Target/CppBackend/TargetInfo/CppBackendTargetInfo.cpp
contrib/llvm/lib/Target/Hexagon/Hexagon.h
contrib/llvm/lib/Target/Hexagon/Hexagon.td
contrib/llvm/lib/Target/Hexagon/HexagonAsmPrinter.cpp
contrib/llvm/lib/Target/Hexagon/HexagonCFGOptimizer.cpp
contrib/llvm/lib/Target/Hexagon/HexagonCallingConvLower.cpp
contrib/llvm/lib/Target/Hexagon/HexagonCallingConvLower.h
contrib/llvm/lib/Target/Hexagon/HexagonExpandPredSpillCode.cpp
contrib/llvm/lib/Target/Hexagon/HexagonFixupHwLoops.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/Hexagon/HexagonFrameLowering.cpp
contrib/llvm/lib/Target/Hexagon/HexagonFrameLowering.h
contrib/llvm/lib/Target/Hexagon/HexagonHardwareLoops.cpp
contrib/llvm/lib/Target/Hexagon/HexagonISelDAGToDAG.cpp
contrib/llvm/lib/Target/Hexagon/HexagonISelLowering.cpp
contrib/llvm/lib/Target/Hexagon/HexagonISelLowering.h
contrib/llvm/lib/Target/Hexagon/HexagonImmediates.td [deleted file]
contrib/llvm/lib/Target/Hexagon/HexagonInstrFormats.td
contrib/llvm/lib/Target/Hexagon/HexagonInstrFormatsV4.td
contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.cpp
contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.h
contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.td
contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV3.td
contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV4.td
contrib/llvm/lib/Target/Hexagon/HexagonMCInst.h [deleted file]
contrib/llvm/lib/Target/Hexagon/HexagonMCInstLower.cpp
contrib/llvm/lib/Target/Hexagon/HexagonMachineFunctionInfo.h
contrib/llvm/lib/Target/Hexagon/HexagonMachineScheduler.cpp
contrib/llvm/lib/Target/Hexagon/HexagonMachineScheduler.h
contrib/llvm/lib/Target/Hexagon/HexagonNewValueJump.cpp
contrib/llvm/lib/Target/Hexagon/HexagonOperands.td [new file with mode: 0644]
contrib/llvm/lib/Target/Hexagon/HexagonPeephole.cpp
contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.cpp
contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.h
contrib/llvm/lib/Target/Hexagon/HexagonRemoveSZExtArgs.cpp
contrib/llvm/lib/Target/Hexagon/HexagonSchedule.td
contrib/llvm/lib/Target/Hexagon/HexagonScheduleV4.td
contrib/llvm/lib/Target/Hexagon/HexagonSplitTFRCondSets.cpp
contrib/llvm/lib/Target/Hexagon/HexagonSubtarget.cpp
contrib/llvm/lib/Target/Hexagon/HexagonSubtarget.h
contrib/llvm/lib/Target/Hexagon/HexagonTargetMachine.cpp
contrib/llvm/lib/Target/Hexagon/HexagonTargetMachine.h
contrib/llvm/lib/Target/Hexagon/HexagonTargetObjectFile.cpp
contrib/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp
contrib/llvm/lib/Target/Hexagon/InstPrinter/HexagonInstPrinter.cpp
contrib/llvm/lib/Target/Hexagon/InstPrinter/HexagonInstPrinter.h
contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonBaseInfo.h
contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.cpp
contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInst.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInst.h [new file with mode: 0644]
contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCTargetDesc.cpp
contrib/llvm/lib/Target/Hexagon/TargetInfo/HexagonTargetInfo.cpp
contrib/llvm/lib/Target/MBlaze/AsmParser/MBlazeAsmLexer.cpp [deleted file]
contrib/llvm/lib/Target/MBlaze/AsmParser/MBlazeAsmParser.cpp
contrib/llvm/lib/Target/MBlaze/Disassembler/MBlazeDisassembler.cpp
contrib/llvm/lib/Target/MBlaze/Disassembler/MBlazeDisassembler.h
contrib/llvm/lib/Target/MBlaze/InstPrinter/MBlazeInstPrinter.cpp
contrib/llvm/lib/Target/MBlaze/MBlazeAsmPrinter.cpp
contrib/llvm/lib/Target/MBlaze/MBlazeDelaySlotFiller.cpp
contrib/llvm/lib/Target/MBlaze/MBlazeFrameLowering.cpp
contrib/llvm/lib/Target/MBlaze/MBlazeFrameLowering.h
contrib/llvm/lib/Target/MBlaze/MBlazeISelDAGToDAG.cpp
contrib/llvm/lib/Target/MBlaze/MBlazeISelLowering.cpp
contrib/llvm/lib/Target/MBlaze/MBlazeISelLowering.h
contrib/llvm/lib/Target/MBlaze/MBlazeInstrInfo.cpp
contrib/llvm/lib/Target/MBlaze/MBlazeInstrInfo.td
contrib/llvm/lib/Target/MBlaze/MBlazeIntrinsicInfo.cpp
contrib/llvm/lib/Target/MBlaze/MBlazeMCInstLower.cpp
contrib/llvm/lib/Target/MBlaze/MBlazeMachineFunction.h
contrib/llvm/lib/Target/MBlaze/MBlazeRegisterInfo.cpp
contrib/llvm/lib/Target/MBlaze/MBlazeRegisterInfo.h
contrib/llvm/lib/Target/MBlaze/MBlazeSubtarget.h
contrib/llvm/lib/Target/MBlaze/MBlazeTargetMachine.cpp
contrib/llvm/lib/Target/MBlaze/MBlazeTargetMachine.h
contrib/llvm/lib/Target/MBlaze/MBlazeTargetObjectFile.cpp
contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeAsmBackend.cpp
contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeMCCodeEmitter.cpp
contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeMCTargetDesc.cpp
contrib/llvm/lib/Target/MBlaze/TargetInfo/MBlazeTargetInfo.cpp
contrib/llvm/lib/Target/MSP430/InstPrinter/MSP430InstPrinter.cpp
contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.cpp
contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.cpp
contrib/llvm/lib/Target/MSP430/MSP430AsmPrinter.cpp
contrib/llvm/lib/Target/MSP430/MSP430BranchSelector.cpp
contrib/llvm/lib/Target/MSP430/MSP430CallingConv.td
contrib/llvm/lib/Target/MSP430/MSP430FrameLowering.cpp
contrib/llvm/lib/Target/MSP430/MSP430FrameLowering.h
contrib/llvm/lib/Target/MSP430/MSP430ISelDAGToDAG.cpp
contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.cpp
contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.h
contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.cpp
contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.td
contrib/llvm/lib/Target/MSP430/MSP430MCInstLower.cpp
contrib/llvm/lib/Target/MSP430/MSP430MachineFunctionInfo.h
contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.cpp
contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.h
contrib/llvm/lib/Target/MSP430/MSP430TargetMachine.cpp
contrib/llvm/lib/Target/MSP430/MSP430TargetMachine.h
contrib/llvm/lib/Target/MSP430/TargetInfo/MSP430TargetInfo.cpp
contrib/llvm/lib/Target/Mangler.cpp
contrib/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp
contrib/llvm/lib/Target/Mips/Disassembler/MipsDisassembler.cpp
contrib/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp
contrib/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.h
contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp
contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsBaseInfo.h
contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp
contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFStreamer.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFStreamer.h [new file with mode: 0644]
contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp
contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp
contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp
contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsReginfo.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsReginfo.h [new file with mode: 0644]
contrib/llvm/lib/Target/Mips/MicroMipsInstrFormats.td [new file with mode: 0644]
contrib/llvm/lib/Target/Mips/MicroMipsInstrInfo.td [new file with mode: 0644]
contrib/llvm/lib/Target/Mips/Mips.h
contrib/llvm/lib/Target/Mips/Mips.td
contrib/llvm/lib/Target/Mips/Mips16FrameLowering.cpp
contrib/llvm/lib/Target/Mips/Mips16FrameLowering.h
contrib/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.h [new file with mode: 0644]
contrib/llvm/lib/Target/Mips/Mips16ISelLowering.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/Mips/Mips16ISelLowering.h [new file with mode: 0644]
contrib/llvm/lib/Target/Mips/Mips16InstrFormats.td
contrib/llvm/lib/Target/Mips/Mips16InstrInfo.cpp
contrib/llvm/lib/Target/Mips/Mips16InstrInfo.h
contrib/llvm/lib/Target/Mips/Mips16InstrInfo.td
contrib/llvm/lib/Target/Mips/Mips16RegisterInfo.cpp
contrib/llvm/lib/Target/Mips/Mips16RegisterInfo.h
contrib/llvm/lib/Target/Mips/Mips64InstrInfo.td
contrib/llvm/lib/Target/Mips/MipsAsmPrinter.cpp
contrib/llvm/lib/Target/Mips/MipsAsmPrinter.h
contrib/llvm/lib/Target/Mips/MipsCallingConv.td
contrib/llvm/lib/Target/Mips/MipsCodeEmitter.cpp
contrib/llvm/lib/Target/Mips/MipsCondMov.td
contrib/llvm/lib/Target/Mips/MipsConstantIslandPass.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/Mips/MipsDSPInstrFormats.td
contrib/llvm/lib/Target/Mips/MipsDSPInstrInfo.td
contrib/llvm/lib/Target/Mips/MipsDelaySlotFiller.cpp
contrib/llvm/lib/Target/Mips/MipsFrameLowering.cpp
contrib/llvm/lib/Target/Mips/MipsFrameLowering.h
contrib/llvm/lib/Target/Mips/MipsISelDAGToDAG.cpp
contrib/llvm/lib/Target/Mips/MipsISelDAGToDAG.h [new file with mode: 0644]
contrib/llvm/lib/Target/Mips/MipsISelLowering.cpp
contrib/llvm/lib/Target/Mips/MipsISelLowering.h
contrib/llvm/lib/Target/Mips/MipsInstrFPU.td
contrib/llvm/lib/Target/Mips/MipsInstrFormats.td
contrib/llvm/lib/Target/Mips/MipsInstrInfo.cpp
contrib/llvm/lib/Target/Mips/MipsInstrInfo.h
contrib/llvm/lib/Target/Mips/MipsInstrInfo.td
contrib/llvm/lib/Target/Mips/MipsJITInfo.cpp
contrib/llvm/lib/Target/Mips/MipsLongBranch.cpp
contrib/llvm/lib/Target/Mips/MipsMCInstLower.cpp
contrib/llvm/lib/Target/Mips/MipsMachineFunction.cpp
contrib/llvm/lib/Target/Mips/MipsMachineFunction.h
contrib/llvm/lib/Target/Mips/MipsModuleISelDAGToDAG.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/Mips/MipsModuleISelDAGToDAG.h [new file with mode: 0644]
contrib/llvm/lib/Target/Mips/MipsOs16.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/Mips/MipsOs16.h [new file with mode: 0644]
contrib/llvm/lib/Target/Mips/MipsRegisterInfo.cpp
contrib/llvm/lib/Target/Mips/MipsRegisterInfo.h
contrib/llvm/lib/Target/Mips/MipsRegisterInfo.td
contrib/llvm/lib/Target/Mips/MipsSEFrameLowering.cpp
contrib/llvm/lib/Target/Mips/MipsSEFrameLowering.h
contrib/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.h [new file with mode: 0644]
contrib/llvm/lib/Target/Mips/MipsSEISelLowering.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/Mips/MipsSEISelLowering.h [new file with mode: 0644]
contrib/llvm/lib/Target/Mips/MipsSEInstrInfo.cpp
contrib/llvm/lib/Target/Mips/MipsSEInstrInfo.h
contrib/llvm/lib/Target/Mips/MipsSERegisterInfo.cpp
contrib/llvm/lib/Target/Mips/MipsSERegisterInfo.h
contrib/llvm/lib/Target/Mips/MipsSubtarget.cpp
contrib/llvm/lib/Target/Mips/MipsSubtarget.h
contrib/llvm/lib/Target/Mips/MipsTargetMachine.cpp
contrib/llvm/lib/Target/Mips/MipsTargetMachine.h
contrib/llvm/lib/Target/Mips/MipsTargetObjectFile.cpp
contrib/llvm/lib/Target/Mips/MipsTargetObjectFile.h
contrib/llvm/lib/Target/Mips/TargetInfo/MipsTargetInfo.cpp
contrib/llvm/lib/Target/NVPTX/InstPrinter/Makefile [deleted file]
contrib/llvm/lib/Target/NVPTX/MCTargetDesc/Makefile [deleted file]
contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXBaseInfo.h
contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.cpp
contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCTargetDesc.cpp
contrib/llvm/lib/Target/NVPTX/Makefile [deleted file]
contrib/llvm/lib/Target/NVPTX/ManagedStringPool.h
contrib/llvm/lib/Target/NVPTX/NVPTX.h
contrib/llvm/lib/Target/NVPTX/NVPTX.td
contrib/llvm/lib/Target/NVPTX/NVPTXAllocaHoisting.cpp
contrib/llvm/lib/Target/NVPTX/NVPTXAllocaHoisting.h
contrib/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.cpp
contrib/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.h
contrib/llvm/lib/Target/NVPTX/NVPTXFrameLowering.cpp
contrib/llvm/lib/Target/NVPTX/NVPTXFrameLowering.h
contrib/llvm/lib/Target/NVPTX/NVPTXGenericToNVVM.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp
contrib/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.h
contrib/llvm/lib/Target/NVPTX/NVPTXISelLowering.cpp
contrib/llvm/lib/Target/NVPTX/NVPTXISelLowering.h
contrib/llvm/lib/Target/NVPTX/NVPTXInstrInfo.cpp
contrib/llvm/lib/Target/NVPTX/NVPTXInstrInfo.h
contrib/llvm/lib/Target/NVPTX/NVPTXInstrInfo.td
contrib/llvm/lib/Target/NVPTX/NVPTXIntrinsics.td
contrib/llvm/lib/Target/NVPTX/NVPTXLowerAggrCopies.cpp
contrib/llvm/lib/Target/NVPTX/NVPTXLowerAggrCopies.h
contrib/llvm/lib/Target/NVPTX/NVPTXNumRegisters.h
contrib/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.cpp
contrib/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.h
contrib/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.td
contrib/llvm/lib/Target/NVPTX/NVPTXSection.h
contrib/llvm/lib/Target/NVPTX/NVPTXSplitBBatBar.cpp
contrib/llvm/lib/Target/NVPTX/NVPTXSplitBBatBar.h
contrib/llvm/lib/Target/NVPTX/NVPTXSubtarget.cpp
contrib/llvm/lib/Target/NVPTX/NVPTXSubtarget.h
contrib/llvm/lib/Target/NVPTX/NVPTXTargetMachine.cpp
contrib/llvm/lib/Target/NVPTX/NVPTXTargetMachine.h
contrib/llvm/lib/Target/NVPTX/NVPTXTargetObjectFile.h
contrib/llvm/lib/Target/NVPTX/NVPTXUtilities.cpp
contrib/llvm/lib/Target/NVPTX/NVPTXUtilities.h
contrib/llvm/lib/Target/NVPTX/NVPTXutil.cpp
contrib/llvm/lib/Target/NVPTX/NVVMReflect.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/NVPTX/TargetInfo/Makefile [deleted file]
contrib/llvm/lib/Target/NVPTX/TargetInfo/NVPTXTargetInfo.cpp
contrib/llvm/lib/Target/NVPTX/VectorElementize.cpp [deleted file]
contrib/llvm/lib/Target/NVPTX/cl_common_defines.h
contrib/llvm/lib/Target/NVPTX/gen-register-defs.py [deleted file]
contrib/llvm/lib/Target/PowerPC/AsmParser/PPCAsmParser.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp
contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCAsmBackend.cpp
contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCBaseInfo.h [deleted file]
contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp
contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCFixupKinds.h
contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp
contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp
contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp
contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.h
contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCPredicates.cpp
contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCPredicates.h
contrib/llvm/lib/Target/PowerPC/PPC.h
contrib/llvm/lib/Target/PowerPC/PPC.td
contrib/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp
contrib/llvm/lib/Target/PowerPC/PPCBranchSelector.cpp
contrib/llvm/lib/Target/PowerPC/PPCCTRLoops.cpp
contrib/llvm/lib/Target/PowerPC/PPCCallingConv.td
contrib/llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp
contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.cpp
contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.h
contrib/llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp
contrib/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp
contrib/llvm/lib/Target/PowerPC/PPCISelLowering.cpp
contrib/llvm/lib/Target/PowerPC/PPCISelLowering.h
contrib/llvm/lib/Target/PowerPC/PPCInstr64Bit.td
contrib/llvm/lib/Target/PowerPC/PPCInstrAltivec.td
contrib/llvm/lib/Target/PowerPC/PPCInstrFormats.td
contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp
contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.h
contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.td
contrib/llvm/lib/Target/PowerPC/PPCJITInfo.cpp
contrib/llvm/lib/Target/PowerPC/PPCJITInfo.h
contrib/llvm/lib/Target/PowerPC/PPCMCInstLower.cpp
contrib/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.h
contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp
contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.h
contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.td
contrib/llvm/lib/Target/PowerPC/PPCScheduleA2.td
contrib/llvm/lib/Target/PowerPC/PPCScheduleG5.td
contrib/llvm/lib/Target/PowerPC/PPCSubtarget.cpp
contrib/llvm/lib/Target/PowerPC/PPCSubtarget.h
contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.h
contrib/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp
contrib/llvm/lib/Target/R600/AMDGPU.h [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDGPU.td [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDGPUAsmPrinter.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDGPUAsmPrinter.h [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDGPUCallingConv.td [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDGPUConvertToISA.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDGPUFrameLowering.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDGPUFrameLowering.h [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDGPUISelLowering.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDGPUISelLowering.h [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDGPUIndirectAddressing.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDGPUInstrInfo.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDGPUInstrInfo.h [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDGPUInstrInfo.td [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDGPUInstructions.td [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDGPUIntrinsics.td [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDGPUMCInstLower.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDGPUMCInstLower.h [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDGPUMachineFunction.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDGPUMachineFunction.h [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDGPURegisterInfo.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDGPURegisterInfo.h [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDGPURegisterInfo.td [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDGPUStructurizeCFG.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDGPUSubtarget.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDGPUSubtarget.h [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDGPUTargetMachine.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDGPUTargetMachine.h [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDIL.h [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDIL7XXDevice.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDIL7XXDevice.h [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDILBase.td [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDILCFGStructurizer.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDILDevice.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDILDevice.h [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDILDeviceInfo.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDILDeviceInfo.h [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDILDevices.h [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDILEvergreenDevice.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDILEvergreenDevice.h [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDILISelDAGToDAG.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDILISelLowering.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDILInstrInfo.td [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDILIntrinsicInfo.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDILIntrinsicInfo.h [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDILIntrinsics.td [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDILNIDevice.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDILNIDevice.h [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDILRegisterInfo.td [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDILSIDevice.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/AMDILSIDevice.h [new file with mode: 0644]
contrib/llvm/lib/Target/R600/InstPrinter/AMDGPUInstPrinter.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/InstPrinter/AMDGPUInstPrinter.h [new file with mode: 0644]
contrib/llvm/lib/Target/R600/MCTargetDesc/AMDGPUAsmBackend.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/MCTargetDesc/AMDGPUELFObjectWriter.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/MCTargetDesc/AMDGPUMCAsmInfo.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/MCTargetDesc/AMDGPUMCAsmInfo.h [new file with mode: 0644]
contrib/llvm/lib/Target/R600/MCTargetDesc/AMDGPUMCCodeEmitter.h [new file with mode: 0644]
contrib/llvm/lib/Target/R600/MCTargetDesc/AMDGPUMCTargetDesc.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/MCTargetDesc/AMDGPUMCTargetDesc.h [new file with mode: 0644]
contrib/llvm/lib/Target/R600/MCTargetDesc/R600MCCodeEmitter.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/MCTargetDesc/SIMCCodeEmitter.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/Processors.td [new file with mode: 0644]
contrib/llvm/lib/Target/R600/R600ControlFlowFinalizer.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/R600Defines.h [new file with mode: 0644]
contrib/llvm/lib/Target/R600/R600EmitClauseMarkers.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/R600ExpandSpecialInstrs.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/R600ISelLowering.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/R600ISelLowering.h [new file with mode: 0644]
contrib/llvm/lib/Target/R600/R600InstrInfo.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/R600InstrInfo.h [new file with mode: 0644]
contrib/llvm/lib/Target/R600/R600Instructions.td [new file with mode: 0644]
contrib/llvm/lib/Target/R600/R600Intrinsics.td [new file with mode: 0644]
contrib/llvm/lib/Target/R600/R600MachineFunctionInfo.cpp [moved from contrib/llvm/lib/MC/MCTargetAsmLexer.cpp with 53% similarity]
contrib/llvm/lib/Target/R600/R600MachineFunctionInfo.h [new file with mode: 0644]
contrib/llvm/lib/Target/R600/R600MachineScheduler.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/R600MachineScheduler.h [new file with mode: 0644]
contrib/llvm/lib/Target/R600/R600Packetizer.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/R600RegisterInfo.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/R600RegisterInfo.h [new file with mode: 0644]
contrib/llvm/lib/Target/R600/R600RegisterInfo.td [new file with mode: 0644]
contrib/llvm/lib/Target/R600/R600Schedule.td [new file with mode: 0644]
contrib/llvm/lib/Target/R600/SIAnnotateControlFlow.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/SIDefines.h [new file with mode: 0644]
contrib/llvm/lib/Target/R600/SIISelLowering.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/SIISelLowering.h [new file with mode: 0644]
contrib/llvm/lib/Target/R600/SIInsertWaits.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/SIInstrFormats.td [new file with mode: 0644]
contrib/llvm/lib/Target/R600/SIInstrInfo.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/SIInstrInfo.h [new file with mode: 0644]
contrib/llvm/lib/Target/R600/SIInstrInfo.td [new file with mode: 0644]
contrib/llvm/lib/Target/R600/SIInstructions.td [new file with mode: 0644]
contrib/llvm/lib/Target/R600/SIIntrinsics.td [new file with mode: 0644]
contrib/llvm/lib/Target/R600/SILowerControlFlow.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/SIMachineFunctionInfo.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/SIMachineFunctionInfo.h [new file with mode: 0644]
contrib/llvm/lib/Target/R600/SIRegisterInfo.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/R600/SIRegisterInfo.h [new file with mode: 0644]
contrib/llvm/lib/Target/R600/SIRegisterInfo.td [new file with mode: 0644]
contrib/llvm/lib/Target/R600/SISchedule.td [new file with mode: 0644]
contrib/llvm/lib/Target/R600/TargetInfo/AMDGPUTargetInfo.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/Sparc/DelaySlotFiller.cpp
contrib/llvm/lib/Target/Sparc/FPMover.cpp
contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcBaseInfo.h [new file with mode: 0644]
contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCAsmInfo.cpp
contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.cpp
contrib/llvm/lib/Target/Sparc/SparcAsmPrinter.cpp
contrib/llvm/lib/Target/Sparc/SparcCallingConv.td
contrib/llvm/lib/Target/Sparc/SparcFrameLowering.cpp
contrib/llvm/lib/Target/Sparc/SparcFrameLowering.h
contrib/llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp
contrib/llvm/lib/Target/Sparc/SparcISelLowering.cpp
contrib/llvm/lib/Target/Sparc/SparcISelLowering.h
contrib/llvm/lib/Target/Sparc/SparcInstr64Bit.td [new file with mode: 0644]
contrib/llvm/lib/Target/Sparc/SparcInstrFormats.td
contrib/llvm/lib/Target/Sparc/SparcInstrInfo.cpp
contrib/llvm/lib/Target/Sparc/SparcInstrInfo.td
contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.cpp
contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.h
contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.td
contrib/llvm/lib/Target/Sparc/SparcSubtarget.h
contrib/llvm/lib/Target/Sparc/SparcTargetMachine.cpp
contrib/llvm/lib/Target/Sparc/SparcTargetMachine.h
contrib/llvm/lib/Target/Sparc/TargetInfo/SparcTargetInfo.cpp
contrib/llvm/lib/Target/SystemZ/AsmParser/SystemZAsmParser.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/InstPrinter/SystemZInstPrinter.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/InstPrinter/SystemZInstPrinter.h [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmBackend.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmInfo.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmInfo.h [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCCodeEmitter.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCFixups.h [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCObjectWriter.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.h [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/README.txt [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/SystemZ.h [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/SystemZ.td [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/SystemZAsmPrinter.h [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/SystemZCallingConv.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/SystemZCallingConv.h [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/SystemZCallingConv.td [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/SystemZConstantPoolValue.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/SystemZConstantPoolValue.h [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/SystemZFrameLowering.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/SystemZFrameLowering.h [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/SystemZISelDAGToDAG.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/SystemZISelLowering.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/SystemZISelLowering.h [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/SystemZInstrBuilder.h [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/SystemZInstrFP.td [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/SystemZInstrFormats.td [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/SystemZInstrInfo.h [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/SystemZInstrInfo.td [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/SystemZMCInstLower.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/SystemZMCInstLower.h [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/SystemZMachineFunctionInfo.h [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/SystemZOperands.td [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/SystemZOperators.td [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/SystemZPatterns.td [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.h [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.td [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/SystemZSubtarget.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/SystemZSubtarget.h [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/SystemZTargetMachine.h [new file with mode: 0644]
contrib/llvm/lib/Target/SystemZ/TargetInfo/SystemZTargetInfo.cpp [moved from contrib/llvm/lib/Target/CellSPU/TargetInfo/CellSPUTargetInfo.cpp with 53% similarity]
contrib/llvm/lib/Target/Target.cpp
contrib/llvm/lib/Target/TargetInstrInfo.cpp [deleted file]
contrib/llvm/lib/Target/TargetIntrinsicInfo.cpp
contrib/llvm/lib/Target/TargetLibraryInfo.cpp
contrib/llvm/lib/Target/TargetLoweringObjectFile.cpp
contrib/llvm/lib/Target/TargetMachine.cpp
contrib/llvm/lib/Target/TargetMachineC.cpp
contrib/llvm/lib/Target/TargetSubtargetInfo.cpp
contrib/llvm/lib/Target/TargetTransformImpl.cpp [deleted file]
contrib/llvm/lib/Target/X86/AsmParser/X86AsmLexer.cpp [deleted file]
contrib/llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp
contrib/llvm/lib/Target/X86/Disassembler/X86Disassembler.cpp
contrib/llvm/lib/Target/X86/Disassembler/X86Disassembler.h
contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.c
contrib/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.cpp
contrib/llvm/lib/Target/X86/InstPrinter/X86InstComments.cpp
contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.cpp
contrib/llvm/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp
contrib/llvm/lib/Target/X86/MCTargetDesc/X86BaseInfo.h
contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.cpp
contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp
contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.cpp
contrib/llvm/lib/Target/X86/MCTargetDesc/X86MachObjectWriter.cpp
contrib/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp
contrib/llvm/lib/Target/X86/TargetInfo/X86TargetInfo.cpp
contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.cpp
contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.h
contrib/llvm/lib/Target/X86/X86.h
contrib/llvm/lib/Target/X86/X86.td
contrib/llvm/lib/Target/X86/X86AsmPrinter.cpp
contrib/llvm/lib/Target/X86/X86AsmPrinter.h
contrib/llvm/lib/Target/X86/X86COFFMachineModuleInfo.h
contrib/llvm/lib/Target/X86/X86CallingConv.td
contrib/llvm/lib/Target/X86/X86CodeEmitter.cpp
contrib/llvm/lib/Target/X86/X86FastISel.cpp
contrib/llvm/lib/Target/X86/X86FixupLEAs.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/X86/X86FloatingPoint.cpp
contrib/llvm/lib/Target/X86/X86FrameLowering.cpp
contrib/llvm/lib/Target/X86/X86FrameLowering.h
contrib/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp
contrib/llvm/lib/Target/X86/X86ISelLowering.cpp
contrib/llvm/lib/Target/X86/X86ISelLowering.h
contrib/llvm/lib/Target/X86/X86Instr3DNow.td
contrib/llvm/lib/Target/X86/X86InstrArithmetic.td
contrib/llvm/lib/Target/X86/X86InstrCMovSetCC.td
contrib/llvm/lib/Target/X86/X86InstrCompiler.td
contrib/llvm/lib/Target/X86/X86InstrControl.td
contrib/llvm/lib/Target/X86/X86InstrExtension.td
contrib/llvm/lib/Target/X86/X86InstrFMA.td
contrib/llvm/lib/Target/X86/X86InstrFPStack.td
contrib/llvm/lib/Target/X86/X86InstrFormats.td
contrib/llvm/lib/Target/X86/X86InstrFragmentsSIMD.td
contrib/llvm/lib/Target/X86/X86InstrInfo.cpp
contrib/llvm/lib/Target/X86/X86InstrInfo.td
contrib/llvm/lib/Target/X86/X86InstrMMX.td
contrib/llvm/lib/Target/X86/X86InstrSSE.td
contrib/llvm/lib/Target/X86/X86InstrShiftRotate.td
contrib/llvm/lib/Target/X86/X86InstrSystem.td
contrib/llvm/lib/Target/X86/X86InstrTSX.td
contrib/llvm/lib/Target/X86/X86JITInfo.cpp
contrib/llvm/lib/Target/X86/X86JITInfo.h
contrib/llvm/lib/Target/X86/X86MCInstLower.cpp
contrib/llvm/lib/Target/X86/X86PadShortFunction.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/X86/X86RegisterInfo.cpp
contrib/llvm/lib/Target/X86/X86RegisterInfo.h
contrib/llvm/lib/Target/X86/X86SchedHaswell.td [new file with mode: 0644]
contrib/llvm/lib/Target/X86/X86SchedSandyBridge.td [new file with mode: 0644]
contrib/llvm/lib/Target/X86/X86Schedule.td
contrib/llvm/lib/Target/X86/X86ScheduleAtom.td
contrib/llvm/lib/Target/X86/X86SelectionDAGInfo.cpp
contrib/llvm/lib/Target/X86/X86Subtarget.cpp
contrib/llvm/lib/Target/X86/X86Subtarget.h
contrib/llvm/lib/Target/X86/X86TargetMachine.cpp
contrib/llvm/lib/Target/X86/X86TargetMachine.h
contrib/llvm/lib/Target/X86/X86TargetObjectFile.cpp
contrib/llvm/lib/Target/X86/X86TargetObjectFile.h
contrib/llvm/lib/Target/X86/X86TargetTransformInfo.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/X86/X86VZeroUpper.cpp
contrib/llvm/lib/Target/XCore/Disassembler/XCoreDisassembler.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/XCore/InstPrinter/XCoreInstPrinter.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/XCore/InstPrinter/XCoreInstPrinter.h [new file with mode: 0644]
contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.cpp
contrib/llvm/lib/Target/XCore/TargetInfo/XCoreTargetInfo.cpp
contrib/llvm/lib/Target/XCore/XCore.h
contrib/llvm/lib/Target/XCore/XCore.td
contrib/llvm/lib/Target/XCore/XCoreAsmPrinter.cpp
contrib/llvm/lib/Target/XCore/XCoreFrameLowering.cpp
contrib/llvm/lib/Target/XCore/XCoreFrameLowering.h
contrib/llvm/lib/Target/XCore/XCoreISelDAGToDAG.cpp
contrib/llvm/lib/Target/XCore/XCoreISelLowering.cpp
contrib/llvm/lib/Target/XCore/XCoreISelLowering.h
contrib/llvm/lib/Target/XCore/XCoreInstrFormats.td
contrib/llvm/lib/Target/XCore/XCoreInstrInfo.cpp
contrib/llvm/lib/Target/XCore/XCoreInstrInfo.td
contrib/llvm/lib/Target/XCore/XCoreLowerThreadLocal.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/XCore/XCoreMCInstLower.cpp [new file with mode: 0644]
contrib/llvm/lib/Target/XCore/XCoreMCInstLower.h [new file with mode: 0644]
contrib/llvm/lib/Target/XCore/XCoreMachineFunctionInfo.h
contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.cpp
contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.h
contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.td
contrib/llvm/lib/Target/XCore/XCoreSubtarget.h
contrib/llvm/lib/Target/XCore/XCoreTargetMachine.cpp
contrib/llvm/lib/Target/XCore/XCoreTargetMachine.h
contrib/llvm/lib/Target/XCore/XCoreTargetObjectFile.cpp
contrib/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp
contrib/llvm/lib/Transforms/IPO/ConstantMerge.cpp
contrib/llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp
contrib/llvm/lib/Transforms/IPO/ExtractGV.cpp
contrib/llvm/lib/Transforms/IPO/FunctionAttrs.cpp
contrib/llvm/lib/Transforms/IPO/GlobalDCE.cpp
contrib/llvm/lib/Transforms/IPO/GlobalOpt.cpp
contrib/llvm/lib/Transforms/IPO/IPConstantPropagation.cpp
contrib/llvm/lib/Transforms/IPO/InlineAlways.cpp
contrib/llvm/lib/Transforms/IPO/InlineSimple.cpp
contrib/llvm/lib/Transforms/IPO/Inliner.cpp
contrib/llvm/lib/Transforms/IPO/Internalize.cpp
contrib/llvm/lib/Transforms/IPO/LoopExtractor.cpp
contrib/llvm/lib/Transforms/IPO/MergeFunctions.cpp
contrib/llvm/lib/Transforms/IPO/PartialInlining.cpp
contrib/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp
contrib/llvm/lib/Transforms/IPO/PruneEH.cpp
contrib/llvm/lib/Transforms/IPO/StripDeadPrototypes.cpp
contrib/llvm/lib/Transforms/IPO/StripSymbols.cpp
contrib/llvm/lib/Transforms/InstCombine/InstCombine.h
contrib/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp
contrib/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp
contrib/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp
contrib/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp
contrib/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp
contrib/llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp
contrib/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp
contrib/llvm/lib/Transforms/InstCombine/InstCombinePHI.cpp
contrib/llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp
contrib/llvm/lib/Transforms/InstCombine/InstCombineShifts.cpp
contrib/llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
contrib/llvm/lib/Transforms/InstCombine/InstCombineVectorOps.cpp
contrib/llvm/lib/Transforms/InstCombine/InstCombineWorklist.h
contrib/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
contrib/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
contrib/llvm/lib/Transforms/Instrumentation/BlackList.cpp
contrib/llvm/lib/Transforms/Instrumentation/BoundsChecking.cpp
contrib/llvm/lib/Transforms/Instrumentation/EdgeProfiling.cpp
contrib/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp
contrib/llvm/lib/Transforms/Instrumentation/Instrumentation.cpp
contrib/llvm/lib/Transforms/Instrumentation/MaximumSpanningTree.h
contrib/llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp [new file with mode: 0644]
contrib/llvm/lib/Transforms/Instrumentation/OptimalEdgeProfiling.cpp
contrib/llvm/lib/Transforms/Instrumentation/PathProfiling.cpp
contrib/llvm/lib/Transforms/Instrumentation/ProfilingUtils.cpp
contrib/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp
contrib/llvm/lib/Transforms/ObjCARC/DependencyAnalysis.cpp [new file with mode: 0644]
contrib/llvm/lib/Transforms/ObjCARC/DependencyAnalysis.h [new file with mode: 0644]
contrib/llvm/lib/Transforms/ObjCARC/ObjCARC.cpp [new file with mode: 0644]
contrib/llvm/lib/Transforms/ObjCARC/ObjCARC.h [new file with mode: 0644]
contrib/llvm/lib/Transforms/ObjCARC/ObjCARCAPElim.cpp [new file with mode: 0644]
contrib/llvm/lib/Transforms/ObjCARC/ObjCARCAliasAnalysis.cpp [new file with mode: 0644]
contrib/llvm/lib/Transforms/ObjCARC/ObjCARCAliasAnalysis.h [new file with mode: 0644]
contrib/llvm/lib/Transforms/ObjCARC/ObjCARCContract.cpp [new file with mode: 0644]
contrib/llvm/lib/Transforms/ObjCARC/ObjCARCExpand.cpp [new file with mode: 0644]
contrib/llvm/lib/Transforms/ObjCARC/ObjCARCOpts.cpp [new file with mode: 0644]
contrib/llvm/lib/Transforms/ObjCARC/ObjCARCUtil.cpp [new file with mode: 0644]
contrib/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysis.cpp [new file with mode: 0644]
contrib/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysis.h [new file with mode: 0644]
contrib/llvm/lib/Transforms/Scalar/ADCE.cpp
contrib/llvm/lib/Transforms/Scalar/BasicBlockPlacement.cpp
contrib/llvm/lib/Transforms/Scalar/CodeGenPrepare.cpp
contrib/llvm/lib/Transforms/Scalar/ConstantProp.cpp
contrib/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp
contrib/llvm/lib/Transforms/Scalar/DCE.cpp
contrib/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp
contrib/llvm/lib/Transforms/Scalar/EarlyCSE.cpp
contrib/llvm/lib/Transforms/Scalar/GVN.cpp
contrib/llvm/lib/Transforms/Scalar/GlobalMerge.cpp
contrib/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp
contrib/llvm/lib/Transforms/Scalar/JumpThreading.cpp
contrib/llvm/lib/Transforms/Scalar/LICM.cpp
contrib/llvm/lib/Transforms/Scalar/LoopDeletion.cpp
contrib/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp
contrib/llvm/lib/Transforms/Scalar/LoopInstSimplify.cpp
contrib/llvm/lib/Transforms/Scalar/LoopRotation.cpp
contrib/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp
contrib/llvm/lib/Transforms/Scalar/LoopUnrollPass.cpp
contrib/llvm/lib/Transforms/Scalar/LoopUnswitch.cpp
contrib/llvm/lib/Transforms/Scalar/LowerAtomic.cpp
contrib/llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp
contrib/llvm/lib/Transforms/Scalar/ObjCARC.cpp [deleted file]
contrib/llvm/lib/Transforms/Scalar/Reassociate.cpp
contrib/llvm/lib/Transforms/Scalar/Reg2Mem.cpp
contrib/llvm/lib/Transforms/Scalar/SCCP.cpp
contrib/llvm/lib/Transforms/Scalar/SROA.cpp
contrib/llvm/lib/Transforms/Scalar/Scalar.cpp
contrib/llvm/lib/Transforms/Scalar/ScalarReplAggregates.cpp
contrib/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp
contrib/llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp
contrib/llvm/lib/Transforms/Scalar/Sink.cpp
contrib/llvm/lib/Transforms/Scalar/TailRecursionElimination.cpp
contrib/llvm/lib/Transforms/Utils/AddrModeMatcher.cpp [deleted file]
contrib/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp
contrib/llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp
contrib/llvm/lib/Transforms/Utils/BuildLibCalls.cpp
contrib/llvm/lib/Transforms/Utils/BypassSlowDivision.cpp
contrib/llvm/lib/Transforms/Utils/CloneFunction.cpp
contrib/llvm/lib/Transforms/Utils/CloneModule.cpp
contrib/llvm/lib/Transforms/Utils/CmpInstAnalysis.cpp
contrib/llvm/lib/Transforms/Utils/CodeExtractor.cpp
contrib/llvm/lib/Transforms/Utils/DemoteRegToStack.cpp
contrib/llvm/lib/Transforms/Utils/InlineFunction.cpp
contrib/llvm/lib/Transforms/Utils/InstructionNamer.cpp
contrib/llvm/lib/Transforms/Utils/IntegerDivision.cpp
contrib/llvm/lib/Transforms/Utils/LCSSA.cpp
contrib/llvm/lib/Transforms/Utils/Local.cpp
contrib/llvm/lib/Transforms/Utils/LoopSimplify.cpp
contrib/llvm/lib/Transforms/Utils/LoopUnroll.cpp
contrib/llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp
contrib/llvm/lib/Transforms/Utils/LowerExpectIntrinsic.cpp
contrib/llvm/lib/Transforms/Utils/LowerInvoke.cpp
contrib/llvm/lib/Transforms/Utils/LowerSwitch.cpp
contrib/llvm/lib/Transforms/Utils/Mem2Reg.cpp
contrib/llvm/lib/Transforms/Utils/MetaRenamer.cpp
contrib/llvm/lib/Transforms/Utils/ModuleUtils.cpp
contrib/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp
contrib/llvm/lib/Transforms/Utils/SSAUpdater.cpp
contrib/llvm/lib/Transforms/Utils/SimplifyCFG.cpp
contrib/llvm/lib/Transforms/Utils/SimplifyIndVar.cpp
contrib/llvm/lib/Transforms/Utils/SimplifyInstructions.cpp
contrib/llvm/lib/Transforms/Utils/SimplifyLibCalls.cpp
contrib/llvm/lib/Transforms/Utils/UnifyFunctionExitNodes.cpp
contrib/llvm/lib/Transforms/Utils/Utils.cpp
contrib/llvm/lib/Transforms/Utils/ValueMapper.cpp
contrib/llvm/lib/Transforms/Vectorize/BBVectorize.cpp
contrib/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
contrib/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp [new file with mode: 0644]
contrib/llvm/lib/Transforms/Vectorize/VecUtils.cpp [new file with mode: 0644]
contrib/llvm/lib/Transforms/Vectorize/VecUtils.h [new file with mode: 0644]
contrib/llvm/lib/Transforms/Vectorize/Vectorize.cpp
contrib/llvm/lib/VMCore/Attributes.cpp [deleted file]
contrib/llvm/lib/VMCore/AttributesImpl.h [deleted file]
contrib/llvm/lib/VMCore/TargetTransformInfo.cpp [deleted file]
contrib/llvm/tools/bugpoint/BugDriver.cpp
contrib/llvm/tools/bugpoint/BugDriver.h
contrib/llvm/tools/bugpoint/CrashDebugger.cpp
contrib/llvm/tools/bugpoint/ExecutionDriver.cpp
contrib/llvm/tools/bugpoint/ExtractFunction.cpp
contrib/llvm/tools/bugpoint/ListReducer.h
contrib/llvm/tools/bugpoint/Miscompilation.cpp
contrib/llvm/tools/bugpoint/OptimizerDriver.cpp
contrib/llvm/tools/bugpoint/ToolRunner.cpp
contrib/llvm/tools/bugpoint/ToolRunner.h
contrib/llvm/tools/bugpoint/bugpoint.cpp
contrib/llvm/tools/clang/LICENSE.TXT
contrib/llvm/tools/clang/include/clang-c/CXCompilationDatabase.h
contrib/llvm/tools/clang/include/clang-c/CXString.h
contrib/llvm/tools/clang/include/clang-c/Index.h
contrib/llvm/tools/clang/include/clang/ARCMigrate/ARCMT.h
contrib/llvm/tools/clang/include/clang/ARCMigrate/ARCMTActions.h
contrib/llvm/tools/clang/include/clang/ARCMigrate/FileRemapper.h
contrib/llvm/tools/clang/include/clang/AST/APValue.h
contrib/llvm/tools/clang/include/clang/AST/AST.h
contrib/llvm/tools/clang/include/clang/AST/ASTConsumer.h
contrib/llvm/tools/clang/include/clang/AST/ASTContext.h
contrib/llvm/tools/clang/include/clang/AST/ASTImporter.h
contrib/llvm/tools/clang/include/clang/AST/ASTMutationListener.h
contrib/llvm/tools/clang/include/clang/AST/ASTTypeTraits.h [moved from contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTTypeTraits.h with 94% similarity]
contrib/llvm/tools/clang/include/clang/AST/ASTUnresolvedSet.h [new file with mode: 0644]
contrib/llvm/tools/clang/include/clang/AST/ASTVector.h
contrib/llvm/tools/clang/include/clang/AST/Attr.h
contrib/llvm/tools/clang/include/clang/AST/AttrIterator.h [new file with mode: 0644]
contrib/llvm/tools/clang/include/clang/AST/BuiltinTypes.def
contrib/llvm/tools/clang/include/clang/AST/CXXInheritance.h
contrib/llvm/tools/clang/include/clang/AST/CanonicalType.h
contrib/llvm/tools/clang/include/clang/AST/CharUnits.h
contrib/llvm/tools/clang/include/clang/AST/Comment.h
contrib/llvm/tools/clang/include/clang/AST/CommentCommandTraits.h
contrib/llvm/tools/clang/include/clang/AST/CommentCommands.td
contrib/llvm/tools/clang/include/clang/AST/CommentHTMLNamedCharacterReferences.td [new file with mode: 0644]
contrib/llvm/tools/clang/include/clang/AST/CommentLexer.h
contrib/llvm/tools/clang/include/clang/AST/CommentParser.h
contrib/llvm/tools/clang/include/clang/AST/CommentSema.h
contrib/llvm/tools/clang/include/clang/AST/CommentVisitor.h
contrib/llvm/tools/clang/include/clang/AST/Decl.h
contrib/llvm/tools/clang/include/clang/AST/DeclAccessPair.h
contrib/llvm/tools/clang/include/clang/AST/DeclBase.h
contrib/llvm/tools/clang/include/clang/AST/DeclCXX.h
contrib/llvm/tools/clang/include/clang/AST/DeclContextInternals.h
contrib/llvm/tools/clang/include/clang/AST/DeclFriend.h
contrib/llvm/tools/clang/include/clang/AST/DeclLookups.h
contrib/llvm/tools/clang/include/clang/AST/DeclObjC.h
contrib/llvm/tools/clang/include/clang/AST/DeclOpenMP.h [new file with mode: 0644]
contrib/llvm/tools/clang/include/clang/AST/DeclTemplate.h
contrib/llvm/tools/clang/include/clang/AST/DeclVisitor.h
contrib/llvm/tools/clang/include/clang/AST/DeclarationName.h
contrib/llvm/tools/clang/include/clang/AST/DependentDiagnostic.h
contrib/llvm/tools/clang/include/clang/AST/EvaluatedExprVisitor.h
contrib/llvm/tools/clang/include/clang/AST/Expr.h
contrib/llvm/tools/clang/include/clang/AST/ExprCXX.h
contrib/llvm/tools/clang/include/clang/AST/ExprObjC.h
contrib/llvm/tools/clang/include/clang/AST/ExternalASTSource.h
contrib/llvm/tools/clang/include/clang/AST/LambdaMangleContext.h
contrib/llvm/tools/clang/include/clang/AST/Mangle.h
contrib/llvm/tools/clang/include/clang/AST/NSAPI.h
contrib/llvm/tools/clang/include/clang/AST/NestedNameSpecifier.h
contrib/llvm/tools/clang/include/clang/AST/OperationKinds.h
contrib/llvm/tools/clang/include/clang/AST/PrettyPrinter.h
contrib/llvm/tools/clang/include/clang/AST/RawCommentList.h
contrib/llvm/tools/clang/include/clang/AST/RecursiveASTVisitor.h
contrib/llvm/tools/clang/include/clang/AST/Stmt.h
contrib/llvm/tools/clang/include/clang/AST/StmtCXX.h
contrib/llvm/tools/clang/include/clang/AST/StmtGraphTraits.h
contrib/llvm/tools/clang/include/clang/AST/StmtObjC.h
contrib/llvm/tools/clang/include/clang/AST/TemplateBase.h
contrib/llvm/tools/clang/include/clang/AST/TemplateName.h
contrib/llvm/tools/clang/include/clang/AST/Type.h
contrib/llvm/tools/clang/include/clang/AST/TypeLoc.h
contrib/llvm/tools/clang/include/clang/AST/TypeLocVisitor.h
contrib/llvm/tools/clang/include/clang/AST/TypeNodes.def
contrib/llvm/tools/clang/include/clang/AST/TypeOrdering.h
contrib/llvm/tools/clang/include/clang/AST/UnresolvedSet.h
contrib/llvm/tools/clang/include/clang/AST/VTTBuilder.h
contrib/llvm/tools/clang/include/clang/AST/VTableBuilder.h
contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchFinder.h
contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchers.h
contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchersInternal.h
contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchersMacros.h
contrib/llvm/tools/clang/include/clang/Analysis/Analyses/Dominators.h
contrib/llvm/tools/clang/include/clang/Analysis/Analyses/FormatString.h
contrib/llvm/tools/clang/include/clang/Analysis/Analyses/LiveVariables.h
contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafety.h
contrib/llvm/tools/clang/include/clang/Analysis/Analyses/UninitializedValues.h
contrib/llvm/tools/clang/include/clang/Analysis/AnalysisContext.h
contrib/llvm/tools/clang/include/clang/Analysis/CFG.h
contrib/llvm/tools/clang/include/clang/Analysis/CallGraph.h
contrib/llvm/tools/clang/include/clang/Analysis/FlowSensitive/DataflowSolver.h
contrib/llvm/tools/clang/include/clang/Analysis/ProgramPoint.h
contrib/llvm/tools/clang/include/clang/Analysis/Support/BlkExprDeclBitVector.h
contrib/llvm/tools/clang/include/clang/Analysis/Support/BumpVector.h
contrib/llvm/tools/clang/include/clang/Analysis/Visitors/CFGRecStmtDeclVisitor.h
contrib/llvm/tools/clang/include/clang/Basic/Attr.td
contrib/llvm/tools/clang/include/clang/Basic/AttrKinds.h
contrib/llvm/tools/clang/include/clang/Basic/Builtins.def
contrib/llvm/tools/clang/include/clang/Basic/Builtins.h
contrib/llvm/tools/clang/include/clang/Basic/BuiltinsAArch64.def [new file with mode: 0644]
contrib/llvm/tools/clang/include/clang/Basic/BuiltinsARM.def
contrib/llvm/tools/clang/include/clang/Basic/BuiltinsX86.def
contrib/llvm/tools/clang/include/clang/Basic/CapturedStmt.h [new file with mode: 0644]
contrib/llvm/tools/clang/include/clang/Basic/CharInfo.h [new file with mode: 0644]
contrib/llvm/tools/clang/include/clang/Basic/CommentOptions.h [new file with mode: 0644]
contrib/llvm/tools/clang/include/clang/Basic/DeclNodes.td
contrib/llvm/tools/clang/include/clang/Basic/Diagnostic.h
contrib/llvm/tools/clang/include/clang/Basic/DiagnosticASTKinds.td
contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommentKinds.td
contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommonKinds.td
contrib/llvm/tools/clang/include/clang/Basic/DiagnosticDriverKinds.td
contrib/llvm/tools/clang/include/clang/Basic/DiagnosticFrontendKinds.td
contrib/llvm/tools/clang/include/clang/Basic/DiagnosticGroups.td
contrib/llvm/tools/clang/include/clang/Basic/DiagnosticIDs.h
contrib/llvm/tools/clang/include/clang/Basic/DiagnosticLexKinds.td
contrib/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.def
contrib/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.h
contrib/llvm/tools/clang/include/clang/Basic/DiagnosticParseKinds.td
contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSemaKinds.td
contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSerializationKinds.td
contrib/llvm/tools/clang/include/clang/Basic/FileManager.h
contrib/llvm/tools/clang/include/clang/Basic/FileSystemStatCache.h
contrib/llvm/tools/clang/include/clang/Basic/IdentifierTable.h
contrib/llvm/tools/clang/include/clang/Basic/LLVM.h
contrib/llvm/tools/clang/include/clang/Basic/LangOptions.def
contrib/llvm/tools/clang/include/clang/Basic/LangOptions.h
contrib/llvm/tools/clang/include/clang/Basic/Linkage.h
contrib/llvm/tools/clang/include/clang/Basic/MacroBuilder.h
contrib/llvm/tools/clang/include/clang/Basic/Module.h
contrib/llvm/tools/clang/include/clang/Basic/ObjCRuntime.h
contrib/llvm/tools/clang/include/clang/Basic/OnDiskHashTable.h
contrib/llvm/tools/clang/include/clang/Basic/OpenMPKinds.def [new file with mode: 0644]
contrib/llvm/tools/clang/include/clang/Basic/OpenMPKinds.h [new file with mode: 0644]
contrib/llvm/tools/clang/include/clang/Basic/OperatorPrecedence.h [new file with mode: 0644]
contrib/llvm/tools/clang/include/clang/Basic/PartialDiagnostic.h
contrib/llvm/tools/clang/include/clang/Basic/Sanitizers.def
contrib/llvm/tools/clang/include/clang/Basic/SourceLocation.h
contrib/llvm/tools/clang/include/clang/Basic/SourceManager.h
contrib/llvm/tools/clang/include/clang/Basic/Specifiers.h
contrib/llvm/tools/clang/include/clang/Basic/StmtNodes.td
contrib/llvm/tools/clang/include/clang/Basic/TargetBuiltins.h
contrib/llvm/tools/clang/include/clang/Basic/TargetCXXABI.h [new file with mode: 0644]
contrib/llvm/tools/clang/include/clang/Basic/TargetInfo.h
contrib/llvm/tools/clang/include/clang/Basic/TargetOptions.h
contrib/llvm/tools/clang/include/clang/Basic/TokenKinds.def
contrib/llvm/tools/clang/include/clang/Basic/TokenKinds.h
contrib/llvm/tools/clang/include/clang/Basic/TypeTraits.h
contrib/llvm/tools/clang/include/clang/Basic/Version.h
contrib/llvm/tools/clang/include/clang/Basic/VersionTuple.h
contrib/llvm/tools/clang/include/clang/Basic/Visibility.h
contrib/llvm/tools/clang/include/clang/Basic/arm_neon.td
contrib/llvm/tools/clang/include/clang/CodeGen/ModuleBuilder.h
contrib/llvm/tools/clang/include/clang/Driver/Arg.h
contrib/llvm/tools/clang/include/clang/Driver/ArgList.h
contrib/llvm/tools/clang/include/clang/Driver/CC1AsOptions.td
contrib/llvm/tools/clang/include/clang/Driver/CC1Options.td
contrib/llvm/tools/clang/include/clang/Driver/Compilation.h
contrib/llvm/tools/clang/include/clang/Driver/Driver.h
contrib/llvm/tools/clang/include/clang/Driver/Job.h
contrib/llvm/tools/clang/include/clang/Driver/OptSpecifier.h
contrib/llvm/tools/clang/include/clang/Driver/Option.h
contrib/llvm/tools/clang/include/clang/Driver/Options.td
contrib/llvm/tools/clang/include/clang/Driver/Phases.h
contrib/llvm/tools/clang/include/clang/Driver/Tool.h
contrib/llvm/tools/clang/include/clang/Driver/ToolChain.h
contrib/llvm/tools/clang/include/clang/Driver/Types.def
contrib/llvm/tools/clang/include/clang/Driver/Types.h
contrib/llvm/tools/clang/include/clang/Driver/Util.h
contrib/llvm/tools/clang/include/clang/Edit/Commit.h
contrib/llvm/tools/clang/include/clang/Edit/EditedSource.h
contrib/llvm/tools/clang/include/clang/Edit/Rewriters.h
contrib/llvm/tools/clang/include/clang/Format/Format.h [new file with mode: 0644]
contrib/llvm/tools/clang/include/clang/Frontend/ASTUnit.h
contrib/llvm/tools/clang/include/clang/Frontend/ChainedDiagnosticConsumer.h
contrib/llvm/tools/clang/include/clang/Frontend/ChainedIncludesSource.h
contrib/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.def
contrib/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.h
contrib/llvm/tools/clang/include/clang/Frontend/CompilerInstance.h
contrib/llvm/tools/clang/include/clang/Frontend/CompilerInvocation.h
contrib/llvm/tools/clang/include/clang/Frontend/DiagnosticRenderer.h
contrib/llvm/tools/clang/include/clang/Frontend/FrontendAction.h
contrib/llvm/tools/clang/include/clang/Frontend/FrontendActions.h
contrib/llvm/tools/clang/include/clang/Frontend/FrontendOptions.h
contrib/llvm/tools/clang/include/clang/Frontend/LangStandard.h
contrib/llvm/tools/clang/include/clang/Frontend/LangStandards.def
contrib/llvm/tools/clang/include/clang/Frontend/LayoutOverrideSource.h
contrib/llvm/tools/clang/include/clang/Frontend/LogDiagnosticPrinter.h
contrib/llvm/tools/clang/include/clang/Frontend/MultiplexConsumer.h
contrib/llvm/tools/clang/include/clang/Frontend/PreprocessorOutputOptions.h
contrib/llvm/tools/clang/include/clang/Frontend/SerializedDiagnosticPrinter.h
contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnostic.h
contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnosticBuffer.h
contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnosticPrinter.h
contrib/llvm/tools/clang/include/clang/Frontend/Utils.h
contrib/llvm/tools/clang/include/clang/Frontend/VerifyDiagnosticConsumer.h
contrib/llvm/tools/clang/include/clang/Lex/DirectoryLookup.h
contrib/llvm/tools/clang/include/clang/Lex/ExternalPreprocessorSource.h
contrib/llvm/tools/clang/include/clang/Lex/HeaderSearch.h
contrib/llvm/tools/clang/include/clang/Lex/HeaderSearchOptions.h
contrib/llvm/tools/clang/include/clang/Lex/Lexer.h
contrib/llvm/tools/clang/include/clang/Lex/LiteralSupport.h
contrib/llvm/tools/clang/include/clang/Lex/MacroArgs.h [moved from contrib/llvm/tools/clang/lib/Lex/MacroArgs.h with 98% similarity]
contrib/llvm/tools/clang/include/clang/Lex/MacroInfo.h
contrib/llvm/tools/clang/include/clang/Lex/ModuleLoader.h
contrib/llvm/tools/clang/include/clang/Lex/ModuleMap.h
contrib/llvm/tools/clang/include/clang/Lex/PPCallbacks.h
contrib/llvm/tools/clang/include/clang/Lex/PPConditionalDirectiveRecord.h [new file with mode: 0644]
contrib/llvm/tools/clang/include/clang/Lex/PPMutationListener.h [deleted file]
contrib/llvm/tools/clang/include/clang/Lex/PTHManager.h
contrib/llvm/tools/clang/include/clang/Lex/PreprocessingRecord.h
contrib/llvm/tools/clang/include/clang/Lex/Preprocessor.h
contrib/llvm/tools/clang/include/clang/Lex/PreprocessorOptions.h
contrib/llvm/tools/clang/include/clang/Lex/Token.h
contrib/llvm/tools/clang/include/clang/Parse/Parser.h
contrib/llvm/tools/clang/include/clang/Rewrite/Core/RewriteRope.h
contrib/llvm/tools/clang/include/clang/Rewrite/Core/Rewriter.h
contrib/llvm/tools/clang/include/clang/Rewrite/Frontend/ASTConsumers.h
contrib/llvm/tools/clang/include/clang/Rewrite/Frontend/FixItRewriter.h
contrib/llvm/tools/clang/include/clang/Sema/AttributeList.h
contrib/llvm/tools/clang/include/clang/Sema/CXXFieldCollector.h
contrib/llvm/tools/clang/include/clang/Sema/CodeCompleteConsumer.h
contrib/llvm/tools/clang/include/clang/Sema/CodeCompleteOptions.h
contrib/llvm/tools/clang/include/clang/Sema/DeclSpec.h
contrib/llvm/tools/clang/include/clang/Sema/DelayedDiagnostic.h
contrib/llvm/tools/clang/include/clang/Sema/ExternalSemaSource.h
contrib/llvm/tools/clang/include/clang/Sema/IdentifierResolver.h
contrib/llvm/tools/clang/include/clang/Sema/Initialization.h
contrib/llvm/tools/clang/include/clang/Sema/Lookup.h
contrib/llvm/tools/clang/include/clang/Sema/MultiplexExternalSemaSource.h
contrib/llvm/tools/clang/include/clang/Sema/ObjCMethodList.h
contrib/llvm/tools/clang/include/clang/Sema/Overload.h
contrib/llvm/tools/clang/include/clang/Sema/Ownership.h
contrib/llvm/tools/clang/include/clang/Sema/Scope.h
contrib/llvm/tools/clang/include/clang/Sema/ScopeInfo.h
contrib/llvm/tools/clang/include/clang/Sema/Sema.h
contrib/llvm/tools/clang/include/clang/Sema/SemaInternal.h
contrib/llvm/tools/clang/include/clang/Sema/Template.h
contrib/llvm/tools/clang/include/clang/Sema/TemplateDeduction.h
contrib/llvm/tools/clang/include/clang/Sema/TypoCorrection.h
contrib/llvm/tools/clang/include/clang/Serialization/ASTBitCodes.h
contrib/llvm/tools/clang/include/clang/Serialization/ASTReader.h
contrib/llvm/tools/clang/include/clang/Serialization/ASTWriter.h
contrib/llvm/tools/clang/include/clang/Serialization/ContinuousRangeMap.h
contrib/llvm/tools/clang/include/clang/Serialization/GlobalModuleIndex.h [new file with mode: 0644]
contrib/llvm/tools/clang/include/clang/Serialization/Module.h
contrib/llvm/tools/clang/include/clang/Serialization/ModuleManager.h
contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Analyses.def
contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h
contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h
contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitor.h
contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugType.h
contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h
contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Checker.h
contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerManager.h
contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerOptInfo.h
contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerRegistry.h
contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathDiagnosticConsumers.h
contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/APSIntType.h
contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h
contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/BasicValueFactory.h
contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h
contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h
contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ConstraintManager.h
contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CoreEngine.h
contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Environment.h
contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h
contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h
contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/FunctionSummary.h
contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h
contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h
contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramStateTrait.h
contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SValBuilder.h
contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h
contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Store.h
contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SubEngine.h
contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h
contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/TaintManager.h
contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/WorkList.h
contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/CheckerRegistration.h
contrib/llvm/tools/clang/include/clang/Tooling/CommonOptionsParser.h
contrib/llvm/tools/clang/include/clang/Tooling/CompilationDatabase.h
contrib/llvm/tools/clang/include/clang/Tooling/FileMatchTrie.h
contrib/llvm/tools/clang/include/clang/Tooling/JSONCompilationDatabase.h
contrib/llvm/tools/clang/include/clang/Tooling/Refactoring.h
contrib/llvm/tools/clang/include/clang/Tooling/Tooling.h
contrib/llvm/tools/clang/lib/ARCMigrate/ARCMT.cpp
contrib/llvm/tools/clang/lib/ARCMigrate/FileRemapper.cpp
contrib/llvm/tools/clang/lib/ARCMigrate/Internals.h
contrib/llvm/tools/clang/lib/ARCMigrate/ObjCMT.cpp
contrib/llvm/tools/clang/lib/ARCMigrate/PlistReporter.cpp
contrib/llvm/tools/clang/lib/ARCMigrate/TransAPIUses.cpp
contrib/llvm/tools/clang/lib/ARCMigrate/TransARCAssign.cpp
contrib/llvm/tools/clang/lib/ARCMigrate/TransAutoreleasePool.cpp
contrib/llvm/tools/clang/lib/ARCMigrate/TransBlockObjCVariable.cpp
contrib/llvm/tools/clang/lib/ARCMigrate/TransEmptyStatementsAndDealloc.cpp
contrib/llvm/tools/clang/lib/ARCMigrate/TransGCAttrs.cpp
contrib/llvm/tools/clang/lib/ARCMigrate/TransGCCalls.cpp
contrib/llvm/tools/clang/lib/ARCMigrate/TransProperties.cpp
contrib/llvm/tools/clang/lib/ARCMigrate/TransProtectedScope.cpp [new file with mode: 0644]
contrib/llvm/tools/clang/lib/ARCMigrate/TransRetainReleaseDealloc.cpp
contrib/llvm/tools/clang/lib/ARCMigrate/TransUnbridgedCasts.cpp
contrib/llvm/tools/clang/lib/ARCMigrate/TransUnusedInitDelegate.cpp
contrib/llvm/tools/clang/lib/ARCMigrate/TransZeroOutPropsInDealloc.cpp
contrib/llvm/tools/clang/lib/ARCMigrate/TransformActions.cpp
contrib/llvm/tools/clang/lib/ARCMigrate/Transforms.cpp
contrib/llvm/tools/clang/lib/ARCMigrate/Transforms.h
contrib/llvm/tools/clang/lib/AST/APValue.cpp
contrib/llvm/tools/clang/lib/AST/ASTConsumer.cpp
contrib/llvm/tools/clang/lib/AST/ASTContext.cpp
contrib/llvm/tools/clang/lib/AST/ASTDiagnostic.cpp
contrib/llvm/tools/clang/lib/AST/ASTDumper.cpp [new file with mode: 0644]
contrib/llvm/tools/clang/lib/AST/ASTImporter.cpp
contrib/llvm/tools/clang/lib/AST/AttrImpl.cpp
contrib/llvm/tools/clang/lib/AST/CXXABI.h
contrib/llvm/tools/clang/lib/AST/CXXInheritance.cpp
contrib/llvm/tools/clang/lib/AST/Comment.cpp
contrib/llvm/tools/clang/lib/AST/CommentBriefParser.cpp
contrib/llvm/tools/clang/lib/AST/CommentCommandTraits.cpp
contrib/llvm/tools/clang/lib/AST/CommentDumper.cpp [deleted file]
contrib/llvm/tools/clang/lib/AST/CommentLexer.cpp
contrib/llvm/tools/clang/lib/AST/CommentParser.cpp
contrib/llvm/tools/clang/lib/AST/CommentSema.cpp
contrib/llvm/tools/clang/lib/AST/Decl.cpp
contrib/llvm/tools/clang/lib/AST/DeclBase.cpp
contrib/llvm/tools/clang/lib/AST/DeclCXX.cpp
contrib/llvm/tools/clang/lib/AST/DeclFriend.cpp
contrib/llvm/tools/clang/lib/AST/DeclGroup.cpp
contrib/llvm/tools/clang/lib/AST/DeclObjC.cpp
contrib/llvm/tools/clang/lib/AST/DeclOpenMP.cpp [new file with mode: 0644]
contrib/llvm/tools/clang/lib/AST/DeclPrinter.cpp
contrib/llvm/tools/clang/lib/AST/DeclTemplate.cpp
contrib/llvm/tools/clang/lib/AST/DeclarationName.cpp
contrib/llvm/tools/clang/lib/AST/DumpXML.cpp
contrib/llvm/tools/clang/lib/AST/Expr.cpp
contrib/llvm/tools/clang/lib/AST/ExprCXX.cpp
contrib/llvm/tools/clang/lib/AST/ExprClassification.cpp
contrib/llvm/tools/clang/lib/AST/ExprConstant.cpp
contrib/llvm/tools/clang/lib/AST/ExternalASTSource.cpp
contrib/llvm/tools/clang/lib/AST/InheritViz.cpp
contrib/llvm/tools/clang/lib/AST/ItaniumCXXABI.cpp
contrib/llvm/tools/clang/lib/AST/ItaniumMangle.cpp
contrib/llvm/tools/clang/lib/AST/LambdaMangleContext.cpp
contrib/llvm/tools/clang/lib/AST/Mangle.cpp
contrib/llvm/tools/clang/lib/AST/MicrosoftCXXABI.cpp
contrib/llvm/tools/clang/lib/AST/MicrosoftMangle.cpp
contrib/llvm/tools/clang/lib/AST/NSAPI.cpp
contrib/llvm/tools/clang/lib/AST/NestedNameSpecifier.cpp
contrib/llvm/tools/clang/lib/AST/RawCommentList.cpp
contrib/llvm/tools/clang/lib/AST/RecordLayout.cpp
contrib/llvm/tools/clang/lib/AST/RecordLayoutBuilder.cpp
contrib/llvm/tools/clang/lib/AST/Stmt.cpp
contrib/llvm/tools/clang/lib/AST/StmtDumper.cpp [deleted file]
contrib/llvm/tools/clang/lib/AST/StmtPrinter.cpp
contrib/llvm/tools/clang/lib/AST/StmtProfile.cpp
contrib/llvm/tools/clang/lib/AST/TemplateBase.cpp
contrib/llvm/tools/clang/lib/AST/TemplateName.cpp
contrib/llvm/tools/clang/lib/AST/Type.cpp
contrib/llvm/tools/clang/lib/AST/TypeLoc.cpp
contrib/llvm/tools/clang/lib/AST/TypePrinter.cpp
contrib/llvm/tools/clang/lib/AST/VTableBuilder.cpp
contrib/llvm/tools/clang/lib/ASTMatchers/ASTMatchFinder.cpp
contrib/llvm/tools/clang/lib/ASTMatchers/ASTMatchersInternal.cpp
contrib/llvm/tools/clang/lib/ASTMatchers/Makefile [deleted file]
contrib/llvm/tools/clang/lib/Analysis/AnalysisDeclContext.cpp
contrib/llvm/tools/clang/lib/Analysis/BodyFarm.cpp
contrib/llvm/tools/clang/lib/Analysis/BodyFarm.h
contrib/llvm/tools/clang/lib/Analysis/CFG.cpp
contrib/llvm/tools/clang/lib/Analysis/CFGStmtMap.cpp
contrib/llvm/tools/clang/lib/Analysis/CallGraph.cpp
contrib/llvm/tools/clang/lib/Analysis/CocoaConventions.cpp
contrib/llvm/tools/clang/lib/Analysis/FormatString.cpp
contrib/llvm/tools/clang/lib/Analysis/FormatStringParsing.h
contrib/llvm/tools/clang/lib/Analysis/LiveVariables.cpp
contrib/llvm/tools/clang/lib/Analysis/PrintfFormatString.cpp
contrib/llvm/tools/clang/lib/Analysis/ReachableCode.cpp
contrib/llvm/tools/clang/lib/Analysis/ScanfFormatString.cpp
contrib/llvm/tools/clang/lib/Analysis/ThreadSafety.cpp
contrib/llvm/tools/clang/lib/Analysis/UninitializedValues.cpp
contrib/llvm/tools/clang/lib/Basic/Builtins.cpp
contrib/llvm/tools/clang/lib/Basic/CharInfo.cpp [new file with mode: 0644]
contrib/llvm/tools/clang/lib/Basic/Diagnostic.cpp
contrib/llvm/tools/clang/lib/Basic/DiagnosticIDs.cpp
contrib/llvm/tools/clang/lib/Basic/FileManager.cpp
contrib/llvm/tools/clang/lib/Basic/FileSystemStatCache.cpp
contrib/llvm/tools/clang/lib/Basic/IdentifierTable.cpp
contrib/llvm/tools/clang/lib/Basic/LangOptions.cpp
contrib/llvm/tools/clang/lib/Basic/Module.cpp
contrib/llvm/tools/clang/lib/Basic/OpenMPKinds.cpp [new file with mode: 0644]
contrib/llvm/tools/clang/lib/Basic/OperatorPrecedence.cpp [new file with mode: 0644]
contrib/llvm/tools/clang/lib/Basic/SourceLocation.cpp
contrib/llvm/tools/clang/lib/Basic/SourceManager.cpp
contrib/llvm/tools/clang/lib/Basic/TargetInfo.cpp
contrib/llvm/tools/clang/lib/Basic/Targets.cpp
contrib/llvm/tools/clang/lib/Basic/TokenKinds.cpp
contrib/llvm/tools/clang/lib/Basic/Version.cpp
contrib/llvm/tools/clang/lib/Basic/VersionTuple.cpp
contrib/llvm/tools/clang/lib/CodeGen/ABIInfo.h
contrib/llvm/tools/clang/lib/CodeGen/BackendUtil.cpp
contrib/llvm/tools/clang/lib/CodeGen/CGAtomic.cpp [new file with mode: 0644]
contrib/llvm/tools/clang/lib/CodeGen/CGBlocks.cpp
contrib/llvm/tools/clang/lib/CodeGen/CGBlocks.h
contrib/llvm/tools/clang/lib/CodeGen/CGBuilder.h
contrib/llvm/tools/clang/lib/CodeGen/CGBuiltin.cpp
contrib/llvm/tools/clang/lib/CodeGen/CGCUDANV.cpp
contrib/llvm/tools/clang/lib/CodeGen/CGCUDARuntime.cpp
contrib/llvm/tools/clang/lib/CodeGen/CGCXX.cpp
contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.cpp
contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.h
contrib/llvm/tools/clang/lib/CodeGen/CGCall.cpp
contrib/llvm/tools/clang/lib/CodeGen/CGCall.h
contrib/llvm/tools/clang/lib/CodeGen/CGClass.cpp
contrib/llvm/tools/clang/lib/CodeGen/CGCleanup.cpp
contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.cpp
contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.h
contrib/llvm/tools/clang/lib/CodeGen/CGDecl.cpp
contrib/llvm/tools/clang/lib/CodeGen/CGDeclCXX.cpp
contrib/llvm/tools/clang/lib/CodeGen/CGException.cpp
contrib/llvm/tools/clang/lib/CodeGen/CGExpr.cpp
contrib/llvm/tools/clang/lib/CodeGen/CGExprAgg.cpp
contrib/llvm/tools/clang/lib/CodeGen/CGExprCXX.cpp
contrib/llvm/tools/clang/lib/CodeGen/CGExprComplex.cpp
contrib/llvm/tools/clang/lib/CodeGen/CGExprConstant.cpp
contrib/llvm/tools/clang/lib/CodeGen/CGExprScalar.cpp
contrib/llvm/tools/clang/lib/CodeGen/CGObjC.cpp
contrib/llvm/tools/clang/lib/CodeGen/CGObjCGNU.cpp
contrib/llvm/tools/clang/lib/CodeGen/CGObjCMac.cpp
contrib/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.cpp
contrib/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.h
contrib/llvm/tools/clang/lib/CodeGen/CGOpenCLRuntime.cpp
contrib/llvm/tools/clang/lib/CodeGen/CGOpenCLRuntime.h
contrib/llvm/tools/clang/lib/CodeGen/CGRTTI.cpp
contrib/llvm/tools/clang/lib/CodeGen/CGRecordLayout.h
contrib/llvm/tools/clang/lib/CodeGen/CGRecordLayoutBuilder.cpp
contrib/llvm/tools/clang/lib/CodeGen/CGStmt.cpp
contrib/llvm/tools/clang/lib/CodeGen/CGVTables.cpp
contrib/llvm/tools/clang/lib/CodeGen/CGVTables.h
contrib/llvm/tools/clang/lib/CodeGen/CGValue.h
contrib/llvm/tools/clang/lib/CodeGen/CodeGenAction.cpp
contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.cpp
contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.h
contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.cpp
contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.h
contrib/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.cpp
contrib/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.h
contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.cpp
contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.h
contrib/llvm/tools/clang/lib/CodeGen/ItaniumCXXABI.cpp
contrib/llvm/tools/clang/lib/CodeGen/MicrosoftCXXABI.cpp
contrib/llvm/tools/clang/lib/CodeGen/ModuleBuilder.cpp
contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.cpp
contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.h
contrib/llvm/tools/clang/lib/Driver/Action.cpp
contrib/llvm/tools/clang/lib/Driver/ArgList.cpp
contrib/llvm/tools/clang/lib/Driver/CC1AsOptions.cpp
contrib/llvm/tools/clang/lib/Driver/Compilation.cpp
contrib/llvm/tools/clang/lib/Driver/Driver.cpp
contrib/llvm/tools/clang/lib/Driver/InputInfo.h
contrib/llvm/tools/clang/lib/Driver/Job.cpp
contrib/llvm/tools/clang/lib/Driver/OptTable.cpp
contrib/llvm/tools/clang/lib/Driver/Option.cpp
contrib/llvm/tools/clang/lib/Driver/Phases.cpp
contrib/llvm/tools/clang/lib/Driver/SanitizerArgs.h
contrib/llvm/tools/clang/lib/Driver/ToolChain.cpp
contrib/llvm/tools/clang/lib/Driver/ToolChains.cpp
contrib/llvm/tools/clang/lib/Driver/ToolChains.h
contrib/llvm/tools/clang/lib/Driver/Tools.cpp
contrib/llvm/tools/clang/lib/Driver/Tools.h
contrib/llvm/tools/clang/lib/Driver/Types.cpp
contrib/llvm/tools/clang/lib/Driver/WindowsToolChain.cpp
contrib/llvm/tools/clang/lib/Edit/Commit.cpp
contrib/llvm/tools/clang/lib/Edit/EditedSource.cpp
contrib/llvm/tools/clang/lib/Edit/RewriteObjCFoundationAPI.cpp
contrib/llvm/tools/clang/lib/Format/BreakableToken.cpp [new file with mode: 0644]
contrib/llvm/tools/clang/lib/Format/BreakableToken.h [new file with mode: 0644]
contrib/llvm/tools/clang/lib/Format/Format.cpp [new file with mode: 0644]
contrib/llvm/tools/clang/lib/Format/TokenAnnotator.cpp [new file with mode: 0644]
contrib/llvm/tools/clang/lib/Format/TokenAnnotator.h [new file with mode: 0644]
contrib/llvm/tools/clang/lib/Format/UnwrappedLineParser.cpp [new file with mode: 0644]
contrib/llvm/tools/clang/lib/Format/UnwrappedLineParser.h [new file with mode: 0644]
contrib/llvm/tools/clang/lib/Format/WhitespaceManager.cpp [new file with mode: 0644]
contrib/llvm/tools/clang/lib/Format/WhitespaceManager.h [new file with mode: 0644]
contrib/llvm/tools/clang/lib/Frontend/ASTConsumers.cpp
contrib/llvm/tools/clang/lib/Frontend/ASTMerge.cpp
contrib/llvm/tools/clang/lib/Frontend/ASTUnit.cpp
contrib/llvm/tools/clang/lib/Frontend/CacheTokens.cpp
contrib/llvm/tools/clang/lib/Frontend/ChainedIncludesSource.cpp
contrib/llvm/tools/clang/lib/Frontend/CompilerInstance.cpp
contrib/llvm/tools/clang/lib/Frontend/CompilerInvocation.cpp
contrib/llvm/tools/clang/lib/Frontend/CreateInvocationFromCommandLine.cpp
contrib/llvm/tools/clang/lib/Frontend/DependencyFile.cpp
contrib/llvm/tools/clang/lib/Frontend/DependencyGraph.cpp
contrib/llvm/tools/clang/lib/Frontend/DiagnosticRenderer.cpp
contrib/llvm/tools/clang/lib/Frontend/FrontendAction.cpp
contrib/llvm/tools/clang/lib/Frontend/FrontendActions.cpp
contrib/llvm/tools/clang/lib/Frontend/FrontendOptions.cpp
contrib/llvm/tools/clang/lib/Frontend/InitHeaderSearch.cpp
contrib/llvm/tools/clang/lib/Frontend/InitPreprocessor.cpp
contrib/llvm/tools/clang/lib/Frontend/LayoutOverrideSource.cpp
contrib/llvm/tools/clang/lib/Frontend/LogDiagnosticPrinter.cpp
contrib/llvm/tools/clang/lib/Frontend/MultiplexConsumer.cpp
contrib/llvm/tools/clang/lib/Frontend/PrintPreprocessedOutput.cpp
contrib/llvm/tools/clang/lib/Frontend/SerializedDiagnosticPrinter.cpp
contrib/llvm/tools/clang/lib/Frontend/TextDiagnostic.cpp
contrib/llvm/tools/clang/lib/Frontend/TextDiagnosticBuffer.cpp
contrib/llvm/tools/clang/lib/Frontend/TextDiagnosticPrinter.cpp
contrib/llvm/tools/clang/lib/Frontend/VerifyDiagnosticConsumer.cpp
contrib/llvm/tools/clang/lib/Frontend/Warnings.cpp
contrib/llvm/tools/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp
contrib/llvm/tools/clang/lib/Headers/altivec.h
contrib/llvm/tools/clang/lib/Headers/avx2intrin.h
contrib/llvm/tools/clang/lib/Headers/avxintrin.h
contrib/llvm/tools/clang/lib/Headers/cpuid.h
contrib/llvm/tools/clang/lib/Headers/emmintrin.h
contrib/llvm/tools/clang/lib/Headers/f16cintrin.h
contrib/llvm/tools/clang/lib/Headers/immintrin.h
contrib/llvm/tools/clang/lib/Headers/mm3dnow.h
contrib/llvm/tools/clang/lib/Headers/mm_malloc.h
contrib/llvm/tools/clang/lib/Headers/module.map
contrib/llvm/tools/clang/lib/Headers/pmmintrin.h
contrib/llvm/tools/clang/lib/Headers/prfchwintrin.h [new file with mode: 0644]
contrib/llvm/tools/clang/lib/Headers/rdseedintrin.h [new file with mode: 0644]
contrib/llvm/tools/clang/lib/Headers/smmintrin.h
contrib/llvm/tools/clang/lib/Headers/stdalign.h
contrib/llvm/tools/clang/lib/Headers/stddef.h
contrib/llvm/tools/clang/lib/Headers/stdint.h
contrib/llvm/tools/clang/lib/Headers/stdnoreturn.h [new file with mode: 0644]
contrib/llvm/tools/clang/lib/Headers/tmmintrin.h
contrib/llvm/tools/clang/lib/Headers/unwind.h
contrib/llvm/tools/clang/lib/Headers/x86intrin.h
contrib/llvm/tools/clang/lib/Headers/xmmintrin.h
contrib/llvm/tools/clang/lib/Headers/xopintrin.h
contrib/llvm/tools/clang/lib/Lex/HeaderMap.cpp
contrib/llvm/tools/clang/lib/Lex/HeaderSearch.cpp
contrib/llvm/tools/clang/lib/Lex/Lexer.cpp
contrib/llvm/tools/clang/lib/Lex/LiteralSupport.cpp
contrib/llvm/tools/clang/lib/Lex/MacroArgs.cpp
contrib/llvm/tools/clang/lib/Lex/MacroInfo.cpp
contrib/llvm/tools/clang/lib/Lex/ModuleMap.cpp
contrib/llvm/tools/clang/lib/Lex/PPConditionalDirectiveRecord.cpp [new file with mode: 0644]
contrib/llvm/tools/clang/lib/Lex/PPDirectives.cpp
contrib/llvm/tools/clang/lib/Lex/PPExpressions.cpp
contrib/llvm/tools/clang/lib/Lex/PPLexerChange.cpp
contrib/llvm/tools/clang/lib/Lex/PPMacroExpansion.cpp
contrib/llvm/tools/clang/lib/Lex/PTHLexer.cpp
contrib/llvm/tools/clang/lib/Lex/Pragma.cpp
contrib/llvm/tools/clang/lib/Lex/PreprocessingRecord.cpp
contrib/llvm/tools/clang/lib/Lex/Preprocessor.cpp
contrib/llvm/tools/clang/lib/Lex/PreprocessorLexer.cpp
contrib/llvm/tools/clang/lib/Lex/TokenConcatenation.cpp
contrib/llvm/tools/clang/lib/Lex/TokenLexer.cpp
contrib/llvm/tools/clang/lib/Lex/UnicodeCharSets.h [new file with mode: 0644]
contrib/llvm/tools/clang/lib/Parse/ParseAST.cpp
contrib/llvm/tools/clang/lib/Parse/ParseCXXInlineMethods.cpp
contrib/llvm/tools/clang/lib/Parse/ParseDecl.cpp
contrib/llvm/tools/clang/lib/Parse/ParseDeclCXX.cpp
contrib/llvm/tools/clang/lib/Parse/ParseExpr.cpp
contrib/llvm/tools/clang/lib/Parse/ParseExprCXX.cpp
contrib/llvm/tools/clang/lib/Parse/ParseInit.cpp
contrib/llvm/tools/clang/lib/Parse/ParseObjc.cpp
contrib/llvm/tools/clang/lib/Parse/ParseOpenMP.cpp [new file with mode: 0644]
contrib/llvm/tools/clang/lib/Parse/ParsePragma.cpp
contrib/llvm/tools/clang/lib/Parse/ParsePragma.h
contrib/llvm/tools/clang/lib/Parse/ParseStmt.cpp
contrib/llvm/tools/clang/lib/Parse/ParseTemplate.cpp
contrib/llvm/tools/clang/lib/Parse/ParseTentative.cpp
contrib/llvm/tools/clang/lib/Parse/Parser.cpp
contrib/llvm/tools/clang/lib/Parse/RAIIObjectsForParser.h
contrib/llvm/tools/clang/lib/Rewrite/Core/CMakeLists.txt [deleted file]
contrib/llvm/tools/clang/lib/Rewrite/Core/DeltaTree.cpp
contrib/llvm/tools/clang/lib/Rewrite/Core/HTMLRewrite.cpp
contrib/llvm/tools/clang/lib/Rewrite/Core/Makefile [deleted file]
contrib/llvm/tools/clang/lib/Rewrite/Core/Rewriter.cpp
contrib/llvm/tools/clang/lib/Rewrite/Core/TokenRewriter.cpp
contrib/llvm/tools/clang/lib/Rewrite/Frontend/CMakeLists.txt [deleted file]
contrib/llvm/tools/clang/lib/Rewrite/Frontend/FixItRewriter.cpp
contrib/llvm/tools/clang/lib/Rewrite/Frontend/FrontendActions.cpp
contrib/llvm/tools/clang/lib/Rewrite/Frontend/InclusionRewriter.cpp
contrib/llvm/tools/clang/lib/Rewrite/Frontend/Makefile [deleted file]
contrib/llvm/tools/clang/lib/Rewrite/Frontend/RewriteMacros.cpp
contrib/llvm/tools/clang/lib/Rewrite/Frontend/RewriteModernObjC.cpp
contrib/llvm/tools/clang/lib/Rewrite/Frontend/RewriteObjC.cpp
contrib/llvm/tools/clang/lib/Sema/AnalysisBasedWarnings.cpp
contrib/llvm/tools/clang/lib/Sema/AttributeList.cpp
contrib/llvm/tools/clang/lib/Sema/CodeCompleteConsumer.cpp
contrib/llvm/tools/clang/lib/Sema/DeclSpec.cpp
contrib/llvm/tools/clang/lib/Sema/IdentifierResolver.cpp
contrib/llvm/tools/clang/lib/Sema/JumpDiagnostics.cpp
contrib/llvm/tools/clang/lib/Sema/MultiplexExternalSemaSource.cpp
contrib/llvm/tools/clang/lib/Sema/ScopeInfo.cpp
contrib/llvm/tools/clang/lib/Sema/Sema.cpp
contrib/llvm/tools/clang/lib/Sema/SemaAccess.cpp
contrib/llvm/tools/clang/lib/Sema/SemaAttr.cpp
contrib/llvm/tools/clang/lib/Sema/SemaCXXScopeSpec.cpp
contrib/llvm/tools/clang/lib/Sema/SemaCast.cpp
contrib/llvm/tools/clang/lib/Sema/SemaChecking.cpp
contrib/llvm/tools/clang/lib/Sema/SemaCodeComplete.cpp
contrib/llvm/tools/clang/lib/Sema/SemaDecl.cpp
contrib/llvm/tools/clang/lib/Sema/SemaDeclAttr.cpp
contrib/llvm/tools/clang/lib/Sema/SemaDeclCXX.cpp
contrib/llvm/tools/clang/lib/Sema/SemaDeclObjC.cpp
contrib/llvm/tools/clang/lib/Sema/SemaExceptionSpec.cpp
contrib/llvm/tools/clang/lib/Sema/SemaExpr.cpp
contrib/llvm/tools/clang/lib/Sema/SemaExprCXX.cpp
contrib/llvm/tools/clang/lib/Sema/SemaExprMember.cpp
contrib/llvm/tools/clang/lib/Sema/SemaExprObjC.cpp
contrib/llvm/tools/clang/lib/Sema/SemaFixItUtils.cpp
contrib/llvm/tools/clang/lib/Sema/SemaInit.cpp
contrib/llvm/tools/clang/lib/Sema/SemaLambda.cpp
contrib/llvm/tools/clang/lib/Sema/SemaLookup.cpp
contrib/llvm/tools/clang/lib/Sema/SemaObjCProperty.cpp
contrib/llvm/tools/clang/lib/Sema/SemaOpenMP.cpp [new file with mode: 0644]
contrib/llvm/tools/clang/lib/Sema/SemaOverload.cpp
contrib/llvm/tools/clang/lib/Sema/SemaPseudoObject.cpp
contrib/llvm/tools/clang/lib/Sema/SemaStmt.cpp
contrib/llvm/tools/clang/lib/Sema/SemaStmtAsm.cpp
contrib/llvm/tools/clang/lib/Sema/SemaStmtAttr.cpp
contrib/llvm/tools/clang/lib/Sema/SemaTemplate.cpp
contrib/llvm/tools/clang/lib/Sema/SemaTemplateDeduction.cpp
contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiate.cpp
contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
contrib/llvm/tools/clang/lib/Sema/SemaTemplateVariadic.cpp
contrib/llvm/tools/clang/lib/Sema/SemaType.cpp
contrib/llvm/tools/clang/lib/Sema/TargetAttributesSema.cpp
contrib/llvm/tools/clang/lib/Sema/TreeTransform.h
contrib/llvm/tools/clang/lib/Sema/TypeLocBuilder.h
contrib/llvm/tools/clang/lib/Serialization/ASTCommon.cpp
contrib/llvm/tools/clang/lib/Serialization/ASTCommon.h
contrib/llvm/tools/clang/lib/Serialization/ASTReader.cpp
contrib/llvm/tools/clang/lib/Serialization/ASTReaderDecl.cpp
contrib/llvm/tools/clang/lib/Serialization/ASTReaderInternals.h
contrib/llvm/tools/clang/lib/Serialization/ASTReaderStmt.cpp
contrib/llvm/tools/clang/lib/Serialization/ASTWriter.cpp
contrib/llvm/tools/clang/lib/Serialization/ASTWriterDecl.cpp
contrib/llvm/tools/clang/lib/Serialization/ASTWriterStmt.cpp
contrib/llvm/tools/clang/lib/Serialization/GeneratePCH.cpp
contrib/llvm/tools/clang/lib/Serialization/GlobalModuleIndex.cpp [new file with mode: 0644]
contrib/llvm/tools/clang/lib/Serialization/Module.cpp
contrib/llvm/tools/clang/lib/Serialization/ModuleManager.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AllocationDiagnostics.cpp [new file with mode: 0644]
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AllocationDiagnostics.h [new file with mode: 0644]
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AnalyzerStatsChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundCheckerV2.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AttrNonNullChecker.cpp [deleted file]
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BasicObjCFoundationChecks.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BoolAssignmentChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BuiltinFunctionChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringSyntaxChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastSizeChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastToStructChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCInstMethSignature.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSizeofPointer.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckerDocumentation.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/Checkers.td
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ClangSACheckers.h
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DeadStoresChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DebugCheckers.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DereferenceChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DirectIvarAssignment.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DivZeroChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DynamicTypePropagation.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ExprInspectionChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/FixedAddressChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IdempotentOperationChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/LLVMConventionsChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSKeychainAPIChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSXAPIChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocOverflowSecurityChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocSizeofChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSAutoreleasePoolChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSErrorChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NoReturnFunctionChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NonNullParamChecker.cpp [new file with mode: 0644]
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCAtSyncChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersASTChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCMissingSuperCallChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCUnusedIVarsChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerArithChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerSubChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PthreadLockChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnPointerRangeChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnUndefChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/SimpleStreamChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StackAddrEscapeChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StreamChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TaintTesterChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TraversalChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefBranchChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefCapturedBlockVarChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefResultChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedArraySubscriptChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedAssignmentChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnixAPIChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnreachableCodeChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VLASizeChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/APSIntType.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalysisManager.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporter.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CallEvent.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerManager.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerRegistry.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CoreEngine.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Environment.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExplodedGraph.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineObjC.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/FunctionSummary.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/HTMLDiagnostics.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/MemRegion.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ProgramState.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RegionStore.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SValBuilder.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SVals.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.h
contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleSValBuilder.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Store.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SymbolManager.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/TextPathDiagnostics.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CheckerRegistration.cpp
contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/FrontendActions.cpp
contrib/llvm/tools/clang/lib/Tooling/CommonOptionsParser.cpp
contrib/llvm/tools/clang/lib/Tooling/CompilationDatabase.cpp
contrib/llvm/tools/clang/lib/Tooling/FileMatchTrie.cpp
contrib/llvm/tools/clang/lib/Tooling/JSONCompilationDatabase.cpp
contrib/llvm/tools/clang/lib/Tooling/Refactoring.cpp
contrib/llvm/tools/clang/lib/Tooling/Tooling.cpp
contrib/llvm/tools/clang/tools/driver/cc1_main.cpp
contrib/llvm/tools/clang/tools/driver/cc1as_main.cpp
contrib/llvm/tools/clang/tools/driver/driver.cpp
contrib/llvm/tools/clang/utils/TableGen/ClangASTNodesEmitter.cpp
contrib/llvm/tools/clang/utils/TableGen/ClangAttrEmitter.cpp
contrib/llvm/tools/clang/utils/TableGen/ClangCommentCommandInfoEmitter.cpp
contrib/llvm/tools/clang/utils/TableGen/ClangCommentHTMLNamedCharacterReferenceEmitter.cpp [new file with mode: 0644]
contrib/llvm/tools/clang/utils/TableGen/ClangCommentHTMLTagsEmitter.cpp
contrib/llvm/tools/clang/utils/TableGen/ClangDiagnosticsEmitter.cpp
contrib/llvm/tools/clang/utils/TableGen/NeonEmitter.cpp
contrib/llvm/tools/clang/utils/TableGen/OptParserEmitter.cpp
contrib/llvm/tools/clang/utils/TableGen/TableGen.cpp
contrib/llvm/tools/clang/utils/TableGen/TableGenBackends.h
contrib/llvm/tools/llc/llc.cpp
contrib/llvm/tools/lli/RecordingMemoryManager.cpp
contrib/llvm/tools/lli/RecordingMemoryManager.h
contrib/llvm/tools/lli/RemoteTarget.h
contrib/llvm/tools/lli/lli.cpp
contrib/llvm/tools/llvm-ar/llvm-ar.cpp
contrib/llvm/tools/llvm-as/llvm-as.cpp
contrib/llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp
contrib/llvm/tools/llvm-diff/DiffConsumer.cpp
contrib/llvm/tools/llvm-diff/DiffConsumer.h
contrib/llvm/tools/llvm-diff/DiffLog.cpp
contrib/llvm/tools/llvm-diff/DifferenceEngine.cpp
contrib/llvm/tools/llvm-diff/DifferenceEngine.h
contrib/llvm/tools/llvm-diff/llvm-diff.cpp
contrib/llvm/tools/llvm-dis/llvm-dis.cpp
contrib/llvm/tools/llvm-extract/llvm-extract.cpp
contrib/llvm/tools/llvm-link/llvm-link.cpp
contrib/llvm/tools/llvm-mc/Disassembler.cpp
contrib/llvm/tools/llvm-mc/Disassembler.h
contrib/llvm/tools/llvm-mc/llvm-mc.cpp
contrib/llvm/tools/llvm-nm/llvm-nm.cpp
contrib/llvm/tools/llvm-objdump/COFFDump.cpp [new file with mode: 0644]
contrib/llvm/tools/llvm-objdump/ELFDump.cpp [new file with mode: 0644]
contrib/llvm/tools/llvm-objdump/MachODump.cpp
contrib/llvm/tools/llvm-objdump/llvm-objdump.cpp
contrib/llvm/tools/llvm-objdump/llvm-objdump.h
contrib/llvm/tools/llvm-prof/llvm-prof.cpp
contrib/llvm/tools/llvm-ranlib/llvm-ranlib.cpp
contrib/llvm/tools/llvm-readobj/COFFDumper.cpp [new file with mode: 0644]
contrib/llvm/tools/llvm-readobj/ELFDumper.cpp [new file with mode: 0644]
contrib/llvm/tools/llvm-readobj/Error.cpp [new file with mode: 0644]
contrib/llvm/tools/llvm-readobj/Error.h [new file with mode: 0644]
contrib/llvm/tools/llvm-readobj/MachODumper.cpp [new file with mode: 0644]
contrib/llvm/tools/llvm-readobj/ObjDumper.cpp [new file with mode: 0644]
contrib/llvm/tools/llvm-readobj/ObjDumper.h [new file with mode: 0644]
contrib/llvm/tools/llvm-readobj/StreamWriter.cpp [new file with mode: 0644]
contrib/llvm/tools/llvm-readobj/StreamWriter.h [new file with mode: 0644]
contrib/llvm/tools/llvm-readobj/llvm-readobj.cpp
contrib/llvm/tools/llvm-readobj/llvm-readobj.h [new file with mode: 0644]
contrib/llvm/tools/llvm-rtdyld/llvm-rtdyld.cpp
contrib/llvm/tools/llvm-stress/llvm-stress.cpp
contrib/llvm/tools/llvm-symbolizer/LLVMSymbolize.cpp [new file with mode: 0644]
contrib/llvm/tools/llvm-symbolizer/LLVMSymbolize.h [new file with mode: 0644]
contrib/llvm/tools/llvm-symbolizer/llvm-symbolizer.cpp [new file with mode: 0644]
contrib/llvm/tools/macho-dump/macho-dump.cpp
contrib/llvm/tools/opt/AnalysisWrappers.cpp
contrib/llvm/tools/opt/GraphPrinters.cpp
contrib/llvm/tools/opt/PrintSCC.cpp
contrib/llvm/tools/opt/opt.cpp
contrib/llvm/utils/TableGen/AsmMatcherEmitter.cpp
contrib/llvm/utils/TableGen/AsmWriterEmitter.cpp
contrib/llvm/utils/TableGen/CTagsEmitter.cpp [new file with mode: 0644]
contrib/llvm/utils/TableGen/CodeEmitterGen.cpp
contrib/llvm/utils/TableGen/CodeGenDAGPatterns.cpp
contrib/llvm/utils/TableGen/CodeGenDAGPatterns.h
contrib/llvm/utils/TableGen/CodeGenInstruction.cpp
contrib/llvm/utils/TableGen/CodeGenInstruction.h
contrib/llvm/utils/TableGen/CodeGenIntrinsics.h
contrib/llvm/utils/TableGen/CodeGenMapTable.cpp
contrib/llvm/utils/TableGen/CodeGenRegisters.cpp
contrib/llvm/utils/TableGen/CodeGenRegisters.h
contrib/llvm/utils/TableGen/CodeGenSchedule.cpp
contrib/llvm/utils/TableGen/CodeGenSchedule.h
contrib/llvm/utils/TableGen/CodeGenTarget.cpp
contrib/llvm/utils/TableGen/CodeGenTarget.h
contrib/llvm/utils/TableGen/DAGISelMatcher.cpp
contrib/llvm/utils/TableGen/DAGISelMatcher.h
contrib/llvm/utils/TableGen/DAGISelMatcherEmitter.cpp
contrib/llvm/utils/TableGen/DAGISelMatcherGen.cpp
contrib/llvm/utils/TableGen/DFAPacketizerEmitter.cpp
contrib/llvm/utils/TableGen/DisassemblerEmitter.cpp
contrib/llvm/utils/TableGen/EDEmitter.cpp [deleted file]
contrib/llvm/utils/TableGen/FixedLenDecoderEmitter.cpp
contrib/llvm/utils/TableGen/InstrInfoEmitter.cpp
contrib/llvm/utils/TableGen/IntrinsicEmitter.cpp
contrib/llvm/utils/TableGen/OptParserEmitter.cpp [new file with mode: 0644]
contrib/llvm/utils/TableGen/PseudoLoweringEmitter.cpp
contrib/llvm/utils/TableGen/RegisterInfoEmitter.cpp
contrib/llvm/utils/TableGen/SequenceToOffsetTable.h
contrib/llvm/utils/TableGen/SetTheory.cpp
contrib/llvm/utils/TableGen/SetTheory.h
contrib/llvm/utils/TableGen/StringToOffsetTable.h
contrib/llvm/utils/TableGen/SubtargetEmitter.cpp
contrib/llvm/utils/TableGen/TableGen.cpp
contrib/llvm/utils/TableGen/TableGenBackends.h
contrib/llvm/utils/TableGen/X86DisassemblerShared.h
contrib/llvm/utils/TableGen/X86DisassemblerTables.cpp
contrib/llvm/utils/TableGen/X86DisassemblerTables.h
contrib/llvm/utils/TableGen/X86RecognizableInstr.cpp
contrib/llvm/utils/TableGen/X86RecognizableInstr.h
etc/mtree/BSD.include.dist
lib/clang/Makefile
lib/clang/clang.build.mk
lib/clang/include/ARMGenEDInfo.inc [deleted file]
lib/clang/include/Makefile
lib/clang/include/MipsGenEDInfo.inc [deleted file]
lib/clang/include/X86GenEDInfo.inc [deleted file]
lib/clang/include/clang/AST/AttrDump.inc [new file with mode: 0644]
lib/clang/include/clang/AST/CommentCommandList.inc [new file with mode: 0644]
lib/clang/include/clang/AST/CommentHTMLNamedCharacterReferences.inc [new file with mode: 0644]
lib/clang/include/clang/Basic/Version.inc
lib/clang/include/clang/Parse/AttrExprArgs.inc [new file with mode: 0644]
lib/clang/include/clang/Sema/AttrSpellingListIndex.inc [new file with mode: 0644]
lib/clang/include/llvm/Config/config.h
lib/clang/include/llvm/Config/llvm-config.h
lib/clang/include/llvm/IR/Intrinsics.gen [moved from lib/clang/include/llvm/Intrinsics.gen with 100% similarity]
lib/clang/libclanganalysis/Makefile
lib/clang/libclangarcmigrate/Makefile
lib/clang/libclangast/Makefile
lib/clang/libclangbasic/Makefile
lib/clang/libclangcodegen/Makefile
lib/clang/libclangedit/Makefile
lib/clang/libclangfrontend/Makefile
lib/clang/libclanglex/Makefile
lib/clang/libclangparse/Makefile
lib/clang/libclangrewritefrontend/Makefile
lib/clang/libclangsema/Makefile
lib/clang/libclangserialization/Makefile
lib/clang/libclangstaticanalyzercheckers/Makefile
lib/clang/libclangstaticanalyzercore/Makefile
lib/clang/libclangstaticanalyzerfrontend/Makefile
lib/clang/libllvmanalysis/Makefile
lib/clang/libllvmarmasmparser/Makefile
lib/clang/libllvmarmcodegen/Makefile
lib/clang/libllvmarmdesc/Makefile
lib/clang/libllvmarmdisassembler/Makefile
lib/clang/libllvmasmprinter/Makefile
lib/clang/libllvmbitreader/Makefile
lib/clang/libllvmbitwriter/Makefile
lib/clang/libllvmcodegen/Makefile
lib/clang/libllvmcore/Makefile
lib/clang/libllvmdebuginfo/Makefile
lib/clang/libllvminstrumentation/Makefile
lib/clang/libllvmipa/Makefile
lib/clang/libllvmirreader/Makefile [new file with mode: 0644]
lib/clang/libllvmlinker/Makefile
lib/clang/libllvmmc/Makefile
lib/clang/libllvmmcdisassembler/Makefile
lib/clang/libllvmmcjit/Makefile
lib/clang/libllvmmipscodegen/Makefile
lib/clang/libllvmmipsdesc/Makefile
lib/clang/libllvmmipsdisassembler/Makefile
lib/clang/libllvmobjcarcopts/Makefile [new file with mode: 0644]
lib/clang/libllvmobject/Makefile
lib/clang/libllvmpowerpccodegen/Makefile
lib/clang/libllvmscalaropts/Makefile
lib/clang/libllvmsupport/Makefile
lib/clang/libllvmtablegen/Makefile
lib/clang/libllvmtarget/Makefile
lib/clang/libllvmtransformutils/Makefile
lib/clang/libllvmvectorize/Makefile
lib/clang/libllvmx86asmparser/Makefile
lib/clang/libllvmx86codegen/Makefile
lib/clang/libllvmx86disassembler/Makefile
tools/build/mk/OptionalObsoleteFiles.inc
usr.bin/clang/bugpoint/Makefile
usr.bin/clang/bugpoint/bugpoint.1
usr.bin/clang/clang-tblgen/Makefile
usr.bin/clang/clang/Makefile
usr.bin/clang/clang/clang.1
usr.bin/clang/llc/Makefile
usr.bin/clang/llc/llc.1
usr.bin/clang/lli/Makefile
usr.bin/clang/lli/lli.1
usr.bin/clang/llvm-ar/Makefile
usr.bin/clang/llvm-ar/llvm-ar.1
usr.bin/clang/llvm-as/Makefile
usr.bin/clang/llvm-as/llvm-as.1
usr.bin/clang/llvm-bcanalyzer/Makefile
usr.bin/clang/llvm-bcanalyzer/llvm-bcanalyzer.1
usr.bin/clang/llvm-diff/Makefile
usr.bin/clang/llvm-diff/llvm-diff.1
usr.bin/clang/llvm-dis/Makefile
usr.bin/clang/llvm-dis/llvm-dis.1
usr.bin/clang/llvm-extract/Makefile
usr.bin/clang/llvm-extract/llvm-extract.1
usr.bin/clang/llvm-link/Makefile
usr.bin/clang/llvm-link/llvm-link.1
usr.bin/clang/llvm-mc/Makefile
usr.bin/clang/llvm-nm/Makefile
usr.bin/clang/llvm-nm/llvm-nm.1
usr.bin/clang/llvm-objdump/Makefile
usr.bin/clang/llvm-prof/Makefile
usr.bin/clang/llvm-prof/llvm-prof.1
usr.bin/clang/llvm-ranlib/Makefile
usr.bin/clang/llvm-ranlib/llvm-ranlib.1
usr.bin/clang/llvm-rtdyld/Makefile
usr.bin/clang/macho-dump/Makefile
usr.bin/clang/opt/Makefile
usr.bin/clang/opt/opt.1
usr.bin/clang/tblgen/Makefile
usr.bin/clang/tblgen/tblgen.1