├── README.md ├── compiler └── llvm │ ├── CMakeFiles │ ├── CMakeCCompiler.cmake │ ├── CMakeCXXCompiler.cmake │ ├── CMakeDetermineCompilerABI_C.bin │ ├── CMakeDetermineCompilerABI_CXX.bin │ ├── CMakeOutput.log │ ├── CMakeSystem.cmake │ ├── CompilerIdC │ │ ├── CMakeCCompilerId.c │ │ └── a.out │ ├── CompilerIdCXX │ │ ├── CMakeCXXCompilerId.cpp │ │ └── a.out │ └── cmake.check_cache │ ├── CMakeLists.txt │ ├── CREDITS.TXT │ ├── LICENSE.TXT │ ├── Makefile │ ├── Makefile.common │ ├── Makefile.config.in │ ├── Makefile.rules │ ├── ModuleInfo.txt │ ├── README.txt │ ├── autoconf │ ├── AutoRegen.sh │ ├── ExportMap.map │ ├── LICENSE.TXT │ ├── README.TXT │ ├── aclocal.m4 │ ├── autom4te.cache │ │ ├── output.0 │ │ ├── output.1 │ │ ├── output.2 │ │ ├── requests │ │ ├── traces.0 │ │ ├── traces.1 │ │ └── traces.2 │ ├── config.guess │ ├── config.log │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── configure.org │ ├── depcomp │ ├── install-sh │ ├── ltmain.sh │ ├── m4 │ │ ├── build_exeext.m4 │ │ ├── c_printf_a.m4 │ │ ├── check_gnu_make.m4 │ │ ├── config_makefile.m4 │ │ ├── config_project.m4 │ │ ├── cxx_flag_check.m4 │ │ ├── find_std_program.m4 │ │ ├── func_isinf.m4 │ │ ├── func_isnan.m4 │ │ ├── func_mmap_file.m4 │ │ ├── header_mmap_anonymous.m4 │ │ ├── huge_val.m4 │ │ ├── libtool.m4 │ │ ├── link_options.m4 │ │ ├── linux_mixed_64_32.m4 │ │ ├── ltdl.m4 │ │ ├── need_dev_zero_for_mmap.m4 │ │ ├── path_perl.m4 │ │ ├── path_tclsh.m4 │ │ ├── rand48.m4 │ │ ├── sanity_check.m4 │ │ ├── single_cxx_check.m4 │ │ └── visibility_inlines_hidden.m4 │ ├── missing │ └── mkinstalldirs │ ├── autom4te.cache │ ├── output.0 │ ├── requests │ └── traces.0 │ ├── bindings │ ├── Makefile │ ├── README.txt │ ├── ada │ │ ├── analysis │ │ │ ├── llvm_analysis-binding.ads │ │ │ ├── llvm_analysis.ads │ │ │ └── llvm_analysis_wrap.cxx │ │ ├── bitreader │ │ │ ├── llvm_bit_reader-binding.ads │ │ │ ├── llvm_bit_reader.ads │ │ │ └── llvm_bitreader_wrap.cxx │ │ ├── bitwriter │ │ │ ├── llvm_bit_writer-binding.ads │ │ │ ├── llvm_bit_writer.ads │ │ │ └── llvm_bitwriter_wrap.cxx │ │ ├── executionengine │ │ │ ├── llvm_execution_engine-binding.ads │ │ │ ├── llvm_execution_engine.ads │ │ │ └── llvm_executionengine_wrap.cxx │ │ ├── llvm.gpr │ │ ├── llvm │ │ │ ├── llvm-binding.ads │ │ │ ├── llvm.ads │ │ │ ├── llvm_link_time_optimizer-binding.ads │ │ │ ├── llvm_link_time_optimizer.ads │ │ │ ├── llvm_linktimeoptimizer_wrap.cxx │ │ │ └── llvm_wrap.cxx │ │ ├── target │ │ │ ├── llvm_target-binding.ads │ │ │ ├── llvm_target.ads │ │ │ └── llvm_target_wrap.cxx │ │ └── transforms │ │ │ ├── llvm_transforms-binding.ads │ │ │ ├── llvm_transforms.ads │ │ │ └── llvm_transforms_wrap.cxx │ └── ocaml │ │ ├── Makefile │ │ ├── Makefile.ocaml │ │ ├── analysis │ │ ├── Makefile │ │ ├── analysis_ocaml.c │ │ ├── llvm_analysis.ml │ │ └── llvm_analysis.mli │ │ ├── bitreader │ │ ├── Makefile │ │ ├── bitreader_ocaml.c │ │ ├── llvm_bitreader.ml │ │ └── llvm_bitreader.mli │ │ ├── bitwriter │ │ ├── Makefile │ │ ├── bitwriter_ocaml.c │ │ ├── llvm_bitwriter.ml │ │ └── llvm_bitwriter.mli │ │ ├── executionengine │ │ ├── Makefile │ │ ├── executionengine_ocaml.c │ │ ├── llvm_executionengine.ml │ │ └── llvm_executionengine.mli │ │ ├── llvm │ │ ├── Makefile │ │ ├── llvm.ml │ │ ├── llvm.mli │ │ └── llvm_ocaml.c │ │ ├── target │ │ ├── Makefile │ │ ├── llvm_target.ml │ │ ├── llvm_target.mli │ │ └── target_ocaml.c │ │ └── transforms │ │ ├── Makefile │ │ └── scalar │ │ ├── Makefile │ │ ├── llvm_scalar_opts.ml │ │ ├── llvm_scalar_opts.mli │ │ └── scalar_opts_ocaml.c │ ├── build-for-llvm-top.sh │ ├── cmake │ ├── README │ ├── config-ix.cmake │ └── modules │ │ ├── AddLLVM.cmake │ │ ├── AddLLVMDefinitions.cmake │ │ ├── CMakeCache.txt │ │ ├── CMakeFiles │ │ ├── CMakeCCompiler.cmake │ │ ├── CMakeCXXCompiler.cmake │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ ├── CMakeDirectoryInformation.cmake │ │ ├── CMakeOutput.log │ │ ├── CMakeSystem.cmake │ │ ├── CompilerIdC │ │ │ ├── CMakeCCompilerId.c │ │ │ └── a.out │ │ ├── CompilerIdCXX │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ └── a.out │ │ ├── Makefile.cmake │ │ ├── Makefile2 │ │ ├── TargetDirectories.txt │ │ ├── cmake.check_cache │ │ └── progress.marks │ │ ├── CMakeLists.txt │ │ ├── CheckAtomic.cmake │ │ ├── ChooseMSVCCRT.cmake │ │ ├── CrossCompileLLVM.cmake │ │ ├── FindBison.cmake │ │ ├── GetTargetTriple.cmake │ │ ├── LLVM.cmake │ │ ├── LLVMConfig.cmake │ │ ├── LLVMLibDeps.cmake │ │ ├── LLVMProcessSources.cmake │ │ ├── Makefile │ │ ├── TableGen.cmake │ │ ├── VersionFromVCS.cmake │ │ ├── cmake_install.cmake │ │ └── install_manifest.txt │ ├── configure │ ├── docs │ ├── AliasAnalysis.html │ ├── BitCodeFormat.html │ ├── Bugpoint.html │ ├── CFEBuildInstrs.html │ ├── CMake.html │ ├── CodeGenerator.html │ ├── CodingStandards.html │ ├── CommandGuide │ │ ├── FileCheck.pod │ │ ├── Makefile │ │ ├── bugpoint.pod │ │ ├── html │ │ │ └── manpage.css │ │ ├── index.html │ │ ├── lit.pod │ │ ├── llc.pod │ │ ├── lli.pod │ │ ├── llvm-ar.pod │ │ ├── llvm-as.pod │ │ ├── llvm-bcanalyzer.pod │ │ ├── llvm-config.pod │ │ ├── llvm-diff.pod │ │ ├── llvm-dis.pod │ │ ├── llvm-extract.pod │ │ ├── llvm-ld.pod │ │ ├── llvm-link.pod │ │ ├── llvm-nm.pod │ │ ├── llvm-prof.pod │ │ ├── llvm-ranlib.pod │ │ ├── llvmc.pod │ │ ├── llvmgcc.pod │ │ ├── llvmgxx.pod │ │ ├── manpage.css │ │ ├── opt.pod │ │ └── tblgen.pod │ ├── CommandLine.html │ ├── CompilerDriver.html │ ├── CompilerDriverTutorial.html │ ├── CompilerWriterInfo.html │ ├── DebuggingJITedCode.html │ ├── DeveloperPolicy.html │ ├── ExceptionHandling.html │ ├── ExtendedIntegerResults.txt │ ├── ExtendingLLVM.html │ ├── FAQ.html │ ├── GCCFEBuildInstrs.html │ ├── GarbageCollection.html │ ├── GetElementPtr.html │ ├── GettingStarted.html │ ├── GettingStartedVS.html │ ├── GoldPlugin.html │ ├── HistoricalNotes │ │ ├── 2000-11-18-EarlyDesignIdeas.txt │ │ ├── 2000-11-18-EarlyDesignIdeasResp.txt │ │ ├── 2000-12-06-EncodingIdea.txt │ │ ├── 2000-12-06-MeetingSummary.txt │ │ ├── 2001-01-31-UniversalIRIdea.txt │ │ ├── 2001-02-06-TypeNotationDebate.txt │ │ ├── 2001-02-06-TypeNotationDebateResp1.txt │ │ ├── 2001-02-06-TypeNotationDebateResp2.txt │ │ ├── 2001-02-06-TypeNotationDebateResp4.txt │ │ ├── 2001-02-09-AdveComments.txt │ │ ├── 2001-02-09-AdveCommentsResponse.txt │ │ ├── 2001-02-13-Reference-Memory.txt │ │ ├── 2001-02-13-Reference-MemoryResponse.txt │ │ ├── 2001-04-16-DynamicCompilation.txt │ │ ├── 2001-05-18-ExceptionHandling.txt │ │ ├── 2001-05-19-ExceptionResponse.txt │ │ ├── 2001-06-01-GCCOptimizations.txt │ │ ├── 2001-06-01-GCCOptimizations2.txt │ │ ├── 2001-06-20-.NET-Differences.txt │ │ ├── 2001-07-06-LoweringIRForCodeGen.txt │ │ ├── 2001-09-18-OptimizeExceptions.txt │ │ ├── 2002-05-12-InstListChange.txt │ │ ├── 2002-06-25-MegaPatchInfo.txt │ │ ├── 2003-01-23-CygwinNotes.txt │ │ ├── 2003-06-25-Reoptimizer1.txt │ │ ├── 2003-06-26-Reoptimizer2.txt │ │ └── 2007-OriginalClangReadme.txt │ ├── HowToReleaseLLVM.html │ ├── HowToSubmitABug.html │ ├── LangRef.html │ ├── Lexicon.html │ ├── LinkTimeOptimization.html │ ├── Makefile │ ├── MakefileGuide.html │ ├── Packaging.html │ ├── Passes.html │ ├── ProgrammersManual.html │ ├── Projects.html │ ├── ReleaseNotes.html │ ├── SourceLevelDebugging.html │ ├── SystemLibrary.html │ ├── TableGenFundamentals.html │ ├── TestingGuide.html │ ├── UsingLibraries.html │ ├── WritingAnLLVMBackend.html │ ├── WritingAnLLVMPass.html │ ├── doxygen.cfg.in │ ├── doxygen.css │ ├── doxygen.footer │ ├── doxygen.header │ ├── doxygen.intro │ ├── img │ │ ├── Debugging.gif │ │ ├── libdeps.gif │ │ ├── lines.gif │ │ ├── objdeps.gif │ │ └── venusflytrap.jpg │ ├── index.html │ ├── llvm.css │ ├── re_format.7 │ └── tutorial │ │ ├── LangImpl1.html │ │ ├── LangImpl2.html │ │ ├── LangImpl3.html │ │ ├── LangImpl4.html │ │ ├── LangImpl5-cfg.png │ │ ├── LangImpl5.html │ │ ├── LangImpl6.html │ │ ├── LangImpl7.html │ │ ├── LangImpl8.html │ │ ├── Makefile │ │ ├── OCamlLangImpl1.html │ │ ├── OCamlLangImpl2.html │ │ ├── OCamlLangImpl3.html │ │ ├── OCamlLangImpl4.html │ │ ├── OCamlLangImpl5.html │ │ ├── OCamlLangImpl6.html │ │ ├── OCamlLangImpl7.html │ │ └── index.html │ ├── examples │ ├── BrainF │ │ ├── BrainF.cpp │ │ ├── BrainF.h │ │ ├── BrainFDriver.cpp │ │ ├── CMakeLists.txt │ │ └── Makefile │ ├── CMakeLists.txt │ ├── ExceptionDemo │ │ ├── CMakeLists.txt │ │ ├── ExceptionDemo.cpp │ │ └── Makefile │ ├── Fibonacci │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ └── fibonacci.cpp │ ├── HowToUseJIT │ │ ├── CMakeLists.txt │ │ ├── HowToUseJIT.cpp │ │ └── Makefile │ ├── Kaleidoscope │ │ ├── CMakeLists.txt │ │ ├── Chapter2 │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ └── toy.cpp │ │ ├── Chapter3 │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ └── toy.cpp │ │ ├── Chapter4 │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ └── toy.cpp │ │ ├── Chapter5 │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ └── toy.cpp │ │ ├── Chapter6 │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ └── toy.cpp │ │ ├── Chapter7 │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ └── toy.cpp │ │ └── Makefile │ ├── Makefile │ ├── ModuleMaker │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── ModuleMaker.cpp │ │ └── README.txt │ ├── OCaml-Kaleidoscope │ │ ├── Chapter2 │ │ │ ├── Makefile │ │ │ ├── ast.ml │ │ │ ├── lexer.ml │ │ │ ├── parser.ml │ │ │ ├── token.ml │ │ │ ├── toplevel.ml │ │ │ └── toy.ml │ │ ├── Chapter3 │ │ │ ├── Makefile │ │ │ ├── ast.ml │ │ │ ├── codegen.ml │ │ │ ├── lexer.ml │ │ │ ├── myocamlbuild.ml │ │ │ ├── parser.ml │ │ │ ├── token.ml │ │ │ ├── toplevel.ml │ │ │ └── toy.ml │ │ ├── Chapter4 │ │ │ ├── Makefile │ │ │ ├── ast.ml │ │ │ ├── bindings.c │ │ │ ├── codegen.ml │ │ │ ├── lexer.ml │ │ │ ├── myocamlbuild.ml │ │ │ ├── parser.ml │ │ │ ├── token.ml │ │ │ ├── toplevel.ml │ │ │ └── toy.ml │ │ ├── Chapter5 │ │ │ ├── Makefile │ │ │ ├── ast.ml │ │ │ ├── bindings.c │ │ │ ├── codegen.ml │ │ │ ├── lexer.ml │ │ │ ├── myocamlbuild.ml │ │ │ ├── parser.ml │ │ │ ├── token.ml │ │ │ ├── toplevel.ml │ │ │ └── toy.ml │ │ ├── Chapter6 │ │ │ ├── Makefile │ │ │ ├── ast.ml │ │ │ ├── bindings.c │ │ │ ├── codegen.ml │ │ │ ├── lexer.ml │ │ │ ├── myocamlbuild.ml │ │ │ ├── parser.ml │ │ │ ├── token.ml │ │ │ ├── toplevel.ml │ │ │ └── toy.ml │ │ ├── Chapter7 │ │ │ ├── Makefile │ │ │ ├── ast.ml │ │ │ ├── bindings.c │ │ │ ├── codegen.ml │ │ │ ├── lexer.ml │ │ │ ├── myocamlbuild.ml │ │ │ ├── parser.ml │ │ │ ├── token.ml │ │ │ ├── toplevel.ml │ │ │ └── toy.ml │ │ └── Makefile │ └── ParallelJIT │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ └── ParallelJIT.cpp │ ├── include │ ├── llvm-c │ │ ├── Analysis.h │ │ ├── BitReader.h │ │ ├── BitWriter.h │ │ ├── Core.h │ │ ├── EnhancedDisassembly.h │ │ ├── ExecutionEngine.h │ │ ├── LinkTimeOptimizer.h │ │ ├── Target.h │ │ ├── Transforms │ │ │ ├── IPO.h │ │ │ └── Scalar.h │ │ └── lto.h │ └── llvm │ │ ├── ADT │ │ ├── APFloat.h │ │ ├── APInt.h │ │ ├── APSInt.h │ │ ├── BitVector.h │ │ ├── DAGDeltaAlgorithm.h │ │ ├── DeltaAlgorithm.h │ │ ├── DenseMap.h │ │ ├── DenseMapInfo.h │ │ ├── DenseSet.h │ │ ├── DepthFirstIterator.h │ │ ├── EquivalenceClasses.h │ │ ├── FoldingSet.h │ │ ├── GraphTraits.h │ │ ├── ImmutableIntervalMap.h │ │ ├── ImmutableList.h │ │ ├── ImmutableMap.h │ │ ├── ImmutableSet.h │ │ ├── IndexedMap.h │ │ ├── IntrusiveRefCntPtr.h │ │ ├── NullablePtr.h │ │ ├── Optional.h │ │ ├── OwningPtr.h │ │ ├── PointerIntPair.h │ │ ├── PointerUnion.h │ │ ├── PostOrderIterator.h │ │ ├── PriorityQueue.h │ │ ├── SCCIterator.h │ │ ├── STLExtras.h │ │ ├── ScopedHashTable.h │ │ ├── SetOperations.h │ │ ├── SetVector.h │ │ ├── SmallBitVector.h │ │ ├── SmallPtrSet.h │ │ ├── SmallSet.h │ │ ├── SmallString.h │ │ ├── SmallVector.h │ │ ├── SparseBitVector.h │ │ ├── Statistic.h │ │ ├── StringExtras.h │ │ ├── StringMap.h │ │ ├── StringRef.h │ │ ├── StringSet.h │ │ ├── StringSwitch.h │ │ ├── Trie.h │ │ ├── Triple.h │ │ ├── Triple.h~ │ │ ├── Twine.h │ │ ├── UniqueVector.h │ │ ├── ValueMap.h │ │ ├── VectorExtras.h │ │ ├── ilist.h │ │ └── ilist_node.h │ │ ├── AbstractTypeUser.h │ │ ├── Analysis │ │ ├── AliasAnalysis.h │ │ ├── AliasSetTracker.h │ │ ├── CFGPrinter.h │ │ ├── CallGraph.h │ │ ├── CaptureTracking.h │ │ ├── CodeMetrics.h │ │ ├── ConstantFolding.h │ │ ├── ConstantsScanner.h │ │ ├── DOTGraphTraitsPass.h │ │ ├── DebugInfo.h │ │ ├── DomPrinter.h │ │ ├── DominatorInternals.h │ │ ├── Dominators.h │ │ ├── FindUsedTypes.h │ │ ├── IVUsers.h │ │ ├── InlineCost.h │ │ ├── InstructionSimplify.h │ │ ├── Interval.h │ │ ├── IntervalIterator.h │ │ ├── IntervalPartition.h │ │ ├── LazyValueInfo.h │ │ ├── LibCallAliasAnalysis.h │ │ ├── LibCallSemantics.h │ │ ├── Lint.h │ │ ├── LiveValues.h │ │ ├── Loads.h │ │ ├── LoopDependenceAnalysis.h │ │ ├── LoopInfo.h │ │ ├── LoopPass.h │ │ ├── MemoryBuiltins.h │ │ ├── MemoryDependenceAnalysis.h │ │ ├── PHITransAddr.h │ │ ├── Passes.h │ │ ├── PointerTracking.h │ │ ├── PostDominators.h │ │ ├── ProfileInfo.h │ │ ├── ProfileInfoLoader.h │ │ ├── ProfileInfoTypes.h │ │ ├── RegionInfo.h │ │ ├── RegionIterator.h │ │ ├── RegionPrinter.h │ │ ├── ScalarEvolution.h │ │ ├── ScalarEvolutionExpander.h │ │ ├── ScalarEvolutionExpressions.h │ │ ├── ScalarEvolutionNormalization.h │ │ ├── SparsePropagation.h │ │ ├── Trace.h │ │ ├── ValueTracking.h │ │ └── Verifier.h │ │ ├── Argument.h │ │ ├── Assembly │ │ ├── AssemblyAnnotationWriter.h │ │ ├── Parser.h │ │ ├── PrintModulePass.h │ │ └── Writer.h │ │ ├── Attributes.h │ │ ├── AutoUpgrade.h │ │ ├── BasicBlock.h │ │ ├── Bitcode │ │ ├── Archive.h │ │ ├── BitCodes.h │ │ ├── BitstreamReader.h │ │ ├── BitstreamWriter.h │ │ ├── LLVMBitCodes.h │ │ └── ReaderWriter.h │ │ ├── CMakeLists.txt │ │ ├── CallGraphSCCPass.h │ │ ├── CallingConv.h │ │ ├── CodeGen │ │ ├── Analysis.h │ │ ├── AsmPrinter.h │ │ ├── BinaryObject.h │ │ ├── CalcSpillWeights.h │ │ ├── CallingConvLower.h │ │ ├── FastISel.h │ │ ├── FunctionLoweringInfo.h │ │ ├── GCMetadata.h │ │ ├── GCMetadataPrinter.h │ │ ├── GCStrategy.h │ │ ├── GCs.h │ │ ├── ISDOpcodes.h │ │ ├── IntrinsicLowering.h │ │ ├── JITCodeEmitter.h │ │ ├── LatencyPriorityQueue.h │ │ ├── LinkAllAsmWriterComponents.h │ │ ├── LinkAllCodegenComponents.h │ │ ├── LiveInterval.h │ │ ├── LiveIntervalAnalysis.h │ │ ├── LiveStackAnalysis.h │ │ ├── LiveVariables.h │ │ ├── MachORelocation.h │ │ ├── MachineBasicBlock.h │ │ ├── MachineCodeEmitter.h │ │ ├── MachineCodeInfo.h │ │ ├── MachineConstantPool.h │ │ ├── MachineDominators.h │ │ ├── MachineFrameInfo.h │ │ ├── MachineFunction.h │ │ ├── MachineFunctionAnalysis.h │ │ ├── MachineFunctionPass.h │ │ ├── MachineInstr.h │ │ ├── MachineInstrBuilder.h │ │ ├── MachineJumpTableInfo.h │ │ ├── MachineLocation.h │ │ ├── MachineLoopInfo.h │ │ ├── MachineMemOperand.h │ │ ├── MachineModuleInfo.h │ │ ├── MachineModuleInfoImpls.h │ │ ├── MachineOperand.h │ │ ├── MachinePassRegistry.h │ │ ├── MachineRegisterInfo.h │ │ ├── MachineRelocation.h │ │ ├── MachineSSAUpdater.h │ │ ├── ObjectCodeEmitter.h │ │ ├── Passes.h │ │ ├── PostRAHazardRecognizer.h │ │ ├── ProcessImplicitDefs.h │ │ ├── PseudoSourceValue.h │ │ ├── RegAllocRegistry.h │ │ ├── RegisterCoalescer.h │ │ ├── RegisterScavenging.h │ │ ├── RuntimeLibcalls.h │ │ ├── ScheduleDAG.h │ │ ├── ScheduleHazardRecognizer.h │ │ ├── SchedulerRegistry.h │ │ ├── SelectionDAG.h │ │ ├── SelectionDAGISel.h │ │ ├── SelectionDAGNodes.h │ │ ├── SlotIndexes.h │ │ ├── TargetLoweringObjectFileImpl.h │ │ ├── ValueTypes.h │ │ └── ValueTypes.td │ │ ├── CompilerDriver │ │ ├── Action.h │ │ ├── AutoGenerated.h │ │ ├── BuiltinOptions.h │ │ ├── Common.td │ │ ├── CompilationGraph.h │ │ ├── Error.h │ │ ├── Main.h │ │ ├── Main.inc │ │ └── Tool.h │ │ ├── Config │ │ ├── AsmParsers.def.in │ │ ├── AsmPrinters.def.in │ │ ├── Disassemblers.def.in │ │ ├── Targets.def.in │ │ ├── config.h.cmake │ │ ├── config.h.in │ │ ├── config.h.in~ │ │ ├── llvm-config.h.cmake │ │ └── llvm-config.h.in │ │ ├── Constant.h │ │ ├── Constants.h │ │ ├── DerivedTypes.h │ │ ├── ExecutionEngine │ │ ├── ExecutionEngine.h │ │ ├── GenericValue.h │ │ ├── Interpreter.h │ │ ├── JIT.h │ │ ├── JITEventListener.h │ │ └── JITMemoryManager.h │ │ ├── Function.h │ │ ├── GVMaterializer.h │ │ ├── GlobalAlias.h │ │ ├── GlobalValue.h │ │ ├── GlobalVariable.h │ │ ├── InlineAsm.h │ │ ├── InstrTypes.h │ │ ├── Instruction.def │ │ ├── Instruction.h │ │ ├── Instructions.h │ │ ├── IntrinsicInst.h │ │ ├── Intrinsics.h │ │ ├── Intrinsics.td │ │ ├── IntrinsicsARM.td │ │ ├── IntrinsicsAlpha.td │ │ ├── IntrinsicsCellSPU.td │ │ ├── IntrinsicsPowerPC.td │ │ ├── IntrinsicsX86.td │ │ ├── IntrinsicsXCore.td │ │ ├── LLVMContext.h │ │ ├── LinkAllPasses.h │ │ ├── LinkAllVMCore.h │ │ ├── Linker.h │ │ ├── MC │ │ ├── EDInstInfo.h │ │ ├── ELFObjectWriter.h │ │ ├── MCAsmInfo.h │ │ ├── MCAsmInfoCOFF.h │ │ ├── MCAsmInfoDarwin.h │ │ ├── MCAsmLayout.h │ │ ├── MCAssembler.h │ │ ├── MCCodeEmitter.h │ │ ├── MCContext.h │ │ ├── MCDirectives.h │ │ ├── MCDisassembler.h │ │ ├── MCDwarf.h │ │ ├── MCELFSymbolFlags.h │ │ ├── MCExpr.h │ │ ├── MCFixup.h │ │ ├── MCInst.h │ │ ├── MCInstPrinter.h │ │ ├── MCLabel.h │ │ ├── MCMachOSymbolFlags.h │ │ ├── MCObjectStreamer.h │ │ ├── MCObjectWriter.h │ │ ├── MCParser │ │ │ ├── AsmCond.h │ │ │ ├── AsmLexer.h │ │ │ ├── MCAsmLexer.h │ │ │ ├── MCAsmParser.h │ │ │ ├── MCAsmParserExtension.h │ │ │ └── MCParsedAsmOperand.h │ │ ├── MCSection.h │ │ ├── MCSectionCOFF.h │ │ ├── MCSectionELF.h │ │ ├── MCSectionMachO.h │ │ ├── MCStreamer.h │ │ ├── MCSymbol.h │ │ ├── MCValue.h │ │ ├── MachObjectWriter.h │ │ └── SectionKind.h │ │ ├── Metadata.h │ │ ├── Module.h │ │ ├── OperandTraits.h │ │ ├── Operator.h │ │ ├── Pass.h │ │ ├── PassAnalysisSupport.h │ │ ├── PassManager.h │ │ ├── PassManagers.h │ │ ├── PassRegistry.h │ │ ├── PassSupport.h │ │ ├── Support │ │ ├── AlignOf.h │ │ ├── Allocator.h │ │ ├── CFG.h │ │ ├── COFF.h │ │ ├── CallSite.h │ │ ├── Casting.h │ │ ├── CommandLine.h │ │ ├── Compiler.h │ │ ├── ConstantFolder.h │ │ ├── ConstantRange.h │ │ ├── CrashRecoveryContext.h │ │ ├── DOTGraphTraits.h │ │ ├── DataFlow.h │ │ ├── Debug.h │ │ ├── DebugLoc.h │ │ ├── Dwarf.h │ │ ├── DynamicLinker.h │ │ ├── ELF.h │ │ ├── ErrorHandling.h │ │ ├── FileUtilities.h │ │ ├── Format.h │ │ ├── FormattedStream.h │ │ ├── GetElementPtrTypeIterator.h │ │ ├── GraphWriter.h │ │ ├── IRBuilder.h │ │ ├── IRReader.h │ │ ├── InstIterator.h │ │ ├── InstVisitor.h │ │ ├── LeakDetector.h │ │ ├── MachO.h │ │ ├── ManagedStatic.h │ │ ├── MathExtras.h │ │ ├── MemoryBuffer.h │ │ ├── MemoryObject.h │ │ ├── MutexGuard.h │ │ ├── NoFolder.h │ │ ├── OutputBuffer.h │ │ ├── PassNameParser.h │ │ ├── PatternMatch.h │ │ ├── PluginLoader.h │ │ ├── PointerLikeTypeTraits.h │ │ ├── PredIteratorCache.h │ │ ├── PrettyStackTrace.h │ │ ├── Recycler.h │ │ ├── RecyclingAllocator.h │ │ ├── Regex.h │ │ ├── Registry.h │ │ ├── RegistryParser.h │ │ ├── SMLoc.h │ │ ├── SourceMgr.h │ │ ├── StableBasicBlockNumbering.h │ │ ├── StandardPasses.h │ │ ├── StringPool.h │ │ ├── SystemUtils.h │ │ ├── TargetFolder.h │ │ ├── Timer.h │ │ ├── TypeBuilder.h │ │ ├── ValueHandle.h │ │ ├── circular_raw_ostream.h │ │ ├── raw_os_ostream.h │ │ ├── raw_ostream.h │ │ └── type_traits.h │ │ ├── SymbolTableListTraits.h │ │ ├── System │ │ ├── AIXDataTypesFix.h │ │ ├── Alarm.h │ │ ├── Atomic.h │ │ ├── DataTypes.h.cmake │ │ ├── DataTypes.h.in │ │ ├── Disassembler.h │ │ ├── DynamicLibrary.h │ │ ├── Errno.h │ │ ├── Host.h │ │ ├── IncludeFile.h │ │ ├── LICENSE.TXT │ │ ├── Memory.h │ │ ├── Mutex.h │ │ ├── Path.h │ │ ├── Process.h │ │ ├── Program.h │ │ ├── RWMutex.h │ │ ├── Signals.h │ │ ├── Solaris.h │ │ ├── ThreadLocal.h │ │ ├── Threading.h │ │ ├── TimeValue.h │ │ └── Valgrind.h │ │ ├── Target │ │ ├── Mangler.h │ │ ├── SubtargetFeature.h │ │ ├── Target.td │ │ ├── TargetAsmBackend.h │ │ ├── TargetAsmLexer.h │ │ ├── TargetAsmParser.h │ │ ├── TargetCallingConv.h │ │ ├── TargetCallingConv.td │ │ ├── TargetData.h │ │ ├── TargetELFWriterInfo.h │ │ ├── TargetFrameInfo.h │ │ ├── TargetInstrDesc.h │ │ ├── TargetInstrInfo.h │ │ ├── TargetInstrItineraries.h │ │ ├── TargetIntrinsicInfo.h │ │ ├── TargetJITInfo.h │ │ ├── TargetLowering.h │ │ ├── TargetLoweringObjectFile.h │ │ ├── TargetMachine.h │ │ ├── TargetOpcodes.h │ │ ├── TargetOptions.h │ │ ├── TargetRegisterInfo.h │ │ ├── TargetRegistry.h │ │ ├── TargetSchedule.td │ │ ├── TargetSelect.h │ │ ├── TargetSelectionDAG.td │ │ ├── TargetSelectionDAGInfo.h │ │ └── TargetSubtarget.h │ │ ├── Transforms │ │ ├── IPO.h │ │ ├── IPO │ │ │ └── InlinerPass.h │ │ ├── Instrumentation.h │ │ ├── RSProfiling.h │ │ ├── Scalar.h │ │ └── Utils │ │ │ ├── AddrModeMatcher.h │ │ │ ├── BasicBlockUtils.h │ │ │ ├── BasicInliner.h │ │ │ ├── BuildLibCalls.h │ │ │ ├── Cloning.h │ │ │ ├── FunctionUtils.h │ │ │ ├── Local.h │ │ │ ├── PromoteMemToReg.h │ │ │ ├── SSAUpdater.h │ │ │ ├── SSAUpdaterImpl.h │ │ │ ├── UnifyFunctionExitNodes.h │ │ │ ├── UnrollLoop.h │ │ │ └── ValueMapper.h │ │ ├── Type.h │ │ ├── TypeSymbolTable.h │ │ ├── Use.h │ │ ├── User.h │ │ ├── Value.h │ │ └── ValueSymbolTable.h │ ├── lib │ ├── Analysis │ │ ├── AliasAnalysis.cpp │ │ ├── AliasAnalysisCounter.cpp │ │ ├── AliasAnalysisEvaluator.cpp │ │ ├── AliasDebugger.cpp │ │ ├── AliasSetTracker.cpp │ │ ├── Analysis.cpp │ │ ├── BasicAliasAnalysis.cpp │ │ ├── CFGPrinter.cpp │ │ ├── CMakeLists.txt │ │ ├── CaptureTracking.cpp │ │ ├── ConstantFolding.cpp │ │ ├── DbgInfoPrinter.cpp │ │ ├── DebugInfo.cpp │ │ ├── DomPrinter.cpp │ │ ├── IPA │ │ │ ├── CMakeLists.txt │ │ │ ├── CallGraph.cpp │ │ │ ├── CallGraphSCCPass.cpp │ │ │ ├── FindUsedTypes.cpp │ │ │ ├── GlobalsModRef.cpp │ │ │ └── Makefile │ │ ├── IVUsers.cpp │ │ ├── InlineCost.cpp │ │ ├── InstCount.cpp │ │ ├── InstructionSimplify.cpp │ │ ├── Interval.cpp │ │ ├── IntervalPartition.cpp │ │ ├── LazyValueInfo.cpp │ │ ├── LibCallAliasAnalysis.cpp │ │ ├── LibCallSemantics.cpp │ │ ├── Lint.cpp │ │ ├── LiveValues.cpp │ │ ├── Loads.cpp │ │ ├── LoopDependenceAnalysis.cpp │ │ ├── LoopInfo.cpp │ │ ├── LoopPass.cpp │ │ ├── Makefile │ │ ├── MemoryBuiltins.cpp │ │ ├── MemoryDependenceAnalysis.cpp │ │ ├── ModuleDebugInfoPrinter.cpp │ │ ├── PHITransAddr.cpp │ │ ├── PointerTracking.cpp │ │ ├── PostDominators.cpp │ │ ├── ProfileEstimatorPass.cpp │ │ ├── ProfileInfo.cpp │ │ ├── ProfileInfoLoader.cpp │ │ ├── ProfileInfoLoaderPass.cpp │ │ ├── ProfileVerifierPass.cpp │ │ ├── README.txt │ │ ├── RegionInfo.cpp │ │ ├── RegionPrinter.cpp │ │ ├── ScalarEvolution.cpp │ │ ├── ScalarEvolutionAliasAnalysis.cpp │ │ ├── ScalarEvolutionExpander.cpp │ │ ├── ScalarEvolutionNormalization.cpp │ │ ├── SparsePropagation.cpp │ │ ├── Trace.cpp │ │ ├── TypeBasedAliasAnalysis.cpp │ │ └── ValueTracking.cpp │ ├── Archive │ │ ├── Archive.cpp │ │ ├── ArchiveInternals.h │ │ ├── ArchiveReader.cpp │ │ ├── ArchiveWriter.cpp │ │ ├── CMakeLists.txt │ │ └── Makefile │ ├── AsmParser │ │ ├── CMakeLists.txt │ │ ├── LLLexer.cpp │ │ ├── LLLexer.h │ │ ├── LLParser.cpp │ │ ├── LLParser.h │ │ ├── LLToken.h │ │ ├── Makefile │ │ └── Parser.cpp │ ├── Bitcode │ │ ├── Makefile │ │ ├── Reader │ │ │ ├── BitReader.cpp │ │ │ ├── BitcodeReader.cpp │ │ │ ├── BitcodeReader.h │ │ │ ├── CMakeLists.txt │ │ │ └── Makefile │ │ └── Writer │ │ │ ├── BitWriter.cpp │ │ │ ├── BitcodeWriter.cpp │ │ │ ├── BitcodeWriterPass.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── ValueEnumerator.cpp │ │ │ └── ValueEnumerator.h │ ├── CodeGen │ │ ├── AggressiveAntiDepBreaker.cpp │ │ ├── AggressiveAntiDepBreaker.h │ │ ├── Analysis.cpp │ │ ├── AntiDepBreaker.h │ │ ├── AsmPrinter │ │ │ ├── AsmPrinter.cpp │ │ │ ├── AsmPrinterDwarf.cpp │ │ │ ├── AsmPrinterInlineAsm.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── DIE.cpp │ │ │ ├── DIE.h │ │ │ ├── DwarfDebug.cpp │ │ │ ├── DwarfDebug.h │ │ │ ├── DwarfException.cpp │ │ │ ├── DwarfException.h │ │ │ ├── Makefile │ │ │ └── OcamlGCPrinter.cpp │ │ ├── BranchFolding.cpp │ │ ├── BranchFolding.h │ │ ├── CMakeLists.txt │ │ ├── CalcSpillWeights.cpp │ │ ├── CallingConvLower.cpp │ │ ├── CodePlacementOpt.cpp │ │ ├── CriticalAntiDepBreaker.cpp │ │ ├── CriticalAntiDepBreaker.h │ │ ├── DeadMachineInstructionElim.cpp │ │ ├── DwarfEHPrepare.cpp │ │ ├── ELF.h │ │ ├── ELFCodeEmitter.cpp │ │ ├── ELFCodeEmitter.h │ │ ├── ELFWriter.cpp │ │ ├── ELFWriter.h │ │ ├── GCMetadata.cpp │ │ ├── GCMetadataPrinter.cpp │ │ ├── GCStrategy.cpp │ │ ├── IfConversion.cpp │ │ ├── InlineSpiller.cpp │ │ ├── IntrinsicLowering.cpp │ │ ├── LLVMTargetMachine.cpp │ │ ├── LatencyPriorityQueue.cpp │ │ ├── LiveInterval.cpp │ │ ├── LiveIntervalAnalysis.cpp │ │ ├── LiveStackAnalysis.cpp │ │ ├── LiveVariables.cpp │ │ ├── LocalStackSlotAllocation.cpp │ │ ├── LowerSubregs.cpp │ │ ├── MachineBasicBlock.cpp │ │ ├── MachineCSE.cpp │ │ ├── MachineDominators.cpp │ │ ├── MachineFunction.cpp │ │ ├── MachineFunctionAnalysis.cpp │ │ ├── MachineFunctionPass.cpp │ │ ├── MachineFunctionPrinterPass.cpp │ │ ├── MachineInstr.cpp │ │ ├── MachineLICM.cpp │ │ ├── MachineLoopInfo.cpp │ │ ├── MachineModuleInfo.cpp │ │ ├── MachineModuleInfoImpls.cpp │ │ ├── MachinePassRegistry.cpp │ │ ├── MachineRegisterInfo.cpp │ │ ├── MachineSSAUpdater.cpp │ │ ├── MachineSink.cpp │ │ ├── MachineVerifier.cpp │ │ ├── Makefile │ │ ├── ObjectCodeEmitter.cpp │ │ ├── OcamlGC.cpp │ │ ├── OptimizePHIs.cpp │ │ ├── PBQP │ │ │ ├── Graph.h │ │ │ ├── HeuristicBase.h │ │ │ ├── HeuristicSolver.h │ │ │ ├── Heuristics │ │ │ │ └── Briggs.h │ │ │ ├── Math.h │ │ │ └── Solution.h │ │ ├── PHIElimination.cpp │ │ ├── PHIElimination.h │ │ ├── Passes.cpp │ │ ├── PeepholeOptimizer.cpp │ │ ├── PostRAHazardRecognizer.cpp │ │ ├── PostRASchedulerList.cpp │ │ ├── PreAllocSplitting.cpp │ │ ├── ProcessImplicitDefs.cpp │ │ ├── PrologEpilogInserter.cpp │ │ ├── PrologEpilogInserter.h │ │ ├── PseudoSourceValue.cpp │ │ ├── README.txt │ │ ├── RegAllocFast.cpp │ │ ├── RegAllocLinearScan.cpp │ │ ├── RegAllocPBQP.cpp │ │ ├── RegisterCoalescer.cpp │ │ ├── RegisterScavenging.cpp │ │ ├── RenderMachineFunction.cpp │ │ ├── RenderMachineFunction.h │ │ ├── ScheduleDAG.cpp │ │ ├── ScheduleDAGEmit.cpp │ │ ├── ScheduleDAGInstrs.cpp │ │ ├── ScheduleDAGInstrs.h │ │ ├── ScheduleDAGPrinter.cpp │ │ ├── SelectionDAG │ │ │ ├── CMakeLists.txt │ │ │ ├── DAGCombiner.cpp │ │ │ ├── FastISel.cpp │ │ │ ├── FunctionLoweringInfo.cpp │ │ │ ├── InstrEmitter.cpp │ │ │ ├── InstrEmitter.h │ │ │ ├── LegalizeDAG.cpp │ │ │ ├── LegalizeFloatTypes.cpp │ │ │ ├── LegalizeIntegerTypes.cpp │ │ │ ├── LegalizeTypes.cpp │ │ │ ├── LegalizeTypes.h │ │ │ ├── LegalizeTypesGeneric.cpp │ │ │ ├── LegalizeVectorOps.cpp │ │ │ ├── LegalizeVectorTypes.cpp │ │ │ ├── Makefile │ │ │ ├── SDNodeDbgValue.h │ │ │ ├── SDNodeOrdering.h │ │ │ ├── ScheduleDAGFast.cpp │ │ │ ├── ScheduleDAGList.cpp │ │ │ ├── ScheduleDAGRRList.cpp │ │ │ ├── ScheduleDAGSDNodes.cpp │ │ │ ├── ScheduleDAGSDNodes.h │ │ │ ├── SelectionDAG.cpp │ │ │ ├── SelectionDAGBuilder.cpp │ │ │ ├── SelectionDAGBuilder.h │ │ │ ├── SelectionDAGISel.cpp │ │ │ ├── SelectionDAGPrinter.cpp │ │ │ ├── TargetLowering.cpp │ │ │ └── TargetSelectionDAGInfo.cpp │ │ ├── ShadowStackGC.cpp │ │ ├── ShrinkWrapping.cpp │ │ ├── SimpleRegisterCoalescing.cpp │ │ ├── SimpleRegisterCoalescing.h │ │ ├── SjLjEHPrepare.cpp │ │ ├── SlotIndexes.cpp │ │ ├── Spiller.cpp │ │ ├── Spiller.h │ │ ├── SplitKit.cpp │ │ ├── SplitKit.h │ │ ├── Splitter.cpp │ │ ├── Splitter.h │ │ ├── StackProtector.cpp │ │ ├── StackSlotColoring.cpp │ │ ├── StrongPHIElimination.cpp │ │ ├── TailDuplication.cpp │ │ ├── TargetInstrInfoImpl.cpp │ │ ├── TargetLoweringObjectFileImpl.cpp │ │ ├── TwoAddressInstructionPass.cpp │ │ ├── UnreachableBlockElim.cpp │ │ ├── VirtRegMap.cpp │ │ ├── VirtRegMap.h │ │ ├── VirtRegRewriter.cpp │ │ └── VirtRegRewriter.h │ ├── CompilerDriver │ │ ├── Action.cpp │ │ ├── BuiltinOptions.cpp │ │ ├── CMakeLists.txt │ │ ├── CompilationGraph.cpp │ │ ├── Main.cpp │ │ ├── Makefile │ │ └── Tool.cpp │ ├── ExecutionEngine │ │ ├── CMakeLists.txt │ │ ├── ExecutionEngine.cpp │ │ ├── ExecutionEngineBindings.cpp │ │ ├── Interpreter │ │ │ ├── CMakeLists.txt │ │ │ ├── Execution.cpp │ │ │ ├── ExternalFunctions.cpp │ │ │ ├── Interpreter.cpp │ │ │ ├── Interpreter.h │ │ │ └── Makefile │ │ ├── JIT │ │ │ ├── CMakeLists.txt │ │ │ ├── Intercept.cpp │ │ │ ├── JIT.cpp │ │ │ ├── JIT.h │ │ │ ├── JITDebugRegisterer.cpp │ │ │ ├── JITDebugRegisterer.h │ │ │ ├── JITDwarfEmitter.cpp │ │ │ ├── JITDwarfEmitter.h │ │ │ ├── JITEmitter.cpp │ │ │ ├── JITMemoryManager.cpp │ │ │ ├── Makefile │ │ │ ├── OProfileJITEventListener.cpp │ │ │ └── TargetSelect.cpp │ │ └── Makefile │ ├── Linker │ │ ├── CMakeLists.txt │ │ ├── LinkArchives.cpp │ │ ├── LinkItems.cpp │ │ ├── LinkModules.cpp │ │ ├── Linker.cpp │ │ └── Makefile │ ├── MC │ │ ├── CMakeLists.txt │ │ ├── ELFObjectWriter.cpp │ │ ├── MCAsmInfo.cpp │ │ ├── MCAsmInfoCOFF.cpp │ │ ├── MCAsmInfoDarwin.cpp │ │ ├── MCAsmStreamer.cpp │ │ ├── MCAssembler.cpp │ │ ├── MCCodeEmitter.cpp │ │ ├── MCContext.cpp │ │ ├── MCDisassembler.cpp │ │ ├── MCDisassembler │ │ │ ├── CMakeLists.txt │ │ │ ├── EDDisassembler.cpp │ │ │ ├── EDDisassembler.h │ │ │ ├── EDInfo.h │ │ │ ├── EDInst.cpp │ │ │ ├── EDInst.h │ │ │ ├── EDOperand.cpp │ │ │ ├── EDOperand.h │ │ │ ├── EDToken.cpp │ │ │ ├── EDToken.h │ │ │ └── Makefile │ │ ├── MCDwarf.cpp │ │ ├── MCELFStreamer.cpp │ │ ├── MCExpr.cpp │ │ ├── MCInst.cpp │ │ ├── MCInstPrinter.cpp │ │ ├── MCLabel.cpp │ │ ├── MCLoggingStreamer.cpp │ │ ├── MCMachOStreamer.cpp │ │ ├── MCNullStreamer.cpp │ │ ├── MCObjectStreamer.cpp │ │ ├── MCObjectWriter.cpp │ │ ├── MCParser │ │ │ ├── AsmLexer.cpp │ │ │ ├── AsmParser.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── DarwinAsmParser.cpp │ │ │ ├── ELFAsmParser.cpp │ │ │ ├── MCAsmLexer.cpp │ │ │ ├── MCAsmParser.cpp │ │ │ ├── MCAsmParserExtension.cpp │ │ │ ├── Makefile │ │ │ └── TargetAsmParser.cpp │ │ ├── MCSection.cpp │ │ ├── MCSectionCOFF.cpp │ │ ├── MCSectionELF.cpp │ │ ├── MCSectionMachO.cpp │ │ ├── MCStreamer.cpp │ │ ├── MCSymbol.cpp │ │ ├── MCValue.cpp │ │ ├── MachObjectWriter.cpp │ │ ├── Makefile │ │ ├── TargetAsmBackend.cpp │ │ ├── WinCOFFObjectWriter.cpp │ │ └── WinCOFFStreamer.cpp │ ├── Makefile │ ├── Support │ │ ├── APFloat.cpp │ │ ├── APInt.cpp │ │ ├── APSInt.cpp │ │ ├── Allocator.cpp │ │ ├── CMakeLists.txt │ │ ├── COPYRIGHT.regex │ │ ├── CommandLine.cpp │ │ ├── ConstantRange.cpp │ │ ├── CrashRecoveryContext.cpp │ │ ├── DAGDeltaAlgorithm.cpp │ │ ├── Debug.cpp │ │ ├── DeltaAlgorithm.cpp │ │ ├── Dwarf.cpp │ │ ├── ErrorHandling.cpp │ │ ├── FileUtilities.cpp │ │ ├── FoldingSet.cpp │ │ ├── FormattedStream.cpp │ │ ├── GraphWriter.cpp │ │ ├── IsInf.cpp │ │ ├── IsNAN.cpp │ │ ├── Makefile │ │ ├── ManagedStatic.cpp │ │ ├── MemoryBuffer.cpp │ │ ├── MemoryObject.cpp │ │ ├── PluginLoader.cpp │ │ ├── PrettyStackTrace.cpp │ │ ├── Regex.cpp │ │ ├── SmallPtrSet.cpp │ │ ├── SmallVector.cpp │ │ ├── SourceMgr.cpp │ │ ├── Statistic.cpp │ │ ├── StringExtras.cpp │ │ ├── StringMap.cpp │ │ ├── StringPool.cpp │ │ ├── StringRef.cpp │ │ ├── SystemUtils.cpp │ │ ├── TargetRegistry.cpp │ │ ├── Timer.cpp │ │ ├── Triple.cpp │ │ ├── Twine.cpp │ │ ├── circular_raw_ostream.cpp │ │ ├── raw_os_ostream.cpp │ │ ├── raw_ostream.cpp │ │ ├── regcclass.h │ │ ├── regcname.h │ │ ├── regcomp.c │ │ ├── regengine.inc │ │ ├── regerror.c │ │ ├── regex2.h │ │ ├── regex_impl.h │ │ ├── regexec.c │ │ ├── regfree.c │ │ ├── regstrlcpy.c │ │ └── regutils.h │ ├── System │ │ ├── Alarm.cpp │ │ ├── Atomic.cpp │ │ ├── CMakeLists.txt │ │ ├── Disassembler.cpp │ │ ├── DynamicLibrary.cpp │ │ ├── Errno.cpp │ │ ├── Host.cpp │ │ ├── IncludeFile.cpp │ │ ├── Makefile │ │ ├── Memory.cpp │ │ ├── Mutex.cpp │ │ ├── Path.cpp │ │ ├── Process.cpp │ │ ├── Program.cpp │ │ ├── README.txt │ │ ├── RWMutex.cpp │ │ ├── SearchForAddressOfSpecialSymbol.cpp │ │ ├── Signals.cpp │ │ ├── ThreadLocal.cpp │ │ ├── Threading.cpp │ │ ├── TimeValue.cpp │ │ ├── Unix │ │ │ ├── Alarm.inc │ │ │ ├── Host.inc │ │ │ ├── Memory.inc │ │ │ ├── Mutex.inc │ │ │ ├── Path.inc │ │ │ ├── Process.inc │ │ │ ├── Program.inc │ │ │ ├── README.txt │ │ │ ├── RWMutex.inc │ │ │ ├── Signals.inc │ │ │ ├── ThreadLocal.inc │ │ │ ├── TimeValue.inc │ │ │ └── Unix.h │ │ ├── Valgrind.cpp │ │ └── Win32 │ │ │ ├── Alarm.inc │ │ │ ├── DynamicLibrary.inc │ │ │ ├── Host.inc │ │ │ ├── Memory.inc │ │ │ ├── Mutex.inc │ │ │ ├── Path.inc │ │ │ ├── Process.inc │ │ │ ├── Program.inc │ │ │ ├── RWMutex.inc │ │ │ ├── Signals.inc │ │ │ ├── ThreadLocal.inc │ │ │ ├── TimeValue.inc │ │ │ └── Win32.h │ ├── Target │ │ ├── ARM │ │ │ ├── ARM.h │ │ │ ├── ARM.td │ │ │ ├── ARMAddressingModes.h │ │ │ ├── ARMAsmPrinter.cpp │ │ │ ├── ARMBaseInstrInfo.cpp │ │ │ ├── ARMBaseInstrInfo.h │ │ │ ├── ARMBaseRegisterInfo.cpp │ │ │ ├── ARMBaseRegisterInfo.h │ │ │ ├── ARMBuildAttrs.h │ │ │ ├── ARMCallingConv.td │ │ │ ├── ARMCodeEmitter.cpp │ │ │ ├── ARMConstantIslandPass.cpp │ │ │ ├── ARMConstantPoolValue.cpp │ │ │ ├── ARMConstantPoolValue.h │ │ │ ├── ARMExpandPseudoInsts.cpp │ │ │ ├── ARMFastISel.cpp │ │ │ ├── ARMFrameInfo.h │ │ │ ├── ARMGlobalMerge.cpp │ │ │ ├── ARMISelDAGToDAG.cpp │ │ │ ├── ARMISelLowering.cpp │ │ │ ├── ARMISelLowering.h │ │ │ ├── ARMInstrFormats.td │ │ │ ├── ARMInstrInfo.cpp │ │ │ ├── ARMInstrInfo.h │ │ │ ├── ARMInstrInfo.td │ │ │ ├── ARMInstrNEON.td │ │ │ ├── ARMInstrThumb.td │ │ │ ├── ARMInstrThumb2.td │ │ │ ├── ARMInstrVFP.td │ │ │ ├── ARMJITInfo.cpp │ │ │ ├── ARMJITInfo.h │ │ │ ├── ARMLoadStoreOptimizer.cpp │ │ │ ├── ARMMCAsmInfo.cpp │ │ │ ├── ARMMCAsmInfo.h │ │ │ ├── ARMMCInstLower.cpp │ │ │ ├── ARMMCInstLower.h │ │ │ ├── ARMMachineFunctionInfo.h │ │ │ ├── ARMPerfectShuffle.h │ │ │ ├── ARMRegisterInfo.cpp │ │ │ ├── ARMRegisterInfo.h │ │ │ ├── ARMRegisterInfo.td │ │ │ ├── ARMRelocations.h │ │ │ ├── ARMSchedule.td │ │ │ ├── ARMScheduleA8.td │ │ │ ├── ARMScheduleA9.td │ │ │ ├── ARMScheduleV6.td │ │ │ ├── ARMSelectionDAGInfo.cpp │ │ │ ├── ARMSelectionDAGInfo.h │ │ │ ├── ARMSubtarget.cpp │ │ │ ├── ARMSubtarget.h │ │ │ ├── ARMTargetMachine.cpp │ │ │ ├── ARMTargetMachine.h │ │ │ ├── ARMTargetObjectFile.cpp │ │ │ ├── ARMTargetObjectFile.h │ │ │ ├── AsmParser │ │ │ │ ├── ARMAsmLexer.cpp │ │ │ │ ├── ARMAsmParser.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── Makefile │ │ │ ├── AsmPrinter │ │ │ │ ├── ARMInstPrinter.cpp │ │ │ │ ├── ARMInstPrinter.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── Makefile │ │ │ ├── CMakeLists.txt │ │ │ ├── Disassembler │ │ │ │ ├── ARMDisassembler.cpp │ │ │ │ ├── ARMDisassembler.h │ │ │ │ ├── ARMDisassemblerCore.cpp │ │ │ │ ├── ARMDisassemblerCore.h │ │ │ │ ├── Makefile │ │ │ │ └── ThumbDisassemblerCore.h │ │ │ ├── Makefile │ │ │ ├── NEONMoveFix.cpp │ │ │ ├── NEONPreAllocPass.cpp │ │ │ ├── README-Thumb.txt │ │ │ ├── README-Thumb2.txt │ │ │ ├── README.txt │ │ │ ├── TargetInfo │ │ │ │ ├── ARMTargetInfo.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── Makefile │ │ │ ├── Thumb1InstrInfo.cpp │ │ │ ├── Thumb1InstrInfo.h │ │ │ ├── Thumb1RegisterInfo.cpp │ │ │ ├── Thumb1RegisterInfo.h │ │ │ ├── Thumb2HazardRecognizer.cpp │ │ │ ├── Thumb2HazardRecognizer.h │ │ │ ├── Thumb2ITBlockPass.cpp │ │ │ ├── Thumb2InstrInfo.cpp │ │ │ ├── Thumb2InstrInfo.h │ │ │ ├── Thumb2RegisterInfo.cpp │ │ │ ├── Thumb2RegisterInfo.h │ │ │ └── Thumb2SizeReduction.cpp │ │ ├── Alpha │ │ │ ├── Alpha.h │ │ │ ├── Alpha.td │ │ │ ├── AlphaBranchSelector.cpp │ │ │ ├── AlphaCallingConv.td │ │ │ ├── AlphaCodeEmitter.cpp │ │ │ ├── AlphaISelDAGToDAG.cpp │ │ │ ├── AlphaISelLowering.cpp │ │ │ ├── AlphaISelLowering.h │ │ │ ├── AlphaInstrFormats.td │ │ │ ├── AlphaInstrInfo.cpp │ │ │ ├── AlphaInstrInfo.h │ │ │ ├── AlphaInstrInfo.td │ │ │ ├── AlphaJITInfo.cpp │ │ │ ├── AlphaJITInfo.h │ │ │ ├── AlphaLLRP.cpp │ │ │ ├── AlphaMCAsmInfo.cpp │ │ │ ├── AlphaMCAsmInfo.h │ │ │ ├── AlphaMachineFunctionInfo.h │ │ │ ├── AlphaRegisterInfo.cpp │ │ │ ├── AlphaRegisterInfo.h │ │ │ ├── AlphaRegisterInfo.td │ │ │ ├── AlphaRelocations.h │ │ │ ├── AlphaSchedule.td │ │ │ ├── AlphaSelectionDAGInfo.cpp │ │ │ ├── AlphaSelectionDAGInfo.h │ │ │ ├── AlphaSubtarget.cpp │ │ │ ├── AlphaSubtarget.h │ │ │ ├── AlphaTargetMachine.cpp │ │ │ ├── AlphaTargetMachine.h │ │ │ ├── AsmPrinter │ │ │ │ ├── AlphaAsmPrinter.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── Makefile │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ └── TargetInfo │ │ │ │ ├── AlphaTargetInfo.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── Makefile │ │ ├── Blackfin │ │ │ ├── AsmPrinter │ │ │ │ ├── BlackfinAsmPrinter.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── Makefile │ │ │ ├── Blackfin.h │ │ │ ├── Blackfin.td │ │ │ ├── BlackfinCallingConv.td │ │ │ ├── BlackfinISelDAGToDAG.cpp │ │ │ ├── BlackfinISelLowering.cpp │ │ │ ├── BlackfinISelLowering.h │ │ │ ├── BlackfinInstrFormats.td │ │ │ ├── BlackfinInstrInfo.cpp │ │ │ ├── BlackfinInstrInfo.h │ │ │ ├── BlackfinInstrInfo.td │ │ │ ├── BlackfinIntrinsicInfo.cpp │ │ │ ├── BlackfinIntrinsicInfo.h │ │ │ ├── BlackfinIntrinsics.td │ │ │ ├── BlackfinMCAsmInfo.cpp │ │ │ ├── BlackfinMCAsmInfo.h │ │ │ ├── BlackfinRegisterInfo.cpp │ │ │ ├── BlackfinRegisterInfo.h │ │ │ ├── BlackfinRegisterInfo.td │ │ │ ├── BlackfinSelectionDAGInfo.cpp │ │ │ ├── BlackfinSelectionDAGInfo.h │ │ │ ├── BlackfinSubtarget.cpp │ │ │ ├── BlackfinSubtarget.h │ │ │ ├── BlackfinTargetMachine.cpp │ │ │ ├── BlackfinTargetMachine.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ └── TargetInfo │ │ │ │ ├── BlackfinTargetInfo.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── Makefile │ │ ├── CBackend │ │ │ ├── CBackend.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── CTargetMachine.h │ │ │ ├── Makefile │ │ │ └── TargetInfo │ │ │ │ ├── CBackendTargetInfo.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── Makefile │ │ ├── CMakeLists.txt │ │ ├── CellSPU │ │ │ ├── AsmPrinter │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ └── SPUAsmPrinter.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── CellSDKIntrinsics.td │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ ├── SPU.h │ │ │ ├── SPU.td │ │ │ ├── SPU128InstrInfo.td │ │ │ ├── SPU64InstrInfo.td │ │ │ ├── SPUCallingConv.td │ │ │ ├── SPUFrameInfo.cpp │ │ │ ├── SPUFrameInfo.h │ │ │ ├── SPUHazardRecognizers.cpp │ │ │ ├── SPUHazardRecognizers.h │ │ │ ├── SPUISelDAGToDAG.cpp │ │ │ ├── SPUISelLowering.cpp │ │ │ ├── SPUISelLowering.h │ │ │ ├── SPUInstrBuilder.h │ │ │ ├── SPUInstrFormats.td │ │ │ ├── SPUInstrInfo.cpp │ │ │ ├── SPUInstrInfo.h │ │ │ ├── SPUInstrInfo.td │ │ │ ├── SPUMCAsmInfo.cpp │ │ │ ├── SPUMCAsmInfo.h │ │ │ ├── SPUMachineFunction.h │ │ │ ├── SPUMathInstr.td │ │ │ ├── SPUNodes.td │ │ │ ├── SPUOperands.td │ │ │ ├── SPURegisterInfo.cpp │ │ │ ├── SPURegisterInfo.h │ │ │ ├── SPURegisterInfo.td │ │ │ ├── SPURegisterNames.h │ │ │ ├── SPUSchedule.td │ │ │ ├── SPUSelectionDAGInfo.cpp │ │ │ ├── SPUSelectionDAGInfo.h │ │ │ ├── SPUSubtarget.cpp │ │ │ ├── SPUSubtarget.h │ │ │ ├── SPUTargetMachine.cpp │ │ │ ├── SPUTargetMachine.h │ │ │ └── TargetInfo │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CellSPUTargetInfo.cpp │ │ │ │ └── Makefile │ │ ├── CppBackend │ │ │ ├── CMakeLists.txt │ │ │ ├── CPPBackend.cpp │ │ │ ├── CPPTargetMachine.h │ │ │ ├── Makefile │ │ │ └── TargetInfo │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CppBackendTargetInfo.cpp │ │ │ │ └── Makefile │ │ ├── Guc │ │ │ ├── AsmPrinter │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── GucAsmPrinter.cpp │ │ │ │ ├── GucInstPrinter.cpp │ │ │ │ ├── GucInstPrinter.cpp~ │ │ │ │ ├── GucInstPrinter.h │ │ │ │ ├── GucInstPrinter.h~ │ │ │ │ ├── GucMCInstLower.cpp │ │ │ │ ├── GucMCInstLower.h │ │ │ │ └── Makefile │ │ │ ├── CMakeLists.txt │ │ │ ├── Guc.h │ │ │ ├── Guc.td │ │ │ ├── GucBranchSelector.cpp │ │ │ ├── GucCallingConv.td │ │ │ ├── GucISelDAGToDAG.cpp │ │ │ ├── GucISelLowering.cpp │ │ │ ├── GucISelLowering.h │ │ │ ├── GucInstrFormats.td │ │ │ ├── GucInstrInfo.cpp │ │ │ ├── GucInstrInfo.h │ │ │ ├── GucInstrInfo.td │ │ │ ├── GucMCAsmInfo.cpp │ │ │ ├── GucMCAsmInfo.h │ │ │ ├── GucMachineFunctionInfo.h │ │ │ ├── GucRegisterInfo.cpp │ │ │ ├── GucRegisterInfo.h │ │ │ ├── GucRegisterInfo.td │ │ │ ├── GucSelectionDAGInfo.cpp │ │ │ ├── GucSelectionDAGInfo.h │ │ │ ├── GucSubtarget.cpp │ │ │ ├── GucSubtarget.h │ │ │ ├── GucTargetMachine.cpp │ │ │ ├── GucTargetMachine.h │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ └── TargetInfo │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── GucTargetInfo.cpp │ │ │ │ └── Makefile │ │ ├── MBlaze │ │ │ ├── AsmPrinter │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── MBlazeAsmPrinter.cpp │ │ │ │ └── Makefile │ │ │ ├── CMakeLists.txt │ │ │ ├── MBlaze.h │ │ │ ├── MBlaze.td │ │ │ ├── MBlazeCallingConv.td │ │ │ ├── MBlazeDelaySlotFiller.cpp │ │ │ ├── MBlazeISelDAGToDAG.cpp │ │ │ ├── MBlazeISelLowering.cpp │ │ │ ├── MBlazeISelLowering.h │ │ │ ├── MBlazeInstrFPU.td │ │ │ ├── MBlazeInstrFSL.td │ │ │ ├── MBlazeInstrFormats.td │ │ │ ├── MBlazeInstrInfo.cpp │ │ │ ├── MBlazeInstrInfo.h │ │ │ ├── MBlazeInstrInfo.td │ │ │ ├── MBlazeIntrinsicInfo.cpp │ │ │ ├── MBlazeIntrinsicInfo.h │ │ │ ├── MBlazeIntrinsics.td │ │ │ ├── MBlazeMCAsmInfo.cpp │ │ │ ├── MBlazeMCAsmInfo.h │ │ │ ├── MBlazeMachineFunction.h │ │ │ ├── MBlazeRegisterInfo.cpp │ │ │ ├── MBlazeRegisterInfo.h │ │ │ ├── MBlazeRegisterInfo.td │ │ │ ├── MBlazeSchedule.td │ │ │ ├── MBlazeSelectionDAGInfo.cpp │ │ │ ├── MBlazeSelectionDAGInfo.h │ │ │ ├── MBlazeSubtarget.cpp │ │ │ ├── MBlazeSubtarget.h │ │ │ ├── MBlazeTargetMachine.cpp │ │ │ ├── MBlazeTargetMachine.h │ │ │ ├── MBlazeTargetObjectFile.cpp │ │ │ ├── MBlazeTargetObjectFile.h │ │ │ ├── Makefile │ │ │ └── TargetInfo │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── MBlazeTargetInfo.cpp │ │ │ │ └── Makefile │ │ ├── MSP430 │ │ │ ├── AsmPrinter │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── MSP430AsmPrinter.cpp │ │ │ │ ├── MSP430InstPrinter.cpp │ │ │ │ ├── MSP430InstPrinter.h │ │ │ │ ├── MSP430MCInstLower.cpp │ │ │ │ ├── MSP430MCInstLower.h │ │ │ │ └── Makefile │ │ │ ├── CMakeLists.txt │ │ │ ├── MSP430.h │ │ │ ├── MSP430.td │ │ │ ├── MSP430BranchSelector.cpp │ │ │ ├── MSP430CallingConv.td │ │ │ ├── MSP430ISelDAGToDAG.cpp │ │ │ ├── MSP430ISelLowering.cpp │ │ │ ├── MSP430ISelLowering.h │ │ │ ├── MSP430InstrFormats.td │ │ │ ├── MSP430InstrInfo.cpp │ │ │ ├── MSP430InstrInfo.h │ │ │ ├── MSP430InstrInfo.td │ │ │ ├── MSP430MCAsmInfo.cpp │ │ │ ├── MSP430MCAsmInfo.h │ │ │ ├── MSP430MachineFunctionInfo.h │ │ │ ├── MSP430RegisterInfo.cpp │ │ │ ├── MSP430RegisterInfo.h │ │ │ ├── MSP430RegisterInfo.td │ │ │ ├── MSP430SelectionDAGInfo.cpp │ │ │ ├── MSP430SelectionDAGInfo.h │ │ │ ├── MSP430Subtarget.cpp │ │ │ ├── MSP430Subtarget.h │ │ │ ├── MSP430TargetMachine.cpp │ │ │ ├── MSP430TargetMachine.h │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ └── TargetInfo │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── MSP430TargetInfo.cpp │ │ │ │ └── Makefile │ │ ├── Makefile │ │ ├── Mangler.cpp │ │ ├── Mips │ │ │ ├── #MipsDelaySlotFiller.cpp# │ │ │ ├── AsmPrinter │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ └── MipsAsmPrinter.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── Mips.h │ │ │ ├── Mips.td │ │ │ ├── MipsCallingConv.td │ │ │ ├── MipsDelaySlotFiller.cpp │ │ │ ├── MipsISelDAGToDAG.cpp │ │ │ ├── MipsISelLowering.cpp │ │ │ ├── MipsISelLowering.cpp~ │ │ │ ├── MipsISelLowering.h │ │ │ ├── MipsInstrFPU.td │ │ │ ├── MipsInstrFormats.td │ │ │ ├── MipsInstrInfo.cpp │ │ │ ├── MipsInstrInfo.h │ │ │ ├── MipsInstrInfo.td │ │ │ ├── MipsMCAsmInfo.cpp │ │ │ ├── MipsMCAsmInfo.h │ │ │ ├── MipsMachineFunction.h │ │ │ ├── MipsRegisterInfo.cpp │ │ │ ├── MipsRegisterInfo.h │ │ │ ├── MipsRegisterInfo.td │ │ │ ├── MipsSchedule.td │ │ │ ├── MipsSelectionDAGInfo.cpp │ │ │ ├── MipsSelectionDAGInfo.h │ │ │ ├── MipsSubtarget.cpp │ │ │ ├── MipsSubtarget.h │ │ │ ├── MipsTargetMachine.cpp │ │ │ ├── MipsTargetMachine.h │ │ │ ├── MipsTargetObjectFile.cpp │ │ │ ├── MipsTargetObjectFile.h │ │ │ └── TargetInfo │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ └── MipsTargetInfo.cpp │ │ ├── PIC16 │ │ │ ├── AsmPrinter │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── PIC16AsmPrinter.cpp │ │ │ │ └── PIC16AsmPrinter.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── PIC16.h │ │ │ ├── PIC16.td │ │ │ ├── PIC16ABINames.h │ │ │ ├── PIC16DebugInfo.cpp │ │ │ ├── PIC16DebugInfo.h │ │ │ ├── PIC16ISelDAGToDAG.cpp │ │ │ ├── PIC16ISelDAGToDAG.h │ │ │ ├── PIC16ISelLowering.cpp │ │ │ ├── PIC16ISelLowering.h │ │ │ ├── PIC16InstrFormats.td │ │ │ ├── PIC16InstrInfo.cpp │ │ │ ├── PIC16InstrInfo.h │ │ │ ├── PIC16InstrInfo.td │ │ │ ├── PIC16MCAsmInfo.cpp │ │ │ ├── PIC16MCAsmInfo.h │ │ │ ├── PIC16MachineFunctionInfo.h │ │ │ ├── PIC16MemSelOpt.cpp │ │ │ ├── PIC16Passes │ │ │ │ ├── Makefile │ │ │ │ ├── PIC16Cloner.cpp │ │ │ │ ├── PIC16Cloner.h │ │ │ │ ├── PIC16Overlay.cpp │ │ │ │ └── PIC16Overlay.h │ │ │ ├── PIC16RegisterInfo.cpp │ │ │ ├── PIC16RegisterInfo.h │ │ │ ├── PIC16RegisterInfo.td │ │ │ ├── PIC16Section.cpp │ │ │ ├── PIC16Section.h │ │ │ ├── PIC16SelectionDAGInfo.cpp │ │ │ ├── PIC16SelectionDAGInfo.h │ │ │ ├── PIC16Subtarget.cpp │ │ │ ├── PIC16Subtarget.h │ │ │ ├── PIC16TargetMachine.cpp │ │ │ ├── PIC16TargetMachine.h │ │ │ ├── PIC16TargetObjectFile.cpp │ │ │ ├── PIC16TargetObjectFile.h │ │ │ └── TargetInfo │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ └── PIC16TargetInfo.cpp │ │ ├── PowerPC │ │ │ ├── #PPCInstrInfo.td# │ │ │ ├── AsmPrinter │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ └── PPCAsmPrinter.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── PPC.h │ │ │ ├── PPC.td │ │ │ ├── PPCBranchSelector.cpp │ │ │ ├── PPCCallingConv.td │ │ │ ├── PPCCodeEmitter.cpp │ │ │ ├── PPCFrameInfo.h │ │ │ ├── PPCHazardRecognizers.cpp │ │ │ ├── PPCHazardRecognizers.h │ │ │ ├── PPCISelDAGToDAG.cpp │ │ │ ├── PPCISelLowering.cpp │ │ │ ├── PPCISelLowering.h │ │ │ ├── PPCInstr64Bit.td │ │ │ ├── PPCInstrAltivec.td │ │ │ ├── PPCInstrBuilder.h │ │ │ ├── PPCInstrFormats.td │ │ │ ├── PPCInstrInfo.cpp │ │ │ ├── PPCInstrInfo.h │ │ │ ├── PPCInstrInfo.td │ │ │ ├── PPCJITInfo.cpp │ │ │ ├── PPCJITInfo.h │ │ │ ├── PPCMCAsmInfo.cpp │ │ │ ├── PPCMCAsmInfo.h │ │ │ ├── PPCMachineFunctionInfo.h │ │ │ ├── PPCPerfectShuffle.h │ │ │ ├── PPCPredicates.cpp │ │ │ ├── PPCPredicates.h │ │ │ ├── PPCRegisterInfo.cpp │ │ │ ├── PPCRegisterInfo.h │ │ │ ├── PPCRegisterInfo.td │ │ │ ├── PPCRelocations.h │ │ │ ├── PPCSchedule.td │ │ │ ├── PPCScheduleG3.td │ │ │ ├── PPCScheduleG4.td │ │ │ ├── PPCScheduleG4Plus.td │ │ │ ├── PPCScheduleG5.td │ │ │ ├── PPCSelectionDAGInfo.cpp │ │ │ ├── PPCSelectionDAGInfo.h │ │ │ ├── PPCSubtarget.cpp │ │ │ ├── PPCSubtarget.h │ │ │ ├── PPCTargetMachine.cpp │ │ │ ├── PPCTargetMachine.h │ │ │ ├── README.txt │ │ │ ├── README_ALTIVEC.txt │ │ │ └── TargetInfo │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ └── PowerPCTargetInfo.cpp │ │ ├── README.txt │ │ ├── Sparc │ │ │ ├── #SparcISelLowering.cpp# │ │ │ ├── AsmPrinter │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ └── SparcAsmPrinter.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── DelaySlotFiller.cpp │ │ │ ├── FPMover.cpp │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ ├── Sparc.h │ │ │ ├── Sparc.td │ │ │ ├── SparcCallingConv.td │ │ │ ├── SparcISelDAGToDAG.cpp │ │ │ ├── SparcISelLowering.cpp │ │ │ ├── SparcISelLowering.h │ │ │ ├── SparcInstrFormats.td │ │ │ ├── SparcInstrInfo.cpp │ │ │ ├── SparcInstrInfo.h │ │ │ ├── SparcInstrInfo.td │ │ │ ├── SparcMCAsmInfo.cpp │ │ │ ├── SparcMCAsmInfo.h │ │ │ ├── SparcMachineFunctionInfo.h │ │ │ ├── SparcRegisterInfo.cpp │ │ │ ├── SparcRegisterInfo.h │ │ │ ├── SparcRegisterInfo.td │ │ │ ├── SparcSelectionDAGInfo.cpp │ │ │ ├── SparcSelectionDAGInfo.h │ │ │ ├── SparcSubtarget.cpp │ │ │ ├── SparcSubtarget.h │ │ │ ├── SparcTargetMachine.cpp │ │ │ ├── SparcTargetMachine.h │ │ │ └── TargetInfo │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ └── SparcTargetInfo.cpp │ │ ├── SubtargetFeature.cpp │ │ ├── SystemZ │ │ │ ├── AsmPrinter │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ └── SystemZAsmPrinter.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── SystemZ.h │ │ │ ├── SystemZ.td │ │ │ ├── SystemZCallingConv.td │ │ │ ├── SystemZISelDAGToDAG.cpp │ │ │ ├── SystemZISelLowering.cpp │ │ │ ├── SystemZISelLowering.h │ │ │ ├── SystemZInstrBuilder.h │ │ │ ├── SystemZInstrFP.td │ │ │ ├── SystemZInstrFormats.td │ │ │ ├── SystemZInstrInfo.cpp │ │ │ ├── SystemZInstrInfo.h │ │ │ ├── SystemZInstrInfo.td │ │ │ ├── SystemZMCAsmInfo.cpp │ │ │ ├── SystemZMCAsmInfo.h │ │ │ ├── SystemZMachineFunctionInfo.h │ │ │ ├── SystemZOperands.td │ │ │ ├── SystemZRegisterInfo.cpp │ │ │ ├── SystemZRegisterInfo.h │ │ │ ├── SystemZRegisterInfo.td │ │ │ ├── SystemZSelectionDAGInfo.cpp │ │ │ ├── SystemZSelectionDAGInfo.h │ │ │ ├── SystemZSubtarget.cpp │ │ │ ├── SystemZSubtarget.h │ │ │ ├── SystemZTargetMachine.cpp │ │ │ ├── SystemZTargetMachine.h │ │ │ └── TargetInfo │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ └── SystemZTargetInfo.cpp │ │ ├── Target.cpp │ │ ├── TargetAsmLexer.cpp │ │ ├── TargetData.cpp │ │ ├── TargetELFWriterInfo.cpp │ │ ├── TargetFrameInfo.cpp │ │ ├── TargetInstrInfo.cpp │ │ ├── TargetIntrinsicInfo.cpp │ │ ├── TargetLoweringObjectFile.cpp │ │ ├── TargetMachine.cpp │ │ ├── TargetRegisterInfo.cpp │ │ ├── TargetSubtarget.cpp │ │ ├── X86 │ │ │ ├── AsmParser │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── X86AsmLexer.cpp │ │ │ │ └── X86AsmParser.cpp │ │ │ ├── AsmPrinter │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── X86ATTInstPrinter.cpp │ │ │ │ ├── X86ATTInstPrinter.h │ │ │ │ ├── X86InstComments.cpp │ │ │ │ ├── X86InstComments.h │ │ │ │ ├── X86IntelInstPrinter.cpp │ │ │ │ └── X86IntelInstPrinter.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Disassembler │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── X86Disassembler.cpp │ │ │ │ ├── X86Disassembler.h │ │ │ │ ├── X86DisassemblerDecoder.c │ │ │ │ ├── X86DisassemblerDecoder.h │ │ │ │ └── X86DisassemblerDecoderCommon.h │ │ │ ├── InstrSSE.td │ │ │ ├── Makefile │ │ │ ├── README-FPStack.txt │ │ │ ├── README-MMX.txt │ │ │ ├── README-SSE.txt │ │ │ ├── README-UNIMPLEMENTED.txt │ │ │ ├── README-X86-64.txt │ │ │ ├── README.txt │ │ │ ├── SSEDomainFix.cpp │ │ │ ├── TargetInfo │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ └── X86TargetInfo.cpp │ │ │ ├── X86.h │ │ │ ├── X86.td │ │ │ ├── X86AsmBackend.cpp │ │ │ ├── X86AsmPrinter.cpp │ │ │ ├── X86AsmPrinter.h │ │ │ ├── X86COFFMachineModuleInfo.cpp │ │ │ ├── X86COFFMachineModuleInfo.h │ │ │ ├── X86CallingConv.td │ │ │ ├── X86CodeEmitter.cpp │ │ │ ├── X86CompilationCallback_Win64.asm │ │ │ ├── X86ELFWriterInfo.cpp │ │ │ ├── X86ELFWriterInfo.h │ │ │ ├── X86FastISel.cpp │ │ │ ├── X86FixupKinds.h │ │ │ ├── X86FloatingPoint.cpp │ │ │ ├── X86ISelDAGToDAG.cpp │ │ │ ├── X86ISelLowering.cpp │ │ │ ├── X86ISelLowering.h │ │ │ ├── X86Instr64bit.td │ │ │ ├── X86InstrBuilder.h │ │ │ ├── X86InstrFMA.td │ │ │ ├── X86InstrFPStack.td │ │ │ ├── X86InstrFormats.td │ │ │ ├── X86InstrFragmentsSIMD.td │ │ │ ├── X86InstrInfo.cpp │ │ │ ├── X86InstrInfo.h │ │ │ ├── X86InstrInfo.td │ │ │ ├── X86InstrMMX.td │ │ │ ├── X86InstrSSE.td │ │ │ ├── X86JITInfo.cpp │ │ │ ├── X86JITInfo.h │ │ │ ├── X86MCAsmInfo.cpp │ │ │ ├── X86MCAsmInfo.h │ │ │ ├── X86MCCodeEmitter.cpp │ │ │ ├── X86MCInstLower.cpp │ │ │ ├── X86MCInstLower.h │ │ │ ├── X86MachineFunctionInfo.h │ │ │ ├── X86RegisterInfo.cpp │ │ │ ├── X86RegisterInfo.h │ │ │ ├── X86RegisterInfo.td │ │ │ ├── X86Relocations.h │ │ │ ├── X86SelectionDAGInfo.cpp │ │ │ ├── X86SelectionDAGInfo.h │ │ │ ├── X86ShuffleDecode.h │ │ │ ├── X86Subtarget.cpp │ │ │ ├── X86Subtarget.h │ │ │ ├── X86TargetMachine.cpp │ │ │ ├── X86TargetMachine.h │ │ │ ├── X86TargetObjectFile.cpp │ │ │ └── X86TargetObjectFile.h │ │ ├── XCore │ │ │ ├── AsmPrinter │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ └── XCoreAsmPrinter.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ ├── TargetInfo │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ └── XCoreTargetInfo.cpp │ │ │ ├── XCore.h │ │ │ ├── XCore.td │ │ │ ├── XCoreCallingConv.td │ │ │ ├── XCoreFrameInfo.cpp │ │ │ ├── XCoreFrameInfo.h │ │ │ ├── XCoreISelDAGToDAG.cpp │ │ │ ├── XCoreISelLowering.cpp │ │ │ ├── XCoreISelLowering.h │ │ │ ├── XCoreInstrFormats.td │ │ │ ├── XCoreInstrInfo.cpp │ │ │ ├── XCoreInstrInfo.h │ │ │ ├── XCoreInstrInfo.td │ │ │ ├── XCoreMCAsmInfo.cpp │ │ │ ├── XCoreMCAsmInfo.h │ │ │ ├── XCoreMachineFunctionInfo.h │ │ │ ├── XCoreRegisterInfo.cpp │ │ │ ├── XCoreRegisterInfo.h │ │ │ ├── XCoreRegisterInfo.td │ │ │ ├── XCoreSelectionDAGInfo.cpp │ │ │ ├── XCoreSelectionDAGInfo.h │ │ │ ├── XCoreSubtarget.cpp │ │ │ ├── XCoreSubtarget.h │ │ │ ├── XCoreTargetMachine.cpp │ │ │ ├── XCoreTargetMachine.h │ │ │ ├── XCoreTargetObjectFile.cpp │ │ │ └── XCoreTargetObjectFile.h │ │ └── build │ │ │ ├── CMakeCache.txt │ │ │ └── CMakeFiles │ │ │ ├── CMakeCCompiler.cmake │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ ├── CMakeOutput.log │ │ │ ├── CMakeSystem.cmake │ │ │ ├── CompilerIdC │ │ │ ├── CMakeCCompilerId.c │ │ │ └── a.out │ │ │ ├── CompilerIdCXX │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ └── a.out │ │ │ └── cmake.check_cache │ ├── Transforms │ │ ├── Hello │ │ │ ├── CMakeLists.txt │ │ │ ├── Hello.cpp │ │ │ ├── Hello.exports │ │ │ └── Makefile │ │ ├── IPO │ │ │ ├── ArgumentPromotion.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── ConstantMerge.cpp │ │ │ ├── DeadArgumentElimination.cpp │ │ │ ├── DeadTypeElimination.cpp │ │ │ ├── ExtractGV.cpp │ │ │ ├── FunctionAttrs.cpp │ │ │ ├── GlobalDCE.cpp │ │ │ ├── GlobalOpt.cpp │ │ │ ├── IPConstantPropagation.cpp │ │ │ ├── IPO.cpp │ │ │ ├── InlineAlways.cpp │ │ │ ├── InlineSimple.cpp │ │ │ ├── Inliner.cpp │ │ │ ├── Internalize.cpp │ │ │ ├── LoopExtractor.cpp │ │ │ ├── LowerSetJmp.cpp │ │ │ ├── Makefile │ │ │ ├── MergeFunctions.cpp │ │ │ ├── PartialInlining.cpp │ │ │ ├── PartialSpecialization.cpp │ │ │ ├── PruneEH.cpp │ │ │ ├── StripDeadPrototypes.cpp │ │ │ ├── StripSymbols.cpp │ │ │ └── StructRetPromotion.cpp │ │ ├── InstCombine │ │ │ ├── CMakeLists.txt │ │ │ ├── InstCombine.h │ │ │ ├── InstCombineAddSub.cpp │ │ │ ├── InstCombineAndOrXor.cpp │ │ │ ├── InstCombineCalls.cpp │ │ │ ├── InstCombineCasts.cpp │ │ │ ├── InstCombineCompares.cpp │ │ │ ├── InstCombineLoadStoreAlloca.cpp │ │ │ ├── InstCombineMulDivRem.cpp │ │ │ ├── InstCombinePHI.cpp │ │ │ ├── InstCombineSelect.cpp │ │ │ ├── InstCombineShifts.cpp │ │ │ ├── InstCombineSimplifyDemanded.cpp │ │ │ ├── InstCombineVectorOps.cpp │ │ │ ├── InstCombineWorklist.h │ │ │ ├── InstructionCombining.cpp │ │ │ └── Makefile │ │ ├── Instrumentation │ │ │ ├── CMakeLists.txt │ │ │ ├── EdgeProfiling.cpp │ │ │ ├── Makefile │ │ │ ├── MaximumSpanningTree.h │ │ │ ├── OptimalEdgeProfiling.cpp │ │ │ ├── ProfilingUtils.cpp │ │ │ └── ProfilingUtils.h │ │ ├── Makefile │ │ ├── Scalar │ │ │ ├── ADCE.cpp │ │ │ ├── BasicBlockPlacement.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── CodeGenPrepare.cpp │ │ │ ├── ConstantProp.cpp │ │ │ ├── CorrelatedValuePropagation.cpp │ │ │ ├── DCE.cpp │ │ │ ├── DeadStoreElimination.cpp │ │ │ ├── GEPSplitter.cpp │ │ │ ├── GVN.cpp │ │ │ ├── IndVarSimplify.cpp │ │ │ ├── JumpThreading.cpp │ │ │ ├── LICM.cpp │ │ │ ├── LoopDeletion.cpp │ │ │ ├── LoopIndexSplit.cpp │ │ │ ├── LoopRotation.cpp │ │ │ ├── LoopStrengthReduce.cpp │ │ │ ├── LoopUnrollPass.cpp │ │ │ ├── LoopUnswitch.cpp │ │ │ ├── LowerAtomic.cpp │ │ │ ├── Makefile │ │ │ ├── MemCpyOptimizer.cpp │ │ │ ├── Reassociate.cpp │ │ │ ├── Reg2Mem.cpp │ │ │ ├── SCCP.cpp │ │ │ ├── Scalar.cpp │ │ │ ├── ScalarReplAggregates.cpp │ │ │ ├── SimplifyCFGPass.cpp │ │ │ ├── SimplifyHalfPowrLibCalls.cpp │ │ │ ├── SimplifyLibCalls.cpp │ │ │ ├── Sink.cpp │ │ │ ├── TailDuplication.cpp │ │ │ └── TailRecursionElimination.cpp │ │ └── Utils │ │ │ ├── AddrModeMatcher.cpp │ │ │ ├── BasicBlockUtils.cpp │ │ │ ├── BasicInliner.cpp │ │ │ ├── BreakCriticalEdges.cpp │ │ │ ├── BuildLibCalls.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── CloneFunction.cpp │ │ │ ├── CloneLoop.cpp │ │ │ ├── CloneModule.cpp │ │ │ ├── CodeExtractor.cpp │ │ │ ├── DemoteRegToStack.cpp │ │ │ ├── InlineFunction.cpp │ │ │ ├── InstructionNamer.cpp │ │ │ ├── LCSSA.cpp │ │ │ ├── Local.cpp │ │ │ ├── LoopSimplify.cpp │ │ │ ├── LoopUnroll.cpp │ │ │ ├── LowerInvoke.cpp │ │ │ ├── LowerSwitch.cpp │ │ │ ├── Makefile │ │ │ ├── Mem2Reg.cpp │ │ │ ├── PromoteMemoryToRegister.cpp │ │ │ ├── SSAUpdater.cpp │ │ │ ├── SimplifyCFG.cpp │ │ │ ├── UnifyFunctionExitNodes.cpp │ │ │ └── ValueMapper.cpp │ └── VMCore │ │ ├── AsmWriter.cpp │ │ ├── Attributes.cpp │ │ ├── AutoUpgrade.cpp │ │ ├── BasicBlock.cpp │ │ ├── CMakeLists.txt │ │ ├── ConstantFold.cpp │ │ ├── ConstantFold.h │ │ ├── Constants.cpp │ │ ├── ConstantsContext.h │ │ ├── Core.cpp │ │ ├── DebugLoc.cpp │ │ ├── Dominators.cpp │ │ ├── Function.cpp │ │ ├── GVMaterializer.cpp │ │ ├── Globals.cpp │ │ ├── IRBuilder.cpp │ │ ├── InlineAsm.cpp │ │ ├── Instruction.cpp │ │ ├── Instructions.cpp │ │ ├── IntrinsicInst.cpp │ │ ├── LLVMContext.cpp │ │ ├── LLVMContextImpl.cpp │ │ ├── LLVMContextImpl.h │ │ ├── LeakDetector.cpp │ │ ├── LeaksContext.h │ │ ├── Makefile │ │ ├── Metadata.cpp │ │ ├── Module.cpp │ │ ├── Pass.cpp │ │ ├── PassManager.cpp │ │ ├── PassRegistry.cpp │ │ ├── PrintModulePass.cpp │ │ ├── SymbolTableListTraitsImpl.h │ │ ├── Type.cpp │ │ ├── TypeSymbolTable.cpp │ │ ├── TypesContext.h │ │ ├── Use.cpp │ │ ├── Value.cpp │ │ ├── ValueSymbolTable.cpp │ │ ├── ValueTypes.cpp │ │ └── Verifier.cpp │ ├── llvm.spec.in │ ├── projects │ ├── CMakeLists.txt │ ├── Makefile │ └── sample │ │ ├── Makefile │ │ ├── Makefile.common.in │ │ ├── autoconf │ │ ├── AutoRegen.sh │ │ ├── LICENSE.TXT │ │ ├── config.guess │ │ ├── config.sub │ │ └── configure.ac │ │ ├── configure │ │ ├── docs │ │ └── index.html │ │ ├── include │ │ └── sample.h │ │ ├── lib │ │ ├── Makefile │ │ └── sample │ │ │ ├── Makefile │ │ │ └── sample.c │ │ └── tools │ │ ├── Makefile │ │ └── sample │ │ ├── Makefile │ │ └── main.c │ ├── runtime │ ├── Makefile │ ├── README.txt │ └── libprofile │ │ ├── BasicBlockTracing.c │ │ ├── CommonProfiling.c │ │ ├── EdgeProfiling.c │ │ ├── Makefile │ │ ├── OptimalEdgeProfiling.c │ │ ├── Profiling.h │ │ └── libprofile.exports │ ├── test │ ├── Analysis │ │ ├── BasicAA │ │ │ ├── 2003-02-26-AccessSizeTest.ll │ │ │ ├── 2003-03-04-GEPCrash.ll │ │ │ ├── 2003-04-22-GEPProblem.ll │ │ │ ├── 2003-04-25-GEPCrash.ll │ │ │ ├── 2003-05-21-GEP-Problem.ll │ │ │ ├── 2003-06-01-AliasCrash.ll │ │ │ ├── 2003-07-03-BasicAACrash.ll │ │ │ ├── 2003-09-19-LocalArgument.ll │ │ │ ├── 2003-11-04-SimpleCases.ll │ │ │ ├── 2003-12-11-ConstExprGEP.ll │ │ │ ├── 2004-07-28-MustAliasbug.ll │ │ │ ├── 2004-12-08-BasicAACrash.ll │ │ │ ├── 2004-12-08-BasicAACrash2.ll │ │ │ ├── 2005-03-09-BrokenBasicAA.ll │ │ │ ├── 2006-03-03-BadArraySubscript.ll │ │ │ ├── 2006-11-03-BasicAAVectorCrash.ll │ │ │ ├── 2007-01-13-BasePointerBadNoAlias.ll │ │ │ ├── 2007-08-01-NoAliasAndCalls.ll │ │ │ ├── 2007-08-01-NoAliasAndGEP.ll │ │ │ ├── 2007-08-05-GetOverloadedModRef.ll │ │ │ ├── 2007-10-24-ArgumentsGlobals.ll │ │ │ ├── 2007-11-05-SizeCrash.ll │ │ │ ├── 2007-12-08-OutOfBoundsCrash.ll │ │ │ ├── 2008-04-15-Byval.ll │ │ │ ├── 2008-06-02-GEPTailCrash.ll │ │ │ ├── 2008-11-23-NoaliasRet.ll │ │ │ ├── 2009-03-04-GEPNoalias.ll │ │ │ ├── 2009-10-13-AtomicModRef.ll │ │ │ ├── 2009-10-13-GEP-BaseNoAlias.ll │ │ │ ├── args-rets-allocas-loads.ll │ │ │ ├── byval.ll │ │ │ ├── cas.ll │ │ │ ├── constant-over-index.ll │ │ │ ├── dg.exp │ │ │ ├── empty.ll │ │ │ ├── featuretest.ll │ │ │ ├── gcsetest.ll │ │ │ ├── gep-alias.ll │ │ │ ├── getmodrefinfo-cs-cs.ll │ │ │ ├── global-size.ll │ │ │ ├── modref.ll │ │ │ ├── no-escape-call.ll │ │ │ ├── nocapture.ll │ │ │ ├── phi-aa.ll │ │ │ ├── phi-and-select.ll │ │ │ ├── pure-const-dce.ll │ │ │ ├── store-promote.ll │ │ │ ├── tailcall-modref.ll │ │ │ └── unreachable-block.ll │ │ ├── CallGraph │ │ │ ├── 2008-09-09-DirectCall.ll │ │ │ ├── 2008-09-09-UsedByGlobal.ll │ │ │ └── dg.exp │ │ ├── Dominators │ │ │ ├── 2006-10-02-BreakCritEdges.ll │ │ │ ├── 2007-01-14-BreakCritEdges.ll │ │ │ ├── 2007-07-11-SplitBlock.ll │ │ │ ├── 2007-07-12-SplitBlock.ll │ │ │ └── dg.exp │ │ ├── GlobalsModRef │ │ │ ├── 2008-09-03-ReadGlobals.ll │ │ │ ├── aliastest.ll │ │ │ ├── chaining-analysis.ll │ │ │ ├── dg.exp │ │ │ ├── indirect-global.ll │ │ │ ├── modreftest.ll │ │ │ └── purecse.ll │ │ ├── LoopDependenceAnalysis │ │ │ ├── alias.ll │ │ │ ├── dg.exp │ │ │ ├── siv-strong.ll │ │ │ ├── siv-weak-crossing.ll │ │ │ ├── siv-weak-zero.ll │ │ │ └── ziv.ll │ │ ├── LoopInfo │ │ │ ├── 2003-05-15-NestingProblem.ll │ │ │ └── dg.exp │ │ ├── PointerTracking │ │ │ ├── dg.exp │ │ │ └── sizes.ll │ │ ├── PostDominators │ │ │ ├── 2006-09-26-PostDominanceFrontier.ll │ │ │ ├── 2007-04-17-PostDominanceFrontier.ll │ │ │ ├── 2007-04-20-PostDom-Reset.ll │ │ │ ├── dg.exp │ │ │ ├── pr1098.ll │ │ │ ├── pr6047_a.ll │ │ │ ├── pr6047_b.ll │ │ │ ├── pr6047_c.ll │ │ │ └── pr6047_d.ll │ │ ├── Profiling │ │ │ ├── dg.exp │ │ │ ├── edge-profiling.ll │ │ │ └── profiling-tool-chain.ll │ │ ├── RegionInfo │ │ │ ├── 20100809_bb_not_in_domtree.ll │ │ │ ├── block_sort.ll │ │ │ ├── cond_loop.ll │ │ │ ├── condition_complicated.ll │ │ │ ├── condition_complicated_2.ll │ │ │ ├── condition_forward_edge.ll │ │ │ ├── condition_same_exit.ll │ │ │ ├── condition_simple.ll │ │ │ ├── dg.exp │ │ │ ├── exit_in_condition.ll │ │ │ ├── infinite_loop.ll │ │ │ ├── infinite_loop_2.ll │ │ │ ├── infinite_loop_3.ll │ │ │ ├── infinite_loop_4.ll │ │ │ ├── loop_with_condition.ll │ │ │ ├── loops_1.ll │ │ │ ├── loops_2.ll │ │ │ ├── mix_1.ll │ │ │ ├── multiple_exiting_edge.ll │ │ │ ├── nested_loops.ll │ │ │ ├── next.ll │ │ │ ├── paper.ll │ │ │ └── two_loops_same_header.ll │ │ └── ScalarEvolution │ │ │ ├── 2007-07-15-NegativeStride.ll │ │ │ ├── 2007-08-06-MisinterpretBranch.ll │ │ │ ├── 2007-08-06-Unsigned.ll │ │ │ ├── 2007-09-27-LargeStepping.ll │ │ │ ├── 2007-11-14-SignedAddRec.ll │ │ │ ├── 2007-11-18-OrInstruction.ll │ │ │ ├── 2008-02-11-ReversedCondition.ll │ │ │ ├── 2008-02-12-SMAXTripCount.ll │ │ │ ├── 2008-02-15-UMax.ll │ │ │ ├── 2008-05-25-NegativeStepToZero.ll │ │ │ ├── 2008-06-12-BinomialInt64.ll │ │ │ ├── 2008-07-12-UnneededSelect1.ll │ │ │ ├── 2008-07-12-UnneededSelect2.ll │ │ │ ├── 2008-07-19-InfiniteLoop.ll │ │ │ ├── 2008-07-19-WrappingIV.ll │ │ │ ├── 2008-07-29-SGTTripCount.ll │ │ │ ├── 2008-07-29-SMinExpr.ll │ │ │ ├── 2008-08-04-IVOverflow.ll │ │ │ ├── 2008-08-04-LongAddRec.ll │ │ │ ├── 2008-11-02-QuadraticCrash.ll │ │ │ ├── 2008-11-15-CubicOOM.ll │ │ │ ├── 2008-11-18-LessThanOrEqual.ll │ │ │ ├── 2008-11-18-Stride1.ll │ │ │ ├── 2008-11-18-Stride2.ll │ │ │ ├── 2008-12-08-FiniteSGE.ll │ │ │ ├── 2008-12-11-SMaxOverflow.ll │ │ │ ├── 2008-12-14-StrideAndSigned.ll │ │ │ ├── 2008-12-15-DontUseSDiv.ll │ │ │ ├── 2009-01-02-SignedNegativeStride.ll │ │ │ ├── 2009-04-22-TruncCast.ll │ │ │ ├── 2009-05-09-PointerEdgeCount.ll │ │ │ ├── 2009-07-04-GroupConstantsWidthMismatch.ll │ │ │ ├── SolveQuadraticEquation.ll │ │ │ ├── and-xor.ll │ │ │ ├── avoid-infinite-recursion-0.ll │ │ │ ├── avoid-infinite-recursion-1.ll │ │ │ ├── avoid-smax-0.ll │ │ │ ├── avoid-smax-1.ll │ │ │ ├── dg.exp │ │ │ ├── div-overflow.ll │ │ │ ├── do-loop.ll │ │ │ ├── max-trip-count.ll │ │ │ ├── nsw-offset.ll │ │ │ ├── nsw.ll │ │ │ ├── pointer-sign-bits.ll │ │ │ ├── pr3909.ll │ │ │ ├── scev-aa.ll │ │ │ ├── sext-inreg.ll │ │ │ ├── sext-iv-0.ll │ │ │ ├── sext-iv-1.ll │ │ │ ├── sext-iv-2.ll │ │ │ ├── sle.ll │ │ │ ├── smax.ll │ │ │ ├── trip-count.ll │ │ │ ├── trip-count10.ll │ │ │ ├── trip-count2.ll │ │ │ ├── trip-count3.ll │ │ │ ├── trip-count4.ll │ │ │ ├── trip-count5.ll │ │ │ ├── trip-count6.ll │ │ │ ├── trip-count7.ll │ │ │ ├── trip-count8.ll │ │ │ ├── trip-count9.ll │ │ │ ├── undefined.ll │ │ │ ├── unreachable-code.ll │ │ │ ├── unsimplified-loop.ll │ │ │ ├── xor-and.ll │ │ │ └── zext-wrap.ll │ ├── Archive │ │ ├── GNU.a │ │ ├── GNU.toc │ │ ├── IsNAN.o │ │ ├── MacOSX.a │ │ ├── MacOSX.toc │ │ ├── README.txt │ │ ├── SVR4.a │ │ ├── SVR4.toc │ │ ├── dg.exp │ │ ├── evenlen │ │ ├── extract.ll │ │ ├── oddlen │ │ ├── toc_GNU.ll │ │ ├── toc_MacOSX.ll │ │ ├── toc_SVR4.ll │ │ ├── toc_xpg4.ll │ │ ├── very_long_bytecode_file_name.bc │ │ ├── xpg4.a │ │ └── xpg4.toc │ ├── Assembler │ │ ├── 2002-01-24-BadSymbolTableAssert.ll │ │ ├── 2002-01-24-ValueRefineAbsType.ll │ │ ├── 2002-02-19-TypeParsing.ll │ │ ├── 2002-03-08-NameCollision.ll │ │ ├── 2002-03-08-NameCollision2.ll │ │ ├── 2002-04-04-PureVirtMethCall.ll │ │ ├── 2002-04-04-PureVirtMethCall2.ll │ │ ├── 2002-04-05-TypeParsing.ll │ │ ├── 2002-04-07-HexFloatConstants.ll │ │ ├── 2002-04-07-InfConstant.ll │ │ ├── 2002-04-29-NameBinding.ll │ │ ├── 2002-05-02-InvalidForwardRef.ll │ │ ├── 2002-05-02-ParseError.ll │ │ ├── 2002-07-08-HugePerformanceProblem.ll │ │ ├── 2002-07-14-InternalLossage.ll │ │ ├── 2002-07-14-OpaqueType.ll │ │ ├── 2002-07-25-ParserAssertionFailure.ll │ │ ├── 2002-07-25-QuoteInString.ll │ │ ├── 2002-07-25-ReturnPtrFunction.ll │ │ ├── 2002-07-31-SlashInString.ll │ │ ├── 2002-08-15-CastAmbiguity.ll │ │ ├── 2002-08-15-ConstantExprProblem.ll │ │ ├── 2002-08-15-UnresolvedGlobalReference.ll │ │ ├── 2002-08-16-ConstExprInlined.ll │ │ ├── 2002-08-19-BytecodeReader.ll │ │ ├── 2002-08-22-DominanceProblem.ll │ │ ├── 2002-10-08-LargeArrayPerformance.ll │ │ ├── 2002-10-13-ConstantEncodingProblem.ll │ │ ├── 2002-10-15-NameClash.ll │ │ ├── 2002-12-15-GlobalResolve.ll │ │ ├── 2003-01-30-UnsignedString.ll │ │ ├── 2003-04-15-ConstantInitAssertion.ll │ │ ├── 2003-04-25-UnresolvedGlobalReference.ll │ │ ├── 2003-05-03-BytecodeReaderProblem.ll │ │ ├── 2003-05-12-MinIntProblem.ll │ │ ├── 2003-05-15-AssemblerProblem.ll │ │ ├── 2003-05-15-SwitchBug.ll │ │ ├── 2003-05-21-ConstantShiftExpr.ll │ │ ├── 2003-05-21-EmptyStructTest.ll │ │ ├── 2003-05-21-MalformedShiftCrash.ll │ │ ├── 2003-05-21-MalformedStructCrash.ll │ │ ├── 2003-06-17-InvokeDisassemble.ll │ │ ├── 2003-06-30-RecursiveTypeProblem.ll │ │ ├── 2003-08-20-ConstantExprGEP-Fold.ll │ │ ├── 2003-08-21-ConstantExprCast-Fold.ll │ │ ├── 2003-10-04-NotMergingGlobalConstants.ll │ │ ├── 2003-11-05-ConstantExprShift.ll │ │ ├── 2003-11-11-ImplicitRename.ll │ │ ├── 2003-11-12-ConstantExprCast.ll │ │ ├── 2003-11-24-SymbolTableCrash.ll │ │ ├── 2003-12-30-TypeMapInvalidMemory.ll │ │ ├── 2004-01-11-getelementptrfolding.ll │ │ ├── 2004-01-20-MaxLongLong.ll │ │ ├── 2004-02-01-NegativeZero.ll │ │ ├── 2004-02-27-SelfUseAssertError.ll │ │ ├── 2004-03-07-FunctionAddressAlignment.ll │ │ ├── 2004-03-30-UnclosedFunctionCrash.ll │ │ ├── 2004-04-04-GetElementPtrIndexTypes.ll │ │ ├── 2004-06-07-VerifierBug.ll │ │ ├── 2004-10-22-BCWriterUndefBug.ll │ │ ├── 2004-11-28-InvalidTypeCrash.ll │ │ ├── 2005-01-03-FPConstantDisassembly.ll │ │ ├── 2005-01-31-CallingAggregateFunction.ll │ │ ├── 2005-02-09-AsmWriterStoreBug.ll │ │ ├── 2005-05-05-OpaqueUndefValues.ll │ │ ├── 2005-12-21-ZeroInitVector.ll │ │ ├── 2006-05-26-VarargsCallEncode.ll │ │ ├── 2006-09-28-CrashOnInvalid.ll │ │ ├── 2006-12-09-Cast-To-Bool.ll │ │ ├── 2007-01-02-Undefined-Arg-Type.ll │ │ ├── 2007-01-05-Cmp-ConstExpr.ll │ │ ├── 2007-01-16-CrashOnBadCast.ll │ │ ├── 2007-01-16-CrashOnBadCast2.ll │ │ ├── 2007-03-18-InvalidNumberedVar.ll │ │ ├── 2007-03-19-NegValue.ll │ │ ├── 2007-04-20-AlignedLoad.ll │ │ ├── 2007-04-20-AlignedStore.ll │ │ ├── 2007-04-25-AssemblerFoldExternWeak.ll │ │ ├── 2007-05-21-Escape.ll │ │ ├── 2007-07-19-ParamAttrAmbiguity.ll │ │ ├── 2007-07-30-AutoUpgradeZextSext.ll │ │ ├── 2007-08-06-AliasInvalid.ll │ │ ├── 2007-09-10-AliasFwdRef.ll │ │ ├── 2007-09-29-GC.ll │ │ ├── 2007-11-26-AttributeOverload.ll │ │ ├── 2007-11-27-AutoUpgradeAttributes.ll │ │ ├── 2007-12-11-AddressSpaces.ll │ │ ├── 2008-01-11-VarargAttrs.ll │ │ ├── 2008-02-18-IntPointerCrash.ll │ │ ├── 2008-02-20-MultipleReturnValue.ll │ │ ├── 2008-07-10-APInt.ll │ │ ├── 2008-09-02-FunctionNotes.ll │ │ ├── 2008-09-02-FunctionNotes2.ll │ │ ├── 2008-09-29-RetAttr.ll │ │ ├── 2008-10-14-NamedTypeOnInteger.ll │ │ ├── 2008-10-14-QuoteInName.ll │ │ ├── 2009-02-01-UnnamedForwardRef.ll │ │ ├── 2009-02-28-CastOpc.ll │ │ ├── 2009-02-28-StripOpaqueName.ll │ │ ├── 2009-03-24-ZextConstantExpr.ll │ │ ├── 2009-04-25-AliasGEP.ll │ │ ├── 2009-07-24-ZeroArgGEP.ll │ │ ├── 2010-02-05-FunctionLocalMetadataBecomesNull.ll │ │ ├── AutoUpgradeIntrinsics.ll │ │ ├── ConstantExprFold.ll │ │ ├── ConstantExprFoldCast.ll │ │ ├── MultipleReturnValueType.ll │ │ ├── aggregate-constant-values.ll │ │ ├── aggregate-return-single-value.ll │ │ ├── align-inst-alloca.ll │ │ ├── align-inst-load.ll │ │ ├── align-inst-store.ll │ │ ├── align-inst.ll │ │ ├── alignstack.ll │ │ ├── anon-functions.ll │ │ ├── bcwrap.ll │ │ ├── comment.ll │ │ ├── dg.exp │ │ ├── flags.ll │ │ ├── functionlocal-metadata.ll │ │ ├── getelementptr.ll │ │ ├── getelementptr_struct.ll │ │ ├── huge-array.ll │ │ ├── insertextractvalue.ll │ │ ├── metadata.ll │ │ ├── numbered-values.ll │ │ ├── private.ll │ │ ├── select.ll │ │ ├── unnamed.ll │ │ ├── vbool-cmp.ll │ │ ├── vector-cmp.ll │ │ ├── vector-select.ll │ │ └── vector-shift.ll │ ├── Bindings │ │ └── Ocaml │ │ │ ├── analysis.ml │ │ │ ├── bitreader.ml │ │ │ ├── bitwriter.ml │ │ │ ├── dg.exp │ │ │ ├── executionengine.ml │ │ │ ├── scalar_opts.ml │ │ │ ├── target.ml │ │ │ └── vmcore.ml │ ├── Bitcode │ │ ├── 2006-12-11-Cast-ConstExpr.ll │ │ ├── 2009-06-11-FirstClassAggregateConstant.ll │ │ ├── AutoUpgradeGlobals.ll │ │ ├── AutoUpgradeGlobals.ll.bc │ │ ├── AutoUpgradeIntrinsics.ll │ │ ├── AutoUpgradeIntrinsics.ll.bc │ │ ├── dg.exp │ │ ├── extractelement.ll │ │ ├── flags.ll │ │ ├── memcpy.ll │ │ ├── metadata-2.ll │ │ ├── metadata.ll │ │ ├── neon-intrinsics.ll │ │ ├── neon-intrinsics.ll.bc │ │ ├── sse2_loadl_pd.ll │ │ ├── sse2_loadl_pd.ll.bc │ │ ├── sse2_movl_dq.ll │ │ ├── sse2_movl_dq.ll.bc │ │ ├── sse2_movs_d.ll │ │ ├── sse2_movs_d.ll.bc │ │ ├── sse2_punpck_qdq.ll │ │ ├── sse2_punpck_qdq.ll.bc │ │ ├── sse2_shuf_pd.ll │ │ ├── sse2_shuf_pd.ll.bc │ │ ├── sse2_unpck_pd.ll │ │ ├── sse2_unpck_pd.ll.bc │ │ ├── sse41_pmulld.ll │ │ ├── sse41_pmulld.ll.bc │ │ ├── ssse3_palignr.ll │ │ └── ssse3_palignr.ll.bc │ ├── BugPoint │ │ ├── crash-narrowfunctiontest.ll │ │ ├── dg.exp │ │ ├── metadata.ll │ │ └── remove_arguments_test.ll │ ├── CMakeLists.txt │ ├── CodeGen │ │ ├── ARM │ │ │ ├── 2006-11-10-CycleInDAG.ll │ │ │ ├── 2007-01-19-InfiniteLoop.ll │ │ │ ├── 2007-03-07-CombinerCrash.ll │ │ │ ├── 2007-03-13-InstrSched.ll │ │ │ ├── 2007-03-21-JoinIntervalsCrash.ll │ │ │ ├── 2007-03-26-RegScavengerAssert.ll │ │ │ ├── 2007-03-27-RegScavengerAssert.ll │ │ │ ├── 2007-03-30-RegScavengerAssert.ll │ │ │ ├── 2007-04-02-RegScavengerAssert.ll │ │ │ ├── 2007-04-03-PEIBug.ll │ │ │ ├── 2007-04-03-UndefinedSymbol.ll │ │ │ ├── 2007-04-30-CombinerCrash.ll │ │ │ ├── 2007-05-03-BadPostIndexedLd.ll │ │ │ ├── 2007-05-07-jumptoentry.ll │ │ │ ├── 2007-05-07-tailmerge-1.ll │ │ │ ├── 2007-05-09-tailmerge-2.ll │ │ │ ├── 2007-05-14-InlineAsmCstCrash.ll │ │ │ ├── 2007-05-14-RegScavengerAssert.ll │ │ │ ├── 2007-05-22-tailmerge-3.ll │ │ │ ├── 2007-05-23-BadPreIndexedStore.ll │ │ │ ├── 2007-05-31-RegScavengerInfiniteLoop.ll │ │ │ ├── 2007-08-15-ReuseBug.ll │ │ │ ├── 2008-02-04-LocalRegAllocBug.ll │ │ │ ├── 2008-02-29-RegAllocLocal.ll │ │ │ ├── 2008-03-05-SxtInRegBug.ll │ │ │ ├── 2008-03-07-RegScavengerAssert.ll │ │ │ ├── 2008-04-04-ScavengerAssert.ll │ │ │ ├── 2008-04-10-ScavengerAssert.ll │ │ │ ├── 2008-04-11-PHIofImpDef.ll │ │ │ ├── 2008-05-19-LiveIntervalsBug.ll │ │ │ ├── 2008-05-19-ScavengerAssert.ll │ │ │ ├── 2008-07-17-Fdiv.ll │ │ │ ├── 2008-07-24-CodeGenPrepCrash.ll │ │ │ ├── 2008-08-07-AsmPrintBug.ll │ │ │ ├── 2008-09-14-CoalescerBug.ll │ │ │ ├── 2008-09-17-CoalescerBug.ll │ │ │ ├── 2008-11-18-ScavengerAssert.ll │ │ │ ├── 2009-02-16-SpillerBug.ll │ │ │ ├── 2009-02-22-SoftenFloatVaArg.ll │ │ │ ├── 2009-02-27-SpillerBug.ll │ │ │ ├── 2009-03-07-SpillerBug.ll │ │ │ ├── 2009-03-09-AddrModeBug.ll │ │ │ ├── 2009-04-06-AsmModifier.ll │ │ │ ├── 2009-04-08-AggregateAddr.ll │ │ │ ├── 2009-04-08-FREM.ll │ │ │ ├── 2009-04-08-FloatUndef.ll │ │ │ ├── 2009-04-09-RegScavengerAsm.ll │ │ │ ├── 2009-05-05-DAGCombineBug.ll │ │ │ ├── 2009-05-07-RegAllocLocal.ll │ │ │ ├── 2009-05-11-CodePlacementCrash.ll │ │ │ ├── 2009-05-18-InlineAsmMem.ll │ │ │ ├── 2009-06-02-ISelCrash.ll │ │ │ ├── 2009-06-04-MissingLiveIn.ll │ │ │ ├── 2009-06-12-RegScavengerAssert.ll │ │ │ ├── 2009-06-15-RegScavengerAssert.ll │ │ │ ├── 2009-06-19-RegScavengerAssert.ll │ │ │ ├── 2009-06-22-CoalescerBug.ll │ │ │ ├── 2009-06-30-RegScavengerAssert.ll │ │ │ ├── 2009-06-30-RegScavengerAssert2.ll │ │ │ ├── 2009-06-30-RegScavengerAssert3.ll │ │ │ ├── 2009-06-30-RegScavengerAssert4.ll │ │ │ ├── 2009-06-30-RegScavengerAssert5.ll │ │ │ ├── 2009-07-01-CommuteBug.ll │ │ │ ├── 2009-07-09-asm-p-constraint.ll │ │ │ ├── 2009-07-18-RewriterBug.ll │ │ │ ├── 2009-07-22-ScavengerAssert.ll │ │ │ ├── 2009-07-22-SchedulerAssert.ll │ │ │ ├── 2009-07-29-VFP3Registers.ll │ │ │ ├── 2009-08-02-RegScavengerAssert-Neon.ll │ │ │ ├── 2009-08-04-RegScavengerAssert-2.ll │ │ │ ├── 2009-08-04-RegScavengerAssert.ll │ │ │ ├── 2009-08-15-RegScavenger-EarlyClobber.ll │ │ │ ├── 2009-08-15-RegScavengerAssert.ll │ │ │ ├── 2009-08-21-PostRAKill.ll │ │ │ ├── 2009-08-21-PostRAKill2.ll │ │ │ ├── 2009-08-21-PostRAKill3.ll │ │ │ ├── 2009-08-21-PostRAKill4.ll │ │ │ ├── 2009-08-23-linkerprivate.ll │ │ │ ├── 2009-08-26-ScalarToVector.ll │ │ │ ├── 2009-08-27-ScalarToVector.ll │ │ │ ├── 2009-08-29-ExtractEltf32.ll │ │ │ ├── 2009-08-29-TooLongSplat.ll │ │ │ ├── 2009-08-31-LSDA-Name.ll │ │ │ ├── 2009-08-31-TwoRegShuffle.ll │ │ │ ├── 2009-09-01-PostRAProlog.ll │ │ │ ├── 2009-09-09-AllOnes.ll │ │ │ ├── 2009-09-09-fpcmp-ole.ll │ │ │ ├── 2009-09-10-postdec.ll │ │ │ ├── 2009-09-13-InvalidSubreg.ll │ │ │ ├── 2009-09-13-InvalidSuperReg.ll │ │ │ ├── 2009-09-20-LiveIntervalsBug.ll │ │ │ ├── 2009-09-21-LiveVariablesBug.ll │ │ │ ├── 2009-09-22-LiveVariablesBug.ll │ │ │ ├── 2009-09-23-LiveVariablesBug.ll │ │ │ ├── 2009-09-24-spill-align.ll │ │ │ ├── 2009-09-27-CoalescerBug.ll │ │ │ ├── 2009-09-28-LdStOptiBug.ll │ │ │ ├── 2009-10-02-NEONSubregsBug.ll │ │ │ ├── 2009-10-21-InvalidFNeg.ll │ │ │ ├── 2009-10-27-double-align.ll │ │ │ ├── 2009-10-30.ll │ │ │ ├── 2009-11-01-NeonMoves.ll │ │ │ ├── 2009-11-02-NegativeLane.ll │ │ │ ├── 2009-11-07-SubRegAsmPrinting.ll │ │ │ ├── 2009-11-13-CoalescerCrash.ll │ │ │ ├── 2009-11-13-ScavengerAssert.ll │ │ │ ├── 2009-11-13-ScavengerAssert2.ll │ │ │ ├── 2009-11-13-VRRewriterCrash.ll │ │ │ ├── 2009-11-30-LiveVariablesBug.ll │ │ │ ├── 2009-12-02-vtrn-undef.ll │ │ │ ├── 2010-03-04-eabi-fp-spill.ll │ │ │ ├── 2010-03-04-stm-undef-addr.ll │ │ │ ├── 2010-03-18-ldm-rtrn.ll │ │ │ ├── 2010-04-07-DbgValueOtherTargets.ll │ │ │ ├── 2010-04-09-NeonSelect.ll │ │ │ ├── 2010-04-13-v2f64SplitArg.ll │ │ │ ├── 2010-04-14-SplitVector.ll │ │ │ ├── 2010-04-15-ScavengerDebugValue.ll │ │ │ ├── 2010-05-14-IllegalType.ll │ │ │ ├── 2010-05-17-DAGCombineAssert.ll │ │ │ ├── 2010-05-17-FastAllocCrash.ll │ │ │ ├── 2010-05-18-LocalAllocCrash.ll │ │ │ ├── 2010-05-18-PostIndexBug.ll │ │ │ ├── 2010-05-19-Shuffles.ll │ │ │ ├── 2010-05-20-NEONSpillCrash.ll │ │ │ ├── 2010-05-21-BuildVector.ll │ │ │ ├── 2010-06-11-vmovdrr-bitcast.ll │ │ │ ├── 2010-06-21-LdStMultipleBug.ll │ │ │ ├── 2010-06-21-nondarwin-tc.ll │ │ │ ├── 2010-06-25-Thumb2ITInvalidIterator.ll │ │ │ ├── 2010-06-28-DAGCombineUndef.ll │ │ │ ├── 2010-06-29-PartialRedefFastAlloc.ll │ │ │ ├── 2010-06-29-SubregImpDefs.ll │ │ │ ├── 2010-07-26-GlobalMerge.ll │ │ │ ├── 2010-08-04-EHCrash.ll │ │ │ ├── addrmode.ll │ │ │ ├── aliases.ll │ │ │ ├── align.ll │ │ │ ├── alloca.ll │ │ │ ├── argaddr.ll │ │ │ ├── arguments-nosplit-double.ll │ │ │ ├── arguments-nosplit-i64.ll │ │ │ ├── arguments.ll │ │ │ ├── arguments2.ll │ │ │ ├── arguments3.ll │ │ │ ├── arguments4.ll │ │ │ ├── arguments5.ll │ │ │ ├── arguments6.ll │ │ │ ├── arguments7.ll │ │ │ ├── arguments8.ll │ │ │ ├── arguments_f64_backfill.ll │ │ │ ├── arm-asm.ll │ │ │ ├── arm-frameaddr.ll │ │ │ ├── arm-negative-stride.ll │ │ │ ├── arm-returnaddr.ll │ │ │ ├── armv4.ll │ │ │ ├── bfc.ll │ │ │ ├── bfi.ll │ │ │ ├── bfx.ll │ │ │ ├── bic.ll │ │ │ ├── bits.ll │ │ │ ├── bx_fold.ll │ │ │ ├── call-tc.ll │ │ │ ├── call.ll │ │ │ ├── call_nolink.ll │ │ │ ├── carry.ll │ │ │ ├── clz.ll │ │ │ ├── code-placement.ll │ │ │ ├── compare-call.ll │ │ │ ├── constants.ll │ │ │ ├── crash-O0.ll │ │ │ ├── cse-libcalls.ll │ │ │ ├── ctors_dtors.ll │ │ │ ├── ctz.ll │ │ │ ├── dg.exp │ │ │ ├── div.ll │ │ │ ├── dyn-stackalloc.ll │ │ │ ├── extloadi1.ll │ │ │ ├── fabss.ll │ │ │ ├── fadds.ll │ │ │ ├── fast-isel.ll │ │ │ ├── fcopysign.ll │ │ │ ├── fdivs.ll │ │ │ ├── fixunsdfdi.ll │ │ │ ├── flag-crash.ll │ │ │ ├── fmacs.ll │ │ │ ├── fmdrr-fmrrd.ll │ │ │ ├── fmscs.ll │ │ │ ├── fmuls.ll │ │ │ ├── fnegs.ll │ │ │ ├── fnmacs.ll │ │ │ ├── fnmscs.ll │ │ │ ├── fnmul.ll │ │ │ ├── fnmuls.ll │ │ │ ├── formal.ll │ │ │ ├── fp.ll │ │ │ ├── fp16.ll │ │ │ ├── fp_convert.ll │ │ │ ├── fparith.ll │ │ │ ├── fpcmp-opt.ll │ │ │ ├── fpcmp.ll │ │ │ ├── fpcmp_ueq.ll │ │ │ ├── fpconsts.ll │ │ │ ├── fpconv.ll │ │ │ ├── fpmem.ll │ │ │ ├── fpow.ll │ │ │ ├── fpowi.ll │ │ │ ├── fptoint.ll │ │ │ ├── fsubs.ll │ │ │ ├── globals.ll │ │ │ ├── hardfloat_neon.ll │ │ │ ├── hello.ll │ │ │ ├── hidden-vis-2.ll │ │ │ ├── hidden-vis-3.ll │ │ │ ├── hidden-vis.ll │ │ │ ├── iabs.ll │ │ │ ├── ifcvt1.ll │ │ │ ├── ifcvt2.ll │ │ │ ├── ifcvt3.ll │ │ │ ├── ifcvt4.ll │ │ │ ├── ifcvt5.ll │ │ │ ├── ifcvt6.ll │ │ │ ├── ifcvt7.ll │ │ │ ├── ifcvt8.ll │ │ │ ├── ifcvt9.ll │ │ │ ├── illegal-vector-bitcast.ll │ │ │ ├── imm.ll │ │ │ ├── indirectbr.ll │ │ │ ├── inlineasm-imm-arm.ll │ │ │ ├── inlineasm.ll │ │ │ ├── inlineasm2.ll │ │ │ ├── inlineasm3.ll │ │ │ ├── insn-sched1.ll │ │ │ ├── ispositive.ll │ │ │ ├── large-stack.ll │ │ │ ├── ldm.ll │ │ │ ├── ldr.ll │ │ │ ├── ldr_ext.ll │ │ │ ├── ldr_frame.ll │ │ │ ├── ldr_post.ll │ │ │ ├── ldr_pre.ll │ │ │ ├── ldrd.ll │ │ │ ├── load.ll │ │ │ ├── long-setcc.ll │ │ │ ├── long.ll │ │ │ ├── long_shift.ll │ │ │ ├── lsr-code-insertion.ll │ │ │ ├── lsr-on-unrolled-loops.ll │ │ │ ├── lsr-scale-addr-mode.ll │ │ │ ├── machine-cse-cmp.ll │ │ │ ├── mem.ll │ │ │ ├── memcpy-inline.ll │ │ │ ├── memfunc.ll │ │ │ ├── mls.ll │ │ │ ├── movt-movw-global.ll │ │ │ ├── movt.ll │ │ │ ├── mul.ll │ │ │ ├── mul_const.ll │ │ │ ├── mulhi.ll │ │ │ ├── mvn.ll │ │ │ ├── neon_arith1.ll │ │ │ ├── neon_ld1.ll │ │ │ ├── neon_ld2.ll │ │ │ ├── neon_minmax.ll │ │ │ ├── pack.ll │ │ │ ├── pr3502.ll │ │ │ ├── private.ll │ │ │ ├── reg_sequence.ll │ │ │ ├── remat.ll │ │ │ ├── ret0.ll │ │ │ ├── ret_arg1.ll │ │ │ ├── ret_arg2.ll │ │ │ ├── ret_arg3.ll │ │ │ ├── ret_arg4.ll │ │ │ ├── ret_arg5.ll │ │ │ ├── ret_f32_arg2.ll │ │ │ ├── ret_f32_arg5.ll │ │ │ ├── ret_f64_arg2.ll │ │ │ ├── ret_f64_arg_reg_split.ll │ │ │ ├── ret_f64_arg_split.ll │ │ │ ├── ret_f64_arg_stack.ll │ │ │ ├── ret_i128_arg2.ll │ │ │ ├── ret_i64_arg2.ll │ │ │ ├── ret_i64_arg3.ll │ │ │ ├── ret_i64_arg_split.ll │ │ │ ├── ret_void.ll │ │ │ ├── rev.ll │ │ │ ├── sbfx.ll │ │ │ ├── section.ll │ │ │ ├── select-imm.ll │ │ │ ├── select.ll │ │ │ ├── select_xform.ll │ │ │ ├── shifter_operand.ll │ │ │ ├── smul.ll │ │ │ ├── spill-q.ll │ │ │ ├── stack-frame.ll │ │ │ ├── stm.ll │ │ │ ├── str_post.ll │ │ │ ├── str_pre-2.ll │ │ │ ├── str_pre.ll │ │ │ ├── str_trunc.ll │ │ │ ├── sub.ll │ │ │ ├── sxt_rot.ll │ │ │ ├── t2-imm.ll │ │ │ ├── tail-opts.ll │ │ │ ├── thread_pointer.ll │ │ │ ├── tls1.ll │ │ │ ├── tls2.ll │ │ │ ├── tls3.ll │ │ │ ├── trap.ll │ │ │ ├── trunc_ldr.ll │ │ │ ├── truncstore-dag-combine.ll │ │ │ ├── tst_teq.ll │ │ │ ├── uint64tof64.ll │ │ │ ├── unaligned_load_store.ll │ │ │ ├── unord.ll │ │ │ ├── uxt_rot.ll │ │ │ ├── uxtb.ll │ │ │ ├── va_arg.ll │ │ │ ├── vaba.ll │ │ │ ├── vabd.ll │ │ │ ├── vabs.ll │ │ │ ├── vadd.ll │ │ │ ├── vargs.ll │ │ │ ├── vargs_align.ll │ │ │ ├── vbits.ll │ │ │ ├── vbsl.ll │ │ │ ├── vceq.ll │ │ │ ├── vcge.ll │ │ │ ├── vcgt.ll │ │ │ ├── vcnt.ll │ │ │ ├── vcombine.ll │ │ │ ├── vcvt.ll │ │ │ ├── vdup.ll │ │ │ ├── vext.ll │ │ │ ├── vfcmp.ll │ │ │ ├── vfp.ll │ │ │ ├── vget_lane.ll │ │ │ ├── vhadd.ll │ │ │ ├── vhsub.ll │ │ │ ├── vicmp.ll │ │ │ ├── vld1.ll │ │ │ ├── vld2.ll │ │ │ ├── vld3.ll │ │ │ ├── vld4.ll │ │ │ ├── vldlane.ll │ │ │ ├── vminmax.ll │ │ │ ├── vmla.ll │ │ │ ├── vmls.ll │ │ │ ├── vmov.ll │ │ │ ├── vmul.ll │ │ │ ├── vneg.ll │ │ │ ├── vpadal.ll │ │ │ ├── vpadd.ll │ │ │ ├── vpminmax.ll │ │ │ ├── vqadd.ll │ │ │ ├── vqdmul.ll │ │ │ ├── vqshl.ll │ │ │ ├── vqshrn.ll │ │ │ ├── vqsub.ll │ │ │ ├── vrec.ll │ │ │ ├── vrev.ll │ │ │ ├── vshift.ll │ │ │ ├── vshiftins.ll │ │ │ ├── vshl.ll │ │ │ ├── vshll.ll │ │ │ ├── vshrn.ll │ │ │ ├── vsra.ll │ │ │ ├── vst1.ll │ │ │ ├── vst2.ll │ │ │ ├── vst3.ll │ │ │ ├── vst4.ll │ │ │ ├── vstlane.ll │ │ │ ├── vsub.ll │ │ │ ├── vtbl.ll │ │ │ ├── vtrn.ll │ │ │ ├── vuzp.ll │ │ │ ├── vzip.ll │ │ │ ├── weak.ll │ │ │ └── weak2.ll │ │ ├── Alpha │ │ │ ├── 2005-07-12-TwoMallocCalls.ll │ │ │ ├── 2005-12-12-MissingFCMov.ll │ │ │ ├── 2006-01-18-MissedGlobal.ll │ │ │ ├── 2006-01-26-VaargBreak.ll │ │ │ ├── 2006-04-04-zextload.ll │ │ │ ├── 2006-07-03-ASMFormalLowering.ll │ │ │ ├── 2006-11-01-vastart.ll │ │ │ ├── 2007-11-27-mulneg3.ll │ │ │ ├── 2008-11-10-smul_lohi.ll │ │ │ ├── 2008-11-12-Add128.ll │ │ │ ├── 2009-07-16-PromoteFloatCompare.ll │ │ │ ├── 2010-04-07-DbgValueOtherTargets.ll │ │ │ ├── 2010-08-01-mulreduce64.ll │ │ │ ├── add.ll │ │ │ ├── add128.ll │ │ │ ├── bic.ll │ │ │ ├── bsr.ll │ │ │ ├── call_adj.ll │ │ │ ├── cmov.ll │ │ │ ├── cmpbge.ll │ │ │ ├── ctlz.ll │ │ │ ├── ctlz_e.ll │ │ │ ├── ctpop.ll │ │ │ ├── dg.exp │ │ │ ├── eqv.ll │ │ │ ├── i32_sub_1.ll │ │ │ ├── illegal-element-type.ll │ │ │ ├── jmp_table.ll │ │ │ ├── mb.ll │ │ │ ├── mul128.ll │ │ │ ├── mul5.ll │ │ │ ├── neg1.ll │ │ │ ├── not.ll │ │ │ ├── ornot.ll │ │ │ ├── private.ll │ │ │ ├── rpcc.ll │ │ │ ├── srl_and.ll │ │ │ ├── sub128.ll │ │ │ ├── weak.ll │ │ │ ├── wmb.ll │ │ │ ├── zapnot.ll │ │ │ ├── zapnot2.ll │ │ │ ├── zapnot3.ll │ │ │ └── zapnot4.ll │ │ ├── Blackfin │ │ │ ├── 2009-08-04-LowerExtract-Live.ll │ │ │ ├── 2009-08-11-RegScavenger-CSR.ll │ │ │ ├── 2009-08-15-LiveIn-SubReg.ll │ │ │ ├── 2009-08-15-MissingDead.ll │ │ │ ├── 2009-08-15-SetCC-Undef.ll │ │ │ ├── add-overflow.ll │ │ │ ├── add.ll │ │ │ ├── addsub-i128.ll │ │ │ ├── basic-i1.ll │ │ │ ├── basic-i16.ll │ │ │ ├── basic-i32.ll │ │ │ ├── basic-i64.ll │ │ │ ├── basic-i8.ll │ │ │ ├── basictest.ll │ │ │ ├── burg.ll │ │ │ ├── cmp-small-imm.ll │ │ │ ├── cmp64.ll │ │ │ ├── ct32.ll │ │ │ ├── ct64.ll │ │ │ ├── ctlz16.ll │ │ │ ├── ctlz64.ll │ │ │ ├── ctpop16.ll │ │ │ ├── cttz16.ll │ │ │ ├── cycles.ll │ │ │ ├── dg.exp │ │ │ ├── double-cast.ll │ │ │ ├── frameindex.ll │ │ │ ├── i17mem.ll │ │ │ ├── i1mem.ll │ │ │ ├── i1ops.ll │ │ │ ├── i216mem.ll │ │ │ ├── i248mem.ll │ │ │ ├── i256mem.ll │ │ │ ├── i256param.ll │ │ │ ├── i56param.ll │ │ │ ├── i8mem.ll │ │ │ ├── inline-asm.ll │ │ │ ├── int-setcc.ll │ │ │ ├── invalid-apint.ll │ │ │ ├── jumptable.ll │ │ │ ├── large-switch.ll │ │ │ ├── load-i16.ll │ │ │ ├── logic-i16.ll │ │ │ ├── many-args.ll │ │ │ ├── mulhu.ll │ │ │ ├── printf.ll │ │ │ ├── printf2.ll │ │ │ ├── promote-logic.ll │ │ │ ├── promote-setcc.ll │ │ │ ├── sdiv.ll │ │ │ ├── simple-select.ll │ │ │ ├── switch.ll │ │ │ ├── switch2.ll │ │ │ └── sync-intr.ll │ │ ├── CBackend │ │ │ ├── 2002-05-16-NameCollide.ll │ │ │ ├── 2002-05-21-MissingReturn.ll │ │ │ ├── 2002-08-19-ConstPointerRef.ll │ │ │ ├── 2002-08-19-ConstantExpr.ll │ │ │ ├── 2002-08-19-DataPointer.ll │ │ │ ├── 2002-08-19-FunctionPointer.ll │ │ │ ├── 2002-08-19-HardConstantExpr.ll │ │ │ ├── 2002-08-20-RecursiveTypes.ll │ │ │ ├── 2002-08-20-UnnamedArgument.ll │ │ │ ├── 2002-08-26-IndirectCallTest.ll │ │ │ ├── 2002-08-30-StructureOrderingTest.ll │ │ │ ├── 2002-09-20-ArrayTypeFailure.ll │ │ │ ├── 2002-09-20-VarArgPrototypes.ll │ │ │ ├── 2002-10-15-OpaqueTypeProblem.ll │ │ │ ├── 2002-10-16-External.ll │ │ │ ├── 2002-10-30-FunctionPointerAlloca.ll │ │ │ ├── 2002-11-06-PrintEscaped.ll │ │ │ ├── 2003-05-12-IntegerSizeWarning.ll │ │ │ ├── 2003-05-13-VarArgFunction.ll │ │ │ ├── 2003-05-31-MissingStructName.ll │ │ │ ├── 2003-06-01-NullPointerType.ll │ │ │ ├── 2003-06-11-HexConstant.ll │ │ │ ├── 2003-06-11-LiteralStringProblem.ll │ │ │ ├── 2003-06-28-InvokeSupport.ll │ │ │ ├── 2003-06-28-LinkOnceGlobalVars.ll │ │ │ ├── 2003-10-12-NANGlobalInits.ll │ │ │ ├── 2003-10-23-UnusedType.ll │ │ │ ├── 2003-10-28-CastToPtrToStruct.ll │ │ │ ├── 2003-11-21-ConstantShiftExpr.ll │ │ │ ├── 2004-02-13-FrameReturnAddress.ll │ │ │ ├── 2004-02-15-PreexistingExternals.ll │ │ │ ├── 2004-02-26-FPNotPrintableConstants.ll │ │ │ ├── 2004-02-26-LinkOnceFunctions.ll │ │ │ ├── 2004-08-09-va-end-null.ll │ │ │ ├── 2004-11-13-FunctionPointerCast.ll │ │ │ ├── 2004-12-03-ExternStatics.ll │ │ │ ├── 2004-12-28-LogicalConstantExprs.ll │ │ │ ├── 2005-02-14-VolatileOperations.ll │ │ │ ├── 2005-03-08-RecursiveTypeCrash.ll │ │ │ ├── 2005-07-14-NegationToMinusMinus.ll │ │ │ ├── 2005-08-23-Fmod.ll │ │ │ ├── 2005-09-27-VolatileFuncPtr.ll │ │ │ ├── 2006-12-11-Float-Bitcast.ll │ │ │ ├── 2007-01-08-ParamAttr-ICmp.ll │ │ │ ├── 2007-01-15-NamedArrayType.ll │ │ │ ├── 2007-01-17-StackSaveNRestore.ll │ │ │ ├── 2007-02-05-memset.ll │ │ │ ├── 2007-02-23-NameConflicts.ll │ │ │ ├── 2007-07-11-PackedStruct.ll │ │ │ ├── 2008-02-01-UnalignedLoadStore.ll │ │ │ ├── 2008-05-21-MRV-InlineAsm.ll │ │ │ ├── 2008-05-31-BoolOverflow.ll │ │ │ ├── 2008-06-04-IndirectMem.ll │ │ │ ├── 2008-10-21-PPCLongDoubleConstant.ll │ │ │ ├── dg.exp │ │ │ ├── fneg.ll │ │ │ ├── pr2408.ll │ │ │ └── vectors.ll │ │ ├── CPP │ │ │ ├── 2007-06-16-Funcname.ll │ │ │ ├── 2009-05-01-Long-Double.ll │ │ │ ├── 2009-05-04-CondBr.ll │ │ │ ├── dg.exp │ │ │ └── llvm2cpp.ll │ │ ├── CellSPU │ │ │ ├── 2009-01-01-BrCond.ll │ │ │ ├── 2010-04-07-DbgValueOtherTargets.ll │ │ │ ├── and_ops.ll │ │ │ ├── arg_ret.ll │ │ │ ├── bigstack.ll │ │ │ ├── bss.ll │ │ │ ├── call.ll │ │ │ ├── call_indirect.ll │ │ │ ├── crash.ll │ │ │ ├── ctpop.ll │ │ │ ├── dg.exp │ │ │ ├── dp_farith.ll │ │ │ ├── eqv.ll │ │ │ ├── extract_elt.ll │ │ │ ├── fcmp32.ll │ │ │ ├── fcmp64.ll │ │ │ ├── fdiv.ll │ │ │ ├── fneg-fabs.ll │ │ │ ├── i64ops.ll │ │ │ ├── i8ops.ll │ │ │ ├── icmp16.ll │ │ │ ├── icmp32.ll │ │ │ ├── icmp64.ll │ │ │ ├── icmp8.ll │ │ │ ├── immed16.ll │ │ │ ├── immed32.ll │ │ │ ├── immed64.ll │ │ │ ├── int2fp.ll │ │ │ ├── intrinsics_branch.ll │ │ │ ├── intrinsics_float.ll │ │ │ ├── intrinsics_logical.ll │ │ │ ├── jumptable.ll │ │ │ ├── loads.ll │ │ │ ├── mul-with-overflow.ll │ │ │ ├── mul_ops.ll │ │ │ ├── nand.ll │ │ │ ├── or_ops.ll │ │ │ ├── private.ll │ │ │ ├── rotate_ops.ll │ │ │ ├── select_bits.ll │ │ │ ├── sext128.ll │ │ │ ├── shift_ops.ll │ │ │ ├── shuffles.ll │ │ │ ├── sp_farith.ll │ │ │ ├── stores.ll │ │ │ ├── storestruct.ll │ │ │ ├── struct_1.ll │ │ │ ├── sub_ops.ll │ │ │ ├── trunc.ll │ │ │ ├── useful-harnesses │ │ │ │ ├── README.txt │ │ │ │ ├── i32operations.c │ │ │ │ ├── i64operations.c │ │ │ │ ├── i64operations.h │ │ │ │ ├── lit.local.cfg │ │ │ │ └── vecoperations.c │ │ │ ├── v2f32.ll │ │ │ ├── v2i32.ll │ │ │ ├── vec_const.ll │ │ │ └── vecinsert.ll │ │ ├── Generic │ │ │ ├── 2002-04-14-UnexpectedUnsignedType.ll │ │ │ ├── 2002-04-16-StackFrameSizeAlignment.ll │ │ │ ├── 2003-05-27-phifcmpd.ll │ │ │ ├── 2003-05-27-useboolinotherbb.ll │ │ │ ├── 2003-05-27-usefsubasbool.ll │ │ │ ├── 2003-05-28-ManyArgs.ll │ │ │ ├── 2003-05-30-BadFoldGEP.ll │ │ │ ├── 2003-05-30-BadPreselectPhi.ll │ │ │ ├── 2003-07-06-BadIntCmp.ll │ │ │ ├── 2003-07-07-BadLongConst.ll │ │ │ ├── 2003-07-08-BadCastToBool.ll │ │ │ ├── 2003-07-29-BadConstSbyte.ll │ │ │ ├── 2004-02-08-UnwindSupport.ll │ │ │ ├── 2004-05-09-LiveVarPartialRegister.ll │ │ │ ├── 2005-01-18-SetUO-InfLoop.ll │ │ │ ├── 2005-04-09-GlobalInPHI.ll │ │ │ ├── 2005-07-12-memcpy-i64-length.ll │ │ │ ├── 2005-10-18-ZeroSizeStackObject.ll │ │ │ ├── 2005-10-21-longlonggtu.ll │ │ │ ├── 2005-12-01-Crash.ll │ │ │ ├── 2005-12-12-ExpandSextInreg.ll │ │ │ ├── 2006-01-12-BadSetCCFold.ll │ │ │ ├── 2006-01-18-InvalidBranchOpcodeAssert.ll │ │ │ ├── 2006-02-12-InsertLibcall.ll │ │ │ ├── 2006-03-01-dagcombineinfloop.ll │ │ │ ├── 2006-04-26-SetCCAnd.ll │ │ │ ├── 2006-04-28-Sign-extend-bool.ll │ │ │ ├── 2006-05-06-GEP-Cast-Sink-Crash.ll │ │ │ ├── 2006-06-12-LowerSwitchCrash.ll │ │ │ ├── 2006-06-13-ComputeMaskedBitsCrash.ll │ │ │ ├── 2006-06-28-SimplifySetCCCrash.ll │ │ │ ├── 2006-07-03-schedulers.ll │ │ │ ├── 2006-08-30-CoalescerCrash.ll │ │ │ ├── 2006-09-02-LocalAllocCrash.ll │ │ │ ├── 2006-09-06-SwitchLowering.ll │ │ │ ├── 2006-10-27-CondFolding.ll │ │ │ ├── 2006-10-29-Crash.ll │ │ │ ├── 2006-11-20-DAGCombineCrash.ll │ │ │ ├── 2007-01-15-LoadSelectCycle.ll │ │ │ ├── 2007-02-25-invoke.ll │ │ │ ├── 2007-04-08-MultipleFrameIndices.ll │ │ │ ├── 2007-04-13-SwitchLowerBadPhi.ll │ │ │ ├── 2007-04-17-lsr-crash.ll │ │ │ ├── 2007-04-27-InlineAsm-X-Dest.ll │ │ │ ├── 2007-04-27-LargeMemObject.ll │ │ │ ├── 2007-04-30-LandingPadBranchFolding.ll │ │ │ ├── 2007-05-03-EHTypeInfo.ll │ │ │ ├── 2007-05-15-InfiniteRecursion.ll │ │ │ ├── 2007-11-21-UndeadIllegalNode.ll │ │ │ ├── 2007-12-17-InvokeAsm.ll │ │ │ ├── 2007-12-31-UnusedSelector.ll │ │ │ ├── 2008-01-25-dag-combine-mul.ll │ │ │ ├── 2008-01-30-LoadCrash.ll │ │ │ ├── 2008-02-04-Ctlz.ll │ │ │ ├── 2008-02-04-ExtractSubvector.ll │ │ │ ├── 2008-02-20-MatchingMem.ll │ │ │ ├── 2008-02-25-NegateZero.ll │ │ │ ├── 2008-02-26-NegatableCrash.ll │ │ │ ├── 2008-08-07-PtrToInt-SmallerInt.ll │ │ │ ├── 2009-03-17-LSR-APInt.ll │ │ │ ├── 2009-03-29-SoftFloatVectorExtract.ll │ │ │ ├── 2009-04-10-SinkCrash.ll │ │ │ ├── 2009-04-28-i128-cmp-crash.ll │ │ │ ├── 2009-06-03-UnreachableSplitPad.ll │ │ │ ├── 2009-11-16-BadKillsCrash.ll │ │ │ ├── 2010-07-27-DAGCombineCrash.ll │ │ │ ├── 2010-ZeroSizedArg.ll │ │ │ ├── APIntLoadStore.ll │ │ │ ├── APIntParam.ll │ │ │ ├── APIntSextParam.ll │ │ │ ├── APIntZextParam.ll │ │ │ ├── BasicInstrs.ll │ │ │ ├── BurgBadRegAlloc.ll │ │ │ ├── ConstantExprLowering.ll │ │ │ ├── Makefile │ │ │ ├── add-with-overflow-128.ll │ │ │ ├── add-with-overflow-24.ll │ │ │ ├── add-with-overflow.ll │ │ │ ├── addr-label.ll │ │ │ ├── asm-large-immediate.ll │ │ │ ├── badCallArgLRLLVM.ll │ │ │ ├── badFoldGEP.ll │ │ │ ├── badarg6.ll │ │ │ ├── badlive.ll │ │ │ ├── bool-to-double.ll │ │ │ ├── bool-vector.ll │ │ │ ├── call-ret0.ll │ │ │ ├── call-ret42.ll │ │ │ ├── call-void.ll │ │ │ ├── call2-ret0.ll │ │ │ ├── cast-fp.ll │ │ │ ├── constindices.ll │ │ │ ├── crash.ll │ │ │ ├── dbg_value.ll │ │ │ ├── dg.exp │ │ │ ├── div-neg-power-2.ll │ │ │ ├── empty-load-store.ll │ │ │ ├── externally_available.ll │ │ │ ├── fastcall.ll │ │ │ ├── fneg-fabs.ll │ │ │ ├── fp-to-int-invalid.ll │ │ │ ├── fp_to_int.ll │ │ │ ├── fpowi-promote.ll │ │ │ ├── fwdtwice.ll │ │ │ ├── getresult-undef.ll │ │ │ ├── global-ret0.ll │ │ │ ├── hello.ll │ │ │ ├── i128-addsub.ll │ │ │ ├── i128-arith.ll │ │ │ ├── inline-asm-special-strings.ll │ │ │ ├── intrinsics.ll │ │ │ ├── invalid-memcpy.ll │ │ │ ├── isunord.ll │ │ │ ├── legalize-dbg-value.ll │ │ │ ├── llvm-ct-intrinsics.ll │ │ │ ├── multiple-return-values-cross-block-with-invoke.ll │ │ │ ├── negintconst.ll │ │ │ ├── nested-select.ll │ │ │ ├── pr2625.ll │ │ │ ├── pr3288.ll │ │ │ ├── print-add.ll │ │ │ ├── print-arith-fp.ll │ │ │ ├── print-arith-int.ll │ │ │ ├── print-int.ll │ │ │ ├── print-mul-exp.ll │ │ │ ├── print-mul.ll │ │ │ ├── print-shift.ll │ │ │ ├── ret0.ll │ │ │ ├── ret42.ll │ │ │ ├── select-cc.ll │ │ │ ├── select.ll │ │ │ ├── shift-int64.ll │ │ │ ├── spillccr.ll │ │ │ ├── stacksave-restore.ll │ │ │ ├── storetrunc-fp.ll │ │ │ ├── switch-lower-feature.ll │ │ │ ├── switch-lower.ll │ │ │ ├── trap.ll │ │ │ ├── v-split.ll │ │ │ ├── vector-casts.ll │ │ │ ├── vector-constantexpr.ll │ │ │ ├── vector-identity-shuffle.ll │ │ │ └── vector.ll │ │ ├── MBlaze │ │ │ ├── 2010-04-07-DbgValueOtherTargets.ll │ │ │ ├── brind.ll │ │ │ ├── callind.ll │ │ │ ├── cc.ll │ │ │ ├── dg.exp │ │ │ ├── div.ll │ │ │ ├── fpu.ll │ │ │ ├── fsl.ll │ │ │ ├── imm.ll │ │ │ ├── jumptable.ll │ │ │ ├── loop.ll │ │ │ ├── mul.ll │ │ │ ├── mul64.ll │ │ │ ├── select.ll │ │ │ └── shift.ll │ │ ├── MSP430 │ │ │ ├── 2009-05-10-CyclicDAG.ll │ │ │ ├── 2009-05-17-Rot.ll │ │ │ ├── 2009-05-17-Shift.ll │ │ │ ├── 2009-05-19-DoubleSplit.ll │ │ │ ├── 2009-08-25-DynamicStackAlloc.ll │ │ │ ├── 2009-09-18-AbsoluteAddr.ll │ │ │ ├── 2009-10-10-OrImpDef.ll │ │ │ ├── 2009-11-05-8BitLibcalls.ll │ │ │ ├── 2009-11-08-InvalidResNo.ll │ │ │ ├── 2009-11-20-NewNode.ll │ │ │ ├── 2009-12-21-FrameAddr.ll │ │ │ ├── 2009-12-22-InlineAsm.ll │ │ │ ├── 2010-04-07-DbgValueOtherTargets.ll │ │ │ ├── 2010-05-01-CombinerAnd.ll │ │ │ ├── AddrMode-bis-rx.ll │ │ │ ├── AddrMode-bis-xr.ll │ │ │ ├── AddrMode-mov-rx.ll │ │ │ ├── AddrMode-mov-xr.ll │ │ │ ├── Inst16mi.ll │ │ │ ├── Inst16mm.ll │ │ │ ├── Inst16mr.ll │ │ │ ├── Inst16ri.ll │ │ │ ├── Inst16rm.ll │ │ │ ├── Inst16rr.ll │ │ │ ├── Inst8mi.ll │ │ │ ├── Inst8mm.ll │ │ │ ├── Inst8mr.ll │ │ │ ├── Inst8ri.ll │ │ │ ├── Inst8rm.ll │ │ │ ├── Inst8rr.ll │ │ │ ├── bit.ll │ │ │ ├── dg.exp │ │ │ ├── indirectbr.ll │ │ │ ├── indirectbr2.ll │ │ │ ├── inline-asm.ll │ │ │ ├── postinc.ll │ │ │ ├── setcc.ll │ │ │ └── shifts.ll │ │ ├── Mips │ │ │ ├── 2008-06-05-Carry.ll │ │ │ ├── 2008-07-03-SRet.ll │ │ │ ├── 2008-07-05-ByVal.ll │ │ │ ├── 2008-07-06-fadd64.ll │ │ │ ├── 2008-07-07-FPExtend.ll │ │ │ ├── 2008-07-07-Float2Int.ll │ │ │ ├── 2008-07-07-IntDoubleConvertions.ll │ │ │ ├── 2008-07-15-InternalConstant.ll │ │ │ ├── 2008-07-15-SmallSection.ll │ │ │ ├── 2008-07-16-SignExtInReg.ll │ │ │ ├── 2008-07-22-Cstpool.ll │ │ │ ├── 2008-07-23-fpcmp.ll │ │ │ ├── 2008-07-29-icmp.ll │ │ │ ├── 2008-07-31-fcopysign.ll │ │ │ ├── 2008-08-01-AsmInline.ll │ │ │ ├── 2008-08-03-ReturnDouble.ll │ │ │ ├── 2008-08-03-fabs64.ll │ │ │ ├── 2008-08-04-Bitconvert.ll │ │ │ ├── 2008-08-06-Alloca.ll │ │ │ ├── 2008-08-07-CC.ll │ │ │ ├── 2008-08-07-FPRound.ll │ │ │ ├── 2008-08-08-bswap.ll │ │ │ ├── 2008-08-08-ctlz.ll │ │ │ ├── 2008-10-13-LegalizerBug.ll │ │ │ ├── 2008-11-10-xint_to_fp.ll │ │ │ ├── 2009-11-16-CstPoolLoad.ll │ │ │ ├── 2010-04-07-DbgValueOtherTargets.ll │ │ │ ├── 2010-07-20-Select.ll │ │ │ ├── 2010-07-20-Switch.ll │ │ │ ├── dg.exp │ │ │ └── private.ll │ │ ├── PIC16 │ │ │ ├── 2009-07-17-PR4566-pic16.ll │ │ │ ├── 2009-11-20-NewNode.ll │ │ │ ├── C16-11.ll │ │ │ ├── C16-15.ll │ │ │ ├── C16-49.ll │ │ │ ├── check_inc_files.ll │ │ │ ├── dg.exp │ │ │ ├── global-in-user-section.ll │ │ │ ├── globals.ll │ │ │ ├── result_direction.ll │ │ │ ├── sext.ll │ │ │ └── test_indf_name.ll │ │ ├── PowerPC │ │ │ ├── 2004-11-29-ShrCrash.ll │ │ │ ├── 2004-11-30-shift-crash.ll │ │ │ ├── 2004-11-30-shr-var-crash.ll │ │ │ ├── 2004-12-12-ZeroSizeCommon.ll │ │ │ ├── 2005-01-14-SetSelectCrash.ll │ │ │ ├── 2005-01-14-UndefLong.ll │ │ │ ├── 2005-08-12-rlwimi-crash.ll │ │ │ ├── 2005-09-02-LegalizeDuplicatesCalls.ll │ │ │ ├── 2005-10-08-ArithmeticRotate.ll │ │ │ ├── 2005-11-30-vastart-crash.ll │ │ │ ├── 2006-01-11-darwin-fp-argument.ll │ │ │ ├── 2006-01-20-ShiftPartsCrash.ll │ │ │ ├── 2006-04-01-FloatDoubleExtend.ll │ │ │ ├── 2006-04-05-splat-ish.ll │ │ │ ├── 2006-04-19-vmaddfp-crash.ll │ │ │ ├── 2006-05-12-rlwimi-crash.ll │ │ │ ├── 2006-07-07-ComputeMaskedBits.ll │ │ │ ├── 2006-07-19-stwbrx-crash.ll │ │ │ ├── 2006-08-11-RetVector.ll │ │ │ ├── 2006-08-15-SelectionCrash.ll │ │ │ ├── 2006-09-28-shift_64.ll │ │ │ ├── 2006-10-11-combiner-aa-regression.ll │ │ │ ├── 2006-10-13-Miscompile.ll │ │ │ ├── 2006-10-17-brcc-miscompile.ll │ │ │ ├── 2006-10-17-ppc64-alloca.ll │ │ │ ├── 2006-11-10-DAGCombineMiscompile.ll │ │ │ ├── 2006-11-29-AltivecFPSplat.ll │ │ │ ├── 2006-12-07-LargeAlloca.ll │ │ │ ├── 2006-12-07-SelectCrash.ll │ │ │ ├── 2007-01-04-ArgExtension.ll │ │ │ ├── 2007-01-15-AsmDialect.ll │ │ │ ├── 2007-01-29-lbrx-asm.ll │ │ │ ├── 2007-01-31-InlineAsmAddrMode.ll │ │ │ ├── 2007-02-16-AlignPacked.ll │ │ │ ├── 2007-02-16-InlineAsmNConstraint.ll │ │ │ ├── 2007-02-23-lr-saved-twice.ll │ │ │ ├── 2007-03-24-cntlzd.ll │ │ │ ├── 2007-03-30-SpillerCrash.ll │ │ │ ├── 2007-04-24-InlineAsm-I-Modifier.ll │ │ │ ├── 2007-04-30-InlineAsmEarlyClobber.ll │ │ │ ├── 2007-05-03-InlineAsm-S-Constraint.ll │ │ │ ├── 2007-05-14-InlineAsmSelectCrash.ll │ │ │ ├── 2007-05-22-tailmerge-3.ll │ │ │ ├── 2007-05-30-dagcombine-miscomp.ll │ │ │ ├── 2007-06-28-BCCISelBug.ll │ │ │ ├── 2007-08-04-CoalescerAssert.ll │ │ │ ├── 2007-09-04-AltivecDST.ll │ │ │ ├── 2007-09-07-LoadStoreIdxForms.ll │ │ │ ├── 2007-09-08-unaligned.ll │ │ │ ├── 2007-09-11-RegCoalescerAssert.ll │ │ │ ├── 2007-09-12-LiveIntervalsAssert.ll │ │ │ ├── 2007-10-16-InlineAsmFrameOffset.ll │ │ │ ├── 2007-10-18-PtrArithmetic.ll │ │ │ ├── 2007-10-21-LocalRegAllocAssert.ll │ │ │ ├── 2007-10-21-LocalRegAllocAssert2.ll │ │ │ ├── 2007-11-04-CoalescerCrash.ll │ │ │ ├── 2007-11-16-landingpad-split.ll │ │ │ ├── 2007-11-19-VectorSplitting.ll │ │ │ ├── 2008-02-05-LiveIntervalsAssert.ll │ │ │ ├── 2008-02-09-LocalRegAllocAssert.ll │ │ │ ├── 2008-03-05-RegScavengerAssert.ll │ │ │ ├── 2008-03-17-RegScavengerCrash.ll │ │ │ ├── 2008-03-18-RegScavengerAssert.ll │ │ │ ├── 2008-03-24-AddressRegImm.ll │ │ │ ├── 2008-03-24-CoalescerBug.ll │ │ │ ├── 2008-03-26-CoalescerBug.ll │ │ │ ├── 2008-04-10-LiveIntervalCrash.ll │ │ │ ├── 2008-04-16-CoalescerBug.ll │ │ │ ├── 2008-04-23-CoalescerCrash.ll │ │ │ ├── 2008-05-01-ppc_fp128.ll │ │ │ ├── 2008-06-19-LegalizerCrash.ll │ │ │ ├── 2008-06-21-F128LoadStore.ll │ │ │ ├── 2008-06-23-LiveVariablesCrash.ll │ │ │ ├── 2008-07-10-SplatMiscompile.ll │ │ │ ├── 2008-07-15-Bswap.ll │ │ │ ├── 2008-07-15-Fabs.ll │ │ │ ├── 2008-07-15-SignExtendInreg.ll │ │ │ ├── 2008-07-17-Fneg.ll │ │ │ ├── 2008-07-24-PPC64-CCBug.ll │ │ │ ├── 2008-09-12-CoalescerBug.ll │ │ │ ├── 2008-10-17-AsmMatchingOperands.ll │ │ │ ├── 2008-10-28-UnprocessedNode.ll │ │ │ ├── 2008-10-28-f128-i32.ll │ │ │ ├── 2008-10-30-IllegalShift.ll │ │ │ ├── 2008-10-31-PPCF128Libcalls.ll │ │ │ ├── 2008-12-02-LegalizeTypeAssert.ll │ │ │ ├── 2008-12-12-EH.ll │ │ │ ├── 2009-01-16-DeclareISelBug.ll │ │ │ ├── 2009-03-17-LSRBug.ll │ │ │ ├── 2009-05-28-LegalizeBRCC.ll │ │ │ ├── 2009-07-16-InlineAsm-M-Operand.ll │ │ │ ├── 2009-08-17-inline-asm-addr-mode-breakage.ll │ │ │ ├── 2009-08-23-linkerprivate.ll │ │ │ ├── 2009-09-18-carrybit.ll │ │ │ ├── 2009-11-15-ProcImpDefsBug.ll │ │ │ ├── 2009-11-15-ReMatBug.ll │ │ │ ├── 2009-11-25-ImpDefBug.ll │ │ │ ├── 2010-02-04-EmptyGlobal.ll │ │ │ ├── 2010-02-12-saveCR.ll │ │ │ ├── 2010-03-09-indirect-call.ll │ │ │ ├── 2010-04-01-MachineCSEBug.ll │ │ │ ├── 2010-04-07-DbgValueOtherTargets.ll │ │ │ ├── 2010-05-03-retaddr1.ll │ │ │ ├── Atomics-32.ll │ │ │ ├── Atomics-64.ll │ │ │ ├── Frames-alloca.ll │ │ │ ├── Frames-large.ll │ │ │ ├── Frames-leaf.ll │ │ │ ├── Frames-small.ll │ │ │ ├── LargeAbsoluteAddr.ll │ │ │ ├── addc.ll │ │ │ ├── addi-reassoc.ll │ │ │ ├── align.ll │ │ │ ├── and-branch.ll │ │ │ ├── and-elim.ll │ │ │ ├── and-imm.ll │ │ │ ├── and_add.ll │ │ │ ├── and_sext.ll │ │ │ ├── and_sra.ll │ │ │ ├── atomic-1.ll │ │ │ ├── atomic-2.ll │ │ │ ├── available-externally.ll │ │ │ ├── big-endian-actual-args.ll │ │ │ ├── big-endian-call-result.ll │ │ │ ├── big-endian-formal-args.ll │ │ │ ├── branch-opt.ll │ │ │ ├── bswap-load-store.ll │ │ │ ├── buildvec_canonicalize.ll │ │ │ ├── calls.ll │ │ │ ├── cmp-cmp.ll │ │ │ ├── compare-duplicate.ll │ │ │ ├── compare-simm.ll │ │ │ ├── constants.ll │ │ │ ├── cr_spilling.ll │ │ │ ├── cttz.ll │ │ │ ├── darwin-labels.ll │ │ │ ├── delete-node.ll │ │ │ ├── dg.exp │ │ │ ├── div-2.ll │ │ │ ├── empty-functions.ll │ │ │ ├── eqv-andc-orc-nor.ll │ │ │ ├── extsh.ll │ │ │ ├── fabs.ll │ │ │ ├── fma.ll │ │ │ ├── fnabs.ll │ │ │ ├── fneg.ll │ │ │ ├── fold-li.ll │ │ │ ├── fp-branch.ll │ │ │ ├── fp-int-fp.ll │ │ │ ├── fp_to_uint.ll │ │ │ ├── fpcopy.ll │ │ │ ├── frounds.ll │ │ │ ├── fsqrt.ll │ │ │ ├── hello.ll │ │ │ ├── hidden-vis-2.ll │ │ │ ├── hidden-vis.ll │ │ │ ├── i128-and-beyond.ll │ │ │ ├── i64_fp.ll │ │ │ ├── iabs.ll │ │ │ ├── illegal-element-type.ll │ │ │ ├── indirectbr.ll │ │ │ ├── inlineasm-copy.ll │ │ │ ├── int-fp-conv-0.ll │ │ │ ├── int-fp-conv-1.ll │ │ │ ├── invalid-memcpy.ll │ │ │ ├── inverted-bool-compares.ll │ │ │ ├── ispositive.ll │ │ │ ├── itofp128.ll │ │ │ ├── lha.ll │ │ │ ├── load-constant-addr.ll │ │ │ ├── long-compare.ll │ │ │ ├── longdbl-truncate.ll │ │ │ ├── lsr-postinc-pos.ll │ │ │ ├── mask64.ll │ │ │ ├── mem-rr-addr-mode.ll │ │ │ ├── mem_update.ll │ │ │ ├── mul-neg-power-2.ll │ │ │ ├── mul-with-overflow.ll │ │ │ ├── mulhs.ll │ │ │ ├── multiple-return-values.ll │ │ │ ├── neg.ll │ │ │ ├── no-dead-strip.ll │ │ │ ├── or-addressing-mode.ll │ │ │ ├── ppc-prologue.ll │ │ │ ├── ppcf128-1-opt.ll │ │ │ ├── ppcf128-1.ll │ │ │ ├── ppcf128-2.ll │ │ │ ├── ppcf128-3.ll │ │ │ ├── ppcf128-4.ll │ │ │ ├── pr3711_widen_bit.ll │ │ │ ├── private.ll │ │ │ ├── reg-coalesce-simple.ll │ │ │ ├── retaddr.ll │ │ │ ├── return-val-i128.ll │ │ │ ├── rlwimi-commute.ll │ │ │ ├── rlwimi-keep-rsh.ll │ │ │ ├── rlwimi.ll │ │ │ ├── rlwimi2.ll │ │ │ ├── rlwimi3.ll │ │ │ ├── rlwinm.ll │ │ │ ├── rlwinm2.ll │ │ │ ├── rotl-2.ll │ │ │ ├── rotl-64.ll │ │ │ ├── rotl.ll │ │ │ ├── sections.ll │ │ │ ├── select-cc.ll │ │ │ ├── select_lt0.ll │ │ │ ├── setcc_no_zext.ll │ │ │ ├── seteq-0.ll │ │ │ ├── shift128.ll │ │ │ ├── shl_elim.ll │ │ │ ├── shl_sext.ll │ │ │ ├── sign_ext_inreg1.ll │ │ │ ├── small-arguments.ll │ │ │ ├── stack-protector.ll │ │ │ ├── stfiwx-2.ll │ │ │ ├── stfiwx.ll │ │ │ ├── store-load-fwd.ll │ │ │ ├── stubs.ll │ │ │ ├── subc.ll │ │ │ ├── tailcall1-64.ll │ │ │ ├── tailcall1.ll │ │ │ ├── tailcallpic1.ll │ │ │ ├── tango.net.ftp.FtpClient.ll │ │ │ ├── trampoline.ll │ │ │ ├── unsafe-math.ll │ │ │ ├── vcmp-fold.ll │ │ │ ├── vec_auto_constant.ll │ │ │ ├── vec_br_cmp.ll │ │ │ ├── vec_buildvector_loadstore.ll │ │ │ ├── vec_call.ll │ │ │ ├── vec_constants.ll │ │ │ ├── vec_fneg.ll │ │ │ ├── vec_insert.ll │ │ │ ├── vec_misaligned.ll │ │ │ ├── vec_mul.ll │ │ │ ├── vec_perf_shuffle.ll │ │ │ ├── vec_shift.ll │ │ │ ├── vec_shuffle.ll │ │ │ ├── vec_splat.ll │ │ │ ├── vec_splat_constant.ll │ │ │ ├── vec_vrsave.ll │ │ │ ├── vec_zero.ll │ │ │ ├── vector-identity-shuffle.ll │ │ │ └── vector.ll │ │ ├── SPARC │ │ │ ├── 2006-01-22-BitConvertLegalize.ll │ │ │ ├── 2007-05-09-JumpTables.ll │ │ │ ├── 2007-07-05-LiveIntervalAssert.ll │ │ │ ├── 2008-10-10-InlineAsmMemoryOperand.ll │ │ │ ├── 2008-10-10-InlineAsmRegOperand.ll │ │ │ ├── 2009-08-28-PIC.ll │ │ │ ├── 2009-08-28-WeakLinkage.ll │ │ │ ├── 2010-04-07-DbgValueOtherTargets.ll │ │ │ ├── basictest.ll │ │ │ ├── ctpop.ll │ │ │ ├── dg.exp │ │ │ ├── private.ll │ │ │ └── xnor.ll │ │ ├── SystemZ │ │ │ ├── 00-RetVoid.ll │ │ │ ├── 01-RetArg.ll │ │ │ ├── 01-RetImm.ll │ │ │ ├── 02-MemArith.ll │ │ │ ├── 02-RetAdd.ll │ │ │ ├── 02-RetAddImm.ll │ │ │ ├── 02-RetAnd.ll │ │ │ ├── 02-RetAndImm.ll │ │ │ ├── 02-RetNeg.ll │ │ │ ├── 02-RetOr.ll │ │ │ ├── 02-RetOrImm.ll │ │ │ ├── 02-RetSub.ll │ │ │ ├── 02-RetSubImm.ll │ │ │ ├── 02-RetXor.ll │ │ │ ├── 02-RetXorImm.ll │ │ │ ├── 03-RetAddImmSubreg.ll │ │ │ ├── 03-RetAddSubreg.ll │ │ │ ├── 03-RetAndImmSubreg.ll │ │ │ ├── 03-RetAndSubreg.ll │ │ │ ├── 03-RetArgSubreg.ll │ │ │ ├── 03-RetImmSubreg.ll │ │ │ ├── 03-RetNegImmSubreg.ll │ │ │ ├── 03-RetOrImmSubreg.ll │ │ │ ├── 03-RetOrSubreg.ll │ │ │ ├── 03-RetSubImmSubreg.ll │ │ │ ├── 03-RetSubSubreg.ll │ │ │ ├── 03-RetXorImmSubreg.ll │ │ │ ├── 03-RetXorSubreg.ll │ │ │ ├── 04-RetShifts.ll │ │ │ ├── 05-LoadAddr.ll │ │ │ ├── 05-MemImmStores.ll │ │ │ ├── 05-MemLoadsStores.ll │ │ │ ├── 05-MemLoadsStores16.ll │ │ │ ├── 05-MemRegLoads.ll │ │ │ ├── 05-MemRegStores.ll │ │ │ ├── 06-CallViaStack.ll │ │ │ ├── 06-FrameIdxLoad.ll │ │ │ ├── 06-LocalFrame.ll │ │ │ ├── 06-SimpleCall.ll │ │ │ ├── 07-BrCond.ll │ │ │ ├── 07-BrCond32.ll │ │ │ ├── 07-BrUnCond.ll │ │ │ ├── 07-CmpImm.ll │ │ │ ├── 07-CmpImm32.ll │ │ │ ├── 07-SelectCC.ll │ │ │ ├── 08-DivRem.ll │ │ │ ├── 08-DivRemMemOp.ll │ │ │ ├── 08-SimpleMuls.ll │ │ │ ├── 09-DynamicAlloca.ll │ │ │ ├── 09-Globals.ll │ │ │ ├── 09-Switches.ll │ │ │ ├── 10-FuncsPic.ll │ │ │ ├── 10-GlobalsPic.ll │ │ │ ├── 11-BSwap.ll │ │ │ ├── 2009-05-29-InvalidRetResult.ll │ │ │ ├── 2009-06-02-And32Imm.ll │ │ │ ├── 2009-06-02-Rotate.ll │ │ │ ├── 2009-06-05-InvalidArgLoad.ll │ │ │ ├── 2009-07-04-Shl32.ll │ │ │ ├── 2009-07-05-Shifts.ll │ │ │ ├── 2009-07-10-BadIncomingArgOffset.ll │ │ │ ├── 2009-07-11-FloatBitConvert.ll │ │ │ ├── 2009-07-11-InvalidRIISel.ll │ │ │ ├── 2009-08-21-InlineAsmRConstraint.ll │ │ │ ├── 2009-08-22-FCopySign.ll │ │ │ ├── 2010-01-04-DivMem.ll │ │ │ ├── 2010-04-07-DbgValueOtherTargets.ll │ │ │ └── dg.exp │ │ ├── Thumb │ │ │ ├── 2007-01-31-RegInfoAssert.ll │ │ │ ├── 2007-02-02-JoinIntervalsCrash.ll │ │ │ ├── 2007-03-06-AddR7.ll │ │ │ ├── 2007-05-05-InvalidPushPop.ll │ │ │ ├── 2009-06-18-ThumbCommuteMul.ll │ │ │ ├── 2009-07-19-SPDecBug.ll │ │ │ ├── 2009-07-20-TwoAddrBug.ll │ │ │ ├── 2009-07-27-PEIAssert.ll │ │ │ ├── 2009-08-12-ConstIslandAssert.ll │ │ │ ├── 2009-08-12-RegInfoAssert.ll │ │ │ ├── 2009-08-20-ISelBug.ll │ │ │ ├── 2009-12-17-pre-regalloc-taildup.ll │ │ │ ├── 2010-01-15-local-alloc-spill-physical.ll │ │ │ ├── 2010-04-07-DbgValueOtherTargets.ll │ │ │ ├── 2010-06-18-SibCallCrash.ll │ │ │ ├── 2010-07-01-FuncAlign.ll │ │ │ ├── 2010-07-15-debugOrdering.ll │ │ │ ├── asmprinter-bug.ll │ │ │ ├── barrier.ll │ │ │ ├── dg.exp │ │ │ ├── dyn-stackalloc.ll │ │ │ ├── fpconv.ll │ │ │ ├── fpow.ll │ │ │ ├── frame_thumb.ll │ │ │ ├── iabs.ll │ │ │ ├── inlineasm-imm-thumb.ll │ │ │ ├── ispositive.ll │ │ │ ├── large-stack.ll │ │ │ ├── ldr_ext.ll │ │ │ ├── ldr_frame.ll │ │ │ ├── long-setcc.ll │ │ │ ├── long.ll │ │ │ ├── long_shift.ll │ │ │ ├── machine-licm.ll │ │ │ ├── mul.ll │ │ │ ├── pop.ll │ │ │ ├── push.ll │ │ │ ├── select.ll │ │ │ ├── stack-frame.ll │ │ │ ├── thumb-imm.ll │ │ │ ├── trap.ll │ │ │ ├── tst_teq.ll │ │ │ ├── unord.ll │ │ │ └── vargs.ll │ │ ├── Thumb2 │ │ │ ├── 2009-07-17-CrossRegClassCopy.ll │ │ │ ├── 2009-07-21-ISelBug.ll │ │ │ ├── 2009-07-23-CPIslandBug.ll │ │ │ ├── 2009-07-30-PEICrash.ll │ │ │ ├── 2009-08-01-WrongLDRBOpc.ll │ │ │ ├── 2009-08-02-CoalescerBug.ll │ │ │ ├── 2009-08-04-CoalescerAssert.ll │ │ │ ├── 2009-08-04-CoalescerBug.ll │ │ │ ├── 2009-08-04-ScavengerAssert.ll │ │ │ ├── 2009-08-04-SubregLoweringBug.ll │ │ │ ├── 2009-08-04-SubregLoweringBug2.ll │ │ │ ├── 2009-08-04-SubregLoweringBug3.ll │ │ │ ├── 2009-08-06-SpDecBug.ll │ │ │ ├── 2009-08-07-CoalescerBug.ll │ │ │ ├── 2009-08-07-NeonFPBug.ll │ │ │ ├── 2009-08-08-ScavengerAssert.ll │ │ │ ├── 2009-08-10-ISelBug.ll │ │ │ ├── 2009-09-28-ITBlockBug.ll │ │ │ ├── 2009-10-15-ITBlockBranch.ll │ │ │ ├── 2009-11-01-CopyReg2RegBug.ll │ │ │ ├── 2009-11-11-ScavengerAssert.ll │ │ │ ├── 2009-11-13-STRDBug.ll │ │ │ ├── 2009-12-01-LoopIVUsers.ll │ │ │ ├── 2010-01-06-TailDuplicateLabels.ll │ │ │ ├── 2010-01-19-RemovePredicates.ll │ │ │ ├── 2010-02-11-phi-cycle.ll │ │ │ ├── 2010-02-24-BigStack.ll │ │ │ ├── 2010-03-08-addi12-ccout.ll │ │ │ ├── 2010-03-15-AsmCCClobber.ll │ │ │ ├── 2010-04-15-DynAllocBug.ll │ │ │ ├── 2010-04-26-CopyRegCrash.ll │ │ │ ├── 2010-05-24-rsbs.ll │ │ │ ├── 2010-06-14-NEONCoalescer.ll │ │ │ ├── 2010-06-19-ITBlockCrash.ll │ │ │ ├── 2010-06-21-TailMergeBug.ll │ │ │ ├── 2010-08-10-VarSizedAllocaBug.ll │ │ │ ├── bfi.ll │ │ │ ├── bfx.ll │ │ │ ├── carry.ll │ │ │ ├── cortex-fp.ll │ │ │ ├── crash.ll │ │ │ ├── cross-rc-coalescing-1.ll │ │ │ ├── cross-rc-coalescing-2.ll │ │ │ ├── dg.exp │ │ │ ├── div.ll │ │ │ ├── frameless.ll │ │ │ ├── frameless2.ll │ │ │ ├── ifcvt-neon.ll │ │ │ ├── large-stack.ll │ │ │ ├── ldr-str-imm12.ll │ │ │ ├── load-global.ll │ │ │ ├── lsr-deficiency.ll │ │ │ ├── machine-licm-vdup.ll │ │ │ ├── machine-licm.ll │ │ │ ├── mul_const.ll │ │ │ ├── pic-load.ll │ │ │ ├── thumb2-adc.ll │ │ │ ├── thumb2-add.ll │ │ │ ├── thumb2-add2.ll │ │ │ ├── thumb2-add3.ll │ │ │ ├── thumb2-add4.ll │ │ │ ├── thumb2-add5.ll │ │ │ ├── thumb2-add6.ll │ │ │ ├── thumb2-and.ll │ │ │ ├── thumb2-and2.ll │ │ │ ├── thumb2-asr.ll │ │ │ ├── thumb2-asr2.ll │ │ │ ├── thumb2-badreg-operands.ll │ │ │ ├── thumb2-barrier.ll │ │ │ ├── thumb2-bcc.ll │ │ │ ├── thumb2-bfc.ll │ │ │ ├── thumb2-bic.ll │ │ │ ├── thumb2-branch.ll │ │ │ ├── thumb2-call-tc.ll │ │ │ ├── thumb2-call.ll │ │ │ ├── thumb2-cbnz.ll │ │ │ ├── thumb2-clz.ll │ │ │ ├── thumb2-cmn.ll │ │ │ ├── thumb2-cmn2.ll │ │ │ ├── thumb2-cmp.ll │ │ │ ├── thumb2-cmp2.ll │ │ │ ├── thumb2-eor.ll │ │ │ ├── thumb2-eor2.ll │ │ │ ├── thumb2-ifcvt1-tc.ll │ │ │ ├── thumb2-ifcvt1.ll │ │ │ ├── thumb2-ifcvt2.ll │ │ │ ├── thumb2-ifcvt3.ll │ │ │ ├── thumb2-jtb.ll │ │ │ ├── thumb2-ldm.ll │ │ │ ├── thumb2-ldr.ll │ │ │ ├── thumb2-ldr_ext.ll │ │ │ ├── thumb2-ldr_post.ll │ │ │ ├── thumb2-ldr_pre.ll │ │ │ ├── thumb2-ldrb.ll │ │ │ ├── thumb2-ldrd.ll │ │ │ ├── thumb2-ldrh.ll │ │ │ ├── thumb2-lsl.ll │ │ │ ├── thumb2-lsl2.ll │ │ │ ├── thumb2-lsr.ll │ │ │ ├── thumb2-lsr2.ll │ │ │ ├── thumb2-lsr3.ll │ │ │ ├── thumb2-mla.ll │ │ │ ├── thumb2-mls.ll │ │ │ ├── thumb2-mov.ll │ │ │ ├── thumb2-mul.ll │ │ │ ├── thumb2-mulhi.ll │ │ │ ├── thumb2-mvn.ll │ │ │ ├── thumb2-mvn2.ll │ │ │ ├── thumb2-neg.ll │ │ │ ├── thumb2-orn.ll │ │ │ ├── thumb2-orn2.ll │ │ │ ├── thumb2-orr.ll │ │ │ ├── thumb2-orr2.ll │ │ │ ├── thumb2-pack.ll │ │ │ ├── thumb2-rev.ll │ │ │ ├── thumb2-rev16.ll │ │ │ ├── thumb2-ror.ll │ │ │ ├── thumb2-ror2.ll │ │ │ ├── thumb2-rsb.ll │ │ │ ├── thumb2-rsb2.ll │ │ │ ├── thumb2-sbc.ll │ │ │ ├── thumb2-select.ll │ │ │ ├── thumb2-select_xform.ll │ │ │ ├── thumb2-shifter.ll │ │ │ ├── thumb2-smla.ll │ │ │ ├── thumb2-smul.ll │ │ │ ├── thumb2-spill-q.ll │ │ │ ├── thumb2-str.ll │ │ │ ├── thumb2-str_post.ll │ │ │ ├── thumb2-str_pre.ll │ │ │ ├── thumb2-strb.ll │ │ │ ├── thumb2-strh.ll │ │ │ ├── thumb2-sub.ll │ │ │ ├── thumb2-sub2.ll │ │ │ ├── thumb2-sub3.ll │ │ │ ├── thumb2-sub4.ll │ │ │ ├── thumb2-sub5.ll │ │ │ ├── thumb2-sxt_rot.ll │ │ │ ├── thumb2-tbb.ll │ │ │ ├── thumb2-tbh.ll │ │ │ ├── thumb2-teq.ll │ │ │ ├── thumb2-teq2.ll │ │ │ ├── thumb2-tst.ll │ │ │ ├── thumb2-tst2.ll │ │ │ ├── thumb2-uxt_rot.ll │ │ │ ├── thumb2-uxtb.ll │ │ │ ├── tls1.ll │ │ │ └── tls2.ll │ │ ├── X86 │ │ │ ├── 2003-08-03-CallArgLiveRanges.ll │ │ │ ├── 2003-08-23-DeadBlockTest.ll │ │ │ ├── 2003-11-03-GlobalBool.ll │ │ │ ├── 2004-02-12-Memcpy.ll │ │ │ ├── 2004-02-13-FrameReturnAddress.ll │ │ │ ├── 2004-02-14-InefficientStackPointer.ll │ │ │ ├── 2004-02-22-Casts.ll │ │ │ ├── 2004-03-30-Select-Max.ll │ │ │ ├── 2004-04-09-SameValueCoalescing.ll │ │ │ ├── 2004-04-13-FPCMOV-Crash.ll │ │ │ ├── 2004-06-10-StackifierCrash.ll │ │ │ ├── 2004-10-08-SelectSetCCFold.ll │ │ │ ├── 2005-01-17-CycleInDAG.ll │ │ │ ├── 2005-02-14-IllegalAssembler.ll │ │ │ ├── 2005-05-08-FPStackifierPHI.ll │ │ │ ├── 2006-01-19-ISelFoldingBug.ll │ │ │ ├── 2006-03-01-InstrSchedBug.ll │ │ │ ├── 2006-03-02-InstrSchedBug.ll │ │ │ ├── 2006-04-04-CrossBlockCrash.ll │ │ │ ├── 2006-04-27-ISelFoldingBug.ll │ │ │ ├── 2006-05-01-SchedCausingSpills.ll │ │ │ ├── 2006-05-02-InstrSched1.ll │ │ │ ├── 2006-05-02-InstrSched2.ll │ │ │ ├── 2006-05-08-CoalesceSubRegClass.ll │ │ │ ├── 2006-05-08-InstrSched.ll │ │ │ ├── 2006-05-11-InstrSched.ll │ │ │ ├── 2006-05-17-VectorArg.ll │ │ │ ├── 2006-05-22-FPSetEQ.ll │ │ │ ├── 2006-05-25-CycleInDAG.ll │ │ │ ├── 2006-07-10-InlineAsmAConstraint.ll │ │ │ ├── 2006-07-12-InlineAsmQConstraint.ll │ │ │ ├── 2006-07-19-ATTAsm.ll │ │ │ ├── 2006-07-20-InlineAsm.ll │ │ │ ├── 2006-07-28-AsmPrint-Long-As-Pointer.ll │ │ │ ├── 2006-07-31-SingleRegClass.ll │ │ │ ├── 2006-08-07-CycleInDAG.ll │ │ │ ├── 2006-08-16-CycleInDAG.ll │ │ │ ├── 2006-08-21-ExtraMovInst.ll │ │ │ ├── 2006-09-01-CycleInDAG.ll │ │ │ ├── 2006-10-02-BoolRetCrash.ll │ │ │ ├── 2006-10-07-ScalarSSEMiscompile.ll │ │ │ ├── 2006-10-09-CycleInDAG.ll │ │ │ ├── 2006-10-10-FindModifiedNodeSlotBug.ll │ │ │ ├── 2006-10-12-CycleInDAG.ll │ │ │ ├── 2006-10-13-CycleInDAG.ll │ │ │ ├── 2006-10-19-SwitchUnnecessaryBranching.ll │ │ │ ├── 2006-11-12-CSRetCC.ll │ │ │ ├── 2006-11-17-IllegalMove.ll │ │ │ ├── 2006-11-27-SelectLegalize.ll │ │ │ ├── 2006-11-28-Memcpy.ll │ │ │ ├── 2006-12-16-InlineAsmCrash.ll │ │ │ ├── 2006-12-19-IntelSyntax.ll │ │ │ ├── 2007-01-08-InstrSched.ll │ │ │ ├── 2007-01-08-X86-64-Pointer.ll │ │ │ ├── 2007-01-13-StackPtrIndex.ll │ │ │ ├── 2007-01-29-InlineAsm-ir.ll │ │ │ ├── 2007-02-04-OrAddrMode.ll │ │ │ ├── 2007-02-16-BranchFold.ll │ │ │ ├── 2007-02-19-LiveIntervalAssert.ll │ │ │ ├── 2007-02-23-DAGCombine-Miscompile.ll │ │ │ ├── 2007-02-25-FastCCStack.ll │ │ │ ├── 2007-03-01-SpillerCrash.ll │ │ │ ├── 2007-03-15-GEP-Idx-Sink.ll │ │ │ ├── 2007-03-16-InlineAsm.ll │ │ │ ├── 2007-03-18-LiveIntervalAssert.ll │ │ │ ├── 2007-03-24-InlineAsmMultiRegConstraint.ll │ │ │ ├── 2007-03-24-InlineAsmPModifier.ll │ │ │ ├── 2007-03-24-InlineAsmVectorOp.ll │ │ │ ├── 2007-03-24-InlineAsmXConstraint.ll │ │ │ ├── 2007-03-26-CoalescerBug.ll │ │ │ ├── 2007-04-08-InlineAsmCrash.ll │ │ │ ├── 2007-04-11-InlineAsmVectorResult.ll │ │ │ ├── 2007-04-17-LiveIntervalAssert.ll │ │ │ ├── 2007-04-24-Huge-Stack.ll │ │ │ ├── 2007-04-24-VectorCrash.ll │ │ │ ├── 2007-04-25-MMX-PADDQ.ll │ │ │ ├── 2007-04-27-InlineAsm-IntMemInput.ll │ │ │ ├── 2007-05-05-Personality.ll │ │ │ ├── 2007-05-05-VecCastExpand.ll │ │ │ ├── 2007-05-07-InvokeSRet.ll │ │ │ ├── 2007-05-14-LiveIntervalAssert.ll │ │ │ ├── 2007-05-15-maskmovq.ll │ │ │ ├── 2007-05-17-ShuffleISelBug.ll │ │ │ ├── 2007-06-04-X86-64-CtorAsmBugs.ll │ │ │ ├── 2007-06-04-tailmerge4.ll │ │ │ ├── 2007-06-05-LSR-Dominator.ll │ │ │ ├── 2007-06-15-IntToMMX.ll │ │ │ ├── 2007-06-28-X86-64-isel.ll │ │ │ ├── 2007-06-29-DAGCombinerBug.ll │ │ │ ├── 2007-06-29-VecFPConstantCSEBug.ll │ │ │ ├── 2007-07-03-GR64ToVR64.ll │ │ │ ├── 2007-07-10-StackerAssert.ll │ │ │ ├── 2007-07-18-Vector-Extract.ll │ │ │ ├── 2007-08-01-LiveVariablesBug.ll │ │ │ ├── 2007-08-09-IllegalX86-64Asm.ll │ │ │ ├── 2007-08-10-SignExtSubreg.ll │ │ │ ├── 2007-08-13-AppendingLinkage.ll │ │ │ ├── 2007-09-05-InvalidAsm.ll │ │ │ ├── 2007-09-06-ExtWeakAliasee.ll │ │ │ ├── 2007-09-17-ObjcFrameEH.ll │ │ │ ├── 2007-09-18-ShuffleXformBug.ll │ │ │ ├── 2007-09-27-LDIntrinsics.ll │ │ │ ├── 2007-10-04-AvoidEFLAGSCopy.ll │ │ │ ├── 2007-10-05-3AddrConvert.ll │ │ │ ├── 2007-10-12-CoalesceExtSubReg.ll │ │ │ ├── 2007-10-12-SpillerUnfold1.ll │ │ │ ├── 2007-10-12-SpillerUnfold2.ll │ │ │ ├── 2007-10-14-CoalescerCrash.ll │ │ │ ├── 2007-10-15-CoalescerCrash.ll │ │ │ ├── 2007-10-16-CoalescerCrash.ll │ │ │ ├── 2007-10-16-fp80_select.ll │ │ │ ├── 2007-10-17-IllegalAsm.ll │ │ │ ├── 2007-10-19-SpillerUnfold.ll │ │ │ ├── 2007-10-28-inlineasm-q-modifier.ll │ │ │ ├── 2007-10-29-ExtendSetCC.ll │ │ │ ├── 2007-10-30-LSRCrash.ll │ │ │ ├── 2007-10-31-extractelement-i64.ll │ │ │ ├── 2007-11-01-ISelCrash.ll │ │ │ ├── 2007-11-02-BadAsm.ll │ │ │ ├── 2007-11-03-x86-64-q-constraint.ll │ │ │ ├── 2007-11-04-LiveIntervalCrash.ll │ │ │ ├── 2007-11-04-LiveVariablesBug.ll │ │ │ ├── 2007-11-04-rip-immediate-constant.ll │ │ │ ├── 2007-11-06-InstrSched.ll │ │ │ ├── 2007-11-07-MulBy4.ll │ │ │ ├── 2007-11-30-LoadFolding-Bug.ll │ │ │ ├── 2007-12-11-FoldImpDefSpill.ll │ │ │ ├── 2007-12-16-BURRSchedCrash.ll │ │ │ ├── 2007-12-18-LoadCSEBug.ll │ │ │ ├── 2008-01-08-IllegalCMP.ll │ │ │ ├── 2008-01-08-SchedulerCrash.ll │ │ │ ├── 2008-01-09-LongDoubleSin.ll │ │ │ ├── 2008-01-16-FPStackifierAssert.ll │ │ │ ├── 2008-01-16-InvalidDAGCombineXform.ll │ │ │ ├── 2008-01-16-Trampoline.ll │ │ │ ├── 2008-02-05-ISelCrash.ll │ │ │ ├── 2008-02-06-LoadFoldingBug.ll │ │ │ ├── 2008-02-08-LoadFoldingBug.ll │ │ │ ├── 2008-02-14-BitMiscompile.ll │ │ │ ├── 2008-02-18-TailMergingBug.ll │ │ │ ├── 2008-02-20-InlineAsmClobber.ll │ │ │ ├── 2008-02-22-LocalRegAllocBug.ll │ │ │ ├── 2008-02-22-ReMatBug.ll │ │ │ ├── 2008-02-25-InlineAsmBug.ll │ │ │ ├── 2008-02-25-X86-64-CoalescerBug.ll │ │ │ ├── 2008-02-26-AsmDirectMemOp.ll │ │ │ ├── 2008-02-27-DeadSlotElimBug.ll │ │ │ ├── 2008-02-27-PEICrash.ll │ │ │ ├── 2008-03-06-frem-fpstack.ll │ │ │ ├── 2008-03-07-APIntBug.ll │ │ │ ├── 2008-03-10-RegAllocInfLoop.ll │ │ │ ├── 2008-03-12-ThreadLocalAlias.ll │ │ │ ├── 2008-03-13-TwoAddrPassCrash.ll │ │ │ ├── 2008-03-14-SpillerCrash.ll │ │ │ ├── 2008-03-18-CoalescerBug.ll │ │ │ ├── 2008-03-19-DAGCombinerBug.ll │ │ │ ├── 2008-03-23-DarwinAsmComments.ll │ │ │ ├── 2008-03-25-TwoAddrPassBug.ll │ │ │ ├── 2008-03-31-SpillerFoldingBug.ll │ │ │ ├── 2008-04-02-unnamedEH.ll │ │ │ ├── 2008-04-08-CoalescerCrash.ll │ │ │ ├── 2008-04-09-BranchFolding.ll │ │ │ ├── 2008-04-15-LiveVariableBug.ll │ │ │ ├── 2008-04-16-CoalescerBug.ll │ │ │ ├── 2008-04-16-ReMatBug.ll │ │ │ ├── 2008-04-17-CoalescerBug.ll │ │ │ ├── 2008-04-24-MemCpyBug.ll │ │ │ ├── 2008-04-24-pblendw-fold-crash.ll │ │ │ ├── 2008-04-26-Asm-Optimize-Imm.ll │ │ │ ├── 2008-04-28-CoalescerBug.ll │ │ │ ├── 2008-04-28-CyclicSchedUnit.ll │ │ │ ├── 2008-05-01-InvalidOrdCompare.ll │ │ │ ├── 2008-05-09-PHIElimBug.ll │ │ │ ├── 2008-05-09-ShuffleLoweringBug.ll │ │ │ ├── 2008-05-12-tailmerge-5.ll │ │ │ ├── 2008-05-21-CoalescerBug.ll │ │ │ ├── 2008-05-22-FoldUnalignedLoad.ll │ │ │ ├── 2008-05-28-CoalescerBug.ll │ │ │ ├── 2008-05-28-LocalRegAllocBug.ll │ │ │ ├── 2008-06-04-MemCpyLoweringBug.ll │ │ │ ├── 2008-06-13-NotVolatileLoadStore.ll │ │ │ ├── 2008-06-13-VolatileLoadStore.ll │ │ │ ├── 2008-06-16-SubregsBug.ll │ │ │ ├── 2008-06-18-BadShuffle.ll │ │ │ ├── 2008-06-25-VecISelBug.ll │ │ │ ├── 2008-07-07-DanglingDeadInsts.ll │ │ │ ├── 2008-07-09-ELFSectionAttributes.ll │ │ │ ├── 2008-07-11-SHLBy1.ll │ │ │ ├── 2008-07-11-SpillerBug.ll │ │ │ ├── 2008-07-16-CoalescerCrash.ll │ │ │ ├── 2008-07-19-movups-spills.ll │ │ │ ├── 2008-07-22-CombinerCrash.ll │ │ │ ├── 2008-07-23-VSetCC.ll │ │ │ ├── 2008-08-05-SpillerBug.ll │ │ │ ├── 2008-08-06-CmpStride.ll │ │ │ ├── 2008-08-06-RewriterBug.ll │ │ │ ├── 2008-08-17-UComiCodeGenBug.ll │ │ │ ├── 2008-08-19-SubAndFetch.ll │ │ │ ├── 2008-08-23-64Bit-maskmovq.ll │ │ │ ├── 2008-08-23-X86-64AsmBug.ll │ │ │ ├── 2008-08-25-AsmRegTypeMismatch.ll │ │ │ ├── 2008-08-31-EH_RETURN32.ll │ │ │ ├── 2008-08-31-EH_RETURN64.ll │ │ │ ├── 2008-09-05-sinttofp-2xi32.ll │ │ │ ├── 2008-09-09-LinearScanBug.ll │ │ │ ├── 2008-09-11-CoalescerBug.ll │ │ │ ├── 2008-09-11-CoalescerBug2.ll │ │ │ ├── 2008-09-17-inline-asm-1.ll │ │ │ ├── 2008-09-18-inline-asm-2.ll │ │ │ ├── 2008-09-19-RegAllocBug.ll │ │ │ ├── 2008-09-25-sseregparm-1.ll │ │ │ ├── 2008-09-26-FrameAddrBug.ll │ │ │ ├── 2008-09-29-ReMatBug.ll │ │ │ ├── 2008-09-29-VolatileBug.ll │ │ │ ├── 2008-10-02-Atomics32-2.ll │ │ │ ├── 2008-10-06-MMXISelBug.ll │ │ │ ├── 2008-10-06-x87ld-nan-1.ll │ │ │ ├── 2008-10-06-x87ld-nan-2.ll │ │ │ ├── 2008-10-07-SSEISelBug.ll │ │ │ ├── 2008-10-11-CallCrash.ll │ │ │ ├── 2008-10-13-CoalescerBug.ll │ │ │ ├── 2008-10-16-VecUnaryOp.ll │ │ │ ├── 2008-10-17-Asm64bitRConstraint.ll │ │ │ ├── 2008-10-20-AsmDoubleInI32.ll │ │ │ ├── 2008-10-24-FlippedCompare.ll │ │ │ ├── 2008-10-27-CoalescerBug.ll │ │ │ ├── 2008-10-27-StackRealignment.ll │ │ │ ├── 2008-10-29-ExpandVAARG.ll │ │ │ ├── 2008-11-03-F80VAARG.ll │ │ │ ├── 2008-11-06-testb.ll │ │ │ ├── 2008-11-13-inlineasm-3.ll │ │ │ ├── 2008-11-29-DivideConstant16bit.ll │ │ │ ├── 2008-11-29-DivideConstant16bitSigned.ll │ │ │ ├── 2008-11-29-ULT-Sign.ll │ │ │ ├── 2008-12-01-SpillerAssert.ll │ │ │ ├── 2008-12-01-loop-iv-used-outside-loop.ll │ │ │ ├── 2008-12-02-IllegalResultType.ll │ │ │ ├── 2008-12-02-dagcombine-1.ll │ │ │ ├── 2008-12-02-dagcombine-2.ll │ │ │ ├── 2008-12-02-dagcombine-3.ll │ │ │ ├── 2008-12-05-SpillerCrash.ll │ │ │ ├── 2008-12-12-PrivateEHSymbol.ll │ │ │ ├── 2008-12-16-BadShift.ll │ │ │ ├── 2008-12-16-dagcombine-4.ll │ │ │ ├── 2008-12-19-EarlyClobberBug.ll │ │ │ ├── 2008-12-22-dagcombine-5.ll │ │ │ ├── 2008-12-23-crazy-address.ll │ │ │ ├── 2008-12-23-dagcombine-6.ll │ │ │ ├── 2009-01-13-DoubleUpdate.ll │ │ │ ├── 2009-01-16-SchedulerBug.ll │ │ │ ├── 2009-01-16-UIntToFP.ll │ │ │ ├── 2009-01-18-ConstantExprCrash.ll │ │ │ ├── 2009-01-25-NoSSE.ll │ │ │ ├── 2009-01-26-WrongCheck.ll │ │ │ ├── 2009-01-27-NullStrings.ll │ │ │ ├── 2009-01-29-LocalRegAllocBug.ll │ │ │ ├── 2009-01-31-BigShift.ll │ │ │ ├── 2009-01-31-BigShift2.ll │ │ │ ├── 2009-01-31-BigShift3.ll │ │ │ ├── 2009-02-01-LargeMask.ll │ │ │ ├── 2009-02-03-AnalyzedTwice.ll │ │ │ ├── 2009-02-04-sext-i64-gep.ll │ │ │ ├── 2009-02-05-CoalescerBug.ll │ │ │ ├── 2009-02-08-CoalescerBug.ll │ │ │ ├── 2009-02-09-ivs-different-sizes.ll │ │ │ ├── 2009-02-11-codegenprepare-reuse.ll │ │ │ ├── 2009-02-12-DebugInfoVLA.ll │ │ │ ├── 2009-02-12-InlineAsm-nieZ-constraints.ll │ │ │ ├── 2009-02-12-SpillerBug.ll │ │ │ ├── 2009-02-20-PreAllocSplit-Crash.ll │ │ │ ├── 2009-02-21-ExtWeakInitializer.ll │ │ │ ├── 2009-02-25-CommuteBug.ll │ │ │ ├── 2009-02-26-MachineLICMBug.ll │ │ │ ├── 2009-03-03-BTHang.ll │ │ │ ├── 2009-03-03-BitcastLongDouble.ll │ │ │ ├── 2009-03-05-burr-list-crash.ll │ │ │ ├── 2009-03-07-FPConstSelect.ll │ │ │ ├── 2009-03-09-APIntCrash.ll │ │ │ ├── 2009-03-09-SpillerBug.ll │ │ │ ├── 2009-03-10-CoalescerBug.ll │ │ │ ├── 2009-03-11-CoalescerBug.ll │ │ │ ├── 2009-03-12-CPAlignBug.ll │ │ │ ├── 2009-03-13-PHIElimBug.ll │ │ │ ├── 2009-03-16-PHIElimInLPad.ll │ │ │ ├── 2009-03-16-SpillerBug.ll │ │ │ ├── 2009-03-23-LinearScanBug.ll │ │ │ ├── 2009-03-23-MultiUseSched.ll │ │ │ ├── 2009-03-23-i80-fp80.ll │ │ │ ├── 2009-03-25-TestBug.ll │ │ │ ├── 2009-03-26-NoImplicitFPBug.ll │ │ │ ├── 2009-04-09-InlineAsmCrash.ll │ │ │ ├── 2009-04-12-FastIselOverflowCrash.ll │ │ │ ├── 2009-04-12-picrel.ll │ │ │ ├── 2009-04-13-2AddrAssert-2.ll │ │ │ ├── 2009-04-13-2AddrAssert.ll │ │ │ ├── 2009-04-14-IllegalRegs.ll │ │ │ ├── 2009-04-16-SpillerUnfold.ll │ │ │ ├── 2009-04-20-LinearScanOpt.ll │ │ │ ├── 2009-04-21-NoReloadImpDef.ll │ │ │ ├── 2009-04-24.ll │ │ │ ├── 2009-04-25-CoalescerBug.ll │ │ │ ├── 2009-04-27-CoalescerAssert.ll │ │ │ ├── 2009-04-27-LiveIntervalsAssert.ll │ │ │ ├── 2009-04-27-LiveIntervalsAssert2.ll │ │ │ ├── 2009-04-27-LiveIntervalsBug.ll │ │ │ ├── 2009-04-29-IndirectDestOperands.ll │ │ │ ├── 2009-04-29-LinearScanBug.ll │ │ │ ├── 2009-04-29-RegAllocAssert.ll │ │ │ ├── 2009-04-scale.ll │ │ │ ├── 2009-05-08-InlineAsmIOffset.ll │ │ │ ├── 2009-05-11-tailmerge-crash.ll │ │ │ ├── 2009-05-19-SingleElementExtractElement.ll │ │ │ ├── 2009-05-23-available_externally.ll │ │ │ ├── 2009-05-23-dagcombine-shifts.ll │ │ │ ├── 2009-05-28-DAGCombineCrash.ll │ │ │ ├── 2009-05-30-ISelBug.ll │ │ │ ├── 2009-06-02-RewriterBug.ll │ │ │ ├── 2009-06-03-Win64DisableRedZone.ll │ │ │ ├── 2009-06-03-Win64SpillXMM.ll │ │ │ ├── 2009-06-04-VirtualLiveIn.ll │ │ │ ├── 2009-06-05-ScalarToVectorByteMMX.ll │ │ │ ├── 2009-06-05-VZextByteShort.ll │ │ │ ├── 2009-06-05-VariableIndexInsert.ll │ │ │ ├── 2009-06-05-sitofpCrash.ll │ │ │ ├── 2009-06-06-ConcatVectors.ll │ │ │ ├── 2009-06-07-ExpandMMXBitcast.ll │ │ │ ├── 2009-06-12-x86_64-tail-call-conv-out-of-sync-bug.ll │ │ │ ├── 2009-06-15-not-a-tail-call.ll │ │ │ ├── 2009-06-18-movlp-shuffle-register.ll │ │ │ ├── 2009-07-06-TwoAddrAssert.ll │ │ │ ├── 2009-07-07-SplitICmp.ll │ │ │ ├── 2009-07-09-ExtractBoolFromVector.ll │ │ │ ├── 2009-07-15-CoalescerBug.ll │ │ │ ├── 2009-07-16-CoalescerBug.ll │ │ │ ├── 2009-07-17-StackColoringBug.ll │ │ │ ├── 2009-07-19-AsmExtraOperands.ll │ │ │ ├── 2009-07-20-CoalescerBug.ll │ │ │ ├── 2009-07-20-DAGCombineBug.ll │ │ │ ├── 2009-08-02-mmx-scalar-to-vector.ll │ │ │ ├── 2009-08-06-branchfolder-crash.ll │ │ │ ├── 2009-08-06-inlineasm.ll │ │ │ ├── 2009-08-08-CastError.ll │ │ │ ├── 2009-08-12-badswitch.ll │ │ │ ├── 2009-08-14-Win64MemoryIndirectArg.ll │ │ │ ├── 2009-08-19-LoadNarrowingMiscompile.ll │ │ │ ├── 2009-08-23-SubRegReuseUndo.ll │ │ │ ├── 2009-08-23-linkerprivate.ll │ │ │ ├── 2009-09-10-LoadFoldingBug.ll │ │ │ ├── 2009-09-10-SpillComments.ll │ │ │ ├── 2009-09-16-CoalescerBug.ll │ │ │ ├── 2009-09-19-earlyclobber.ll │ │ │ ├── 2009-09-21-NoSpillLoopCount.ll │ │ │ ├── 2009-09-22-CoalescerBug.ll │ │ │ ├── 2009-09-23-LiveVariablesBug.ll │ │ │ ├── 2009-10-08-MachineLICMBug.ll │ │ │ ├── 2009-10-14-LiveVariablesBug.ll │ │ │ ├── 2009-10-19-EmergencySpill.ll │ │ │ ├── 2009-10-19-atomic-cmp-eflags.ll │ │ │ ├── 2009-10-25-RewriterBug.ll │ │ │ ├── 2009-11-04-SubregCoalescingBug.ll │ │ │ ├── 2009-11-13-VirtRegRewriterBug.ll │ │ │ ├── 2009-11-16-MachineLICM.ll │ │ │ ├── 2009-11-16-UnfoldMemOpBug.ll │ │ │ ├── 2009-11-17-UpdateTerminator.ll │ │ │ ├── 2009-11-18-TwoAddrKill.ll │ │ │ ├── 2009-11-25-ImpDefBug.ll │ │ │ ├── 2009-12-01-EarlyClobberBug.ll │ │ │ ├── 2009-12-11-TLSNoRedZone.ll │ │ │ ├── 20090313-signext.ll │ │ │ ├── 2010-01-05-ZExt-Shl.ll │ │ │ ├── 2010-01-07-ISelBug.ll │ │ │ ├── 2010-01-07-UAMemFeature.ll │ │ │ ├── 2010-01-08-Atomic64Bug.ll │ │ │ ├── 2010-01-11-ExtraPHIArg.ll │ │ │ ├── 2010-01-13-OptExtBug.ll │ │ │ ├── 2010-01-15-SelectionDAGCycle.ll │ │ │ ├── 2010-01-18-DbgValue.ll │ │ │ ├── 2010-01-19-OptExtBug.ll │ │ │ ├── 2010-02-01-DbgValueCrash.ll │ │ │ ├── 2010-02-01-TaillCallCrash.ll │ │ │ ├── 2010-02-03-DualUndef.ll │ │ │ ├── 2010-02-04-SchedulerBug.ll │ │ │ ├── 2010-02-11-NonTemporal.ll │ │ │ ├── 2010-02-12-CoalescerBug-Impdef.ll │ │ │ ├── 2010-02-15-ImplicitDefBug.ll │ │ │ ├── 2010-02-19-TailCallRetAddrBug.ll │ │ │ ├── 2010-02-23-DAGCombineBug.ll │ │ │ ├── 2010-02-23-DIV8rDefinesAX.ll │ │ │ ├── 2010-02-23-RematImplicitSubreg.ll │ │ │ ├── 2010-02-23-SingleDefPhiJoin.ll │ │ │ ├── 2010-03-04-Mul8Bug.ll │ │ │ ├── 2010-03-05-ConstantFoldCFG.ll │ │ │ ├── 2010-03-05-EFLAGS-Redef.ll │ │ │ ├── 2010-03-17-ISelBug.ll │ │ │ ├── 2010-04-06-SSEDomainFixCrash.ll │ │ │ ├── 2010-04-07-DbgValueOtherTargets.ll │ │ │ ├── 2010-04-08-CoalescerBug.ll │ │ │ ├── 2010-04-13-AnalyzeBranchCrash.ll │ │ │ ├── 2010-04-21-CoalescerBug.ll │ │ │ ├── 2010-04-23-mmx-movdq2q.ll │ │ │ ├── 2010-04-29-CoalescerCrash.ll │ │ │ ├── 2010-04-30-LocalAlloc-LandingPad.ll │ │ │ ├── 2010-05-03-CoalescerSubRegClobber.ll │ │ │ ├── 2010-05-05-LocalAllocEarlyClobber.ll │ │ │ ├── 2010-05-06-LocalInlineAsmClobber.ll │ │ │ ├── 2010-05-07-ldconvert.ll │ │ │ ├── 2010-05-10-DAGCombinerBug.ll │ │ │ ├── 2010-05-12-FastAllocKills.ll │ │ │ ├── 2010-05-16-nosseconversion.ll │ │ │ ├── 2010-05-25-DotDebugLoc.ll │ │ │ ├── 2010-05-26-DotDebugLoc.ll │ │ │ ├── 2010-05-26-FP_TO_INT-crash.ll │ │ │ ├── 2010-05-28-Crash.ll │ │ │ ├── 2010-06-01-DeadArg-DbgInfo.ll │ │ │ ├── 2010-06-09-FastAllocRegisters.ll │ │ │ ├── 2010-06-14-fast-isel-fs-load.ll │ │ │ ├── 2010-06-15-FastAllocEarlyCLobber.ll │ │ │ ├── 2010-06-24-g-constraint-crash.ll │ │ │ ├── 2010-06-25-CoalescerSubRegDefDead.ll │ │ │ ├── 2010-06-25-asm-RA-crash.ll │ │ │ ├── 2010-06-28-DbgEntryPC.ll │ │ │ ├── 2010-06-28-FastAllocTiedOperand.ll │ │ │ ├── 2010-06-28-matched-g-constraint.ll │ │ │ ├── 2010-07-02-UnfoldBug.ll │ │ │ ├── 2010-07-02-asm-alignstack.ll │ │ │ ├── 2010-07-06-DbgCrash.ll │ │ │ ├── 2010-07-06-asm-RIP.ll │ │ │ ├── 2010-07-11-FPStackLoneUse.ll │ │ │ ├── 2010-07-13-indirectXconstraint.ll │ │ │ ├── 2010-07-15-Crash.ll │ │ │ ├── 2010-07-29-SetccSimplify.ll │ │ │ ├── 2010-08-04-MaskedSignedCompare.ll │ │ │ ├── 2010-08-04-MingWCrash.ll │ │ │ ├── 2010-08-10-DbgConstant.ll │ │ │ ├── 2010-09-01-RemoveCopyByCommutingDef.ll │ │ │ ├── 3addr-16bit.ll │ │ │ ├── 3addr-or.ll │ │ │ ├── Atomics-32.ll │ │ │ ├── Atomics-64.ll │ │ │ ├── GC │ │ │ │ ├── alloc_loop.ll │ │ │ │ ├── argpromotion.ll │ │ │ │ ├── badreadproto.ll │ │ │ │ ├── badrootproto.ll │ │ │ │ ├── badwriteproto.ll │ │ │ │ ├── deadargelim.ll │ │ │ │ ├── dg.exp │ │ │ │ ├── fat.ll │ │ │ │ ├── inline.ll │ │ │ │ ├── inline2.ll │ │ │ │ ├── lower_gcroot.ll │ │ │ │ ├── outside.ll │ │ │ │ └── simple_ocaml.ll │ │ │ ├── MachineSink-CritEdge.ll │ │ │ ├── MachineSink-PHIUse.ll │ │ │ ├── SwitchLowering.ll │ │ │ ├── abi-isel.ll │ │ │ ├── add.ll │ │ │ ├── addr-label-difference.ll │ │ │ ├── aliases.ll │ │ │ ├── aligned-comm.ll │ │ │ ├── alignment.ll │ │ │ ├── all-ones-vector.ll │ │ │ ├── alloca-align-rounding-32.ll │ │ │ ├── alloca-align-rounding.ll │ │ │ ├── and-or-fold.ll │ │ │ ├── and-su.ll │ │ │ ├── anyext.ll │ │ │ ├── arg-cast.ll │ │ │ ├── asm-block-labels.ll │ │ │ ├── asm-global-imm.ll │ │ │ ├── asm-indirect-mem.ll │ │ │ ├── asm-modifier-P.ll │ │ │ ├── asm-modifier.ll │ │ │ ├── atomic_add.ll │ │ │ ├── atomic_op.ll │ │ │ ├── attribute-sections.ll │ │ │ ├── avoid-lea-scale2.ll │ │ │ ├── avoid-loop-align-2.ll │ │ │ ├── avoid-loop-align.ll │ │ │ ├── avx-128.ll │ │ │ ├── avx-256.ll │ │ │ ├── avx-intrinsics-x86.ll │ │ │ ├── avx-intrinsics-x86_64.ll │ │ │ ├── barrier-sse.ll │ │ │ ├── barrier.ll │ │ │ ├── bigstructret.ll │ │ │ ├── bigstructret2.ll │ │ │ ├── bitcast-int-to-vector.ll │ │ │ ├── bitcast.ll │ │ │ ├── bitcast2.ll │ │ │ ├── br-fold.ll │ │ │ ├── brcond.ll │ │ │ ├── break-anti-dependencies.ll │ │ │ ├── break-sse-dep.ll │ │ │ ├── bss_pagealigned.ll │ │ │ ├── bswap-inline-asm.ll │ │ │ ├── bswap.ll │ │ │ ├── bt.ll │ │ │ ├── byval.ll │ │ │ ├── byval2.ll │ │ │ ├── byval3.ll │ │ │ ├── byval4.ll │ │ │ ├── byval5.ll │ │ │ ├── byval6.ll │ │ │ ├── byval7.ll │ │ │ ├── call-imm.ll │ │ │ ├── call-push.ll │ │ │ ├── change-compare-stride-0.ll │ │ │ ├── change-compare-stride-1.ll │ │ │ ├── change-compare-stride-trickiness-0.ll │ │ │ ├── change-compare-stride-trickiness-1.ll │ │ │ ├── change-compare-stride-trickiness-2.ll │ │ │ ├── clz.ll │ │ │ ├── cmov.ll │ │ │ ├── cmp-test.ll │ │ │ ├── cmp0.ll │ │ │ ├── cmp2.ll │ │ │ ├── coalesce-esp.ll │ │ │ ├── coalescer-commute1.ll │ │ │ ├── coalescer-commute2.ll │ │ │ ├── coalescer-commute3.ll │ │ │ ├── coalescer-commute4.ll │ │ │ ├── coalescer-commute5.ll │ │ │ ├── coalescer-cross.ll │ │ │ ├── coalescer-remat.ll │ │ │ ├── code_placement.ll │ │ │ ├── code_placement_eh.ll │ │ │ ├── codegen-dce.ll │ │ │ ├── codegen-prepare-cast.ll │ │ │ ├── codegen-prepare-extload.ll │ │ │ ├── codemodel.ll │ │ │ ├── combine-lds.ll │ │ │ ├── combiner-aa-0.ll │ │ │ ├── combiner-aa-1.ll │ │ │ ├── commute-intrinsic.ll │ │ │ ├── commute-two-addr.ll │ │ │ ├── compare-add.ll │ │ │ ├── compare-inf.ll │ │ │ ├── compare_folding.ll │ │ │ ├── compiler_used.ll │ │ │ ├── complex-fca.ll │ │ │ ├── const-select.ll │ │ │ ├── constant-pool-remat-0.ll │ │ │ ├── constant-pool-sharing.ll │ │ │ ├── constpool.ll │ │ │ ├── convert-2-addr-3-addr-inc64.ll │ │ │ ├── copysign-zero.ll │ │ │ ├── crash-O0.ll │ │ │ ├── crash.ll │ │ │ ├── critical-edge-split.ll │ │ │ ├── cstring.ll │ │ │ ├── dag-rauw-cse.ll │ │ │ ├── dagcombine-buildvector.ll │ │ │ ├── dagcombine-cse.ll │ │ │ ├── darwin-bzero.ll │ │ │ ├── darwin-no-dead-strip.ll │ │ │ ├── darwin-quote.ll │ │ │ ├── darwin-stub.ll │ │ │ ├── dbg-byval-parameter.ll │ │ │ ├── dg.exp │ │ │ ├── discontiguous-loops.ll │ │ │ ├── div_const.ll │ │ │ ├── divrem.ll │ │ │ ├── dll-linkage.ll │ │ │ ├── dllexport.ll │ │ │ ├── dollar-name.ll │ │ │ ├── dyn-stackalloc.ll │ │ │ ├── empty-functions.ll │ │ │ ├── empty-struct-return-type.ll │ │ │ ├── epilogue.ll │ │ │ ├── extend.ll │ │ │ ├── extern_weak.ll │ │ │ ├── extmul128.ll │ │ │ ├── extmul64.ll │ │ │ ├── extract-combine.ll │ │ │ ├── extract-extract.ll │ │ │ ├── extractelement-from-arg.ll │ │ │ ├── extractelement-load.ll │ │ │ ├── extractelement-shuffle.ll │ │ │ ├── extractps.ll │ │ │ ├── fabs.ll │ │ │ ├── fast-cc-callee-pops.ll │ │ │ ├── fast-cc-merge-stack-adj.ll │ │ │ ├── fast-cc-pass-in-regs.ll │ │ │ ├── fast-isel-atomic.ll │ │ │ ├── fast-isel-bail.ll │ │ │ ├── fast-isel-bc.ll │ │ │ ├── fast-isel-call.ll │ │ │ ├── fast-isel-cmp-branch.ll │ │ │ ├── fast-isel-constpool.ll │ │ │ ├── fast-isel-fneg.ll │ │ │ ├── fast-isel-gep.ll │ │ │ ├── fast-isel-gv.ll │ │ │ ├── fast-isel-i1.ll │ │ │ ├── fast-isel-mem.ll │ │ │ ├── fast-isel-shift-imm.ll │ │ │ ├── fast-isel-tailcall.ll │ │ │ ├── fast-isel-tls.ll │ │ │ ├── fast-isel-x86.ll │ │ │ ├── fast-isel.ll │ │ │ ├── fastcall-correct-mangling.ll │ │ │ ├── fastcc-2.ll │ │ │ ├── fastcc-byval.ll │ │ │ ├── fastcc-sret.ll │ │ │ ├── fastcc.ll │ │ │ ├── fastcc3struct.ll │ │ │ ├── field-extract-use-trunc.ll │ │ │ ├── fildll.ll │ │ │ ├── fmul-zero.ll │ │ │ ├── fold-add.ll │ │ │ ├── fold-and-shift.ll │ │ │ ├── fold-call-2.ll │ │ │ ├── fold-call-3.ll │ │ │ ├── fold-call.ll │ │ │ ├── fold-imm.ll │ │ │ ├── fold-load.ll │ │ │ ├── fold-mul-lohi.ll │ │ │ ├── fold-pcmpeqd-0.ll │ │ │ ├── fold-pcmpeqd-1.ll │ │ │ ├── fold-pcmpeqd-2.ll │ │ │ ├── fold-sext-trunc.ll │ │ │ ├── force-align-stack.ll │ │ │ ├── fp-elim.ll │ │ │ ├── fp-immediate-shorten.ll │ │ │ ├── fp-in-intregs.ll │ │ │ ├── fp-stack-2results.ll │ │ │ ├── fp-stack-O0-crash.ll │ │ │ ├── fp-stack-compare.ll │ │ │ ├── fp-stack-direct-ret.ll │ │ │ ├── fp-stack-ret-conv.ll │ │ │ ├── fp-stack-ret-store.ll │ │ │ ├── fp-stack-ret.ll │ │ │ ├── fp-stack-retcopy.ll │ │ │ ├── fp-stack-set-st1.ll │ │ │ ├── fp-stack.ll │ │ │ ├── fp2sint.ll │ │ │ ├── fp_constant_op.ll │ │ │ ├── fp_load_cast_fold.ll │ │ │ ├── fp_load_fold.ll │ │ │ ├── fsxor-alignment.ll │ │ │ ├── full-lsr.ll │ │ │ ├── ga-offset.ll │ │ │ ├── gather-addresses.ll │ │ │ ├── ghc-cc.ll │ │ │ ├── ghc-cc64.ll │ │ │ ├── global-sections-tls.ll │ │ │ ├── global-sections.ll │ │ │ ├── h-register-addressing-32.ll │ │ │ ├── h-register-addressing-64.ll │ │ │ ├── h-register-store.ll │ │ │ ├── h-registers-0.ll │ │ │ ├── h-registers-1.ll │ │ │ ├── h-registers-2.ll │ │ │ ├── h-registers-3.ll │ │ │ ├── hidden-vis-2.ll │ │ │ ├── hidden-vis-3.ll │ │ │ ├── hidden-vis-4.ll │ │ │ ├── hidden-vis-pic.ll │ │ │ ├── hidden-vis.ll │ │ │ ├── i128-and-beyond.ll │ │ │ ├── i128-immediate.ll │ │ │ ├── i128-mul.ll │ │ │ ├── i128-ret.ll │ │ │ ├── i256-add.ll │ │ │ ├── i2k.ll │ │ │ ├── i64-mem-copy.ll │ │ │ ├── iabs.ll │ │ │ ├── illegal-insert.ll │ │ │ ├── illegal-vector-args-return.ll │ │ │ ├── imul-lea-2.ll │ │ │ ├── imul-lea.ll │ │ │ ├── inline-asm-2addr.ll │ │ │ ├── inline-asm-R-constraint.ll │ │ │ ├── inline-asm-flag-clobber.ll │ │ │ ├── inline-asm-fpstack.ll │ │ │ ├── inline-asm-fpstack2.ll │ │ │ ├── inline-asm-fpstack3.ll │ │ │ ├── inline-asm-fpstack4.ll │ │ │ ├── inline-asm-fpstack5.ll │ │ │ ├── inline-asm-modifier-n.ll │ │ │ ├── inline-asm-mrv.ll │ │ │ ├── inline-asm-out-regs.ll │ │ │ ├── inline-asm-pic.ll │ │ │ ├── inline-asm-q-regs.ll │ │ │ ├── inline-asm-tied.ll │ │ │ ├── inline-asm-x-scalar.ll │ │ │ ├── inline-asm.ll │ │ │ ├── ins_subreg_coalesce-1.ll │ │ │ ├── ins_subreg_coalesce-2.ll │ │ │ ├── ins_subreg_coalesce-3.ll │ │ │ ├── insert-positions.ll │ │ │ ├── insertelement-copytoregs.ll │ │ │ ├── insertelement-legalize.ll │ │ │ ├── int-intrinsic.ll │ │ │ ├── invalid-shift-immediate.ll │ │ │ ├── isel-sink.ll │ │ │ ├── isel-sink2.ll │ │ │ ├── isel-sink3.ll │ │ │ ├── isint.ll │ │ │ ├── isnan.ll │ │ │ ├── isnan2.ll │ │ │ ├── ispositive.ll │ │ │ ├── iv-users-in-other-loops.ll │ │ │ ├── jump_sign.ll │ │ │ ├── label-redefinition.ll │ │ │ ├── large-gep-scale.ll │ │ │ ├── ldzero.ll │ │ │ ├── lea-2.ll │ │ │ ├── lea-3.ll │ │ │ ├── lea-4.ll │ │ │ ├── lea-recursion.ll │ │ │ ├── lea.ll │ │ │ ├── leaf-fp-elim.ll │ │ │ ├── legalize-fmp-oeq-vector-select.ll │ │ │ ├── legalizedag_vec.ll │ │ │ ├── lfence.ll │ │ │ ├── licm-nested.ll │ │ │ ├── licm-symbol.ll │ │ │ ├── limited-prec.ll │ │ │ ├── live-out-reg-info.ll │ │ │ ├── liveness-local-regalloc.ll │ │ │ ├── lock-inst-encoding.ll │ │ │ ├── long-setcc.ll │ │ │ ├── longlong-deadload.ll │ │ │ ├── loop-blocks.ll │ │ │ ├── loop-hoist.ll │ │ │ ├── loop-strength-reduce-2.ll │ │ │ ├── loop-strength-reduce-3.ll │ │ │ ├── loop-strength-reduce.ll │ │ │ ├── loop-strength-reduce2.ll │ │ │ ├── loop-strength-reduce3.ll │ │ │ ├── loop-strength-reduce4.ll │ │ │ ├── loop-strength-reduce5.ll │ │ │ ├── loop-strength-reduce6.ll │ │ │ ├── loop-strength-reduce7.ll │ │ │ ├── loop-strength-reduce8.ll │ │ │ ├── lsr-delayed-fold.ll │ │ │ ├── lsr-i386.ll │ │ │ ├── lsr-interesting-step.ll │ │ │ ├── lsr-loop-exit-cond.ll │ │ │ ├── lsr-negative-stride.ll │ │ │ ├── lsr-nonaffine.ll │ │ │ ├── lsr-normalization.ll │ │ │ ├── lsr-overflow.ll │ │ │ ├── lsr-reuse-trunc.ll │ │ │ ├── lsr-reuse.ll │ │ │ ├── lsr-sort.ll │ │ │ ├── lsr-static-addr.ll │ │ │ ├── lsr-wrap.ll │ │ │ ├── machine-cse.ll │ │ │ ├── masked-iv-safe.ll │ │ │ ├── masked-iv-unsafe.ll │ │ │ ├── maskmovdqu.ll │ │ │ ├── mcinst-lowering-cmp0.ll │ │ │ ├── mcinst-lowering.ll │ │ │ ├── memcmp.ll │ │ │ ├── memcpy-2.ll │ │ │ ├── memcpy.ll │ │ │ ├── memmove-0.ll │ │ │ ├── memmove-1.ll │ │ │ ├── memmove-2.ll │ │ │ ├── memmove-3.ll │ │ │ ├── memmove-4.ll │ │ │ ├── memset-2.ll │ │ │ ├── memset-3.ll │ │ │ ├── memset.ll │ │ │ ├── memset64-on-x86-32.ll │ │ │ ├── mfence.ll │ │ │ ├── mingw-alloca.ll │ │ │ ├── mmx-arg-passing.ll │ │ │ ├── mmx-arg-passing2.ll │ │ │ ├── mmx-arith.ll │ │ │ ├── mmx-bitcast-to-i64.ll │ │ │ ├── mmx-copy-gprs.ll │ │ │ ├── mmx-emms.ll │ │ │ ├── mmx-insert-element.ll │ │ │ ├── mmx-pinsrw.ll │ │ │ ├── mmx-punpckhdq.ll │ │ │ ├── mmx-s2v.ll │ │ │ ├── mmx-shift.ll │ │ │ ├── mmx-shuffle.ll │ │ │ ├── mmx-vzmovl-2.ll │ │ │ ├── mmx-vzmovl.ll │ │ │ ├── movfs.ll │ │ │ ├── movgs.ll │ │ │ ├── mul-legalize.ll │ │ │ ├── mul-remat.ll │ │ │ ├── mul-shift-reassoc.ll │ │ │ ├── mul128.ll │ │ │ ├── mul64.ll │ │ │ ├── multiple-loop-post-inc.ll │ │ │ ├── multiple-return-values-cross-block.ll │ │ │ ├── multiple-return-values.ll │ │ │ ├── nancvt.ll │ │ │ ├── narrow_op-1.ll │ │ │ ├── neg-shl-add.ll │ │ │ ├── neg_fp.ll │ │ │ ├── negate-add-zero.ll │ │ │ ├── negative-sin.ll │ │ │ ├── negative-stride-fptosi-user.ll │ │ │ ├── negative-subscript.ll │ │ │ ├── negative_zero.ll │ │ │ ├── nobt.ll │ │ │ ├── nofence.ll │ │ │ ├── nosse-error1.ll │ │ │ ├── nosse-error2.ll │ │ │ ├── nosse-varargs.ll │ │ │ ├── object-size.ll │ │ │ ├── opt-ext-uses.ll │ │ │ ├── optimize-max-0.ll │ │ │ ├── optimize-max-1.ll │ │ │ ├── optimize-max-2.ll │ │ │ ├── optimize-max-3.ll │ │ │ ├── or-address.ll │ │ │ ├── or-branch.ll │ │ │ ├── overlap-shift.ll │ │ │ ├── packed_struct.ll │ │ │ ├── palignr-2.ll │ │ │ ├── palignr.ll │ │ │ ├── peep-test-0.ll │ │ │ ├── peep-test-1.ll │ │ │ ├── peep-test-2.ll │ │ │ ├── peep-test-3.ll │ │ │ ├── peep-vector-extract-concat.ll │ │ │ ├── peep-vector-extract-insert.ll │ │ │ ├── personality.ll │ │ │ ├── phi-immediate-factoring.ll │ │ │ ├── phys-reg-local-regalloc.ll │ │ │ ├── phys_subreg_coalesce-2.ll │ │ │ ├── phys_subreg_coalesce-3.ll │ │ │ ├── phys_subreg_coalesce.ll │ │ │ ├── pic-load-remat.ll │ │ │ ├── pic.ll │ │ │ ├── pic_jumptable.ll │ │ │ ├── pmul.ll │ │ │ ├── pmulld.ll │ │ │ ├── postalloc-coalescing.ll │ │ │ ├── postra-licm.ll │ │ │ ├── powi.ll │ │ │ ├── pr1462.ll │ │ │ ├── pr1489.ll │ │ │ ├── pr1505.ll │ │ │ ├── pr1505b.ll │ │ │ ├── pr2177.ll │ │ │ ├── pr2182.ll │ │ │ ├── pr2326.ll │ │ │ ├── pr2623.ll │ │ │ ├── pr2656.ll │ │ │ ├── pr2659.ll │ │ │ ├── pr2849.ll │ │ │ ├── pr2924.ll │ │ │ ├── pr2982.ll │ │ │ ├── pr3154.ll │ │ │ ├── pr3216.ll │ │ │ ├── pr3241.ll │ │ │ ├── pr3243.ll │ │ │ ├── pr3244.ll │ │ │ ├── pr3250.ll │ │ │ ├── pr3317.ll │ │ │ ├── pr3366.ll │ │ │ ├── pr3457.ll │ │ │ ├── pr3495-2.ll │ │ │ ├── pr3495.ll │ │ │ ├── pr3522.ll │ │ │ ├── pr7882.ll │ │ │ ├── pre-split1.ll │ │ │ ├── pre-split10.ll │ │ │ ├── pre-split11.ll │ │ │ ├── pre-split2.ll │ │ │ ├── pre-split3.ll │ │ │ ├── pre-split4.ll │ │ │ ├── pre-split5.ll │ │ │ ├── pre-split6.ll │ │ │ ├── pre-split7.ll │ │ │ ├── pre-split8.ll │ │ │ ├── pre-split9.ll │ │ │ ├── prefetch.ll │ │ │ ├── private-2.ll │ │ │ ├── private.ll │ │ │ ├── promote-assert-zext.ll │ │ │ ├── promote-i16.ll │ │ │ ├── ptrtoint-constexpr.ll │ │ │ ├── rdtsc.ll │ │ │ ├── red-zone.ll │ │ │ ├── red-zone2.ll │ │ │ ├── regpressure.ll │ │ │ ├── rem-2.ll │ │ │ ├── rem.ll │ │ │ ├── remat-constant.ll │ │ │ ├── remat-mov-0.ll │ │ │ ├── remat-scalar-zero.ll │ │ │ ├── ret-addr.ll │ │ │ ├── ret-i64-0.ll │ │ │ ├── ret-mmx.ll │ │ │ ├── rip-rel-address.ll │ │ │ ├── rodata-relocs.ll │ │ │ ├── rot16.ll │ │ │ ├── rot32.ll │ │ │ ├── rot64.ll │ │ │ ├── rotate.ll │ │ │ ├── rotate2.ll │ │ │ ├── scalar-extract.ll │ │ │ ├── scalar-min-max-fill-operand.ll │ │ │ ├── scalar_sse_minmax.ll │ │ │ ├── scalar_widen_div.ll │ │ │ ├── scalarize-bitcast.ll │ │ │ ├── scev-interchange.ll │ │ │ ├── select-aggregate.ll │ │ │ ├── select-zero-one.ll │ │ │ ├── select.ll │ │ │ ├── setcc.ll │ │ │ ├── setoeq.ll │ │ │ ├── setuge.ll │ │ │ ├── sext-i1.ll │ │ │ ├── sext-load.ll │ │ │ ├── sext-ret-val.ll │ │ │ ├── sext-select.ll │ │ │ ├── sext-subreg.ll │ │ │ ├── sext-trunc.ll │ │ │ ├── sfence.ll │ │ │ ├── shift-and.ll │ │ │ ├── shift-coalesce.ll │ │ │ ├── shift-codegen.ll │ │ │ ├── shift-combine.ll │ │ │ ├── shift-double.ll │ │ │ ├── shift-folding.ll │ │ │ ├── shift-i128.ll │ │ │ ├── shift-i256.ll │ │ │ ├── shift-one.ll │ │ │ ├── shift-parts.ll │ │ │ ├── shl-anyext.ll │ │ │ ├── shl_elim.ll │ │ │ ├── shrink-fp-const1.ll │ │ │ ├── shrink-fp-const2.ll │ │ │ ├── sibcall-2.ll │ │ │ ├── sibcall-3.ll │ │ │ ├── sibcall-4.ll │ │ │ ├── sibcall.ll │ │ │ ├── sincos.ll │ │ │ ├── sink-hoist.ll │ │ │ ├── small-byval-memcpy.ll │ │ │ ├── smul-with-overflow-2.ll │ │ │ ├── smul-with-overflow-3.ll │ │ │ ├── smul-with-overflow.ll │ │ │ ├── soft-fp.ll │ │ │ ├── splat-scalar-load.ll │ │ │ ├── split-eh-lpad-edges.ll │ │ │ ├── split-select.ll │ │ │ ├── split-vector-rem.ll │ │ │ ├── sret.ll │ │ │ ├── sse-align-0.ll │ │ │ ├── sse-align-1.ll │ │ │ ├── sse-align-10.ll │ │ │ ├── sse-align-11.ll │ │ │ ├── sse-align-12.ll │ │ │ ├── sse-align-2.ll │ │ │ ├── sse-align-3.ll │ │ │ ├── sse-align-4.ll │ │ │ ├── sse-align-5.ll │ │ │ ├── sse-align-6.ll │ │ │ ├── sse-align-7.ll │ │ │ ├── sse-align-8.ll │ │ │ ├── sse-align-9.ll │ │ │ ├── sse-commute.ll │ │ │ ├── sse-fcopysign.ll │ │ │ ├── sse-load-ret.ll │ │ │ ├── sse-minmax.ll │ │ │ ├── sse-varargs.ll │ │ │ ├── sse1.ll │ │ │ ├── sse2.ll │ │ │ ├── sse3.ll │ │ │ ├── sse41.ll │ │ │ ├── sse42.ll │ │ │ ├── sse_reload_fold.ll │ │ │ ├── stack-align.ll │ │ │ ├── stack-protector-linux.ll │ │ │ ├── stdarg.ll │ │ │ ├── stdcall.ll │ │ │ ├── store-empty-member.ll │ │ │ ├── store-fp-constant.ll │ │ │ ├── store-global-address.ll │ │ │ ├── store-narrow.ll │ │ │ ├── store_op_load_fold.ll │ │ │ ├── store_op_load_fold2.ll │ │ │ ├── storetrunc-fp.ll │ │ │ ├── stride-nine-with-base-reg.ll │ │ │ ├── stride-reuse.ll │ │ │ ├── sub-with-overflow.ll │ │ │ ├── subreg-to-reg-0.ll │ │ │ ├── subreg-to-reg-1.ll │ │ │ ├── subreg-to-reg-2.ll │ │ │ ├── subreg-to-reg-3.ll │ │ │ ├── subreg-to-reg-4.ll │ │ │ ├── subreg-to-reg-6.ll │ │ │ ├── switch-bt.ll │ │ │ ├── switch-crit-edge-constant.ll │ │ │ ├── switch-zextload.ll │ │ │ ├── swizzle.ll │ │ │ ├── tail-opts.ll │ │ │ ├── tailcall-fastisel.ll │ │ │ ├── tailcall-i1.ll │ │ │ ├── tailcall-largecode.ll │ │ │ ├── tailcall-stackalign.ll │ │ │ ├── tailcall-structret.ll │ │ │ ├── tailcall-void.ll │ │ │ ├── tailcall1.ll │ │ │ ├── tailcallbyval.ll │ │ │ ├── tailcallbyval64.ll │ │ │ ├── tailcallfp.ll │ │ │ ├── tailcallfp2.ll │ │ │ ├── tailcallpic1.ll │ │ │ ├── tailcallpic2.ll │ │ │ ├── tailcallstack64.ll │ │ │ ├── test-nofold.ll │ │ │ ├── test-shrink-bug.ll │ │ │ ├── test-shrink.ll │ │ │ ├── testl-commute.ll │ │ │ ├── tls-1.ll │ │ │ ├── tls-pic.ll │ │ │ ├── tls1.ll │ │ │ ├── tls10.ll │ │ │ ├── tls11.ll │ │ │ ├── tls12.ll │ │ │ ├── tls13.ll │ │ │ ├── tls14.ll │ │ │ ├── tls15.ll │ │ │ ├── tls2.ll │ │ │ ├── tls3.ll │ │ │ ├── tls4.ll │ │ │ ├── tls5.ll │ │ │ ├── tls6.ll │ │ │ ├── tls7.ll │ │ │ ├── tls8.ll │ │ │ ├── tls9.ll │ │ │ ├── trap.ll │ │ │ ├── trunc-to-bool.ll │ │ │ ├── twoaddr-coalesce-2.ll │ │ │ ├── twoaddr-coalesce.ll │ │ │ ├── twoaddr-lea.ll │ │ │ ├── twoaddr-pass-sink.ll │ │ │ ├── twoaddr-remat.ll │ │ │ ├── uint_to_fp-2.ll │ │ │ ├── uint_to_fp.ll │ │ │ ├── umul-with-carry.ll │ │ │ ├── umul-with-overflow.ll │ │ │ ├── unaligned-load.ll │ │ │ ├── unknown-location.ll │ │ │ ├── unreachable-loop-sinking.ll │ │ │ ├── urem-i8-constant.ll │ │ │ ├── use-add-flags.ll │ │ │ ├── v-binop-widen.ll │ │ │ ├── v-binop-widen2.ll │ │ │ ├── v2f32.ll │ │ │ ├── v4f32-immediate.ll │ │ │ ├── variable-sized-darwin-bzero.ll │ │ │ ├── variadic-node-pic.ll │ │ │ ├── vec-trunc-store.ll │ │ │ ├── vec_add.ll │ │ │ ├── vec_align.ll │ │ │ ├── vec_call.ll │ │ │ ├── vec_cast.ll │ │ │ ├── vec_clear.ll │ │ │ ├── vec_compare-2.ll │ │ │ ├── vec_compare.ll │ │ │ ├── vec_ctbits.ll │ │ │ ├── vec_ext_inreg.ll │ │ │ ├── vec_extract-sse4.ll │ │ │ ├── vec_extract.ll │ │ │ ├── vec_fneg.ll │ │ │ ├── vec_i64.ll │ │ │ ├── vec_ins_extract-1.ll │ │ │ ├── vec_ins_extract.ll │ │ │ ├── vec_insert-2.ll │ │ │ ├── vec_insert-3.ll │ │ │ ├── vec_insert-4.ll │ │ │ ├── vec_insert-5.ll │ │ │ ├── vec_insert-6.ll │ │ │ ├── vec_insert-7.ll │ │ │ ├── vec_insert-8.ll │ │ │ ├── vec_insert-9.ll │ │ │ ├── vec_insert.ll │ │ │ ├── vec_loadsingles.ll │ │ │ ├── vec_logical.ll │ │ │ ├── vec_return.ll │ │ │ ├── vec_select.ll │ │ │ ├── vec_set-2.ll │ │ │ ├── vec_set-3.ll │ │ │ ├── vec_set-4.ll │ │ │ ├── vec_set-5.ll │ │ │ ├── vec_set-6.ll │ │ │ ├── vec_set-7.ll │ │ │ ├── vec_set-8.ll │ │ │ ├── vec_set-9.ll │ │ │ ├── vec_set-A.ll │ │ │ ├── vec_set-B.ll │ │ │ ├── vec_set-C.ll │ │ │ ├── vec_set-D.ll │ │ │ ├── vec_set-E.ll │ │ │ ├── vec_set-F.ll │ │ │ ├── vec_set-G.ll │ │ │ ├── vec_set-H.ll │ │ │ ├── vec_set-I.ll │ │ │ ├── vec_set-J.ll │ │ │ ├── vec_set.ll │ │ │ ├── vec_shift.ll │ │ │ ├── vec_shift2.ll │ │ │ ├── vec_shift3.ll │ │ │ ├── vec_shift4.ll │ │ │ ├── vec_shuffle-11.ll │ │ │ ├── vec_shuffle-14.ll │ │ │ ├── vec_shuffle-15.ll │ │ │ ├── vec_shuffle-16.ll │ │ │ ├── vec_shuffle-17.ll │ │ │ ├── vec_shuffle-18.ll │ │ │ ├── vec_shuffle-19.ll │ │ │ ├── vec_shuffle-20.ll │ │ │ ├── vec_shuffle-22.ll │ │ │ ├── vec_shuffle-23.ll │ │ │ ├── vec_shuffle-24.ll │ │ │ ├── vec_shuffle-25.ll │ │ │ ├── vec_shuffle-26.ll │ │ │ ├── vec_shuffle-27.ll │ │ │ ├── vec_shuffle-28.ll │ │ │ ├── vec_shuffle-30.ll │ │ │ ├── vec_shuffle-31.ll │ │ │ ├── vec_shuffle-34.ll │ │ │ ├── vec_shuffle-35.ll │ │ │ ├── vec_shuffle-36.ll │ │ │ ├── vec_shuffle-37.ll │ │ │ ├── vec_shuffle.ll │ │ │ ├── vec_splat-2.ll │ │ │ ├── vec_splat-3.ll │ │ │ ├── vec_splat-4.ll │ │ │ ├── vec_splat.ll │ │ │ ├── vec_ss_load_fold.ll │ │ │ ├── vec_zero-2.ll │ │ │ ├── vec_zero.ll │ │ │ ├── vec_zero_cse.ll │ │ │ ├── vector-intrinsics.ll │ │ │ ├── vector-rem.ll │ │ │ ├── vector-variable-idx.ll │ │ │ ├── vector.ll │ │ │ ├── vfcmp.ll │ │ │ ├── volatile.ll │ │ │ ├── vortex-bug.ll │ │ │ ├── vshift-1.ll │ │ │ ├── vshift-2.ll │ │ │ ├── vshift-3.ll │ │ │ ├── vshift-4.ll │ │ │ ├── vshift-5.ll │ │ │ ├── vshift_scalar.ll │ │ │ ├── vshift_split.ll │ │ │ ├── vshift_split2.ll │ │ │ ├── vsplit-and.ll │ │ │ ├── weak.ll │ │ │ ├── wide-integer-fold.ll │ │ │ ├── widen_arith-1.ll │ │ │ ├── widen_arith-2.ll │ │ │ ├── widen_arith-3.ll │ │ │ ├── widen_arith-4.ll │ │ │ ├── widen_arith-5.ll │ │ │ ├── widen_arith-6.ll │ │ │ ├── widen_cast-1.ll │ │ │ ├── widen_cast-2.ll │ │ │ ├── widen_cast-3.ll │ │ │ ├── widen_cast-4.ll │ │ │ ├── widen_cast-5.ll │ │ │ ├── widen_cast-6.ll │ │ │ ├── widen_conv-1.ll │ │ │ ├── widen_conv-2.ll │ │ │ ├── widen_conv-3.ll │ │ │ ├── widen_conv-4.ll │ │ │ ├── widen_extract-1.ll │ │ │ ├── widen_load-0.ll │ │ │ ├── widen_load-1.ll │ │ │ ├── widen_load-2.ll │ │ │ ├── widen_select-1.ll │ │ │ ├── widen_shuffle-1.ll │ │ │ ├── win_chkstk.ll │ │ │ ├── x86-64-and-mask.ll │ │ │ ├── x86-64-arg.ll │ │ │ ├── x86-64-asm.ll │ │ │ ├── x86-64-dead-stack-adjust.ll │ │ │ ├── x86-64-disp.ll │ │ │ ├── x86-64-frameaddr.ll │ │ │ ├── x86-64-gv-offset.ll │ │ │ ├── x86-64-jumps.ll │ │ │ ├── x86-64-malloc.ll │ │ │ ├── x86-64-mem.ll │ │ │ ├── x86-64-pic-1.ll │ │ │ ├── x86-64-pic-10.ll │ │ │ ├── x86-64-pic-11.ll │ │ │ ├── x86-64-pic-2.ll │ │ │ ├── x86-64-pic-3.ll │ │ │ ├── x86-64-pic-4.ll │ │ │ ├── x86-64-pic-5.ll │ │ │ ├── x86-64-pic-6.ll │ │ │ ├── x86-64-pic-7.ll │ │ │ ├── x86-64-pic-8.ll │ │ │ ├── x86-64-pic-9.ll │ │ │ ├── x86-64-ret0.ll │ │ │ ├── x86-64-shortint.ll │ │ │ ├── x86-64-sret-return.ll │ │ │ ├── x86-64-tls-1.ll │ │ │ ├── x86-64-varargs.ll │ │ │ ├── x86-frameaddr.ll │ │ │ ├── x86-frameaddr2.ll │ │ │ ├── x86-store-gv-addr.ll │ │ │ ├── xmm-r64.ll │ │ │ ├── xor-icmp.ll │ │ │ ├── xor.ll │ │ │ ├── zero-remat.ll │ │ │ ├── zext-inreg-0.ll │ │ │ ├── zext-inreg-1.ll │ │ │ ├── zext-sext.ll │ │ │ ├── zext-shl.ll │ │ │ └── zext-trunc.ll │ │ └── XCore │ │ │ ├── 2008-11-17-Shl64.ll │ │ │ ├── 2009-01-08-Crash.ll │ │ │ ├── 2009-01-14-Remat-Crash.ll │ │ │ ├── 2009-03-27-v2f64-param.ll │ │ │ ├── 2009-07-15-store192.ll │ │ │ ├── 2010-02-25-LSR-Crash.ll │ │ │ ├── 2010-04-07-DbgValueOtherTargets.ll │ │ │ ├── addsub64.ll │ │ │ ├── ashr.ll │ │ │ ├── basictest.ll │ │ │ ├── bigstructret.ll │ │ │ ├── bitrev.ll │ │ │ ├── constants.ll │ │ │ ├── cos.ll │ │ │ ├── dg.exp │ │ │ ├── exp.ll │ │ │ ├── exp2.ll │ │ │ ├── fneg.ll │ │ │ ├── getid.ll │ │ │ ├── globals.ll │ │ │ ├── indirectbr.ll │ │ │ ├── ladd_lsub_combine.ll │ │ │ ├── load.ll │ │ │ ├── log.ll │ │ │ ├── log10.ll │ │ │ ├── log2.ll │ │ │ ├── mul64.ll │ │ │ ├── pow.ll │ │ │ ├── powi.ll │ │ │ ├── private.ll │ │ │ ├── sext.ll │ │ │ ├── sin.ll │ │ │ ├── sqrt.ll │ │ │ ├── store.ll │ │ │ ├── switch.ll │ │ │ ├── switch_long.ll │ │ │ ├── tls.ll │ │ │ ├── trap.ll │ │ │ ├── unaligned_load.ll │ │ │ ├── unaligned_store.ll │ │ │ └── unaligned_store_combine.ll │ ├── DebugInfo │ │ ├── 2009-01-15-dbg_declare.ll │ │ ├── 2009-01-15-member.ll │ │ ├── 2009-03-03-deadstore.ll │ │ ├── 2009-03-03-store-to-load-forward.ll │ │ ├── 2009-10-08-DebugInfo-NullGlobalVariable.ll │ │ ├── 2009-10-16-Phi.ll │ │ ├── 2009-10-16-Scope.ll │ │ ├── 2009-11-03-InsertExtractValue.ll │ │ ├── 2009-11-05-DeadGlobalVariable.ll │ │ ├── 2009-11-06-InvalidDerivedType.ll │ │ ├── 2009-11-06-NamelessGlobalVariable.ll │ │ ├── 2009-11-10-CurrentFn.ll │ │ ├── 2009-11-10-ParentScope.ll │ │ ├── 2010-01-05-DbgScope.ll │ │ ├── 2010-01-19-DbgScope.ll │ │ ├── 2010-03-12-llc-crash.ll │ │ ├── 2010-03-19-DbgDeclare.ll │ │ ├── 2010-03-24-MemberFn.ll │ │ ├── 2010-03-30-InvalidDbgInfoCrash.ll │ │ ├── 2010-04-06-NestedFnDbgInfo.ll │ │ ├── 2010-04-13-PubType.ll │ │ ├── 2010-04-19-FramePtr.ll │ │ ├── 2010-04-25-CU-entry_pc.ll │ │ ├── 2010-05-03-DisableFramePtr.ll │ │ ├── 2010-05-03-OriginDIE.ll │ │ ├── 2010-05-10-MultipleCU.ll │ │ ├── 2010-06-29-InlinedFnLocalVar.ll │ │ ├── 2010-07-19-Crash.ll │ │ ├── 2010-08-04-StackVariable.ll │ │ ├── dg.exp │ │ ├── inheritance.ll │ │ └── printdbginfo2.ll │ ├── ExecutionEngine │ │ ├── 2002-12-16-ArgTest.ll │ │ ├── 2003-01-04-ArgumentBug.ll │ │ ├── 2003-01-04-LoopTest.ll │ │ ├── 2003-01-04-PhiTest.ll │ │ ├── 2003-01-09-SARTest.ll │ │ ├── 2003-01-10-FUCOM.ll │ │ ├── 2003-01-15-AlignmentTest.ll │ │ ├── 2003-05-06-LivenessClobber.ll │ │ ├── 2003-05-07-ArgumentTest.ll │ │ ├── 2003-05-11-PHIRegAllocBug.ll │ │ ├── 2003-06-04-bzip2-bug.ll │ │ ├── 2003-06-05-PHIBug.ll │ │ ├── 2003-08-15-AllocaAssertion.ll │ │ ├── 2003-08-21-EnvironmentTest.ll │ │ ├── 2003-08-23-RegisterAllocatePhysReg.ll │ │ ├── 2003-10-18-PHINode-ConstantExpr-CondCode-Failure.ll │ │ ├── 2005-12-02-TailCallBug.ll │ │ ├── 2007-12-10-APIntLoadStore.ll │ │ ├── 2008-06-05-APInt-OverAShr.ll │ │ ├── 2010-01-15-UndefValue.ll │ │ ├── dg.exp │ │ ├── fpbitcast.ll │ │ ├── hello.ll │ │ ├── hello2.ll │ │ ├── simplesttest.ll │ │ ├── simpletest.ll │ │ ├── stubs.ll │ │ ├── test-arith.ll │ │ ├── test-branch.ll │ │ ├── test-call.ll │ │ ├── test-cast.ll │ │ ├── test-constantexpr.ll │ │ ├── test-fp.ll │ │ ├── test-loadstore.ll │ │ ├── test-logical.ll │ │ ├── test-loop.ll │ │ ├── test-malloc.ll │ │ ├── test-phi.ll │ │ ├── test-ret.ll │ │ ├── test-setcond-fp.ll │ │ ├── test-setcond-int.ll │ │ └── test-shift.ll │ ├── Feature │ │ ├── NamedMDNode.ll │ │ ├── NamedMDNode2.ll │ │ ├── README.txt │ │ ├── aliases.ll │ │ ├── alignment.ll │ │ ├── basictest.ll │ │ ├── callingconventions.ll │ │ ├── calltest.ll │ │ ├── casttest.ll │ │ ├── cfgstructures.ll │ │ ├── constexpr.ll │ │ ├── constpointer.ll │ │ ├── dg.exp │ │ ├── escaped_label.ll │ │ ├── float.ll │ │ ├── fold-fpcast.ll │ │ ├── forwardreftest.ll │ │ ├── global_section.ll │ │ ├── globalredefinition.ll │ │ ├── globalredefinition3.ll │ │ ├── globalvars.ll │ │ ├── indirectcall.ll │ │ ├── indirectcall2.ll │ │ ├── inlineasm.ll │ │ ├── instructions.ll │ │ ├── intrinsics.ll │ │ ├── linker_private_linkages.ll │ │ ├── llvm2cpp.exp │ │ ├── load_module.ll │ │ ├── md_on_instruction.ll │ │ ├── memorymarkers.ll │ │ ├── metadata.ll │ │ ├── newcasts.ll │ │ ├── noalias-ret.ll │ │ ├── opaquetypes.ll │ │ ├── packed.ll │ │ ├── packed_struct.ll │ │ ├── paramattrs.ll │ │ ├── ppcld.ll │ │ ├── properties.ll │ │ ├── prototype.ll │ │ ├── recursivetype.ll │ │ ├── simplecalltest.ll │ │ ├── small.ll │ │ ├── smallest.ll │ │ ├── sparcld.ll │ │ ├── terminators.ll │ │ ├── testalloca.ll │ │ ├── testconstants.ll │ │ ├── testlogical.ll │ │ ├── testmemory.ll │ │ ├── testtype.ll │ │ ├── testvarargs.ll │ │ ├── undefined.ll │ │ ├── unreachable.ll │ │ ├── varargs.ll │ │ ├── varargs_new.ll │ │ ├── vector-cast-constant-exprs.ll │ │ ├── weak_constant.ll │ │ ├── weirdnames.ll │ │ └── x86ld.ll │ ├── FrontendAda │ │ ├── Support │ │ │ ├── element_copy.ads │ │ │ ├── fat_fields.ads │ │ │ ├── global_constant.ads │ │ │ ├── non_lvalue.ads │ │ │ ├── unc_constructor.ads │ │ │ ├── var_offset.ads │ │ │ └── var_size.ads │ │ ├── array_constructor.adb │ │ ├── array_range_ref.adb │ │ ├── array_ref.adb │ │ ├── array_size.adb │ │ ├── asm.adb │ │ ├── constant_fold.ads │ │ ├── debug_var_size.ads │ │ ├── dg.exp │ │ ├── element_copy.adb │ │ ├── emit_var.ads │ │ ├── fat_fields.adb │ │ ├── field_order.ads │ │ ├── global_constant.adb │ │ ├── init_size.ads │ │ ├── negative_field_offset.adb │ │ ├── non_bitfield.ads │ │ ├── non_lvalue.adb │ │ ├── placeholder.adb │ │ ├── switch.adb │ │ ├── unc_constructor.adb │ │ ├── var_offset.adb │ │ ├── var_size.adb │ │ ├── vce.adb │ │ └── vce_lv.adb │ ├── FrontendC++ │ │ ├── 2003-08-20-ExceptionFail.cpp │ │ ├── 2003-08-21-EmptyClass.cpp │ │ ├── 2003-08-24-Cleanup.cpp │ │ ├── 2003-08-27-TypeNamespaces.cpp │ │ ├── 2003-08-28-ForwardType.cpp │ │ ├── 2003-08-28-SaveExprBug.cpp │ │ ├── 2003-08-29-ArgPassingBug.cpp │ │ ├── 2003-08-31-StructLayout.cpp │ │ ├── 2003-09-22-CompositeExprValue.cpp │ │ ├── 2003-09-29-ArgumentNumberMismatch.cpp │ │ ├── 2003-09-30-CommaExprBug.cpp │ │ ├── 2003-09-30-ForIncrementExprBug.cpp │ │ ├── 2003-09-30-ForIncrementExprBug2.cpp │ │ ├── 2003-09-30-NestedFunctionDecl.cpp │ │ ├── 2003-10-17-BoolBitfields.cpp │ │ ├── 2003-10-21-InnerClass.cpp │ │ ├── 2003-10-27-VirtualBaseClassCrash.cpp │ │ ├── 2003-11-02-WeakLinkage.cpp │ │ ├── 2003-11-04-ArrayConstructors.cpp │ │ ├── 2003-11-04-CatchLabelName.cpp │ │ ├── 2003-11-08-ArrayAddress.cpp │ │ ├── 2003-11-18-EnumArray.cpp │ │ ├── 2003-11-18-PtrMemConstantInitializer.cpp │ │ ├── 2003-11-25-ReturningOpaqueByValue.cpp │ │ ├── 2003-11-27-MultipleInheritanceThunk.cpp │ │ ├── 2003-11-29-DuplicatedCleanupTest.cpp │ │ ├── 2003-12-08-ArrayOfPtrToMemberFunc.cpp │ │ ├── 2004-01-11-DynamicInitializedConstant.cpp │ │ ├── 2004-03-08-ReinterpretCastCopy.cpp │ │ ├── 2004-03-09-UnmangledBuiltinMethods.cpp │ │ ├── 2004-03-15-CleanupsAndGotos.cpp │ │ ├── 2004-06-08-LateTemplateInstantiation.cpp │ │ ├── 2004-09-27-CompilerCrash.cpp │ │ ├── 2004-09-27-DidntEmitTemplate.cpp │ │ ├── 2004-11-27-EmitsUnusedInlineFunctions.cpp │ │ ├── 2004-11-27-ExceptionCleanupAssertion.cpp │ │ ├── 2004-11-27-FriendDefaultArgCrash.cpp │ │ ├── 2004-11-27-InlineAsmFunctionRedefinition.cpp │ │ ├── 2005-01-03-StaticInitializers.cpp │ │ ├── 2005-02-11-AnonymousUnion.cpp │ │ ├── 2005-02-13-BadDynamicInit.cpp │ │ ├── 2005-02-14-BitFieldOffset.cpp │ │ ├── 2005-02-19-BitfieldStructCrash.cpp │ │ ├── 2005-02-19-UnnamedVirtualThunkArgument.cpp │ │ ├── 2005-02-20-BrokenReferenceTest.cpp │ │ ├── 2005-02-27-PlacementArrayNewCrash.cpp │ │ ├── 2005-07-21-VirtualBaseAccess.cpp │ │ ├── 2006-03-01-GimplifyCrash.cpp │ │ ├── 2006-03-06-C++RecurseCrash.cpp │ │ ├── 2006-09-08-powi.cpp │ │ ├── 2006-09-12-OpaqueStructCrash.cpp │ │ ├── 2006-09-27-Debug-Protection.cpp │ │ ├── 2006-10-30-ClassBitfield.cpp │ │ ├── 2006-11-06-StackTrace.cpp │ │ ├── 2006-11-20-GlobalSymbols.cpp │ │ ├── 2006-11-30-ConstantExprCrash.cpp │ │ ├── 2006-11-30-NoCompileUnit.cpp │ │ ├── 2006-11-30-Pubnames.cpp │ │ ├── 2007-01-02-UnboundedArray.cpp │ │ ├── 2007-01-06-ELF-Thunk-Sections.cpp │ │ ├── 2007-01-06-PtrMethodInit.cpp │ │ ├── 2007-03-27-FunctionVarRename.cpp │ │ ├── 2007-04-05-PackedBitFields-1.cpp │ │ ├── 2007-04-05-PackedBitFieldsOverlap-2.cpp │ │ ├── 2007-04-05-PackedBitFieldsOverlap.cpp │ │ ├── 2007-04-05-PackedBitFieldsSmall.cpp │ │ ├── 2007-04-05-StructPackedFieldUnpacked.cpp │ │ ├── 2007-04-10-PackedUnion.cpp │ │ ├── 2007-04-11-InlineStorageClassC++.cpp │ │ ├── 2007-04-14-FNoBuiltin.cpp │ │ ├── 2007-04-31-TryCatch.cpp │ │ ├── 2007-05-03-VectorInit.cpp │ │ ├── 2007-05-16-ReverseBitFieldCrash.cpp │ │ ├── 2007-05-23-TryFinally.cpp │ │ ├── 2007-07-04-NestedCatches.cpp │ │ ├── 2007-07-29-RestrictPtrArg.cpp │ │ ├── 2007-07-29-RestrictRefArg.cpp │ │ ├── 2007-08-01-RestrictMethod.cpp │ │ ├── 2007-09-10-RecursiveTypeResolution.cpp │ │ ├── 2007-10-01-StructResize.cpp │ │ ├── 2008-01-11-BadWarning.cpp │ │ ├── 2008-01-12-VecInit.cpp │ │ ├── 2008-05-07-CrazyOffsetOf.cpp │ │ ├── 2008-10-29-WrongOffset.cpp │ │ ├── 2009-02-07-VolatileArrayRefHack.cpp │ │ ├── 2009-02-16-CtorNames-dbg.cpp │ │ ├── 2009-03-17-dbg.cpp │ │ ├── 2009-04-21-DtorNames-dbg.cpp │ │ ├── 2009-04-23-bool2.cpp │ │ ├── 2009-05-04-PureConstNounwind.cpp │ │ ├── 2009-06-16-DebugInfoCrash.cpp │ │ ├── 2009-06-20-DarwinPPCLayout.cpp │ │ ├── 2009-06-30-ByrefBlock.cpp │ │ ├── 2009-07-15-LineNumbers.cpp │ │ ├── 2009-07-16-PrivateCopyConstructor.cpp │ │ ├── 2009-07-16-Using.cpp │ │ ├── 2009-08-05-ZeroInitWidth.cpp │ │ ├── 2009-08-11-VectorRetTy.cpp │ │ ├── 2009-09-04-modify-crash.cpp │ │ ├── 2009-09-09-packed-layout.cpp │ │ ├── 2009-10-27-crash.cpp │ │ ├── 2009-12-23-MissingSext.cpp │ │ ├── 2010-02-17-DbgArtificialArg.cpp │ │ ├── 2010-03-22-empty-baseclass.cpp │ │ ├── 2010-04-30-OptimizedMethod-Dbg.cpp │ │ ├── 2010-05-10-Var-DbgInfo.cpp │ │ ├── 2010-05-11-alwaysinlineinstantiation.cpp │ │ ├── 2010-05-12-PtrToMember-Dbg.cpp │ │ ├── 2010-06-21-LocalVarDbg.cpp │ │ ├── 2010-06-22-BitfieldInit.cpp │ │ ├── 2010-06-22-ZeroBitfield.cpp │ │ ├── 2010-07-19-nowarn.cpp │ │ ├── 2010-07-23-DeclLoc.cpp │ │ ├── 2010-08-31-ByValArg.cpp │ │ ├── alignstack.cpp │ │ ├── dg.exp │ │ ├── integration-O2.cpp │ │ ├── m64-ptr.cpp │ │ ├── member-alignment.cpp │ │ ├── ptr-to-method-devirt.cpp │ │ ├── thunk-linkonce-odr.cpp │ │ ├── varargs.cpp │ │ ├── weak-external.cpp │ │ └── x86-64-abi-sret-vs-2word-struct-param.cpp │ ├── FrontendC │ │ ├── 2002-01-23-LoadQISIReloadFailure.c │ │ ├── 2002-01-24-ComplexSpaceInType.c │ │ ├── 2002-01-24-HandleCallInsnSEGV.c │ │ ├── 2002-02-13-ConditionalInCall.c │ │ ├── 2002-02-13-ReloadProblem.c │ │ ├── 2002-02-13-TypeVarNameCollision.c │ │ ├── 2002-02-13-UnnamedLocal.c │ │ ├── 2002-02-14-EntryNodePreds.c │ │ ├── 2002-02-16-RenamingTest.c │ │ ├── 2002-02-17-ArgumentAddress.c │ │ ├── 2002-02-18-64bitConstant.c │ │ ├── 2002-02-18-StaticData.c │ │ ├── 2002-03-11-LargeCharInString.c │ │ ├── 2002-03-12-ArrayInitialization.c │ │ ├── 2002-03-12-StructInitialize.c │ │ ├── 2002-03-12-StructInitializer.c │ │ ├── 2002-03-14-BrokenPHINode.c │ │ ├── 2002-03-14-BrokenSSA.c │ │ ├── 2002-03-14-QuotesInStrConst.c │ │ ├── 2002-04-07-SwitchStmt.c │ │ ├── 2002-04-08-LocalArray.c │ │ ├── 2002-04-09-StructRetVal.c │ │ ├── 2002-04-10-StructParameters.c │ │ ├── 2002-05-23-StaticValues.c │ │ ├── 2002-05-23-TypeNameCollision.c │ │ ├── 2002-05-24-Alloca.c │ │ ├── 2002-06-25-FWriteInterfaceFailure.c │ │ ├── 2002-07-14-MiscListTests.c │ │ ├── 2002-07-14-MiscTests.c │ │ ├── 2002-07-14-MiscTests2.c │ │ ├── 2002-07-14-MiscTests3.c │ │ ├── 2002-07-16-HardStringInit.c │ │ ├── 2002-07-17-StringConstant.c │ │ ├── 2002-07-29-Casts.c │ │ ├── 2002-07-30-SubregSetAssertion.c │ │ ├── 2002-07-30-UnionTest.c │ │ ├── 2002-07-30-VarArgsCallFailure.c │ │ ├── 2002-07-31-BadAssert.c │ │ ├── 2002-07-31-SubregFailure.c │ │ ├── 2002-08-02-UnionTest.c │ │ ├── 2002-08-19-RecursiveLocals.c │ │ ├── 2002-09-08-PointerShifts.c │ │ ├── 2002-09-18-UnionProblem.c │ │ ├── 2002-09-19-StarInLabel.c │ │ ├── 2002-10-12-TooManyArguments.c │ │ ├── 2002-12-15-GlobalBoolTest.c │ │ ├── 2002-12-15-GlobalConstantTest.c │ │ ├── 2002-12-15-GlobalRedefinition.c │ │ ├── 2002-12-15-StructParameters.c │ │ ├── 2003-01-30-UnionInit.c │ │ ├── 2003-03-03-DeferredType.c │ │ ├── 2003-06-22-UnionCrash.c │ │ ├── 2003-06-23-GCC-fold-infinite-recursion.c │ │ ├── 2003-06-26-CFECrash.c │ │ ├── 2003-06-29-MultipleFunctionDefinition.c │ │ ├── 2003-07-22-ArrayAccessTypeSafety.c │ │ ├── 2003-08-06-BuiltinSetjmpLongjmp.c │ │ ├── 2003-08-17-DeadCodeShortCircuit.c │ │ ├── 2003-08-18-SigSetJmp.c │ │ ├── 2003-08-18-StructAsValue.c │ │ ├── 2003-08-20-BadBitfieldRef.c │ │ ├── 2003-08-20-PrototypeMismatch.c │ │ ├── 2003-08-20-vfork-bug.c │ │ ├── 2003-08-21-BinOp-Type-Mismatch.c │ │ ├── 2003-08-21-StmtExpr.c │ │ ├── 2003-08-21-WideString.c │ │ ├── 2003-08-23-LocalUnionTest.c │ │ ├── 2003-08-29-BitFieldStruct.c │ │ ├── 2003-08-29-HugeCharConst.c │ │ ├── 2003-08-29-StructLayoutBug.c │ │ ├── 2003-08-30-AggregateInitializer.c │ │ ├── 2003-08-30-LargeIntegerBitfieldMember.c │ │ ├── 2003-09-18-BitfieldTests.c │ │ ├── 2003-09-30-StructLayout.c │ │ ├── 2003-10-02-UnionLValueError.c │ │ ├── 2003-10-06-NegateExprType.c │ │ ├── 2003-10-09-UnionInitializerBug.c │ │ ├── 2003-10-28-ident.c │ │ ├── 2003-10-29-AsmRename.c │ │ ├── 2003-11-01-C99-CompoundLiteral.c │ │ ├── 2003-11-01-EmptyStructCrash.c │ │ ├── 2003-11-01-GlobalUnionInit.c │ │ ├── 2003-11-03-AddrArrayElement.c │ │ ├── 2003-11-04-EmptyStruct.c │ │ ├── 2003-11-04-OutOfMemory.c │ │ ├── 2003-11-08-PointerSubNotGetelementptr.c │ │ ├── 2003-11-12-VoidString.c │ │ ├── 2003-11-13-TypeSafety.c │ │ ├── 2003-11-16-StaticArrayInit.c │ │ ├── 2003-11-18-CondExprLValue.c │ │ ├── 2003-11-19-AddressOfRegister.c │ │ ├── 2003-11-19-BitFieldArray.c │ │ ├── 2003-11-20-Bitfields.c │ │ ├── 2003-11-20-ComplexDivision.c │ │ ├── 2003-11-20-UnionBitfield.c │ │ ├── 2003-11-26-PointerShift.c │ │ ├── 2003-11-27-ConstructorCast.c │ │ ├── 2003-11-27-UnionCtorInitialization.c │ │ ├── 2003-12-14-ExternInlineSupport.c │ │ ├── 2004-01-01-UnknownInitSize.c │ │ ├── 2004-01-08-ExternInlineRedefine.c │ │ ├── 2004-02-12-LargeAggregateCopy.c │ │ ├── 2004-02-13-BuiltinFrameReturnAddress.c │ │ ├── 2004-02-13-IllegalVararg.c │ │ ├── 2004-02-13-Memset.c │ │ ├── 2004-02-14-ZeroInitializer.c │ │ ├── 2004-02-20-Builtins.c │ │ ├── 2004-03-07-ComplexDivEquals.c │ │ ├── 2004-03-07-ExternalConstant.c │ │ ├── 2004-03-09-LargeArrayInitializers.c │ │ ├── 2004-03-15-SimpleIndirectGoto.c │ │ ├── 2004-03-16-AsmRegisterCrash.c │ │ ├── 2004-05-07-VarArrays.c │ │ ├── 2004-05-21-IncompleteEnum.c │ │ ├── 2004-06-08-OpaqueStructArg.c │ │ ├── 2004-06-17-UnorderedBuiltins.c │ │ ├── 2004-06-17-UnorderedCompares.c │ │ ├── 2004-06-18-VariableLengthArrayOfStructures.c │ │ ├── 2004-07-06-FunctionCast.c │ │ ├── 2004-08-06-LargeStructTest.c │ │ ├── 2004-11-25-UnnamedBitfieldPadding.c │ │ ├── 2004-11-27-InvalidConstantExpr.c │ │ ├── 2004-11-27-StaticFunctionRedeclare.c │ │ ├── 2004-11-27-VariableSizeInStructure.c │ │ ├── 2005-01-02-ConstantInits.c │ │ ├── 2005-01-02-PointerDifference.c │ │ ├── 2005-01-02-VAArgError-ICE.c │ │ ├── 2005-02-20-AggregateSAVEEXPR.c │ │ ├── 2005-02-27-MarkGlobalConstant.c │ │ ├── 2005-03-05-OffsetOfHack.c │ │ ├── 2005-03-06-OffsetOfStructCrash.c │ │ ├── 2005-03-11-Prefetch.c │ │ ├── 2005-04-09-ComplexOps.c │ │ ├── 2005-05-06-CountBuiltins.c │ │ ├── 2005-05-10-GlobalUnionInit.c │ │ ├── 2005-06-15-ExpandGotoInternalProblem.c │ │ ├── 2005-07-20-SqrtNoErrno.c │ │ ├── 2005-07-26-UnionInitCrash.c │ │ ├── 2005-07-28-IncorrectWeakGlobal.c │ │ ├── 2005-09-20-ComplexConstants.c │ │ ├── 2005-09-24-AsmUserPrefix.c │ │ ├── 2005-09-24-BitFieldCrash.c │ │ ├── 2005-10-18-VariableSizedElementCrash.c │ │ ├── 2005-12-04-AttributeUsed.c │ │ ├── 2005-12-04-DeclarationLineNumbers.c │ │ ├── 2006-01-13-Includes.c │ │ ├── 2006-01-13-StackSave.c │ │ ├── 2006-01-16-BitCountIntrinsicsUnsigned.c │ │ ├── 2006-01-23-FileScopeAsm.c │ │ ├── 2006-03-03-MissingInitializer.c │ │ ├── 2006-03-16-VectorCtor.c │ │ ├── 2006-03-17-KnRMismatch.c │ │ ├── 2006-05-01-AppleAlignmentPragma.c │ │ ├── 2006-05-19-SingleEltReturn.c │ │ ├── 2006-07-31-PR854.c │ │ ├── 2006-09-11-BitfieldRefCrash.c │ │ ├── 2006-09-18-fwrite-cast-crash.c │ │ ├── 2006-09-21-IncompleteElementType.c │ │ ├── 2006-09-25-DebugFilename.c │ │ ├── 2006-09-25-DebugFilename.h │ │ ├── 2006-09-28-SimpleAsm.c │ │ ├── 2006-10-30-ArrayCrash.c │ │ ├── 2006-12-14-ordered_expr.c │ │ ├── 2007-01-06-KNR-Proto.c │ │ ├── 2007-01-20-VectorICE.c │ │ ├── 2007-01-24-InlineAsmCModifier.c │ │ ├── 2007-02-04-AddrLValue-2.c │ │ ├── 2007-02-04-AddrLValue.c │ │ ├── 2007-02-04-EmptyStruct.c │ │ ├── 2007-02-04-WITH_SIZE_EXPR.c │ │ ├── 2007-02-05-nested.c │ │ ├── 2007-02-07-AddrLabel.c │ │ ├── 2007-02-16-VariableSizeStructArg.c │ │ ├── 2007-02-16-VoidPtrDiff.c │ │ ├── 2007-02-16-WritableStrings.c │ │ ├── 2007-02-25-C-DotDotDot.c │ │ ├── 2007-03-01-VarSizeArrayIdx.c │ │ ├── 2007-03-05-DataLayout.c │ │ ├── 2007-03-06-VarSizeInStruct1.c │ │ ├── 2007-03-06-VarSizeInStruct2.c │ │ ├── 2007-03-26-BitfieldAfterZeroWidth.c │ │ ├── 2007-03-26-ZeroWidthBitfield.c │ │ ├── 2007-03-27-ArrayCompatible.c │ │ ├── 2007-03-27-VarLengthArray.c │ │ ├── 2007-04-05-PackedBitFields-2.c │ │ ├── 2007-04-05-PackedBitFields.c │ │ ├── 2007-04-05-PackedStruct.c │ │ ├── 2007-04-05-PadBeforeZeroLengthField.c │ │ ├── 2007-04-05-UnPackedStruct.c │ │ ├── 2007-04-11-InlineAsmStruct.c │ │ ├── 2007-04-11-InlineAsmUnion.c │ │ ├── 2007-04-11-InlineStorageClassC89.c │ │ ├── 2007-04-11-InlineStorageClassC99.c │ │ ├── 2007-04-11-PR1321.c │ │ ├── 2007-04-13-InlineAsmStruct2.c │ │ ├── 2007-04-13-InlineAsmUnion2.c │ │ ├── 2007-04-14-FNoBuiltin.c │ │ ├── 2007-04-17-ZeroSizeBitFields.c │ │ ├── 2007-04-24-VolatileStructCopy.c │ │ ├── 2007-04-24-bit-not-expr.c │ │ ├── 2007-04-24-str-const.c │ │ ├── 2007-05-07-NestedStructReturn.c │ │ ├── 2007-05-07-PaddingElements.c │ │ ├── 2007-05-08-PCH.c │ │ ├── 2007-05-11-str-const.c │ │ ├── 2007-05-15-PaddingElement.c │ │ ├── 2007-05-16-EmptyStruct.c │ │ ├── 2007-05-29-UnionCopy.c │ │ ├── 2007-06-05-NoInlineAttribute.c │ │ ├── 2007-06-15-AnnotateAttribute.c │ │ ├── 2007-06-18-SextAttrAggregate.c │ │ ├── 2007-07-29-RestrictPtrArg.c │ │ ├── 2007-08-01-LoadStoreAlign.c │ │ ├── 2007-08-21-ComplexCst.c │ │ ├── 2007-08-22-CTTZ.c │ │ ├── 2007-09-05-ConstCtor.c │ │ ├── 2007-09-12-PragmaPack.c │ │ ├── 2007-09-14-NegatePointer.c │ │ ├── 2007-09-17-WeakRef.c │ │ ├── 2007-09-20-GcrootAttribute.c │ │ ├── 2007-09-26-Alignment.c │ │ ├── 2007-09-27-ComplexIntCompare.c │ │ ├── 2007-09-28-PackedUnionMember.c │ │ ├── 2007-10-01-BuildArrayRef.c │ │ ├── 2007-10-02-VolatileArray.c │ │ ├── 2007-10-15-VoidPtr.c │ │ ├── 2007-10-30-Volatile.c │ │ ├── 2007-11-07-AlignedMemcpy.c │ │ ├── 2007-11-07-CopyAggregateAlign.c │ │ ├── 2007-11-07-ZeroAggregateAlign.c │ │ ├── 2007-11-27-SExtZExt.c │ │ ├── 2007-11-28-GlobalInitializer.c │ │ ├── 2007-12-16-AsmNoUnwind.c │ │ ├── 2007-12-VarArrayDebug.c │ │ ├── 2008-01-04-WideBitfield.c │ │ ├── 2008-01-07-UnusualIntSize.c │ │ ├── 2008-01-11-ChainConsistency.c │ │ ├── 2008-01-21-PackedBitFields.c │ │ ├── 2008-01-21-PackedStructField.c │ │ ├── 2008-01-24-StructAlignAndBitFields.c │ │ ├── 2008-01-25-ByValReadNone.c │ │ ├── 2008-01-25-ZeroSizedAggregate.c │ │ ├── 2008-01-28-PragmaMark.c │ │ ├── 2008-01-28-UnionSize.c │ │ ├── 2008-02-11-AnnotateBuiltin.c │ │ ├── 2008-03-03-CtorAttrType.c │ │ ├── 2008-03-05-syncPtr.c │ │ ├── 2008-03-24-BitField-And-Alloca.c │ │ ├── 2008-03-26-PackedBitFields.c │ │ ├── 2008-04-08-NoExceptions.c │ │ ├── 2008-05-06-CFECrash.c │ │ ├── 2008-05-12-TempUsedBeforeDef.c │ │ ├── 2008-05-19-AlwaysInline.c │ │ ├── 2008-07-08-FAbsAttributes.c │ │ ├── 2008-07-29-EHLabel.ll │ │ ├── 2008-08-07-AlignPadding1.c │ │ ├── 2008-08-07-AlignPadding2.c │ │ ├── 2008-08-07-GEPIntToPtr.c │ │ ├── 2008-09-03-WeakAlias.c │ │ ├── 2008-10-13-FrontendCrash.c │ │ ├── 2008-10-30-ZeroPlacement.c │ │ ├── 2008-11-02-WeakAlias.c │ │ ├── 2008-11-08-InstCombineSelect.c │ │ ├── 2008-11-11-AnnotateStructFieldAttribute.c │ │ ├── 2008-12-23-AsmIntPointerTie.c │ │ ├── 2009-01-05-BlockInlining.c │ │ ├── 2009-01-20-k8.c │ │ ├── 2009-01-21-InvalidIterator.c │ │ ├── 2009-02-13-zerosize-union-field-ppc.c │ │ ├── 2009-02-13-zerosize-union-field.c │ │ ├── 2009-02-17-BitField-dbg.c │ │ ├── 2009-03-01-MallocNoAlias.c │ │ ├── 2009-03-08-ZeroEltStructCrash.c │ │ ├── 2009-03-09-WeakDeclarations-1.c │ │ ├── 2009-03-13-dbg.c │ │ ├── 2009-04-22-UnknownSize.c │ │ ├── 2009-04-28-UnionArrayCrash.c │ │ ├── 2009-05-04-EnumInreg.c │ │ ├── 2009-05-17-AlwaysInline.c │ │ ├── 2009-06-14-HighlyAligned.c │ │ ├── 2009-06-18-StaticInitTailPadPack.c │ │ ├── 2009-07-14-VoidPtr.c │ │ ├── 2009-07-15-pad-wchar_t-array.c │ │ ├── 2009-07-17-VoidParameter.c │ │ ├── 2009-07-22-StructLayout.c │ │ ├── 2009-08-11-AsmBlocksComplexJumpTarget.c │ │ ├── 2009-09-24-SqrtErrno.c │ │ ├── 2009-12-07-BitFieldAlignment.c │ │ ├── 2010-01-05-LinkageName.c │ │ ├── 2010-01-13-MemBarrier.c │ │ ├── 2010-01-14-FnType-DebugInfo.c │ │ ├── 2010-01-14-StaticVariable.c │ │ ├── 2010-01-18-Inlined-Debug.c │ │ ├── 2010-02-10-PointerName.c │ │ ├── 2010-02-15-DbgStaticVar.c │ │ ├── 2010-02-16-DbgVarScope.c │ │ ├── 2010-02-18-Dbg-VectorType.c │ │ ├── 2010-03-10-arm-asmreg.c │ │ ├── 2010-03-5-LexicalScope.c │ │ ├── 2010-05-14-Optimized-VarType.c │ │ ├── 2010-05-18-asmsched.c │ │ ├── 2010-05-18-palignr.c │ │ ├── 2010-05-26-AsmSideEffect.c │ │ ├── 2010-05-31-palignr.c │ │ ├── 2010-06-11-SaveExpr.c │ │ ├── 2010-06-17-asmcrash.c │ │ ├── 2010-06-28-DbgLocalVar.c │ │ ├── 2010-06-28-nowarn.c │ │ ├── 2010-07-08-DeclDebugLineNo.c │ │ ├── 2010-07-14-overconservative-align.c │ │ ├── 2010-07-14-ref-off-end.c │ │ ├── 2010-07-27-MinNoFoldConst.c │ │ ├── 2010-08-12-asm-aggr-arg.c │ │ ├── Atomics-no64bit.c │ │ ├── Atomics.c │ │ ├── BasicInstrs.c │ │ ├── alignstack.c │ │ ├── always-inline.c │ │ ├── asm-reg-var-local.c │ │ ├── attribute_constructor.c │ │ ├── block-copy.c │ │ ├── crash-invalid-array.c │ │ ├── cstring-align.c │ │ ├── dg.exp │ │ ├── exact-div-expr.c │ │ ├── extern-weak.c │ │ ├── fp-logical.c │ │ ├── func-aligned.c │ │ ├── funccall.c │ │ ├── hidden-visibility.c │ │ ├── implicit-arg.c │ │ ├── inline-asm-function.c │ │ ├── inline-asm-mrv.c │ │ ├── libcalls-d.c │ │ ├── libcalls-ld.c │ │ ├── libcalls.c │ │ ├── misaligned-param.c │ │ ├── nested-functions.c │ │ ├── pr2394.c │ │ ├── pr3518.c │ │ ├── pr4349.c │ │ ├── pr5406.c │ │ ├── ptr-rotate.c │ │ ├── redef-ext-inline.c │ │ ├── sret.c │ │ ├── sret2.c │ │ ├── unaligned-memcpy.c │ │ ├── union-align.c │ │ ├── vla-1.c │ │ ├── vla-2.c │ │ ├── wchar-const.c │ │ └── weak_constant.c │ ├── FrontendFortran │ │ ├── 2008-11-03-OptionOverride.f90 │ │ ├── 2009-02-09-FloorDivExpr.f90 │ │ ├── cpow.f90 │ │ └── dg.exp │ ├── FrontendObjC++ │ │ ├── 2007-10-03-MetadataPointers.mm │ │ ├── 2010-08-02-NonPODObjectValue.mm │ │ ├── 2010-08-04-Template.mm │ │ ├── 2010-08-06-X.Y-syntax.mm │ │ └── dg.exp │ ├── FrontendObjC │ │ ├── 2007-04-03-ObjcEH.m │ │ ├── 2007-05-02-Strong.m │ │ ├── 2007-09-25-EH.m │ │ ├── 2007-10-17-SJLJExceptions.m │ │ ├── 2007-10-18-ProDescriptor.m │ │ ├── 2007-10-23-GC-WriteBarrier.m │ │ ├── 2008-10-3-EhValue.m │ │ ├── 2008-11-12-Metadata.m │ │ ├── 2008-11-24-ConstCFStrings.m │ │ ├── 2008-11-25-Blocks.m │ │ ├── 2009-01-26-WriteBarrier-2.m │ │ ├── 2009-02-05-VolatileProp.m │ │ ├── 2009-04-14-AsmSection.m │ │ ├── 2009-04-27-bitfield-vs-ivar.m │ │ ├── 2009-04-28-bitfield-vs-vbc.m │ │ ├── 2009-08-05-utf16.m │ │ ├── 2009-08-17-DebugInfo.m │ │ ├── 2009-11-30-Objc-ID.m │ │ ├── 2010-02-01-utf16-with-null.m │ │ ├── 2010-02-11-fwritable-stringsBug.m │ │ ├── 2010-02-23-DbgInheritance.m │ │ ├── 2010-03-17-StructRef.m │ │ ├── 2010-06-04-UnnamedCFString-dbg.m │ │ └── dg.exp │ ├── Integer │ │ ├── 2007-01-19-TruncSext.ll │ │ ├── BitArith.ll │ │ ├── BitBit.ll │ │ ├── BitCast.ll │ │ ├── BitIcmp.ll │ │ ├── BitMem.ll │ │ ├── BitMisc.ll │ │ ├── BitPacked.ll │ │ ├── alignment_bt.ll │ │ ├── basictest_bt.ll │ │ ├── cfgstructures_bt.ll │ │ ├── constexpr_bt.ll │ │ ├── constpointer_bt.ll │ │ ├── dg.exp │ │ ├── fold-fpcast_bt.ll │ │ ├── forwardreftest_bt.ll │ │ ├── globalredefinition_bt.ll │ │ ├── globalvars_bt.ll │ │ ├── indirectcall2_bt.ll │ │ ├── indirectcall_bt.ll │ │ ├── instructions_bt.ll │ │ ├── newcasts_bt.ll │ │ ├── opaquetypes_bt.ll │ │ ├── packed_bt.ll │ │ ├── packed_struct_bt.ll │ │ ├── paramattrs_bt.ll │ │ ├── properties_bt.ll │ │ ├── prototype_bt.ll │ │ ├── recursivetype_bt.ll │ │ ├── simplecalltest_bt.ll │ │ ├── small_bt.ll │ │ ├── testalloca_bt.ll │ │ ├── testarith_bt.ll │ │ ├── testconstants_bt.ll │ │ ├── testicmp_bt.ll │ │ ├── testlogical_bt.ll │ │ ├── testlogical_new_bt.ll │ │ ├── testmemory_bt.ll │ │ ├── testswitch_bt.ll │ │ ├── testvarargs_bt.ll │ │ ├── undefined_bt.ll │ │ ├── unreachable_bt.ll │ │ ├── varargs_bt.ll │ │ └── varargs_new_bt.ll │ ├── LLVMC │ │ ├── Alias.td │ │ ├── AppendCmdHook.td │ │ ├── C++ │ │ │ ├── dash-x.cpp │ │ │ ├── dg.exp │ │ │ ├── filelist.cpp │ │ │ ├── hello.cpp │ │ │ └── together.cpp │ │ ├── C │ │ │ ├── dg.exp │ │ │ ├── emit-llvm.c │ │ │ ├── hello.c │ │ │ ├── include.c │ │ │ ├── opt-test.c │ │ │ ├── sink.c │ │ │ └── wall.c │ │ ├── EmptyCompilationGraph.td │ │ ├── EnvParentheses.td │ │ ├── ForwardAs.td │ │ ├── ForwardTransformedValue.td │ │ ├── ForwardValue.td │ │ ├── HookWithArguments.td │ │ ├── HookWithInFile.td │ │ ├── Init.td │ │ ├── LanguageMap.td │ │ ├── MultiValuedOption.td │ │ ├── MultipleCompilationGraphs.td │ │ ├── NoActions.td │ │ ├── NoCompilationGraph.td │ │ ├── ObjC++ │ │ │ ├── dg.exp │ │ │ └── hello.mm │ │ ├── ObjC │ │ │ ├── dg.exp │ │ │ └── hello.m │ │ ├── OneOrMore.td │ │ ├── OptionPreprocessor.td │ │ ├── OutputSuffixHook.td │ │ ├── TestWarnings.td │ │ ├── dg.exp │ │ └── test_data │ │ │ ├── false.c │ │ │ ├── false.cpp │ │ │ ├── false2.cpp │ │ │ └── together.c │ ├── Linker │ │ ├── 2002-07-17-GlobalFail.ll │ │ ├── 2002-07-17-LinkTest2.ll │ │ ├── 2002-08-20-ConstantExpr.ll │ │ ├── 2003-01-30-LinkerRename.ll │ │ ├── 2003-01-30-LinkerTypeRename.ll │ │ ├── 2003-04-21-Linkage.ll │ │ ├── 2003-04-23-LinkOnceLost.ll │ │ ├── 2003-04-26-NullPtrLinkProblem.ll │ │ ├── 2003-05-15-TypeProblem.ll │ │ ├── 2003-05-31-LinkerRename.ll │ │ ├── 2003-06-02-TypeResolveProblem.ll │ │ ├── 2003-06-02-TypeResolveProblem2.ll │ │ ├── 2003-08-20-OpaqueTypeResolve.ll │ │ ├── 2003-08-23-GlobalVarLinking.ll │ │ ├── 2003-08-23-RecursiveOpaqueTypeResolve.ll │ │ ├── 2003-08-24-InheritPtrSize.ll │ │ ├── 2003-08-28-TypeResolvesGlobal.ll │ │ ├── 2003-08-28-TypeResolvesGlobal2.ll │ │ ├── 2003-08-28-TypeResolvesGlobal3.ll │ │ ├── 2003-10-21-ConflictingTypesTolerance.ll │ │ ├── 2003-10-27-LinkOncePromote.ll │ │ ├── 2003-11-18-TypeResolution.ll │ │ ├── 2004-02-17-WeakStrongLinkage.ll │ │ ├── 2004-05-07-TypeResolution1.ll │ │ ├── 2004-05-07-TypeResolution2.ll │ │ ├── 2004-12-03-DisagreeingType.ll │ │ ├── 2005-02-12-ConstantGlobals-2.ll │ │ ├── 2005-02-12-ConstantGlobals.ll │ │ ├── 2005-12-06-AppendingZeroLengthArrays.ll │ │ ├── 2006-01-19-ConstantPacked.ll │ │ ├── 2006-06-15-GlobalVarAlignment.ll │ │ ├── 2008-03-05-AliasReference.ll │ │ ├── 2008-03-05-AliasReference2.ll │ │ ├── 2008-03-07-DroppedSection_a.ll │ │ ├── 2008-03-07-DroppedSection_b.ll │ │ ├── 2008-06-13-LinkOnceRedefinition.ll │ │ ├── 2008-06-26-AddressSpace.ll │ │ ├── 2008-07-06-AliasFnDecl.ll │ │ ├── 2008-07-06-AliasFnDecl2.ll │ │ ├── 2008-07-06-AliasWeakDest.ll │ │ ├── 2008-07-06-AliasWeakDest2.ll │ │ ├── 2009-09-03-mdnode.ll │ │ ├── 2009-09-03-mdnode2.ll │ │ ├── AppendingLinkage.ll │ │ ├── AppendingLinkage2.ll │ │ ├── ConstantGlobals1.ll │ │ ├── ConstantGlobals2.ll │ │ ├── ConstantGlobals3.ll │ │ ├── LinkOnce.ll │ │ ├── basiclink.ll │ │ ├── dg.exp │ │ ├── link-archive.ll │ │ ├── link-global-to-func.ll │ │ ├── link-messages.ll │ │ ├── linkmdnode.ll │ │ ├── linkmdnode2.ll │ │ ├── linknamedmdnode.ll │ │ ├── linknamedmdnode2.ll │ │ ├── metadata-a.ll │ │ ├── metadata-b.ll │ │ ├── partial-type-refinement-link.ll │ │ ├── partial-type-refinement.ll │ │ ├── redefinition.ll │ │ ├── testlink1.ll │ │ ├── testlink2.ll │ │ └── weakextern.ll │ ├── MC │ │ ├── AsmParser │ │ │ ├── ARM │ │ │ │ ├── arm_instructions.s │ │ │ │ ├── arm_word_directive.s │ │ │ │ └── dg.exp │ │ │ ├── ELF │ │ │ │ ├── dg.exp │ │ │ │ ├── directive_previous.s │ │ │ │ └── directive_section.s │ │ │ ├── X86 │ │ │ │ ├── dg.exp │ │ │ │ ├── x86_32-avx-clmul-encoding.s │ │ │ │ ├── x86_32-avx-encoding.s │ │ │ │ ├── x86_32-bit.s │ │ │ │ ├── x86_32-bit_cat.s │ │ │ │ ├── x86_32-encoding.s │ │ │ │ ├── x86_32-fma3-encoding.s │ │ │ │ ├── x86_32-mismatched-add.s │ │ │ │ ├── x86_32-new-encoder.s │ │ │ │ ├── x86_64-avx-clmul-encoding.s │ │ │ │ ├── x86_64-avx-encoding.s │ │ │ │ ├── x86_64-encoding.s │ │ │ │ ├── x86_64-fma3-encoding.s │ │ │ │ ├── x86_64-imm-widths.s │ │ │ │ ├── x86_64-incl_decl.s │ │ │ │ ├── x86_64-new-encoder.s │ │ │ │ ├── x86_64-operands.s │ │ │ │ ├── x86_64-suffix-matching.s │ │ │ │ ├── x86_instruction_errors.s │ │ │ │ ├── x86_instructions.s │ │ │ │ ├── x86_operands.s │ │ │ │ └── x86_word_directive.s │ │ │ ├── assignment.s │ │ │ ├── conditional_asm.s │ │ │ ├── dg.exp │ │ │ ├── directive_abort.s │ │ │ ├── directive_align.s │ │ │ ├── directive_ascii.s │ │ │ ├── directive_comm.s │ │ │ ├── directive_darwin_section.s │ │ │ ├── directive_desc.s │ │ │ ├── directive_elf_size.s │ │ │ ├── directive_file.s │ │ │ ├── directive_fill.s │ │ │ ├── directive_include.s │ │ │ ├── directive_lcomm.s │ │ │ ├── directive_line.s │ │ │ ├── directive_loc.s │ │ │ ├── directive_lsym.s │ │ │ ├── directive_org.s │ │ │ ├── directive_set.s │ │ │ ├── directive_space.s │ │ │ ├── directive_subsections_via_symbols.s │ │ │ ├── directive_symbol_attrs.s │ │ │ ├── directive_tbss.s │ │ │ ├── directive_tdata.s │ │ │ ├── directive_thread_init_func.s │ │ │ ├── directive_tlv.s │ │ │ ├── directive_values.s │ │ │ ├── directive_zerofill.s │ │ │ ├── dollars-in-identifiers.s │ │ │ ├── exprs-invalid.s │ │ │ ├── exprs.s │ │ │ ├── hello.s │ │ │ ├── labels.s │ │ │ ├── macro-def-in-instantiation.s │ │ │ ├── macros-parsing.s │ │ │ ├── macros.s │ │ │ ├── variables-invalid.s │ │ │ └── variables.s │ │ ├── COFF │ │ │ ├── basic-coff.ll │ │ │ ├── dg.exp │ │ │ ├── switch-relocations.ll │ │ │ └── symbol-fragment-offset.ll │ │ ├── Disassembler │ │ │ ├── arm-tests.txt │ │ │ ├── dg.exp │ │ │ ├── neon-tests.txt │ │ │ ├── simple-tests.txt │ │ │ └── thumb-tests.txt │ │ ├── ELF │ │ │ ├── bss.ll │ │ │ └── dg.exp │ │ └── MachO │ │ │ ├── absolutize.s │ │ │ ├── comm-1.s │ │ │ ├── darwin-x86_64-diff-relocs.s │ │ │ ├── darwin-x86_64-reloc-offsets.s │ │ │ ├── darwin-x86_64-reloc.s │ │ │ ├── data.s │ │ │ ├── dg.exp │ │ │ ├── direction_labels.s │ │ │ ├── indirect-symbols.s │ │ │ ├── jcc.s │ │ │ ├── lcomm-attributes.s │ │ │ ├── relax-jumps.s │ │ │ ├── relax-recompute-align.s │ │ │ ├── reloc-diff.s │ │ │ ├── reloc-pcrel-offset.s │ │ │ ├── reloc-pcrel.s │ │ │ ├── reloc.s │ │ │ ├── section-align-1.s │ │ │ ├── section-align-2.s │ │ │ ├── section-flags.s │ │ │ ├── string-table.s │ │ │ ├── symbol-flags.s │ │ │ ├── symbol-indirect.s │ │ │ ├── symbols-1.s │ │ │ ├── tbss.s │ │ │ ├── tdata.s │ │ │ ├── thread_init_func.s │ │ │ ├── tls.s │ │ │ ├── tlv-reloc.s │ │ │ ├── tlv.s │ │ │ ├── values.s │ │ │ ├── x86_32-optimal_nop.s │ │ │ ├── x86_32-sections.s │ │ │ ├── x86_32-symbols.s │ │ │ ├── x86_64-sections.s │ │ │ ├── x86_64-symbols.s │ │ │ ├── zerofill-1.s │ │ │ ├── zerofill-2.s │ │ │ ├── zerofill-3.s │ │ │ ├── zerofill-4.s │ │ │ ├── zerofill-5.s │ │ │ └── zerofill-sect-align.s │ ├── Makefile │ ├── Makefile.tests │ ├── Other │ │ ├── 2002-01-31-CallGraph.ll │ │ ├── 2002-02-24-InlineBrokePHINodes.ll │ │ ├── 2002-03-11-ConstPropCrash.ll │ │ ├── 2003-02-19-LoopInfoNestingBug.ll │ │ ├── 2004-08-16-PackedConstantInlineStore.ll │ │ ├── 2004-08-16-PackedGlobalConstant.ll │ │ ├── 2004-08-16-PackedSelect.ll │ │ ├── 2004-08-16-PackedSimple.ll │ │ ├── 2004-08-20-PackedControlFlow.ll │ │ ├── 2006-02-05-PassManager.ll │ │ ├── 2007-04-24-eliminate-mostly-empty-blocks.ll │ │ ├── 2007-06-05-PassID.ll │ │ ├── 2007-06-28-PassManager.ll │ │ ├── 2007-09-10-PassManager.ll │ │ ├── 2008-02-14-PassManager.ll │ │ ├── 2008-06-04-FieldSizeInPacked.ll │ │ ├── 2008-08-14-PassManager.ll │ │ ├── 2008-10-06-RemoveDeadPass.ll │ │ ├── 2008-10-15-MissingSpace.ll │ │ ├── 2009-03-31-CallGraph.ll │ │ ├── 2009-06-05-no-implicit-float.ll │ │ ├── 2009-09-14-function-elements.ll │ │ ├── 2010-05-06-Printer.ll │ │ ├── close-stderr.ll │ │ ├── constant-fold-gep.ll │ │ ├── dg.exp │ │ ├── inline-asm-newline-terminator.ll │ │ ├── invalid-commandline-option.ll │ │ └── lint.ll │ ├── Scripts │ │ ├── README.txt │ │ ├── coff-dump.py │ │ ├── coff-dump.py.bat │ │ ├── ignore │ │ ├── macho-dump │ │ └── macho-dump.bat │ ├── TableGen │ │ ├── 2003-08-03-PassCode.td │ │ ├── 2006-09-18-LargeInt.td │ │ ├── 2010-03-24-PrematureDefaults.td │ │ ├── AnonDefinitionOnDemand.td │ │ ├── BitsInitOverflow.td │ │ ├── CStyleComment.td │ │ ├── DagDefSubst.td │ │ ├── DagIntSubst.td │ │ ├── DefmInherit.td │ │ ├── DefmInsideMultiClass.td │ │ ├── FieldAccess.td │ │ ├── ForwardRef.td │ │ ├── GeneralList.td │ │ ├── Include.inc │ │ ├── Include.td │ │ ├── IntBitInit.td │ │ ├── LazyChange.td │ │ ├── LetInsideMultiClasses.td │ │ ├── ListArgs.td │ │ ├── ListArgsSimple.td │ │ ├── ListConversion.td │ │ ├── ListManip.td │ │ ├── ListSlices.td │ │ ├── MultiClass.td │ │ ├── MultiClassDefName.td │ │ ├── MultiClassInherit.td │ │ ├── Slice.td │ │ ├── String.td │ │ ├── SuperSubclassSameName.td │ │ ├── TargetInstrInfo.td │ │ ├── TargetInstrSpec.td │ │ ├── TemplateArgRename.td │ │ ├── Tree.td │ │ ├── TreeNames.td │ │ ├── UnsetBitInit.td │ │ ├── UnterminatedComment.td │ │ ├── cast.td │ │ ├── defmclass.td │ │ ├── dg.exp │ │ ├── eq.td │ │ ├── eqbit.td │ │ ├── foreach.td │ │ ├── if.td │ │ ├── ifbit.td │ │ ├── lisp.td │ │ ├── nameconcat.td │ │ ├── nested-comment.td │ │ ├── strconcat.td │ │ ├── subst.td │ │ ├── subst2.td │ │ └── usevalname.td │ ├── TestRunner.sh │ ├── Transforms │ │ ├── ADCE │ │ │ ├── 2002-01-31-UseStuckAround.ll │ │ │ ├── 2002-05-22-PHITest.ll │ │ │ ├── 2002-05-23-ZeroArgPHITest.ll │ │ │ ├── 2002-05-28-Crash-distilled.ll │ │ │ ├── 2002-05-28-Crash.ll │ │ │ ├── 2002-07-17-AssertionFailure.ll │ │ │ ├── 2002-07-17-PHIAssertion.ll │ │ │ ├── 2002-07-29-Segfault.ll │ │ │ ├── 2003-01-22-PredecessorProblem.ll │ │ │ ├── 2003-04-25-PHIPostDominateProblem.ll │ │ │ ├── 2003-06-11-InvalidCFG.ll │ │ │ ├── 2003-06-24-BadSuccessor.ll │ │ │ ├── 2003-06-24-BasicFunctionality.ll │ │ │ ├── 2003-09-10-UnwindInstFail.ll │ │ │ ├── 2003-09-15-InfLoopCrash.ll │ │ │ ├── 2003-11-16-MissingPostDominanceInfo.ll │ │ │ ├── 2004-05-04-UnreachableBlock.ll │ │ │ ├── 2005-02-17-PHI-Invoke-Crash.ll │ │ │ ├── basictest.ll │ │ │ ├── basictest1.ll │ │ │ ├── basictest2.ll │ │ │ ├── dce_pure_call.ll │ │ │ ├── dce_pure_invoke.ll │ │ │ ├── dg.exp │ │ │ └── unreachable-function.ll │ │ ├── ArgumentPromotion │ │ │ ├── 2008-02-01-ReturnAttrs.ll │ │ │ ├── 2008-07-02-array-indexing.ll │ │ │ ├── 2008-09-07-CGUpdate.ll │ │ │ ├── 2008-09-08-CGUpdateSelfEdge.ll │ │ │ ├── aggregate-promote.ll │ │ │ ├── attrs.ll │ │ │ ├── basictest.ll │ │ │ ├── byval-2.ll │ │ │ ├── byval.ll │ │ │ ├── callgraph-update.ll │ │ │ ├── chained.ll │ │ │ ├── control-flow.ll │ │ │ ├── control-flow2.ll │ │ │ ├── crash.ll │ │ │ ├── dg.exp │ │ │ └── pr3085.ll │ │ ├── BlockPlacement │ │ │ ├── basictest.ll │ │ │ └── dg.exp │ │ ├── BranchFolding │ │ │ └── 2007-10-19-InlineAsmDirectives.ll │ │ ├── CodeExtractor │ │ │ ├── 2004-03-13-LoopExtractorCrash.ll │ │ │ ├── 2004-03-14-DominanceProblem.ll │ │ │ ├── 2004-03-14-NoSwitchSupport.ll │ │ │ ├── 2004-03-17-MissedLiveIns.ll │ │ │ ├── 2004-03-17-OutputMismatch.ll │ │ │ ├── 2004-03-17-UpdatePHIsOutsideRegion.ll │ │ │ ├── 2004-03-18-InvokeHandling.ll │ │ │ ├── 2004-08-12-BlockExtractPHI.ll │ │ │ ├── 2004-11-12-InvokeExtract.ll │ │ │ └── dg.exp │ │ ├── CodeGenPrepare │ │ │ ├── 2008-11-24-RAUW-Self.ll │ │ │ └── dg.exp │ │ ├── ConstProp │ │ │ ├── 2002-05-03-DivideByZeroException.ll │ │ │ ├── 2002-05-03-NotOperator.ll │ │ │ ├── 2002-09-03-SetCC-Bools.ll │ │ │ ├── 2003-05-12-DivideError.ll │ │ │ ├── 2005-01-28-SetCCGEP.ll │ │ │ ├── 2006-11-30-vector-cast.ll │ │ │ ├── 2006-12-01-TruncBoolBug.ll │ │ │ ├── 2006-12-01-bool-casts.ll │ │ │ ├── 2007-02-05-BitCast.ll │ │ │ ├── 2007-02-23-sdiv.ll │ │ │ ├── 2007-11-23-cttz.ll │ │ │ ├── 2008-07-07-VectorCompare.ll │ │ │ ├── 2009-06-20-constexpr-zero-lhs.ll │ │ │ ├── 2009-09-01-GEP-Crash.ll │ │ │ ├── basictest.ll │ │ │ ├── bitcast.ll │ │ │ ├── bitcast2.ll │ │ │ ├── bswap.ll │ │ │ ├── calls.ll │ │ │ ├── constant-expr.ll │ │ │ ├── dg.exp │ │ │ ├── div-zero.ll │ │ │ ├── float-to-ptr-cast.ll │ │ │ ├── loads.ll │ │ │ ├── logicaltest.ll │ │ │ ├── nottest.ll │ │ │ ├── overflow-ops.ll │ │ │ ├── phi.ll │ │ │ └── remtest.ll │ │ ├── ConstantMerge │ │ │ ├── 2002-09-23-CPR-Update.ll │ │ │ ├── 2003-10-28-MergeExternalConstants.ll │ │ │ ├── dg.exp │ │ │ └── dont-merge.ll │ │ ├── CorrelatedValuePropagation │ │ │ ├── 2010-09-02-Trunc.ll │ │ │ ├── basic.ll │ │ │ └── dg.exp │ │ ├── DeadArgElim │ │ │ ├── 2006-06-27-struct-ret.ll │ │ │ ├── 2007-02-07-FuncRename.ll │ │ │ ├── 2007-10-18-VarargsReturn.ll │ │ │ ├── 2007-12-20-ParamAttrs.ll │ │ │ ├── 2008-01-16-VarargsParamAttrs.ll │ │ │ ├── 2008-06-23-DeadAfterLive.ll │ │ │ ├── 2009-03-17-MRE-Invoke.ll │ │ │ ├── 2010-04-30-DbgInfo.ll │ │ │ ├── basictest.ll │ │ │ ├── canon.ll │ │ │ ├── dead_vaargs.ll │ │ │ ├── deadexternal.ll │ │ │ ├── deadretval.ll │ │ │ ├── deadretval2.ll │ │ │ ├── dg.exp │ │ │ ├── keepalive.ll │ │ │ └── multdeadretval.ll │ │ ├── DeadStoreElimination │ │ │ ├── 2004-11-28-LiveStoreDeleted.ll │ │ │ ├── 2004-12-28-PartialStore.ll │ │ │ ├── 2005-11-30-vaarg.ll │ │ │ ├── 2006-06-27-AST-Remove.ll │ │ │ ├── 2008-07-28-load-store.ll │ │ │ ├── 2008-11-28-MemDepUpdate.ll │ │ │ ├── 2008-11-29-OffEndOfBlock.ll │ │ │ ├── 2009-11-10-Trampoline.ll │ │ │ ├── PartialStore.ll │ │ │ ├── alloca.ll │ │ │ ├── byval.ll │ │ │ ├── const-pointers.ll │ │ │ ├── context-sensitive.ll │ │ │ ├── crash.ll │ │ │ ├── dg.exp │ │ │ ├── free.ll │ │ │ ├── lifetime.ll │ │ │ ├── memcpy.ll │ │ │ ├── memintrinsics.ll │ │ │ ├── no-targetdata.ll │ │ │ ├── partial-overwrite.ll │ │ │ ├── simple.ll │ │ │ └── volatile-load.ll │ │ ├── FunctionAttrs │ │ │ ├── 2008-09-03-Mutual.ll │ │ │ ├── 2008-09-03-ReadNone.ll │ │ │ ├── 2008-09-03-ReadOnly.ll │ │ │ ├── 2008-09-13-VolatileRead.ll │ │ │ ├── 2008-10-04-LocalMemory.ll │ │ │ ├── 2008-12-29-Constant.ll │ │ │ ├── 2008-12-31-NoCapture.ll │ │ │ ├── 2009-01-02-LocalStores.ll │ │ │ ├── 2009-05-06-Malloc.ll │ │ │ └── dg.exp │ │ ├── GVN │ │ │ ├── 2007-07-25-DominatedLoop.ll │ │ │ ├── 2007-07-25-InfiniteLoop.ll │ │ │ ├── 2007-07-25-Loop.ll │ │ │ ├── 2007-07-25-NestedLoop.ll │ │ │ ├── 2007-07-25-SinglePredecessor.ll │ │ │ ├── 2007-07-26-InterlockingLoops.ll │ │ │ ├── 2007-07-26-NonRedundant.ll │ │ │ ├── 2007-07-26-PhiErasure.ll │ │ │ ├── 2007-07-30-PredIDom.ll │ │ │ ├── 2007-07-31-NoDomInherit.ll │ │ │ ├── 2007-07-31-RedundantPhi.ll │ │ │ ├── 2008-02-12-UndefLoad.ll │ │ │ ├── 2008-02-13-NewPHI.ll │ │ │ ├── 2008-02-24-NonDominatedMemcpy.ll │ │ │ ├── 2008-02-26-MemCpySize.ll │ │ │ ├── 2008-07-02-Unreachable.ll │ │ │ ├── 2008-12-09-SelfRemove.ll │ │ │ ├── 2008-12-12-RLE-Crash.ll │ │ │ ├── 2008-12-14-rle-reanalyze.ll │ │ │ ├── 2008-12-15-CacheVisited.ll │ │ │ ├── 2009-01-21-SortInvalidation.ll │ │ │ ├── 2009-01-22-SortInvalidation.ll │ │ │ ├── 2009-02-17-LoadPRECrash.ll │ │ │ ├── 2009-03-10-PREOnVoid.ll │ │ │ ├── 2009-06-17-InvalidPRE.ll │ │ │ ├── 2009-07-13-MemDepSortFail.ll │ │ │ ├── 2009-11-12-MemDepMallocBitCast.ll │ │ │ ├── 2010-03-31-RedundantPHIs.ll │ │ │ ├── 2010-05-08-OneBit.ll │ │ │ ├── basic.ll │ │ │ ├── bitcast-of-call.ll │ │ │ ├── calls-nonlocal.ll │ │ │ ├── calls-readonly.ll │ │ │ ├── condprop.ll │ │ │ ├── crash-no-aa.ll │ │ │ ├── crash.ll │ │ │ ├── dg.exp │ │ │ ├── invariant-simple.ll │ │ │ ├── lifetime-simple.ll │ │ │ ├── load-constant-mem.ll │ │ │ ├── load-pre-align.ll │ │ │ ├── local-pre.ll │ │ │ ├── lpre-call-wrap-2.ll │ │ │ ├── lpre-call-wrap.ll │ │ │ ├── mixed.ll │ │ │ ├── nonescaping-malloc.ll │ │ │ ├── null-aliases-nothing.ll │ │ │ ├── pre-basic-add.ll │ │ │ ├── pre-load.ll │ │ │ ├── pre-single-pred.ll │ │ │ ├── rle-must-alias.ll │ │ │ ├── rle-no-phi-translate.ll │ │ │ ├── rle-nonlocal.ll │ │ │ ├── rle-phi-translate.ll │ │ │ ├── rle-semidominated.ll │ │ │ └── rle.ll │ │ ├── GlobalDCE │ │ │ ├── 2002-07-17-CastRef.ll │ │ │ ├── 2002-07-17-ConstantRef.ll │ │ │ ├── 2002-08-17-FunctionDGE.ll │ │ │ ├── 2002-08-17-WorkListTest.ll │ │ │ ├── 2002-09-12-Redeletion.ll │ │ │ ├── 2003-07-01-SelfReference.ll │ │ │ ├── 2003-10-09-PreserveWeakGlobals.ll │ │ │ ├── 2009-01-05-DeadAliases.ll │ │ │ ├── 2009-02-17-AliasUsesAliasee.ll │ │ │ ├── 2009-09-03-MDNode.ll │ │ │ ├── basicvariabletest.ll │ │ │ ├── dg.exp │ │ │ └── externally_available.ll │ │ ├── GlobalOpt │ │ │ ├── 2004-10-10-CastStoreOnce.ll │ │ │ ├── 2005-06-15-LocalizeConstExprCrash.ll │ │ │ ├── 2005-09-27-Crash.ll │ │ │ ├── 2006-07-07-InlineAsmCrash.ll │ │ │ ├── 2006-11-01-ShrinkGlobalPhiCrash.ll │ │ │ ├── 2007-04-05-Crash.ll │ │ │ ├── 2007-05-13-Crash.ll │ │ │ ├── 2007-06-04-PackedStruct.ll │ │ │ ├── 2007-11-09-GEP-GEP-Crash.ll │ │ │ ├── 2008-01-03-Crash.ll │ │ │ ├── 2008-01-13-OutOfRangeSROA.ll │ │ │ ├── 2008-01-29-VolatileGlobal.ll │ │ │ ├── 2008-02-16-NestAttr.ll │ │ │ ├── 2008-04-26-SROA-Global-Align.ll │ │ │ ├── 2008-07-17-addrspace.ll │ │ │ ├── 2008-12-16-HeapSRACrash-2.ll │ │ │ ├── 2008-12-16-HeapSRACrash.ll │ │ │ ├── 2009-01-13-phi-user.ll │ │ │ ├── 2009-02-15-BitcastAlias.ll │ │ │ ├── 2009-02-15-ResolveAlias.ll │ │ │ ├── 2009-03-05-dbg.ll │ │ │ ├── 2009-03-06-Anonymous.ll │ │ │ ├── 2009-03-07-PromotePtrToBool.ll │ │ │ ├── 2009-06-01-RecursivePHI.ll │ │ │ ├── 2009-11-16-BrokenPerformHeapAllocSRoA.ll │ │ │ ├── 2009-11-16-MallocSingleStoreToGlobalVar.ll │ │ │ ├── 2010-02-25-MallocPromote.ll │ │ │ ├── 2010-02-26-MallocSROA.ll │ │ │ ├── alias-resolve.ll │ │ │ ├── basictest.ll │ │ │ ├── constantexpr-dangle.ll │ │ │ ├── constantfold-initializers.ll │ │ │ ├── crash.ll │ │ │ ├── ctor-list-opt-inbounds.ll │ │ │ ├── ctor-list-opt.ll │ │ │ ├── deadglobal-2.ll │ │ │ ├── deadglobal.ll │ │ │ ├── dg.exp │ │ │ ├── globalsra-partial.ll │ │ │ ├── globalsra-unknown-index.ll │ │ │ ├── globalsra.ll │ │ │ ├── heap-sra-1.ll │ │ │ ├── heap-sra-2.ll │ │ │ ├── heap-sra-3.ll │ │ │ ├── heap-sra-4.ll │ │ │ ├── heap-sra-phi.ll │ │ │ ├── integer-bool.ll │ │ │ ├── iterate.ll │ │ │ ├── load-store-global.ll │ │ │ ├── malloc-promote-1.ll │ │ │ ├── malloc-promote-2.ll │ │ │ ├── memcpy.ll │ │ │ ├── memset.ll │ │ │ ├── metadata.ll │ │ │ ├── phi-select.ll │ │ │ ├── storepointer-compare.ll │ │ │ ├── storepointer.ll │ │ │ ├── trivialstore.ll │ │ │ └── undef-init.ll │ │ ├── IPConstantProp │ │ │ ├── 2008-06-09-WeakProp.ll │ │ │ ├── 2009-09-24-byval-ptr.ll │ │ │ ├── dangling-block-address.ll │ │ │ ├── deadarg.ll │ │ │ ├── dg.exp │ │ │ ├── recursion.ll │ │ │ ├── return-argument.ll │ │ │ ├── return-constant.ll │ │ │ ├── return-constants.ll │ │ │ └── user-with-multiple-uses.ll │ │ ├── IndVarSimplify │ │ │ ├── 2002-09-09-PointerIndVar.ll │ │ │ ├── 2003-04-16-ExprAnalysis.ll │ │ │ ├── 2003-09-12-MultiplePred.ll │ │ │ ├── 2003-09-23-NotAtTop.ll │ │ │ ├── 2003-12-10-RemoveInstrCrash.ll │ │ │ ├── 2003-12-15-Crash.ll │ │ │ ├── 2003-12-21-IndVarSize.ll │ │ │ ├── 2004-03-10-PHIInsertionBug.ll │ │ │ ├── 2004-04-05-InvokeCastCrash.ll │ │ │ ├── 2004-04-07-ScalarEvolutionCrash.ll │ │ │ ├── 2005-02-11-InvokeCrash.ll │ │ │ ├── 2005-02-17-TruncateExprCrash.ll │ │ │ ├── 2005-02-26-ExitValueCompute.ll │ │ │ ├── 2005-06-15-InstMoveCrash.ll │ │ │ ├── 2005-11-18-Crash.ll │ │ │ ├── 2006-03-31-NegativeStride.ll │ │ │ ├── 2006-06-16-Indvar-LCSSA-Crash.ll │ │ │ ├── 2006-09-20-LFTR-Crash.ll │ │ │ ├── 2006-12-10-BitCast.ll │ │ │ ├── 2007-01-06-TripCount.ll │ │ │ ├── 2007-06-06-DeleteDanglesPtr.ll │ │ │ ├── 2007-11-23-BitcastCrash.ll │ │ │ ├── 2008-06-15-SCEVExpanderBug.ll │ │ │ ├── 2008-09-02-IVType.ll │ │ │ ├── 2008-10-03-CouldNotCompute.ll │ │ │ ├── 2008-11-25-APFloatAssert.ll │ │ │ ├── 2009-04-14-shorten_iv_vars.ll │ │ │ ├── 2009-04-15-shorten-iv-vars-2.ll │ │ │ ├── 2009-04-22-IndvarCrash.ll │ │ │ ├── 2009-04-27-Floating.ll │ │ │ ├── 2009-05-24-useafterfree.ll │ │ │ ├── ada-loops.ll │ │ │ ├── addrec-gep.ll │ │ │ ├── ashr-tripcount.ll │ │ │ ├── avoid-i0.ll │ │ │ ├── casted-argument.ll │ │ │ ├── complex-scev.ll │ │ │ ├── crash.ll │ │ │ ├── dangling-use.ll │ │ │ ├── dg.exp │ │ │ ├── divide-pointer.ll │ │ │ ├── eliminate-comparison.ll │ │ │ ├── eliminate-max.ll │ │ │ ├── eliminate-rem.ll │ │ │ ├── exit_value_tests.ll │ │ │ ├── floating-point-iv.ll │ │ │ ├── gep-with-mul-base.ll │ │ │ ├── indirectbr.ll │ │ │ ├── interesting-invoke-use.ll │ │ │ ├── iterationCount_zext_or_trunc.ll │ │ │ ├── iv-sext.ll │ │ │ ├── iv-zext.ll │ │ │ ├── lftr-other-uses.ll │ │ │ ├── lftr-promote.ll │ │ │ ├── lftr_simple.ll │ │ │ ├── loop-invariant-step.ll │ │ │ ├── loop_evaluate10.ll │ │ │ ├── loop_evaluate11.ll │ │ │ ├── loop_evaluate7.ll │ │ │ ├── loop_evaluate8.ll │ │ │ ├── loop_evaluate9.ll │ │ │ ├── loop_evaluate_1.ll │ │ │ ├── loop_evaluate_2.ll │ │ │ ├── loop_evaluate_3.ll │ │ │ ├── loop_evaluate_4.ll │ │ │ ├── loop_evaluate_5.ll │ │ │ ├── loop_evaluate_6.ll │ │ │ ├── masked-iv.ll │ │ │ ├── max-pointer.ll │ │ │ ├── phi-uses-value-multiple-times.ll │ │ │ ├── pointer-indvars.ll │ │ │ ├── pointer.ll │ │ │ ├── polynomial-expand.ll │ │ │ ├── preserve-gep-loop-variant.ll │ │ │ ├── preserve-gep-nested.ll │ │ │ ├── preserve-gep-remainder.ll │ │ │ ├── preserve-gep.ll │ │ │ ├── preserve-signed-wrap.ll │ │ │ ├── promote-iv-to-eliminate-casts.ll │ │ │ ├── shrunk-constant.ll │ │ │ ├── signed-trip-count.ll │ │ │ ├── single-element-range.ll │ │ │ ├── sink-alloca.ll │ │ │ ├── sink-trapping.ll │ │ │ ├── subtract.ll │ │ │ ├── tripcount_compute.ll │ │ │ ├── tripcount_infinite.ll │ │ │ ├── udiv.ll │ │ │ ├── uglygep.ll │ │ │ ├── variable-stride-ivs-0.ll │ │ │ └── variable-stride-ivs-1.ll │ │ ├── Inline │ │ │ ├── 2003-09-14-InlineValue.ll │ │ │ ├── 2003-09-22-PHINodeInlineFail.ll │ │ │ ├── 2003-09-22-PHINodesInExceptionDest.ll │ │ │ ├── 2003-09-22-PHINodesInNormalInvokeDest.ll │ │ │ ├── 2003-10-13-AllocaDominanceProblem.ll │ │ │ ├── 2003-10-26-InlineInvokeExceptionDestPhi.ll │ │ │ ├── 2004-04-15-InlineDeletesCall.ll │ │ │ ├── 2004-04-20-InlineLinkOnce.ll │ │ │ ├── 2004-10-17-InlineFunctionWithoutReturn.ll │ │ │ ├── 2006-01-14-CallGraphUpdate.ll │ │ │ ├── 2006-07-12-InlinePruneCGUpdate.ll │ │ │ ├── 2006-11-09-InlineCGUpdate-2.ll │ │ │ ├── 2006-11-09-InlineCGUpdate.ll │ │ │ ├── 2007-04-15-InlineEH.ll │ │ │ ├── 2007-06-06-NoInline.ll │ │ │ ├── 2007-06-25-WeakInline.ll │ │ │ ├── 2007-12-19-InlineNoUnwind.ll │ │ │ ├── 2008-03-04-StructRet.ll │ │ │ ├── 2008-03-07-Inline-2.ll │ │ │ ├── 2008-03-07-Inline.ll │ │ │ ├── 2008-09-02-AlwaysInline.ll │ │ │ ├── 2008-09-02-NoInline.ll │ │ │ ├── 2008-10-30-AlwaysInline.ll │ │ │ ├── 2008-11-04-AlwaysInline.ll │ │ │ ├── 2009-01-08-NoInlineDynamicAlloca.ll │ │ │ ├── 2009-01-13-RecursiveInlineCrash.ll │ │ │ ├── 2009-05-07-CallUsingSelfCrash.ll │ │ │ ├── 2010-05-12-ValueMap.ll │ │ │ ├── 2010-05-31-ByvalTailcall.ll │ │ │ ├── PR4909.ll │ │ │ ├── alloca-in-scc.ll │ │ │ ├── alloca_test.ll │ │ │ ├── always_inline_dyn_alloca.ll │ │ │ ├── array_merge.ll │ │ │ ├── basictest.ll │ │ │ ├── byval.ll │ │ │ ├── byval2.ll │ │ │ ├── callgraph-update.ll │ │ │ ├── casts.ll │ │ │ ├── cfg_preserve_test.ll │ │ │ ├── crash.ll │ │ │ ├── crash2.ll │ │ │ ├── delete-call.ll │ │ │ ├── devirtualize-2.ll │ │ │ ├── devirtualize-3.ll │ │ │ ├── devirtualize.ll │ │ │ ├── dg.exp │ │ │ ├── dynamic_alloca_test.ll │ │ │ ├── externally_available.ll │ │ │ ├── gvn-inline-iteration.ll │ │ │ ├── inline-invoke-tail.ll │ │ │ ├── inline-tail.ll │ │ │ ├── inline_cleanup.ll │ │ │ ├── inline_constprop.ll │ │ │ ├── inline_dce.ll │ │ │ ├── inline_prune.ll │ │ │ ├── invoke_test-1.ll │ │ │ ├── invoke_test-2.ll │ │ │ ├── invoke_test-3.ll │ │ │ ├── nested-inline.ll │ │ │ ├── noinline-recursive-fn.ll │ │ │ └── noinline.ll │ │ ├── InstCombine │ │ │ ├── 2002-03-11-InstCombineHang.ll │ │ │ ├── 2002-05-14-SubFailure.ll │ │ │ ├── 2002-08-02-CastTest.ll │ │ │ ├── 2002-12-05-MissedConstProp.ll │ │ │ ├── 2003-05-26-CastMiscompile.ll │ │ │ ├── 2003-05-27-ConstExprCrash.ll │ │ │ ├── 2003-06-05-BranchInvertInfLoop.ll │ │ │ ├── 2003-07-21-ExternalConstant.ll │ │ │ ├── 2003-08-12-AllocaNonNull.ll │ │ │ ├── 2003-09-09-VolatileLoadElim.ll │ │ │ ├── 2003-10-29-CallSiteResolve.ll │ │ │ ├── 2003-11-03-VarargsCallBug.ll │ │ │ ├── 2003-11-13-ConstExprCastCall.ll │ │ │ ├── 2004-01-13-InstCombineInvokePHI.ll │ │ │ ├── 2004-02-23-ShiftShiftOverflow.ll │ │ │ ├── 2004-03-13-InstCombineInfLoop.ll │ │ │ ├── 2004-04-04-InstCombineReplaceAllUsesWith.ll │ │ │ ├── 2004-05-07-UnsizedCastLoad.ll │ │ │ ├── 2004-07-27-ConstantExprMul.ll │ │ │ ├── 2004-08-09-RemInfLoop.ll │ │ │ ├── 2004-08-10-BoolSetCC.ll │ │ │ ├── 2004-09-20-BadLoadCombine.ll │ │ │ ├── 2004-09-20-BadLoadCombine2.ll │ │ │ ├── 2004-09-28-BadShiftAndSetCC.ll │ │ │ ├── 2004-11-22-Missed-and-fold.ll │ │ │ ├── 2004-11-27-SetCCForCastLargerAndConstant.ll │ │ │ ├── 2004-12-08-RemInfiniteLoop.ll │ │ │ ├── 2005-03-04-ShiftOverflow.ll │ │ │ ├── 2005-04-07-UDivSelectCrash.ll │ │ │ ├── 2005-06-15-DivSelectCrash.ll │ │ │ ├── 2005-06-15-ShiftSetCCCrash.ll │ │ │ ├── 2005-06-16-RangeCrash.ll │ │ │ ├── 2005-06-16-SetCCOrSetCCMiscompile.ll │ │ │ ├── 2005-07-07-DeadPHILoop.ll │ │ │ ├── 2006-02-13-DemandedMiscompile.ll │ │ │ ├── 2006-02-28-Crash.ll │ │ │ ├── 2006-03-30-ExtractElement.ll │ │ │ ├── 2006-04-28-ShiftShiftLongLong.ll │ │ │ ├── 2006-05-04-DemandedBitCrash.ll │ │ │ ├── 2006-09-15-CastToBool.ll │ │ │ ├── 2006-10-19-SignedToUnsignedCastAndConst-2.ll │ │ │ ├── 2006-10-20-mask.ll │ │ │ ├── 2006-10-26-VectorReassoc.ll │ │ │ ├── 2006-11-03-Memmove64.ll │ │ │ ├── 2006-11-10-ashr-miscompile.ll │ │ │ ├── 2006-12-01-BadFPVectorXform.ll │ │ │ ├── 2006-12-05-fp-to-int-ext.ll │ │ │ ├── 2006-12-08-Phi-ICmp-Op-Fold.ll │ │ │ ├── 2006-12-08-Select-ICmp.ll │ │ │ ├── 2006-12-15-Range-Test.ll │ │ │ ├── 2006-12-23-Select-Cmp-Cmp.ll │ │ │ ├── 2007-01-13-ExtCompareMiscompile.ll │ │ │ ├── 2007-01-14-FcmpSelf.ll │ │ │ ├── 2007-01-18-VectorInfLoop.ll │ │ │ ├── 2007-01-27-AndICmp.ll │ │ │ ├── 2007-02-01-LoadSinkAlloca.ll │ │ │ ├── 2007-02-07-PointerCast.ll │ │ │ ├── 2007-02-23-PhiFoldInfLoop.ll │ │ │ ├── 2007-03-13-CompareMerge.ll │ │ │ ├── 2007-03-19-BadTruncChangePR1261.ll │ │ │ ├── 2007-03-21-SignedRangeTest.ll │ │ │ ├── 2007-03-25-BadShiftMask.ll │ │ │ ├── 2007-03-25-DoubleShift.ll │ │ │ ├── 2007-03-26-BadShiftMask.ll │ │ │ ├── 2007-04-04-BadFoldBitcastIntoMalloc.ll │ │ │ ├── 2007-04-08-SingleEltVectorCrash.ll │ │ │ ├── 2007-05-04-Crash.ll │ │ │ ├── 2007-05-10-icmp-or.ll │ │ │ ├── 2007-05-14-Crash.ll │ │ │ ├── 2007-05-18-CastFoldBug.ll │ │ │ ├── 2007-06-06-AshrSignBit.ll │ │ │ ├── 2007-06-21-DivCompareMiscomp.ll │ │ │ ├── 2007-08-02-InfiniteLoop.ll │ │ │ ├── 2007-09-10-AliasConstFold.ll │ │ │ ├── 2007-09-11-Trampoline.ll │ │ │ ├── 2007-09-17-AliasConstFold2.ll │ │ │ ├── 2007-10-10-EliminateMemCpy.ll │ │ │ ├── 2007-10-12-Crash.ll │ │ │ ├── 2007-10-28-stacksave.ll │ │ │ ├── 2007-10-31-RangeCrash.ll │ │ │ ├── 2007-10-31-StringCrash.ll │ │ │ ├── 2007-11-07-OpaqueAlignCrash.ll │ │ │ ├── 2007-11-15-CompareMiscomp.ll │ │ │ ├── 2007-11-22-IcmpCrash.ll │ │ │ ├── 2007-11-25-CompatibleAttributes.ll │ │ │ ├── 2007-12-10-ConstFoldCompare.ll │ │ │ ├── 2007-12-12-GEPScale.ll │ │ │ ├── 2007-12-16-AsmNoUnwind.ll │ │ │ ├── 2007-12-18-AddSelCmpSub.ll │ │ │ ├── 2007-12-28-IcmpSub2.ll │ │ │ ├── 2008-01-06-BitCastAttributes.ll │ │ │ ├── 2008-01-06-CastCrash.ll │ │ │ ├── 2008-01-06-VoidCast.ll │ │ │ ├── 2008-01-13-AndCmpCmp.ll │ │ │ ├── 2008-01-13-NoBitCastAttributes.ll │ │ │ ├── 2008-01-14-DoubleNest.ll │ │ │ ├── 2008-01-14-VarArgTrampoline.ll │ │ │ ├── 2008-01-21-MismatchedCastAndCompare.ll │ │ │ ├── 2008-01-21-MulTrunc.ll │ │ │ ├── 2008-01-27-FloatSelect.ll │ │ │ ├── 2008-01-29-AddICmp.ll │ │ │ ├── 2008-02-13-MulURem.ll │ │ │ ├── 2008-02-16-SDivOverflow.ll │ │ │ ├── 2008-02-16-SDivOverflow2.ll │ │ │ ├── 2008-02-23-MulSub.ll │ │ │ ├── 2008-02-28-OrFCmpCrash.ll │ │ │ ├── 2008-03-13-IntToPtr.ll │ │ │ ├── 2008-04-22-ByValBitcast.ll │ │ │ ├── 2008-04-28-VolatileStore.ll │ │ │ ├── 2008-04-29-VolatileLoadDontMerge.ll │ │ │ ├── 2008-04-29-VolatileLoadMerge.ll │ │ │ ├── 2008-05-08-LiveStoreDelete.ll │ │ │ ├── 2008-05-08-StrLenSink.ll │ │ │ ├── 2008-05-09-SinkOfInvoke.ll │ │ │ ├── 2008-05-17-InfLoop.ll │ │ │ ├── 2008-05-18-FoldIntToPtr.ll │ │ │ ├── 2008-05-22-IDivVector.ll │ │ │ ├── 2008-05-22-NegValVector.ll │ │ │ ├── 2008-05-23-CompareFold.ll │ │ │ ├── 2008-05-31-AddBool.ll │ │ │ ├── 2008-05-31-Bools.ll │ │ │ ├── 2008-06-05-ashr-crash.ll │ │ │ ├── 2008-06-08-ICmpPHI.ll │ │ │ ├── 2008-06-13-InfiniteLoopStore.ll │ │ │ ├── 2008-06-13-ReadOnlyCallStore.ll │ │ │ ├── 2008-06-19-UncondLoad.ll │ │ │ ├── 2008-06-21-CompareMiscomp.ll │ │ │ ├── 2008-06-24-StackRestore.ll │ │ │ ├── 2008-07-08-AndICmp.ll │ │ │ ├── 2008-07-08-ShiftOneAndOne.ll │ │ │ ├── 2008-07-08-SubAnd.ll │ │ │ ├── 2008-07-08-VolatileLoadMerge.ll │ │ │ ├── 2008-07-09-SubAndError.ll │ │ │ ├── 2008-07-10-CastSextBool.ll │ │ │ ├── 2008-07-10-ICmpBinOp.ll │ │ │ ├── 2008-07-11-RemAnd.ll │ │ │ ├── 2008-07-13-DivZero.ll │ │ │ ├── 2008-07-16-fsub.ll │ │ │ ├── 2008-07-16-sse2_storel_dq.ll │ │ │ ├── 2008-08-05-And.ll │ │ │ ├── 2008-08-17-ICmpXorSignbit.ll │ │ │ ├── 2008-09-02-VectorCrash.ll │ │ │ ├── 2008-09-29-FoldingOr.ll │ │ │ ├── 2008-10-11-DivCompareFold.ll │ │ │ ├── 2008-10-23-ConstFoldWithoutMask.ll │ │ │ ├── 2008-11-01-SRemDemandedBits.ll │ │ │ ├── 2008-11-08-FCmp.ll │ │ │ ├── 2008-11-20-DivMulRem.ll │ │ │ ├── 2008-11-27-IDivVector.ll │ │ │ ├── 2008-11-27-MultiplyIntVec.ll │ │ │ ├── 2008-11-27-UDivNegative.ll │ │ │ ├── 2008-12-17-SRemNegConstVec.ll │ │ │ ├── 2009-01-05-i128-crash.ll │ │ │ ├── 2009-01-08-AlignAlloca.ll │ │ │ ├── 2009-01-16-PointerAddrSpace.ll │ │ │ ├── 2009-01-19-fmod-constant-float-specials.ll │ │ │ ├── 2009-01-19-fmod-constant-float.ll │ │ │ ├── 2009-01-24-EmptyStruct.ll │ │ │ ├── 2009-01-31-InfIterate.ll │ │ │ ├── 2009-01-31-Pressure.ll │ │ │ ├── 2009-02-04-FPBitcast.ll │ │ │ ├── 2009-02-20-InstCombine-SROA.ll │ │ │ ├── 2009-02-21-LoadCST.ll │ │ │ ├── 2009-02-25-CrashZeroSizeArray.ll │ │ │ ├── 2009-03-18-vector-ashr-crash.ll │ │ │ ├── 2009-03-20-AShrOverShift.ll │ │ │ ├── 2009-03-24-InfLoop.ll │ │ │ ├── 2009-04-07-MulPromoteToI96.ll │ │ │ ├── 2009-05-23-FCmpToICmp.ll │ │ │ ├── 2009-06-11-StoreAddrSpace.ll │ │ │ ├── 2009-06-16-SRemDemandedBits.ll │ │ │ ├── 2009-07-02-MaskedIntVector.ll │ │ │ ├── 2009-12-17-CmpSelectNull.ll │ │ │ ├── 2010-01-28-NegativeSRem.ll │ │ │ ├── 2010-03-03-ExtElim.ll │ │ │ ├── CPP_min_max.ll │ │ │ ├── IntPtrCast.ll │ │ │ ├── JavaCompare.ll │ │ │ ├── README.txt │ │ │ ├── add-shrink.ll │ │ │ ├── add-sitofp.ll │ │ │ ├── add.ll │ │ │ ├── add2.ll │ │ │ ├── add3.ll │ │ │ ├── addnegneg.ll │ │ │ ├── adjust-for-sminmax.ll │ │ │ ├── align-2d-gep.ll │ │ │ ├── align-addr.ll │ │ │ ├── align-external.ll │ │ │ ├── alloca.ll │ │ │ ├── and-compare.ll │ │ │ ├── and-fcmp.ll │ │ │ ├── and-not-or.ll │ │ │ ├── and-or-and.ll │ │ │ ├── and-or-not.ll │ │ │ ├── and-or.ll │ │ │ ├── and-xor-merge.ll │ │ │ ├── and.ll │ │ │ ├── and2.ll │ │ │ ├── apint-add1.ll │ │ │ ├── apint-add2.ll │ │ │ ├── apint-and-compare.ll │ │ │ ├── apint-and-or-and.ll │ │ │ ├── apint-and-xor-merge.ll │ │ │ ├── apint-and1.ll │ │ │ ├── apint-and2.ll │ │ │ ├── apint-call-cast-target.ll │ │ │ ├── apint-cast-and-cast.ll │ │ │ ├── apint-cast-cast-to-and.ll │ │ │ ├── apint-cast.ll │ │ │ ├── apint-div1.ll │ │ │ ├── apint-div2.ll │ │ │ ├── apint-mul1.ll │ │ │ ├── apint-mul2.ll │ │ │ ├── apint-not.ll │ │ │ ├── apint-or1.ll │ │ │ ├── apint-or2.ll │ │ │ ├── apint-rem1.ll │ │ │ ├── apint-rem2.ll │ │ │ ├── apint-select.ll │ │ │ ├── apint-shift-simplify.ll │ │ │ ├── apint-shift.ll │ │ │ ├── apint-shl-trunc.ll │ │ │ ├── apint-sub.ll │ │ │ ├── apint-xor1.ll │ │ │ ├── apint-xor2.ll │ │ │ ├── apint-zext1.ll │ │ │ ├── apint-zext2.ll │ │ │ ├── ashr-nop.ll │ │ │ ├── badmalloc.ll │ │ │ ├── binop-cast.ll │ │ │ ├── bit-checks.ll │ │ │ ├── bit-tracking.ll │ │ │ ├── bitcast-sext-vector.ll │ │ │ ├── bitcast-vec-canon.ll │ │ │ ├── bitcast-vector-fold.ll │ │ │ ├── bitcast.ll │ │ │ ├── bitcount.ll │ │ │ ├── bittest.ll │ │ │ ├── bswap-fold.ll │ │ │ ├── bswap.ll │ │ │ ├── call-cast-target.ll │ │ │ ├── call-intrinsics.ll │ │ │ ├── call.ll │ │ │ ├── call2.ll │ │ │ ├── canonicalize_branch.ll │ │ │ ├── cast-mul-select.ll │ │ │ ├── cast-set.ll │ │ │ ├── cast.ll │ │ │ ├── cast_ptr.ll │ │ │ ├── compare-signs.ll │ │ │ ├── constant-fold-compare.ll │ │ │ ├── constant-fold-gep.ll │ │ │ ├── crash.ll │ │ │ ├── dce-iterate.ll │ │ │ ├── deadcode.ll │ │ │ ├── dg.exp │ │ │ ├── div-cmp-overflow.ll │ │ │ ├── div.ll │ │ │ ├── enforce-known-alignment.ll │ │ │ ├── exact-sdiv.ll │ │ │ ├── extractvalue.ll │ │ │ ├── fcmp-select.ll │ │ │ ├── fcmp-special.ll │ │ │ ├── fold-bin-operand.ll │ │ │ ├── fold-vector-zero.ll │ │ │ ├── fp-ret-bitcast.ll │ │ │ ├── fpcast.ll │ │ │ ├── fpextend.ll │ │ │ ├── fsub.ll │ │ │ ├── gepgep.ll │ │ │ ├── getelementptr.ll │ │ │ ├── hoist_instr.ll │ │ │ ├── icmp.ll │ │ │ ├── idioms.ll │ │ │ ├── intrinsics.ll │ │ │ ├── invariant.ll │ │ │ ├── known_align.ll │ │ │ ├── load-cmp.ll │ │ │ ├── load-select.ll │ │ │ ├── load.ll │ │ │ ├── load3.ll │ │ │ ├── loadstore-alignment.ll │ │ │ ├── logical-select.ll │ │ │ ├── lshr-phi.ll │ │ │ ├── malloc-free-delete.ll │ │ │ ├── malloc.ll │ │ │ ├── malloc2.ll │ │ │ ├── malloc3.ll │ │ │ ├── memcpy-to-load.ll │ │ │ ├── memcpy.ll │ │ │ ├── memmove.ll │ │ │ ├── memset.ll │ │ │ ├── memset_chk.ll │ │ │ ├── mul-masked-bits.ll │ │ │ ├── mul.ll │ │ │ ├── multi-use-or.ll │ │ │ ├── narrow.ll │ │ │ ├── no-negzero.ll │ │ │ ├── not-fcmp.ll │ │ │ ├── not.ll │ │ │ ├── nothrow.ll │ │ │ ├── nsw.ll │ │ │ ├── objsize.ll │ │ │ ├── odr-linkage.ll │ │ │ ├── or-fcmp.ll │ │ │ ├── or-to-xor.ll │ │ │ ├── or.ll │ │ │ ├── phi-merge-gep.ll │ │ │ ├── phi.ll │ │ │ ├── pr2645-0.ll │ │ │ ├── pr2645-1.ll │ │ │ ├── pr2996.ll │ │ │ ├── preserve-sminmax.ll │ │ │ ├── ptr-int-cast.ll │ │ │ ├── rem.ll │ │ │ ├── sdiv-1.ll │ │ │ ├── sdiv-2.ll │ │ │ ├── sdiv-shift.ll │ │ │ ├── select-2.ll │ │ │ ├── select-load-call.ll │ │ │ ├── select.ll │ │ │ ├── set.ll │ │ │ ├── setcc-strength-reduce.ll │ │ │ ├── sext.ll │ │ │ ├── shift-sra.ll │ │ │ ├── shift.ll │ │ │ ├── shufflemask-undef.ll │ │ │ ├── shufflevec-constant.ll │ │ │ ├── signed-comparison.ll │ │ │ ├── signext.ll │ │ │ ├── simplify-demanded-bits-pointer.ll │ │ │ ├── sink_instruction.ll │ │ │ ├── sitofp.ll │ │ │ ├── sqrt.ll │ │ │ ├── srem-simplify-bug.ll │ │ │ ├── srem.ll │ │ │ ├── srem1.ll │ │ │ ├── stack-overalign.ll │ │ │ ├── stacksaverestore.ll │ │ │ ├── store.ll │ │ │ ├── strcpy_chk.ll │ │ │ ├── sub.ll │ │ │ ├── trunc.ll │ │ │ ├── udiv-simplify-bug-0.ll │ │ │ ├── udiv-simplify-bug-1.ll │ │ │ ├── udiv_select_to_select_shift.ll │ │ │ ├── udivrem-change-width.ll │ │ │ ├── urem-simplify-bug.ll │ │ │ ├── urem.ll │ │ │ ├── vec_demanded_elts-2.ll │ │ │ ├── vec_demanded_elts-3.ll │ │ │ ├── vec_demanded_elts.ll │ │ │ ├── vec_extract_elt.ll │ │ │ ├── vec_insertelt.ll │ │ │ ├── vec_narrow.ll │ │ │ ├── vec_shuffle.ll │ │ │ ├── vector-casts.ll │ │ │ ├── vector-srem.ll │ │ │ ├── volatile_store.ll │ │ │ ├── xor-undef.ll │ │ │ ├── xor.ll │ │ │ ├── xor2.ll │ │ │ ├── zero-point-zero-add.ll │ │ │ ├── zeroext-and-reduce.ll │ │ │ ├── zext-bool-add-sub.ll │ │ │ ├── zext-fold.ll │ │ │ ├── zext-or-icmp.ll │ │ │ └── zext.ll │ │ ├── Internalize │ │ │ ├── 2008-05-09-AllButMain.ll │ │ │ ├── 2008-05-09-AllButMain.ll.apifile │ │ │ ├── 2009-01-05-InternalizeAliases.ll │ │ │ └── dg.exp │ │ ├── JumpThreading │ │ │ ├── 2008-11-27-EntryMunge.ll │ │ │ ├── 2010-08-26-and.ll │ │ │ ├── and-and-cond.ll │ │ │ ├── and-cond.ll │ │ │ ├── basic.ll │ │ │ ├── branch-no-const.ll │ │ │ ├── compare.ll │ │ │ ├── crash.ll │ │ │ ├── dg.exp │ │ │ ├── lvi-load.ll │ │ │ ├── no-irreducible-loops.ll │ │ │ ├── or-undef.ll │ │ │ └── thread-loads.ll │ │ ├── LCSSA │ │ │ ├── 2006-06-03-IncorrectIDFPhis.ll │ │ │ ├── 2006-06-12-MultipleExitsSameBlock.ll │ │ │ ├── 2006-07-09-NoDominator.ll │ │ │ ├── 2006-10-31-UnreachableBlock-2.ll │ │ │ ├── 2006-10-31-UnreachableBlock.ll │ │ │ ├── 2007-07-12-LICM-2.ll │ │ │ ├── 2007-07-12-LICM-3.ll │ │ │ ├── 2007-07-12-LICM.ll │ │ │ ├── basictest.ll │ │ │ ├── dg.exp │ │ │ ├── indirectbr.ll │ │ │ ├── invoke-dest.ll │ │ │ └── unreachable-use.ll │ │ ├── LICM │ │ │ ├── 2003-02-26-LoopExitNotDominated.ll │ │ │ ├── 2003-02-27-NestedLoopExitBlocks.ll │ │ │ ├── 2003-02-27-PreheaderExitNodeUpdate.ll │ │ │ ├── 2003-02-27-PreheaderProblem.ll │ │ │ ├── 2003-02-27-StoreSinkPHIs.ll │ │ │ ├── 2003-02-28-PromoteDifferentType.ll │ │ │ ├── 2003-05-02-LoadHoist.ll │ │ │ ├── 2003-12-11-SinkingToPHI.ll │ │ │ ├── 2004-09-14-AliasAnalysisInvalidate.ll │ │ │ ├── 2004-11-17-UndefIndexCrash.ll │ │ │ ├── 2005-03-24-LICM-Aggregate-Crash.ll │ │ │ ├── 2006-09-12-DeadUserOfSunkInstr.ll │ │ │ ├── 2007-05-22-VolatileSink.ll │ │ │ ├── 2007-07-30-AliasSet.ll │ │ │ ├── 2007-09-17-PromoteValue.ll │ │ │ ├── 2007-09-24-PromoteNullValue.ll │ │ │ ├── 2007-10-01-PromoteSafeValue.ll │ │ │ ├── 2008-05-20-AliasSetVAArg.ll │ │ │ ├── 2008-07-22-LoadGlobalConstant.ll │ │ │ ├── 2009-03-25-AliasSetTracker.ll │ │ │ ├── 2009-12-10-LICM-Indbr-Crash.ll │ │ │ ├── Preserve-LCSSA.ll │ │ │ ├── basictest.ll │ │ │ ├── crash.ll │ │ │ ├── dg.exp │ │ │ ├── hoisting.ll │ │ │ ├── no-preheader-test.ll │ │ │ ├── scalar_promote.ll │ │ │ └── sinking.ll │ │ ├── LoopDeletion │ │ │ ├── 2007-07-23-InfiniteLoop.ll │ │ │ ├── 2008-05-06-Phi.ll │ │ │ ├── dcetest.ll │ │ │ ├── dg.exp │ │ │ ├── multiple-exit-conditions.ll │ │ │ └── simplify-then-delete.ll │ │ ├── LoopIndexSplit │ │ │ ├── 2007-09-21-LoopBound.ll │ │ │ ├── 2007-09-24-UpdateIterationSpace.ll │ │ │ ├── 2007-09-25-UpdateIterationSpace-2.ll │ │ │ ├── 2008-01-28-IndDecrement.ll │ │ │ ├── 2008-02-08-Crash.ll │ │ │ ├── 2008-02-13-ExitValueNum.ll │ │ │ ├── 2008-02-13-LoopLatch.ll │ │ │ ├── 2008-02-13-LoopLatchPHI.ll │ │ │ ├── 2008-02-14-Crash.ll │ │ │ ├── 2008-03-24-ExitPhi.ll │ │ │ ├── 2008-05-19-IndVar.ll │ │ │ ├── 2008-06-03-DomFrontier.ll │ │ │ ├── 2008-07-08-MisCompilation.ll │ │ │ ├── 2008-09-17-IVUse.ll │ │ │ ├── 2008-09-20-Crash.ll │ │ │ ├── 2008-10-06-Crash.ll │ │ │ ├── 2008-10-10-OneIteration.ll │ │ │ ├── 2008-11-10-Sign.ll │ │ │ ├── 2009-03-02-UpdateIterationSpace-crash.ll │ │ │ ├── 2009-03-30-undef.ll │ │ │ ├── Crash-2007-08-17.ll │ │ │ ├── Crash-2007-12-03.ll │ │ │ ├── Crash2-2007-08-17.ll │ │ │ ├── ExitCondition-2007-09-10.ll │ │ │ ├── OneIterLoop-2007-08-17.ll │ │ │ ├── OneIterLoop2-2007-08-17.ll │ │ │ ├── OneIterLoop3-2007-08-17.ll │ │ │ ├── PR3913.ll │ │ │ ├── PR4174-2.ll │ │ │ ├── PR4174.ll │ │ │ ├── SaveLastValue-2007-08-17.ll │ │ │ ├── SplitValue-2007-08-24.ll │ │ │ ├── UpperBound-2007-08-24.ll │ │ │ ├── dg.exp │ │ │ └── non-iv-cmp-operand.ll │ │ ├── LoopRotate │ │ │ ├── 2009-01-25-SingleEntryPhi.ll │ │ │ ├── LRCrash-1.ll │ │ │ ├── LRCrash-2.ll │ │ │ ├── LRCrash-3.ll │ │ │ ├── LRCrash-4.ll │ │ │ ├── LRCrash-5.ll │ │ │ ├── PhiRename-1.ll │ │ │ ├── PhiSelfRefernce-1.ll │ │ │ ├── dg.exp │ │ │ ├── indirectbr.ll │ │ │ ├── phi-duplicate.ll │ │ │ ├── pr2639.ll │ │ │ └── preserve-scev.ll │ │ ├── LoopSimplify │ │ │ ├── 2003-04-25-AssertFail.ll │ │ │ ├── 2003-05-12-PreheaderExitOfChild.ll │ │ │ ├── 2003-08-15-PreheadersFail.ll │ │ │ ├── 2003-12-10-ExitBlocksProblem.ll │ │ │ ├── 2004-02-05-DominatorInfoCorruption.ll │ │ │ ├── 2004-03-15-IncorrectDomUpdate.ll │ │ │ ├── 2004-04-01-IncorrectDomUpdate.ll │ │ │ ├── 2004-04-12-LoopSimplify-SwitchBackedges.ll │ │ │ ├── 2004-04-13-LoopSimplifyUpdateDomFrontier.ll │ │ │ ├── 2007-10-28-InvokeCrash.ll │ │ │ ├── 2010-07-15-IncorrectDomFrontierUpdate.ll │ │ │ ├── basictest.ll │ │ │ ├── dg.exp │ │ │ ├── hardertest.ll │ │ │ ├── indirectbr-backedge.ll │ │ │ ├── indirectbr.ll │ │ │ ├── merge-exits.ll │ │ │ ├── phi-node-simplify.ll │ │ │ ├── preserve-scev.ll │ │ │ ├── single-backedge.ll │ │ │ └── unreachable-loop-pred.ll │ │ ├── LoopStrengthReduce │ │ │ ├── 2005-08-15-AddRecIV.ll │ │ │ ├── 2005-08-17-OutOfLoopVariant.ll │ │ │ ├── 2005-09-12-UsesOutOutsideOfLoop.ll │ │ │ ├── 2007-04-23-UseIterator.ll │ │ │ ├── 2008-08-13-CmpStride.ll │ │ │ ├── 2008-08-14-ShadowIV.ll │ │ │ ├── 2008-09-09-Overflow.ll │ │ │ ├── 2009-01-13-nonconstant-stride-outside-loop.ll │ │ │ ├── 2009-04-28-no-reduce-mul.ll │ │ │ ├── 2009-11-10-LSRCrash.ll │ │ │ ├── count-to-zero.ll │ │ │ ├── dead-phi.ll │ │ │ ├── dg.exp │ │ │ ├── different-type-ivs.ll │ │ │ ├── dont-hoist-simple-loop-constants.ll │ │ │ ├── dont_insert_redundant_ops.ll │ │ │ ├── dont_reduce_bytes.ll │ │ │ ├── dont_reverse.ll │ │ │ ├── exit_compare_live_range.ll │ │ │ ├── invariant_value_first.ll │ │ │ ├── invariant_value_first_arg.ll │ │ │ ├── nested-reduce.ll │ │ │ ├── nonlinear-postinc.ll │ │ │ ├── ops_after_indvar.ll │ │ │ ├── phi_node_update_multiple_preds.ll │ │ │ ├── pr2537.ll │ │ │ ├── pr2570.ll │ │ │ ├── pr3086.ll │ │ │ ├── pr3399.ll │ │ │ ├── pr3571.ll │ │ │ ├── quadradic-exit-value.ll │ │ │ ├── related_indvars.ll │ │ │ ├── remove_indvar.ll │ │ │ ├── share_code_in_preheader.ll │ │ │ ├── share_ivs.ll │ │ │ ├── uglygep.ll │ │ │ ├── use_postinc_value_outside_loop.ll │ │ │ ├── var_stride_used_by_compare.ll │ │ │ └── variable_stride.ll │ │ ├── LoopUnroll │ │ │ ├── 2004-05-13-DontUnrollTooMuch.ll │ │ │ ├── 2005-03-06-BadLoopInfoUpdate.ll │ │ │ ├── 2006-08-24-MultiBlockLoop.ll │ │ │ ├── 2007-04-16-PhiUpdate.ll │ │ │ ├── 2007-05-05-UnrollMiscomp.ll │ │ │ ├── 2007-05-09-UnknownTripCount.ll │ │ │ ├── 2007-11-05-Crash.ll │ │ │ ├── dg.exp │ │ │ └── shifted-tripcount.ll │ │ ├── LoopUnswitch │ │ │ ├── 2006-06-13-SingleEntryPHI.ll │ │ │ ├── 2006-06-27-DeadSwitchCase.ll │ │ │ ├── 2007-05-09-Unreachable.ll │ │ │ ├── 2007-05-09-tl.ll │ │ │ ├── 2007-07-12-ExitDomInfo.ll │ │ │ ├── 2007-07-13-DomInfo.ll │ │ │ ├── 2007-07-18-DomInfo.ll │ │ │ ├── 2007-08-01-Dom.ll │ │ │ ├── 2007-08-01-LCSSA.ll │ │ │ ├── 2007-10-04-DomFrontier.ll │ │ │ ├── 2008-06-02-DomInfo.ll │ │ │ ├── 2008-06-17-DomFrontier.ll │ │ │ ├── 2008-11-03-Invariant.ll │ │ │ ├── basictest.ll │ │ │ ├── crash.ll │ │ │ ├── dg.exp │ │ │ ├── infinite-loop.ll │ │ │ └── preserve-analyses.ll │ │ ├── LowerAtomic │ │ │ ├── atomic-load.ll │ │ │ ├── atomic-swap.ll │ │ │ ├── barrier.ll │ │ │ └── dg.exp │ │ ├── LowerInvoke │ │ │ ├── 2003-12-10-Crash.ll │ │ │ ├── 2004-02-29-PHICrash.ll │ │ │ ├── 2005-08-03-InvokeWithPHI.ll │ │ │ ├── 2005-08-03-InvokeWithPHIUse.ll │ │ │ ├── 2008-02-14-CritEdgePhiCrash.ll │ │ │ ├── basictest.ll │ │ │ └── dg.exp │ │ ├── LowerSetJmp │ │ │ ├── 2003-11-05-DominanceProperties.ll │ │ │ ├── dg.exp │ │ │ └── simpletest.ll │ │ ├── LowerSwitch │ │ │ ├── 2003-05-01-PHIProblem.ll │ │ │ ├── 2003-08-23-EmptySwitch.ll │ │ │ ├── 2004-03-13-SwitchIsDefaultCrash.ll │ │ │ ├── dg.exp │ │ │ └── feature.ll │ │ ├── Mem2Reg │ │ │ ├── 2002-03-28-UninitializedVal.ll │ │ │ ├── 2002-05-01-ShouldNotPromoteThisAlloca.ll │ │ │ ├── 2003-04-10-DFNotFound.ll │ │ │ ├── 2003-04-18-DeadBlockProblem.ll │ │ │ ├── 2003-04-24-MultipleIdenticalSuccessors.ll │ │ │ ├── 2003-06-26-IterativePromote.ll │ │ │ ├── 2003-10-05-DeadPHIInsertion.ll │ │ │ ├── 2005-06-30-ReadBeforeWrite.ll │ │ │ ├── 2005-11-28-Crash.ll │ │ │ ├── 2007-08-27-VolatileLoadsStores.ll │ │ │ ├── ConvertDebugInfo.ll │ │ │ ├── ConvertDebugInfo2.ll │ │ │ ├── PromoteMemToRegister.ll │ │ │ ├── UndefValuesMerge.ll │ │ │ ├── crash.ll │ │ │ └── dg.exp │ │ ├── MemCpyOpt │ │ │ ├── 2008-02-24-MultipleUseofSRet.ll │ │ │ ├── 2008-03-13-ReturnSlotBitcast.ll │ │ │ ├── 2008-04-29-SRetRemoval.ll │ │ │ ├── align.ll │ │ │ ├── crash.ll │ │ │ ├── dg.exp │ │ │ ├── form-memset.ll │ │ │ ├── form-memset2.ll │ │ │ ├── memcpy.ll │ │ │ ├── memmove.ll │ │ │ └── sret.ll │ │ ├── MergeFunc │ │ │ ├── dg.exp │ │ │ ├── fold-weak.ll │ │ │ ├── phi-speculation1.ll │ │ │ ├── phi-speculation2.ll │ │ │ └── vectors-and-arrays.ll │ │ ├── PartialSpecialize │ │ │ ├── dg.exp │ │ │ └── two-specializations.ll │ │ ├── PruneEH │ │ │ ├── 2003-09-14-ExternalCall.ll │ │ │ ├── 2003-11-21-PHIUpdate.ll │ │ │ ├── 2008-06-02-Weak.ll │ │ │ ├── 2008-09-05-CGUpdate.ll │ │ │ ├── dg.exp │ │ │ ├── recursivetest.ll │ │ │ ├── simplenoreturntest.ll │ │ │ └── simpletest.ll │ │ ├── Reassociate │ │ │ ├── 2002-05-15-AgressiveSubMove.ll │ │ │ ├── 2002-05-15-MissedTree.ll │ │ │ ├── 2002-05-15-SubReassociate.ll │ │ │ ├── 2002-05-15-SubReassociate2.ll │ │ │ ├── 2002-07-09-DominanceProblem.ll │ │ │ ├── 2003-08-12-InfiniteLoop.ll │ │ │ ├── 2005-08-24-Crash.ll │ │ │ ├── 2005-09-01-ArrayOutOfBounds.ll │ │ │ ├── 2006-04-27-ReassociateVector.ll │ │ │ ├── basictest.ll │ │ │ ├── crash.ll │ │ │ ├── dg.exp │ │ │ ├── inverses.ll │ │ │ ├── looptest.ll │ │ │ ├── mulfactor.ll │ │ │ ├── mulfactor2.ll │ │ │ ├── negation.ll │ │ │ ├── otherops.ll │ │ │ ├── shift-factor.ll │ │ │ ├── shifttest.ll │ │ │ ├── subtest.ll │ │ │ └── subtest2.ll │ │ ├── SCCP │ │ │ ├── 2002-05-02-EdgeFailure.ll │ │ │ ├── 2002-05-02-MissSecondInst.ll │ │ │ ├── 2002-05-20-MissedIncomingValue.ll │ │ │ ├── 2002-05-21-InvalidSimplify.ll │ │ │ ├── 2002-08-30-GetElementPtrTest.ll │ │ │ ├── 2003-06-24-OverdefinedPHIValue.ll │ │ │ ├── 2003-08-26-InvokeHandling.ll │ │ │ ├── 2004-11-16-DeadInvoke.ll │ │ │ ├── 2004-12-10-UndefBranchBug.ll │ │ │ ├── 2006-10-23-IPSCCP-Crash.ll │ │ │ ├── 2006-12-04-PackedType.ll │ │ │ ├── 2006-12-19-UndefBug.ll │ │ │ ├── 2007-05-16-InvokeCrash.ll │ │ │ ├── 2008-01-27-UndefCorrelate.ll │ │ │ ├── 2008-04-22-multiple-ret-sccp.ll │ │ │ ├── 2008-05-23-UndefCallFold.ll │ │ │ ├── 2009-01-14-IPSCCP-Invoke.ll │ │ │ ├── 2009-05-27-VectorOperandZero.ll │ │ │ ├── apint-array.ll │ │ │ ├── apint-basictest.ll │ │ │ ├── apint-basictest2.ll │ │ │ ├── apint-basictest3.ll │ │ │ ├── apint-basictest4.ll │ │ │ ├── apint-bigarray.ll │ │ │ ├── apint-bigint.ll │ │ │ ├── apint-bigint2.ll │ │ │ ├── apint-ipsccp1.ll │ │ │ ├── apint-ipsccp2.ll │ │ │ ├── apint-ipsccp3.ll │ │ │ ├── apint-ipsccp4.ll │ │ │ ├── apint-load.ll │ │ │ ├── apint-phi.ll │ │ │ ├── apint-select.ll │ │ │ ├── calltest.ll │ │ │ ├── crash.ll │ │ │ ├── dg.exp │ │ │ ├── ipsccp-addr-taken.ll │ │ │ ├── ipsccp-basic.ll │ │ │ ├── loadtest.ll │ │ │ ├── logical-nuke.ll │ │ │ ├── phitest.ll │ │ │ ├── retvalue-undef.ll │ │ │ ├── sccptest.ll │ │ │ ├── select.ll │ │ │ └── undef-resolve.ll │ │ ├── SRETPromotion │ │ │ ├── 2008-03-11-attributes.ll │ │ │ ├── 2008-06-04-function-pointer-passing.ll │ │ │ ├── 2008-06-05-non-call-use.ll │ │ │ ├── basictest.ll │ │ │ └── dg.exp │ │ ├── ScalarRepl │ │ │ ├── 2003-05-29-ArrayFail.ll │ │ │ ├── 2003-05-30-InvalidIndices.ll │ │ │ ├── 2003-05-30-MultiLevel.ll │ │ │ ├── 2003-09-12-IncorrectPromote.ll │ │ │ ├── 2003-10-29-ArrayProblem.ll │ │ │ ├── 2005-12-14-UnionPromoteCrash.ll │ │ │ ├── 2006-01-24-IllegalUnionPromoteCrash.ll │ │ │ ├── 2006-04-20-PromoteCrash.ll │ │ │ ├── 2006-10-23-PointerUnionCrash.ll │ │ │ ├── 2006-11-07-InvalidArrayPromote.ll │ │ │ ├── 2006-12-11-SROA-Crash.ll │ │ │ ├── 2007-03-19-CanonicalizeMemcpy.ll │ │ │ ├── 2007-05-24-LargeAggregate.ll │ │ │ ├── 2007-05-29-MemcpyPreserve.ll │ │ │ ├── 2007-11-03-bigendian_apint.ll │ │ │ ├── 2008-01-29-PromoteBug.ll │ │ │ ├── 2008-02-28-SubElementExtractCrash.ll │ │ │ ├── 2008-06-05-loadstore-agg.ll │ │ │ ├── 2008-06-22-LargeArray.ll │ │ │ ├── 2008-08-22-out-of-range-array-promote.ll │ │ │ ├── 2008-09-22-vector-gep.ll │ │ │ ├── 2009-01-09-scalarrepl-empty.ll │ │ │ ├── 2009-02-02-ScalarPromoteOutOfRange.ll │ │ │ ├── 2009-02-05-LoadFCA.ll │ │ │ ├── 2009-03-04-MemCpyAlign.ll │ │ │ ├── 2009-03-05-Aggre2Scalar-dbg.ll │ │ │ ├── 2009-04-21-ZeroLengthMemSet.ll │ │ │ ├── 2009-05-08-I1Crash.ll │ │ │ ├── 2009-06-01-BitcastIntPadding.ll │ │ │ ├── 2009-08-16-VLA.ll │ │ │ ├── 2009-12-11-NeonTypes.ll │ │ │ ├── 2010-01-18-SelfCopy.ll │ │ │ ├── AggregatePromote.ll │ │ │ ├── DifferingTypes.ll │ │ │ ├── address-space.ll │ │ │ ├── arraytest.ll │ │ │ ├── badarray.ll │ │ │ ├── basictest.ll │ │ │ ├── bitfield-sroa.ll │ │ │ ├── copy-aggregate.ll │ │ │ ├── debuginfo.ll │ │ │ ├── dg.exp │ │ │ ├── load-store-aggregate.ll │ │ │ ├── memcpy-align.ll │ │ │ ├── memcpy-from-global.ll │ │ │ ├── memset-aggregate-byte-leader.ll │ │ │ ├── memset-aggregate.ll │ │ │ ├── nonzero-first-index.ll │ │ │ ├── not-a-vector.ll │ │ │ ├── phinodepromote.ll │ │ │ ├── select_promote.ll │ │ │ ├── sroa-fca.ll │ │ │ ├── sroa_two.ll │ │ │ ├── union-fp-int.ll │ │ │ ├── union-packed.ll │ │ │ ├── union-pointer.ll │ │ │ ├── vector_memcpy.ll │ │ │ ├── vector_promote.ll │ │ │ └── volatile.ll │ │ ├── SimplifyCFG │ │ │ ├── 2002-05-05-EmptyBlockMerge.ll │ │ │ ├── 2002-05-21-PHIElimination.ll │ │ │ ├── 2002-06-24-PHINode.ll │ │ │ ├── 2002-09-24-PHIAssertion.ll │ │ │ ├── 2003-03-07-DominateProblem.ll │ │ │ ├── 2003-08-05-InvokeCrash.ll │ │ │ ├── 2003-08-05-MishandleInvoke.ll │ │ │ ├── 2003-08-17-BranchFold.ll │ │ │ ├── 2003-08-17-BranchFoldOrdering.ll │ │ │ ├── 2003-08-17-FoldSwitch-dbg.ll │ │ │ ├── 2003-08-17-FoldSwitch.ll │ │ │ ├── 2004-12-10-SimplifyCFGCrash.ll │ │ │ ├── 2005-06-16-PHICrash.ll │ │ │ ├── 2005-08-01-PHIUpdateFail.ll │ │ │ ├── 2005-08-03-PHIFactorCrash.ll │ │ │ ├── 2005-10-02-InvokeSimplify.ll │ │ │ ├── 2005-12-03-IncorrectPHIFold.ll │ │ │ ├── 2006-02-17-InfiniteUnroll.ll │ │ │ ├── 2006-06-12-InfLoop.ll │ │ │ ├── 2006-08-03-Crash.ll │ │ │ ├── 2006-10-19-UncondDiv.ll │ │ │ ├── 2006-10-29-InvokeCrash.ll │ │ │ ├── 2006-12-08-Ptr-ICmp-Branch.ll │ │ │ ├── 2007-11-22-InvokeNoUnwind.ll │ │ │ ├── 2007-12-21-Crash.ll │ │ │ ├── 2008-01-02-hoist-fp-add.ll │ │ │ ├── 2008-04-23-MergeMultipleResultRet.ll │ │ │ ├── 2008-04-27-MultipleReturnCrash.ll │ │ │ ├── 2008-05-16-PHIBlockMerge.ll │ │ │ ├── 2008-07-13-InfLoopMiscompile.ll │ │ │ ├── 2008-09-08-MultiplePred.ll │ │ │ ├── 2008-09-17-SpeculativeHoist.ll │ │ │ ├── 2008-10-03-SpeculativelyExecuteBeforePHI.ll │ │ │ ├── 2008-12-06-SingleEntryPhi.ll │ │ │ ├── 2008-12-16-DCECond.ll │ │ │ ├── 2009-01-18-PHIPropCrash.ll │ │ │ ├── 2009-01-19-UnconditionalTrappingConstantExpr.ll │ │ │ ├── 2009-03-05-Speculative-Hoist-Dbg.ll │ │ │ ├── 2009-05-12-externweak.ll │ │ │ ├── 2009-06-15-InvokeCrash.ll │ │ │ ├── 2010-03-30-InvokeCrash.ll │ │ │ ├── BrUnwind.ll │ │ │ ├── DeadSetCC.ll │ │ │ ├── EqualPHIEdgeBlockMerge.ll │ │ │ ├── HoistCode.ll │ │ │ ├── MagicPointer.ll │ │ │ ├── PhiBlockMerge.ll │ │ │ ├── PhiBlockMerge2.ll │ │ │ ├── PhiEliminate.ll │ │ │ ├── PhiEliminate2.ll │ │ │ ├── PhiNoEliminate.ll │ │ │ ├── SpeculativeExec.ll │ │ │ ├── UncondBranchToReturn.ll │ │ │ ├── UnreachableEliminate.ll │ │ │ ├── basictest.ll │ │ │ ├── branch-branch-dbginfo.ll │ │ │ ├── branch-cond-merge.ll │ │ │ ├── branch-cond-prop.ll │ │ │ ├── branch-fold-test.ll │ │ │ ├── branch-fold.ll │ │ │ ├── branch-phi-thread.ll │ │ │ ├── branch_fold_dbg.ll │ │ │ ├── dbginfo.ll │ │ │ ├── dg.exp │ │ │ ├── duplicate-phis.ll │ │ │ ├── hoist-common-code.dbg.ll │ │ │ ├── hoist-common-code.ll │ │ │ ├── indirectbr.ll │ │ │ ├── invoke_unwind.ll │ │ │ ├── iterative-simplify.ll │ │ │ ├── noreturn-call.ll │ │ │ ├── return-merge.ll │ │ │ ├── switch-simplify-crash.ll │ │ │ ├── switch_create.ll │ │ │ ├── switch_formation.dbg.ll │ │ │ ├── switch_formation.ll │ │ │ ├── switch_switch_fold.ll │ │ │ ├── switch_switch_fold_dbginfo.ll │ │ │ ├── switch_thread.ll │ │ │ ├── trapping-load-unreachable.ll │ │ │ ├── two-entry-phi-return.dbg.ll │ │ │ └── two-entry-phi-return.ll │ │ ├── SimplifyLibCalls │ │ │ ├── 2005-05-20-sprintf-crash.ll │ │ │ ├── 2007-04-06-strchr-miscompile.ll │ │ │ ├── 2008-05-19-memcmp.ll │ │ │ ├── 2009-01-04-Annotate.ll │ │ │ ├── 2009-02-11-NotInitialized.ll │ │ │ ├── 2009-02-12-StrTo.ll │ │ │ ├── 2009-05-30-memcmp-byte.ll │ │ │ ├── 2009-07-28-Exit.ll │ │ │ ├── 2009-07-29-Exit2.ll │ │ │ ├── 2010-05-30-memcpy-Struct.ll │ │ │ ├── FFS.ll │ │ │ ├── FPrintF.ll │ │ │ ├── IsDigit.ll │ │ │ ├── MemCpy.ll │ │ │ ├── PR7357.ll │ │ │ ├── Printf.ll │ │ │ ├── Puts.ll │ │ │ ├── SPrintF.ll │ │ │ ├── StrCat.ll │ │ │ ├── StrChr.ll │ │ │ ├── StrCmp.ll │ │ │ ├── StrCpy.ll │ │ │ ├── StrLen.ll │ │ │ ├── StrNCat.ll │ │ │ ├── StrNCmp.ll │ │ │ ├── StrNCpy.ll │ │ │ ├── StrStr.ll │ │ │ ├── ToAscii.ll │ │ │ ├── abs.ll │ │ │ ├── dg.exp │ │ │ ├── exp2.ll │ │ │ ├── floor.ll │ │ │ ├── half-powr.ll │ │ │ ├── memcmp.ll │ │ │ ├── memmove.ll │ │ │ ├── memset-64.ll │ │ │ ├── memset.ll │ │ │ ├── pow-to-sqrt.ll │ │ │ ├── pow2.ll │ │ │ └── weak-symbols.ll │ │ ├── Sink │ │ │ ├── basic.ll │ │ │ └── dg.exp │ │ ├── StripSymbols │ │ │ ├── 2007-01-15-llvm.used.ll │ │ │ ├── 2010-06-30-StripDebug.ll │ │ │ ├── 2010-07-01-DeadDbgInfo.ll │ │ │ ├── 2010-08-25-crash.ll │ │ │ └── dg.exp │ │ ├── TailCallElim │ │ │ ├── 2010-06-26-MultipleReturnValues.ll │ │ │ ├── accum_recursion.ll │ │ │ ├── ackermann.ll │ │ │ ├── dg.exp │ │ │ ├── dont-tce-tail-marked-call.ll │ │ │ ├── dont_reorder_load.ll │ │ │ ├── inf-recursion.ll │ │ │ ├── intervening-inst.ll │ │ │ ├── move_alloca_for_tail_call.ll │ │ │ ├── nocapture.ll │ │ │ ├── reorder_load.ll │ │ │ ├── return_constant.ll │ │ │ └── trivial_codegen_tailcall.ll │ │ └── TailDup │ │ │ ├── 2003-06-24-Simpleloop.ll │ │ │ ├── 2003-07-22-InfiniteLoop.ll │ │ │ ├── 2003-08-23-InvalidatedPointers.ll │ │ │ ├── 2003-08-31-UnreachableBlocks.ll │ │ │ ├── 2004-04-01-DemoteRegToStack.ll │ │ │ ├── 2008-05-13-InfiniteLoop.ll │ │ │ ├── 2008-06-11-AvoidDupLoopHeader.ll │ │ │ ├── 2009-07-31-phicrash.ll │ │ │ ├── MergeTest.ll │ │ │ ├── PHIUpdateTest.ll │ │ │ ├── basictest.ll │ │ │ ├── basictest2.ll │ │ │ ├── dg.exp │ │ │ └── if-tail-dup.ll │ ├── Unit │ │ ├── lit.cfg │ │ └── lit.site.cfg.in │ ├── Verifier │ │ ├── 2002-04-13-RetTypes.ll │ │ ├── 2002-11-05-GetelementptrPointers.ll │ │ ├── 2004-05-21-SwitchConstantMismatch.ll │ │ ├── 2005-03-21-UndefinedTypeReference.ll │ │ ├── 2006-07-11-StoreStruct.ll │ │ ├── 2006-10-15-AddrLabel.ll │ │ ├── 2006-12-12-IntrinsicDefine.ll │ │ ├── 2007-12-21-InvokeParamAttrs.ll │ │ ├── 2008-01-11-VarargAttrs.ll │ │ ├── 2008-03-01-AllocaSized.ll │ │ ├── 2008-08-22-MemCpyAlignment.ll │ │ ├── 2008-11-15-RetVoid.ll │ │ ├── 2009-05-29-InvokeResult1.ll │ │ ├── 2009-05-29-InvokeResult2.ll │ │ ├── 2009-05-29-InvokeResult3.ll │ │ ├── 2010-08-07-PointerIntrinsic.ll │ │ ├── AmbiguousPhi.ll │ │ ├── PhiGrouping.ll │ │ ├── README.txt │ │ ├── SelfReferential.ll │ │ ├── aliasing-chain.ll │ │ ├── byval-1.ll │ │ ├── byval-2.ll │ │ ├── byval-4.ll │ │ ├── dg.exp │ │ ├── gcread-ptrptr.ll │ │ ├── gcroot-alloca.ll │ │ ├── gcroot-meta.ll │ │ ├── gcroot-ptrptr.ll │ │ ├── gcwrite-ptrptr.ll │ │ ├── invoke-1.ll │ │ └── invoke-2.ll │ ├── lib │ │ ├── llvm.exp │ │ └── llvm2cpp.exp │ ├── lit.cfg │ ├── lit.site.cfg.in │ └── site.exp.in │ ├── tools │ ├── CMakeLists.txt │ ├── Makefile │ ├── bugpoint-passes │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── TestPasses.cpp │ │ └── bugpoint.exports │ ├── bugpoint │ │ ├── BugDriver.cpp │ │ ├── BugDriver.h │ │ ├── CMakeLists.txt │ │ ├── CrashDebugger.cpp │ │ ├── ExecutionDriver.cpp │ │ ├── ExtractFunction.cpp │ │ ├── FindBugs.cpp │ │ ├── ListReducer.h │ │ ├── Makefile │ │ ├── Miscompilation.cpp │ │ ├── OptimizerDriver.cpp │ │ ├── ToolRunner.cpp │ │ ├── ToolRunner.h │ │ └── bugpoint.cpp │ ├── clang-2.8.tgz │ ├── clang-3.0.tar.gz │ ├── clang │ │ ├── CMakeLists.txt │ │ ├── INPUTS │ │ │ ├── Cocoa_h.m │ │ │ ├── all-std-headers.cpp │ │ │ ├── c99-intconst-1.c │ │ │ ├── carbon_h.c │ │ │ ├── iostream.cc │ │ │ ├── macro_pounder_fn.c │ │ │ ├── macro_pounder_obj.c │ │ │ └── stpcpy-test.c │ │ ├── INSTALL.txt │ │ ├── LICENSE.TXT │ │ ├── Makefile │ │ ├── ModuleInfo.txt │ │ ├── NOTES.txt │ │ ├── README.txt │ │ ├── TODO.txt │ │ ├── bindings │ │ │ └── python │ │ │ │ ├── README.txt │ │ │ │ ├── clang │ │ │ │ └── cindex.py │ │ │ │ ├── examples │ │ │ │ └── cindex │ │ │ │ │ ├── cindex-dump.py │ │ │ │ │ └── cindex-includes.py │ │ │ │ └── tests │ │ │ │ └── cindex │ │ │ │ ├── INPUTS │ │ │ │ ├── header1.h │ │ │ │ ├── header2.h │ │ │ │ ├── header3.h │ │ │ │ ├── hello.cpp │ │ │ │ ├── include.cpp │ │ │ │ └── parse_arguments.c │ │ │ │ ├── test_cursor.py │ │ │ │ ├── test_cursor_kind.py │ │ │ │ ├── test_diagnostics.py │ │ │ │ ├── test_index.py │ │ │ │ └── test_translation_unit.py │ │ ├── clang.xcodeproj │ │ │ └── project.pbxproj │ │ ├── docs │ │ │ ├── AnalyzerRegions.html │ │ │ ├── Block-ABI-Apple.txt │ │ │ ├── BlockLanguageSpec.txt │ │ │ ├── DriverArchitecture.png │ │ │ ├── DriverInternals.html │ │ │ ├── InternalsManual.html │ │ │ ├── LanguageExtensions.html │ │ │ ├── Makefile │ │ │ ├── PCHInternals.html │ │ │ ├── PCHLayout.graffle │ │ │ ├── PCHLayout.png │ │ │ ├── PTHInternals.html │ │ │ ├── UsersManual.html │ │ │ ├── doxygen.cfg │ │ │ ├── doxygen.cfg.in │ │ │ ├── doxygen.css │ │ │ ├── doxygen.footer │ │ │ ├── doxygen.header │ │ │ ├── doxygen.intro │ │ │ ├── index.html │ │ │ ├── libIndex.html │ │ │ └── tools │ │ │ │ ├── Makefile │ │ │ │ ├── clang.pod │ │ │ │ └── manpage.css │ │ ├── examples │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── PrintFunctionNames │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── PrintFunctionNames.cpp │ │ │ │ ├── PrintFunctionNames.exports │ │ │ │ └── README.txt │ │ │ ├── clang-interpreter │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── README.txt │ │ │ │ └── main.cpp │ │ │ └── wpa │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ └── clang-wpa.cpp │ │ ├── include │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── clang-c │ │ │ │ ├── Index.h │ │ │ │ └── Makefile │ │ │ └── clang │ │ │ │ ├── AST │ │ │ │ ├── APValue.h │ │ │ │ ├── AST.h │ │ │ │ ├── ASTConsumer.h │ │ │ │ ├── ASTContext.h │ │ │ │ ├── ASTDiagnostic.h │ │ │ │ ├── ASTImporter.h │ │ │ │ ├── ASTVector.h │ │ │ │ ├── Attr.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CXXInheritance.h │ │ │ │ ├── CanonicalType.h │ │ │ │ ├── CharUnits.h │ │ │ │ ├── Decl.h │ │ │ │ ├── DeclAccessPair.h │ │ │ │ ├── DeclBase.h │ │ │ │ ├── DeclCXX.h │ │ │ │ ├── DeclContextInternals.h │ │ │ │ ├── DeclFriend.h │ │ │ │ ├── DeclGroup.h │ │ │ │ ├── DeclObjC.h │ │ │ │ ├── DeclTemplate.h │ │ │ │ ├── DeclVisitor.h │ │ │ │ ├── DeclarationName.h │ │ │ │ ├── DependentDiagnostic.h │ │ │ │ ├── Expr.h │ │ │ │ ├── ExprCXX.h │ │ │ │ ├── ExprObjC.h │ │ │ │ ├── ExternalASTSource.h │ │ │ │ ├── FullExpr.h │ │ │ │ ├── Makefile │ │ │ │ ├── NestedNameSpecifier.h │ │ │ │ ├── OperationKinds.h │ │ │ │ ├── ParentMap.h │ │ │ │ ├── PrettyPrinter.h │ │ │ │ ├── RecordLayout.h │ │ │ │ ├── RecursiveASTVisitor.h │ │ │ │ ├── Redeclarable.h │ │ │ │ ├── Stmt.h │ │ │ │ ├── StmtCXX.h │ │ │ │ ├── StmtGraphTraits.h │ │ │ │ ├── StmtIterator.h │ │ │ │ ├── StmtObjC.h │ │ │ │ ├── StmtVisitor.h │ │ │ │ ├── TemplateBase.h │ │ │ │ ├── TemplateName.h │ │ │ │ ├── Type.h │ │ │ │ ├── TypeLoc.h │ │ │ │ ├── TypeLocBuilder.h │ │ │ │ ├── TypeLocNodes.def │ │ │ │ ├── TypeLocVisitor.h │ │ │ │ ├── TypeNodes.def │ │ │ │ ├── TypeOrdering.h │ │ │ │ ├── TypeVisitor.h │ │ │ │ ├── UnresolvedSet.h │ │ │ │ └── UsuallyTinyPtrVector.h │ │ │ │ ├── Analysis │ │ │ │ ├── Analyses │ │ │ │ │ ├── FormatString.h │ │ │ │ │ ├── LiveVariables.h │ │ │ │ │ ├── PseudoConstantAnalysis.h │ │ │ │ │ ├── ReachableCode.h │ │ │ │ │ └── UninitializedValues.h │ │ │ │ ├── AnalysisContext.h │ │ │ │ ├── AnalysisDiagnostic.h │ │ │ │ ├── CFG.h │ │ │ │ ├── CFGStmtMap.h │ │ │ │ ├── FlowSensitive │ │ │ │ │ ├── DataflowSolver.h │ │ │ │ │ └── DataflowValues.h │ │ │ │ ├── ProgramPoint.h │ │ │ │ ├── Support │ │ │ │ │ ├── BlkExprDeclBitVector.h │ │ │ │ │ ├── BumpVector.h │ │ │ │ │ └── SaveAndRestore.h │ │ │ │ └── Visitors │ │ │ │ │ ├── CFGRecStmtDeclVisitor.h │ │ │ │ │ ├── CFGRecStmtVisitor.h │ │ │ │ │ └── CFGStmtVisitor.h │ │ │ │ ├── Basic │ │ │ │ ├── Attr.td │ │ │ │ ├── AttrKinds.h │ │ │ │ ├── Builtins.def │ │ │ │ ├── Builtins.h │ │ │ │ ├── BuiltinsARM.def │ │ │ │ ├── BuiltinsPPC.def │ │ │ │ ├── BuiltinsX86.def │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ConvertUTF.h │ │ │ │ ├── DeclNodes.td │ │ │ │ ├── Diagnostic.h │ │ │ │ ├── Diagnostic.td │ │ │ │ ├── DiagnosticASTKinds.td │ │ │ │ ├── DiagnosticAnalysisKinds.td │ │ │ │ ├── DiagnosticCategories.td │ │ │ │ ├── DiagnosticCommonKinds.td │ │ │ │ ├── DiagnosticDriverKinds.td │ │ │ │ ├── DiagnosticFrontendKinds.td │ │ │ │ ├── DiagnosticGroups.td │ │ │ │ ├── DiagnosticLexKinds.td │ │ │ │ ├── DiagnosticParseKinds.td │ │ │ │ ├── DiagnosticSemaKinds.td │ │ │ │ ├── FileManager.h │ │ │ │ ├── IdentifierTable.h │ │ │ │ ├── LangOptions.h │ │ │ │ ├── Linkage.h │ │ │ │ ├── MacroBuilder.h │ │ │ │ ├── Makefile │ │ │ │ ├── OnDiskHashTable.h │ │ │ │ ├── OperatorKinds.def │ │ │ │ ├── OperatorKinds.h │ │ │ │ ├── PartialDiagnostic.h │ │ │ │ ├── PrettyStackTrace.h │ │ │ │ ├── SourceLocation.h │ │ │ │ ├── SourceManager.h │ │ │ │ ├── SourceManagerInternals.h │ │ │ │ ├── Specifiers.h │ │ │ │ ├── StmtNodes.td │ │ │ │ ├── TargetBuiltins.h │ │ │ │ ├── TargetInfo.h │ │ │ │ ├── TargetOptions.h │ │ │ │ ├── TemplateKinds.h │ │ │ │ ├── TokenKinds.def │ │ │ │ ├── TokenKinds.h │ │ │ │ ├── TypeTraits.h │ │ │ │ ├── Version.h │ │ │ │ ├── Version.inc.in │ │ │ │ └── arm_neon.td │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Checker │ │ │ │ ├── AnalysisConsumer.h │ │ │ │ ├── BugReporter │ │ │ │ │ ├── BugReporter.h │ │ │ │ │ ├── BugType.h │ │ │ │ │ └── PathDiagnostic.h │ │ │ │ ├── Checkers │ │ │ │ │ ├── DereferenceChecker.h │ │ │ │ │ └── LocalCheckers.h │ │ │ │ ├── DomainSpecific │ │ │ │ │ └── CocoaConventions.h │ │ │ │ ├── FrontendActions.h │ │ │ │ ├── ManagerRegistry.h │ │ │ │ ├── PathDiagnosticClients.h │ │ │ │ └── PathSensitive │ │ │ │ │ ├── AnalysisManager.h │ │ │ │ │ ├── BasicValueFactory.h │ │ │ │ │ ├── Checker.h │ │ │ │ │ ├── CheckerHelpers.h │ │ │ │ │ ├── CheckerVisitor.def │ │ │ │ │ ├── CheckerVisitor.h │ │ │ │ │ ├── ConstraintManager.h │ │ │ │ │ ├── Environment.h │ │ │ │ │ ├── ExplodedGraph.h │ │ │ │ │ ├── GRAuditor.h │ │ │ │ │ ├── GRBlockCounter.h │ │ │ │ │ ├── GRCoreEngine.h │ │ │ │ │ ├── GRExprEngine.h │ │ │ │ │ ├── GRExprEngineBuilders.h │ │ │ │ │ ├── GRSimpleAPICheck.h │ │ │ │ │ ├── GRState.h │ │ │ │ │ ├── GRStateTrait.h │ │ │ │ │ ├── GRSubEngine.h │ │ │ │ │ ├── GRTransferFuncs.h │ │ │ │ │ ├── GRWorkList.h │ │ │ │ │ ├── MemRegion.h │ │ │ │ │ ├── SVals.h │ │ │ │ │ ├── SValuator.h │ │ │ │ │ ├── Store.h │ │ │ │ │ ├── SummaryManager.h │ │ │ │ │ ├── SymbolManager.h │ │ │ │ │ └── ValueManager.h │ │ │ │ ├── CodeGen │ │ │ │ ├── BackendUtil.h │ │ │ │ ├── CodeGenAction.h │ │ │ │ └── ModuleBuilder.h │ │ │ │ ├── Driver │ │ │ │ ├── Action.h │ │ │ │ ├── Arg.h │ │ │ │ ├── ArgList.h │ │ │ │ ├── CC1AsOptions.h │ │ │ │ ├── CC1AsOptions.td │ │ │ │ ├── CC1Options.h │ │ │ │ ├── CC1Options.td │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Compilation.h │ │ │ │ ├── Driver.h │ │ │ │ ├── DriverDiagnostic.h │ │ │ │ ├── HostInfo.h │ │ │ │ ├── Job.h │ │ │ │ ├── Makefile │ │ │ │ ├── OptParser.td │ │ │ │ ├── OptSpecifier.h │ │ │ │ ├── OptTable.h │ │ │ │ ├── Option.h │ │ │ │ ├── Options.h │ │ │ │ ├── Options.td │ │ │ │ ├── Phases.h │ │ │ │ ├── Tool.h │ │ │ │ ├── ToolChain.h │ │ │ │ ├── Types.def │ │ │ │ ├── Types.h │ │ │ │ └── Util.h │ │ │ │ ├── Frontend │ │ │ │ ├── ASTConsumers.h │ │ │ │ ├── ASTUnit.h │ │ │ │ ├── Analyses.def │ │ │ │ ├── AnalyzerOptions.h │ │ │ │ ├── ChainedDiagnosticClient.h │ │ │ │ ├── CodeGenOptions.h │ │ │ │ ├── CommandLineSourceLoc.h │ │ │ │ ├── CompilerInstance.h │ │ │ │ ├── CompilerInvocation.h │ │ │ │ ├── DeclContextXML.def │ │ │ │ ├── DeclXML.def │ │ │ │ ├── DependencyOutputOptions.h │ │ │ │ ├── DiagnosticOptions.h │ │ │ │ ├── DocumentXML.def │ │ │ │ ├── DocumentXML.h │ │ │ │ ├── FrontendAction.h │ │ │ │ ├── FrontendActions.h │ │ │ │ ├── FrontendDiagnostic.h │ │ │ │ ├── FrontendOptions.h │ │ │ │ ├── FrontendPluginRegistry.h │ │ │ │ ├── HeaderSearchOptions.h │ │ │ │ ├── LangStandard.h │ │ │ │ ├── LangStandards.def │ │ │ │ ├── PreprocessorOptions.h │ │ │ │ ├── PreprocessorOutputOptions.h │ │ │ │ ├── StmtXML.def │ │ │ │ ├── TextDiagnosticBuffer.h │ │ │ │ ├── TextDiagnosticPrinter.h │ │ │ │ ├── TypeXML.def │ │ │ │ ├── Utils.h │ │ │ │ └── VerifyDiagnosticsClient.h │ │ │ │ ├── FrontendTool │ │ │ │ └── Utils.h │ │ │ │ ├── Index │ │ │ │ ├── ASTLocation.h │ │ │ │ ├── Analyzer.h │ │ │ │ ├── CallGraph.h │ │ │ │ ├── DeclReferenceMap.h │ │ │ │ ├── Entity.h │ │ │ │ ├── GlobalSelector.h │ │ │ │ ├── Handlers.h │ │ │ │ ├── IndexProvider.h │ │ │ │ ├── Indexer.h │ │ │ │ ├── Program.h │ │ │ │ ├── STLExtras.h │ │ │ │ ├── SelectorMap.h │ │ │ │ └── TranslationUnit.h │ │ │ │ ├── Lex │ │ │ │ ├── CodeCompletionHandler.h │ │ │ │ ├── DirectoryLookup.h │ │ │ │ ├── ExternalPreprocessorSource.h │ │ │ │ ├── HeaderMap.h │ │ │ │ ├── HeaderSearch.h │ │ │ │ ├── LexDiagnostic.h │ │ │ │ ├── Lexer.h │ │ │ │ ├── LiteralSupport.h │ │ │ │ ├── MacroInfo.h │ │ │ │ ├── MultipleIncludeOpt.h │ │ │ │ ├── PPCallbacks.h │ │ │ │ ├── PTHLexer.h │ │ │ │ ├── PTHManager.h │ │ │ │ ├── Pragma.h │ │ │ │ ├── PreprocessingRecord.h │ │ │ │ ├── Preprocessor.h │ │ │ │ ├── PreprocessorLexer.h │ │ │ │ ├── ScratchBuffer.h │ │ │ │ ├── Token.h │ │ │ │ ├── TokenConcatenation.h │ │ │ │ └── TokenLexer.h │ │ │ │ ├── Makefile │ │ │ │ ├── Parse │ │ │ │ ├── ParseAST.h │ │ │ │ ├── ParseDiagnostic.h │ │ │ │ └── Parser.h │ │ │ │ ├── Rewrite │ │ │ │ ├── ASTConsumers.h │ │ │ │ ├── DeltaTree.h │ │ │ │ ├── FixItRewriter.h │ │ │ │ ├── FrontendActions.h │ │ │ │ ├── HTMLRewrite.h │ │ │ │ ├── RewriteRope.h │ │ │ │ ├── Rewriter.h │ │ │ │ ├── Rewriters.h │ │ │ │ └── TokenRewriter.h │ │ │ │ ├── Sema │ │ │ │ ├── AnalysisBasedWarnings.h │ │ │ │ ├── AttributeList.h │ │ │ │ ├── CXXFieldCollector.h │ │ │ │ ├── CodeCompleteConsumer.h │ │ │ │ ├── DeclSpec.h │ │ │ │ ├── DelayedDiagnostic.h │ │ │ │ ├── Designator.h │ │ │ │ ├── ExternalSemaSource.h │ │ │ │ ├── IdentifierResolver.h │ │ │ │ ├── Initialization.h │ │ │ │ ├── Lookup.h │ │ │ │ ├── ObjCMethodList.h │ │ │ │ ├── Overload.h │ │ │ │ ├── Ownership.h │ │ │ │ ├── ParsedTemplate.h │ │ │ │ ├── PrettyDeclStackTrace.h │ │ │ │ ├── Scope.h │ │ │ │ ├── ScopeInfo.h │ │ │ │ ├── Sema.h │ │ │ │ ├── SemaConsumer.h │ │ │ │ ├── SemaDiagnostic.h │ │ │ │ ├── SemaInternal.h │ │ │ │ ├── Template.h │ │ │ │ └── TemplateDeduction.h │ │ │ │ └── Serialization │ │ │ │ ├── ASTBitCodes.h │ │ │ │ ├── ASTDeserializationListener.h │ │ │ │ ├── ASTReader.h │ │ │ │ ├── ASTWriter.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── Makefile │ │ ├── lib │ │ │ ├── AST │ │ │ │ ├── APValue.cpp │ │ │ │ ├── ASTConsumer.cpp │ │ │ │ ├── ASTContext.cpp │ │ │ │ ├── ASTDiagnostic.cpp │ │ │ │ ├── ASTImporter.cpp │ │ │ │ ├── AttrImpl.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CXXABI.h │ │ │ │ ├── CXXInheritance.cpp │ │ │ │ ├── Decl.cpp │ │ │ │ ├── DeclBase.cpp │ │ │ │ ├── DeclCXX.cpp │ │ │ │ ├── DeclFriend.cpp │ │ │ │ ├── DeclGroup.cpp │ │ │ │ ├── DeclObjC.cpp │ │ │ │ ├── DeclPrinter.cpp │ │ │ │ ├── DeclTemplate.cpp │ │ │ │ ├── DeclarationName.cpp │ │ │ │ ├── Expr.cpp │ │ │ │ ├── ExprCXX.cpp │ │ │ │ ├── ExprClassification.cpp │ │ │ │ ├── ExprConstant.cpp │ │ │ │ ├── FullExpr.cpp │ │ │ │ ├── InheritViz.cpp │ │ │ │ ├── ItaniumCXXABI.cpp │ │ │ │ ├── Makefile │ │ │ │ ├── MicrosoftCXXABI.cpp │ │ │ │ ├── NestedNameSpecifier.cpp │ │ │ │ ├── ParentMap.cpp │ │ │ │ ├── RecordLayout.cpp │ │ │ │ ├── RecordLayoutBuilder.cpp │ │ │ │ ├── Stmt.cpp │ │ │ │ ├── StmtDumper.cpp │ │ │ │ ├── StmtIterator.cpp │ │ │ │ ├── StmtPrinter.cpp │ │ │ │ ├── StmtProfile.cpp │ │ │ │ ├── StmtViz.cpp │ │ │ │ ├── TemplateBase.cpp │ │ │ │ ├── TemplateName.cpp │ │ │ │ ├── Type.cpp │ │ │ │ ├── TypeLoc.cpp │ │ │ │ └── TypePrinter.cpp │ │ │ ├── Analysis │ │ │ │ ├── AnalysisContext.cpp │ │ │ │ ├── CFG.cpp │ │ │ │ ├── CFGStmtMap.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── FormatString.cpp │ │ │ │ ├── FormatStringParsing.h │ │ │ │ ├── LiveVariables.cpp │ │ │ │ ├── Makefile │ │ │ │ ├── PrintfFormatString.cpp │ │ │ │ ├── PseudoConstantAnalysis.cpp │ │ │ │ ├── ReachableCode.cpp │ │ │ │ ├── ScanfFormatString.cpp │ │ │ │ └── UninitializedValues.cpp │ │ │ ├── Basic │ │ │ │ ├── Builtins.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ConvertUTF.c │ │ │ │ ├── Diagnostic.cpp │ │ │ │ ├── FileManager.cpp │ │ │ │ ├── IdentifierTable.cpp │ │ │ │ ├── Makefile │ │ │ │ ├── SourceLocation.cpp │ │ │ │ ├── SourceManager.cpp │ │ │ │ ├── TargetInfo.cpp │ │ │ │ ├── Targets.cpp │ │ │ │ ├── TokenKinds.cpp │ │ │ │ └── Version.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── Checker │ │ │ │ ├── AdjustedReturnValueChecker.cpp │ │ │ │ ├── AggExprVisitor.cpp │ │ │ │ ├── AnalysisConsumer.cpp │ │ │ │ ├── AnalysisManager.cpp │ │ │ │ ├── ArrayBoundChecker.cpp │ │ │ │ ├── AttrNonNullChecker.cpp │ │ │ │ ├── BasicConstraintManager.cpp │ │ │ │ ├── BasicObjCFoundationChecks.cpp │ │ │ │ ├── BasicObjCFoundationChecks.h │ │ │ │ ├── BasicStore.cpp │ │ │ │ ├── BasicValueFactory.cpp │ │ │ │ ├── BugReporter.cpp │ │ │ │ ├── BugReporterVisitors.cpp │ │ │ │ ├── BuiltinFunctionChecker.cpp │ │ │ │ ├── CFRefCount.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CStringChecker.cpp │ │ │ │ ├── CallAndMessageChecker.cpp │ │ │ │ ├── CastSizeChecker.cpp │ │ │ │ ├── CastToStructChecker.cpp │ │ │ │ ├── CheckDeadStores.cpp │ │ │ │ ├── CheckObjCDealloc.cpp │ │ │ │ ├── CheckObjCInstMethSignature.cpp │ │ │ │ ├── CheckSecuritySyntaxOnly.cpp │ │ │ │ ├── CheckSizeofPointer.cpp │ │ │ │ ├── Checker.cpp │ │ │ │ ├── CheckerHelpers.cpp │ │ │ │ ├── CocoaConventions.cpp │ │ │ │ ├── DereferenceChecker.cpp │ │ │ │ ├── DivZeroChecker.cpp │ │ │ │ ├── Environment.cpp │ │ │ │ ├── ExplodedGraph.cpp │ │ │ │ ├── FixedAddressChecker.cpp │ │ │ │ ├── FlatStore.cpp │ │ │ │ ├── FrontendActions.cpp │ │ │ │ ├── GRBlockCounter.cpp │ │ │ │ ├── GRCXXExprEngine.cpp │ │ │ │ ├── GRCoreEngine.cpp │ │ │ │ ├── GRExprEngine.cpp │ │ │ │ ├── GRExprEngineExperimentalChecks.cpp │ │ │ │ ├── GRExprEngineExperimentalChecks.h │ │ │ │ ├── GRExprEngineInternalChecks.h │ │ │ │ ├── GRState.cpp │ │ │ │ ├── HTMLDiagnostics.cpp │ │ │ │ ├── IdempotentOperationChecker.cpp │ │ │ │ ├── LLVMConventionsChecker.cpp │ │ │ │ ├── MacOSXAPIChecker.cpp │ │ │ │ ├── Makefile │ │ │ │ ├── MallocChecker.cpp │ │ │ │ ├── ManagerRegistry.cpp │ │ │ │ ├── MemRegion.cpp │ │ │ │ ├── NSAutoreleasePoolChecker.cpp │ │ │ │ ├── NSErrorChecker.cpp │ │ │ │ ├── NoReturnFunctionChecker.cpp │ │ │ │ ├── OSAtomicChecker.cpp │ │ │ │ ├── ObjCUnusedIVarsChecker.cpp │ │ │ │ ├── PathDiagnostic.cpp │ │ │ │ ├── PlistDiagnostics.cpp │ │ │ │ ├── PointerArithChecker.cpp │ │ │ │ ├── PointerSubChecker.cpp │ │ │ │ ├── PthreadLockChecker.cpp │ │ │ │ ├── RangeConstraintManager.cpp │ │ │ │ ├── RegionStore.cpp │ │ │ │ ├── ReturnPointerRangeChecker.cpp │ │ │ │ ├── ReturnUndefChecker.cpp │ │ │ │ ├── SVals.cpp │ │ │ │ ├── SValuator.cpp │ │ │ │ ├── SimpleConstraintManager.cpp │ │ │ │ ├── SimpleConstraintManager.h │ │ │ │ ├── SimpleSValuator.cpp │ │ │ │ ├── StackAddrLeakChecker.cpp │ │ │ │ ├── Store.cpp │ │ │ │ ├── StreamChecker.cpp │ │ │ │ ├── SymbolManager.cpp │ │ │ │ ├── UndefBranchChecker.cpp │ │ │ │ ├── UndefCapturedBlockVarChecker.cpp │ │ │ │ ├── UndefResultChecker.cpp │ │ │ │ ├── UndefinedArraySubscriptChecker.cpp │ │ │ │ ├── UndefinedAssignmentChecker.cpp │ │ │ │ ├── UnixAPIChecker.cpp │ │ │ │ ├── UnreachableCodeChecker.cpp │ │ │ │ ├── VLASizeChecker.cpp │ │ │ │ └── ValueManager.cpp │ │ │ ├── CodeGen │ │ │ │ ├── ABIInfo.h │ │ │ │ ├── BackendUtil.cpp │ │ │ │ ├── CGBlocks.cpp │ │ │ │ ├── CGBlocks.h │ │ │ │ ├── CGBuilder.h │ │ │ │ ├── CGBuiltin.cpp │ │ │ │ ├── CGCXX.cpp │ │ │ │ ├── CGCXX.h │ │ │ │ ├── CGCXXABI.h │ │ │ │ ├── CGCall.cpp │ │ │ │ ├── CGCall.h │ │ │ │ ├── CGClass.cpp │ │ │ │ ├── CGDebugInfo.cpp │ │ │ │ ├── CGDebugInfo.h │ │ │ │ ├── CGDecl.cpp │ │ │ │ ├── CGDeclCXX.cpp │ │ │ │ ├── CGException.cpp │ │ │ │ ├── CGException.h │ │ │ │ ├── CGExpr.cpp │ │ │ │ ├── CGExprAgg.cpp │ │ │ │ ├── CGExprCXX.cpp │ │ │ │ ├── CGExprComplex.cpp │ │ │ │ ├── CGExprConstant.cpp │ │ │ │ ├── CGExprScalar.cpp │ │ │ │ ├── CGObjC.cpp │ │ │ │ ├── CGObjCGNU.cpp │ │ │ │ ├── CGObjCMac.cpp │ │ │ │ ├── CGObjCRuntime.h │ │ │ │ ├── CGRTTI.cpp │ │ │ │ ├── CGRecordLayout.h │ │ │ │ ├── CGRecordLayoutBuilder.cpp │ │ │ │ ├── CGStmt.cpp │ │ │ │ ├── CGTemporaries.cpp │ │ │ │ ├── CGVTT.cpp │ │ │ │ ├── CGVTables.cpp │ │ │ │ ├── CGVTables.h │ │ │ │ ├── CGValue.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CodeGenAction.cpp │ │ │ │ ├── CodeGenFunction.cpp │ │ │ │ ├── CodeGenFunction.h │ │ │ │ ├── CodeGenModule.cpp │ │ │ │ ├── CodeGenModule.h │ │ │ │ ├── CodeGenTypes.cpp │ │ │ │ ├── CodeGenTypes.h │ │ │ │ ├── GlobalDecl.h │ │ │ │ ├── ItaniumCXXABI.cpp │ │ │ │ ├── Makefile │ │ │ │ ├── Mangle.cpp │ │ │ │ ├── Mangle.h │ │ │ │ ├── MicrosoftCXXABI.cpp │ │ │ │ ├── ModuleBuilder.cpp │ │ │ │ ├── README.txt │ │ │ │ ├── TargetInfo.cpp │ │ │ │ └── TargetInfo.h │ │ │ ├── Driver │ │ │ │ ├── Action.cpp │ │ │ │ ├── Arg.cpp │ │ │ │ ├── ArgList.cpp │ │ │ │ ├── CC1AsOptions.cpp │ │ │ │ ├── CC1Options.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Compilation.cpp │ │ │ │ ├── Driver.cpp │ │ │ │ ├── DriverOptions.cpp │ │ │ │ ├── HostInfo.cpp │ │ │ │ ├── InputInfo.h │ │ │ │ ├── Job.cpp │ │ │ │ ├── Makefile │ │ │ │ ├── OptTable.cpp │ │ │ │ ├── Option.cpp │ │ │ │ ├── Phases.cpp │ │ │ │ ├── Tool.cpp │ │ │ │ ├── ToolChain.cpp │ │ │ │ ├── ToolChains.cpp │ │ │ │ ├── ToolChains.h │ │ │ │ ├── Tools.cpp │ │ │ │ ├── Tools.h │ │ │ │ └── Types.cpp │ │ │ ├── Frontend │ │ │ │ ├── ASTConsumers.cpp │ │ │ │ ├── ASTMerge.cpp │ │ │ │ ├── ASTUnit.cpp │ │ │ │ ├── BoostConAction.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CacheTokens.cpp │ │ │ │ ├── CompilerInstance.cpp │ │ │ │ ├── CompilerInvocation.cpp │ │ │ │ ├── DeclXML.cpp │ │ │ │ ├── DependencyFile.cpp │ │ │ │ ├── DiagChecker.cpp │ │ │ │ ├── DocumentXML.cpp │ │ │ │ ├── FrontendAction.cpp │ │ │ │ ├── FrontendActions.cpp │ │ │ │ ├── FrontendOptions.cpp │ │ │ │ ├── InitHeaderSearch.cpp │ │ │ │ ├── InitPreprocessor.cpp │ │ │ │ ├── LangStandards.cpp │ │ │ │ ├── Makefile │ │ │ │ ├── PrintPreprocessedOutput.cpp │ │ │ │ ├── StmtXML.cpp │ │ │ │ ├── TextDiagnosticBuffer.cpp │ │ │ │ ├── TextDiagnosticPrinter.cpp │ │ │ │ ├── TypeXML.cpp │ │ │ │ ├── VerifyDiagnosticsClient.cpp │ │ │ │ └── Warnings.cpp │ │ │ ├── FrontendTool │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ExecuteCompilerInvocation.cpp │ │ │ │ └── Makefile │ │ │ ├── Headers │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── altivec.h │ │ │ │ ├── avxintrin.h │ │ │ │ ├── emmintrin.h │ │ │ │ ├── float.h │ │ │ │ ├── immintrin.h │ │ │ │ ├── iso646.h │ │ │ │ ├── limits.h │ │ │ │ ├── mm_malloc.h │ │ │ │ ├── mmintrin.h │ │ │ │ ├── nmmintrin.h │ │ │ │ ├── pmmintrin.h │ │ │ │ ├── smmintrin.h │ │ │ │ ├── stdarg.h │ │ │ │ ├── stdbool.h │ │ │ │ ├── stddef.h │ │ │ │ ├── stdint.h │ │ │ │ ├── tgmath.h │ │ │ │ ├── tmmintrin.h │ │ │ │ ├── varargs.h │ │ │ │ ├── wmmintrin.h │ │ │ │ ├── x86intrin.h │ │ │ │ └── xmmintrin.h │ │ │ ├── Index │ │ │ │ ├── ASTLocation.cpp │ │ │ │ ├── ASTVisitor.h │ │ │ │ ├── Analyzer.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CallGraph.cpp │ │ │ │ ├── DeclReferenceMap.cpp │ │ │ │ ├── Entity.cpp │ │ │ │ ├── EntityImpl.h │ │ │ │ ├── GlobalSelector.cpp │ │ │ │ ├── Handlers.cpp │ │ │ │ ├── IndexProvider.cpp │ │ │ │ ├── Indexer.cpp │ │ │ │ ├── Makefile │ │ │ │ ├── Program.cpp │ │ │ │ ├── ProgramImpl.h │ │ │ │ └── SelectorMap.cpp │ │ │ ├── Lex │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── HeaderMap.cpp │ │ │ │ ├── HeaderSearch.cpp │ │ │ │ ├── Lexer.cpp │ │ │ │ ├── LiteralSupport.cpp │ │ │ │ ├── MacroArgs.cpp │ │ │ │ ├── MacroArgs.h │ │ │ │ ├── MacroInfo.cpp │ │ │ │ ├── Makefile │ │ │ │ ├── PPCaching.cpp │ │ │ │ ├── PPDirectives.cpp │ │ │ │ ├── PPExpressions.cpp │ │ │ │ ├── PPLexerChange.cpp │ │ │ │ ├── PPMacroExpansion.cpp │ │ │ │ ├── PTHLexer.cpp │ │ │ │ ├── Pragma.cpp │ │ │ │ ├── PreprocessingRecord.cpp │ │ │ │ ├── Preprocessor.cpp │ │ │ │ ├── PreprocessorLexer.cpp │ │ │ │ ├── ScratchBuffer.cpp │ │ │ │ ├── TokenConcatenation.cpp │ │ │ │ └── TokenLexer.cpp │ │ │ ├── Makefile │ │ │ ├── Parse │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ ├── ParseAST.cpp │ │ │ │ ├── ParseCXXInlineMethods.cpp │ │ │ │ ├── ParseDecl.cpp │ │ │ │ ├── ParseDeclCXX.cpp │ │ │ │ ├── ParseExpr.cpp │ │ │ │ ├── ParseExprCXX.cpp │ │ │ │ ├── ParseInit.cpp │ │ │ │ ├── ParseObjc.cpp │ │ │ │ ├── ParsePragma.cpp │ │ │ │ ├── ParsePragma.h │ │ │ │ ├── ParseStmt.cpp │ │ │ │ ├── ParseTemplate.cpp │ │ │ │ ├── ParseTentative.cpp │ │ │ │ ├── Parser.cpp │ │ │ │ └── RAIIObjectsForParser.h │ │ │ ├── Rewrite │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── DeltaTree.cpp │ │ │ │ ├── FixItRewriter.cpp │ │ │ │ ├── FrontendActions.cpp │ │ │ │ ├── HTMLPrint.cpp │ │ │ │ ├── HTMLRewrite.cpp │ │ │ │ ├── Makefile │ │ │ │ ├── RewriteMacros.cpp │ │ │ │ ├── RewriteObjC.cpp │ │ │ │ ├── RewriteRope.cpp │ │ │ │ ├── RewriteTest.cpp │ │ │ │ ├── Rewriter.cpp │ │ │ │ └── TokenRewriter.cpp │ │ │ ├── Sema │ │ │ │ ├── AnalysisBasedWarnings.cpp │ │ │ │ ├── AttributeList.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CodeCompleteConsumer.cpp │ │ │ │ ├── DeclSpec.cpp │ │ │ │ ├── IdentifierResolver.cpp │ │ │ │ ├── JumpDiagnostics.cpp │ │ │ │ ├── Makefile │ │ │ │ ├── Sema.cpp │ │ │ │ ├── SemaAccess.cpp │ │ │ │ ├── SemaAttr.cpp │ │ │ │ ├── SemaCXXCast.cpp │ │ │ │ ├── SemaCXXScopeSpec.cpp │ │ │ │ ├── SemaChecking.cpp │ │ │ │ ├── SemaCodeComplete.cpp │ │ │ │ ├── SemaDecl.cpp │ │ │ │ ├── SemaDeclAttr.cpp │ │ │ │ ├── SemaDeclCXX.cpp │ │ │ │ ├── SemaDeclObjC.cpp │ │ │ │ ├── SemaExceptionSpec.cpp │ │ │ │ ├── SemaExpr.cpp │ │ │ │ ├── SemaExprCXX.cpp │ │ │ │ ├── SemaExprObjC.cpp │ │ │ │ ├── SemaInit.cpp │ │ │ │ ├── SemaLookup.cpp │ │ │ │ ├── SemaObjCProperty.cpp │ │ │ │ ├── SemaOverload.cpp │ │ │ │ ├── SemaStmt.cpp │ │ │ │ ├── SemaTemplate.cpp │ │ │ │ ├── SemaTemplateDeduction.cpp │ │ │ │ ├── SemaTemplateInstantiate.cpp │ │ │ │ ├── SemaTemplateInstantiateDecl.cpp │ │ │ │ ├── SemaType.cpp │ │ │ │ ├── TargetAttributesSema.cpp │ │ │ │ ├── TargetAttributesSema.h │ │ │ │ └── TreeTransform.h │ │ │ └── Serialization │ │ │ │ ├── ASTCommon.cpp │ │ │ │ ├── ASTCommon.h │ │ │ │ ├── ASTReader.cpp │ │ │ │ ├── ASTReaderDecl.cpp │ │ │ │ ├── ASTReaderStmt.cpp │ │ │ │ ├── ASTWriter.cpp │ │ │ │ ├── ASTWriterDecl.cpp │ │ │ │ ├── ASTWriterStmt.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── GeneratePCH.cpp │ │ │ │ └── Makefile │ │ ├── runtime │ │ │ └── Makefile │ │ ├── test │ │ │ ├── ASTMerge │ │ │ │ ├── Inputs │ │ │ │ │ ├── category1.m │ │ │ │ │ ├── category2.m │ │ │ │ │ ├── class1.cpp │ │ │ │ │ ├── class2.cpp │ │ │ │ │ ├── enum1.c │ │ │ │ │ ├── enum2.c │ │ │ │ │ ├── exprs1.c │ │ │ │ │ ├── exprs2.c │ │ │ │ │ ├── function1.c │ │ │ │ │ ├── function2.c │ │ │ │ │ ├── interface1.m │ │ │ │ │ ├── interface2.m │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── namespace1.cpp │ │ │ │ │ ├── namespace2.cpp │ │ │ │ │ ├── property1.m │ │ │ │ │ ├── property2.m │ │ │ │ │ ├── struct1.c │ │ │ │ │ ├── struct2.c │ │ │ │ │ ├── typedef1.c │ │ │ │ │ ├── typedef2.c │ │ │ │ │ ├── var1.c │ │ │ │ │ ├── var1.h │ │ │ │ │ └── var2.c │ │ │ │ ├── category.m │ │ │ │ ├── class.cpp │ │ │ │ ├── enum.c │ │ │ │ ├── exprs.c │ │ │ │ ├── function.c │ │ │ │ ├── interface.m │ │ │ │ ├── namespace.cpp │ │ │ │ ├── property.m │ │ │ │ ├── struct.c │ │ │ │ ├── typedef.c │ │ │ │ └── var.c │ │ │ ├── Analysis │ │ │ │ ├── CFDateGC.m │ │ │ │ ├── CFNumber.c │ │ │ │ ├── CFRetainRelease_NSAssertionHandler.m │ │ │ │ ├── CGColorSpace.c │ │ │ │ ├── CheckNSError.m │ │ │ │ ├── MissingDealloc.m │ │ │ │ ├── NSPanel.m │ │ │ │ ├── NSString.m │ │ │ │ ├── NSWindow.m │ │ │ │ ├── NoReturn.m │ │ │ │ ├── ObjCProperties.m │ │ │ │ ├── ObjCRetSigs.m │ │ │ │ ├── PR2599.m │ │ │ │ ├── PR2978.m │ │ │ │ ├── PR3991.m │ │ │ │ ├── PR7218.c │ │ │ │ ├── additive-folding-range-constraints.c │ │ │ │ ├── additive-folding.c │ │ │ │ ├── analyze_display_progress.c │ │ │ │ ├── array-struct-region.c │ │ │ │ ├── array-struct.c │ │ │ │ ├── blocks.m │ │ │ │ ├── bstring.c │ │ │ │ ├── casts.c │ │ │ │ ├── casts.m │ │ │ │ ├── cfref_PR2519.c │ │ │ │ ├── cfref_rdar6080742.c │ │ │ │ ├── complex.c │ │ │ │ ├── concrete-address.c │ │ │ │ ├── conditional-op-missing-lhs.c │ │ │ │ ├── constant-folding.c │ │ │ │ ├── dead-stores.c │ │ │ │ ├── dead-stores.cpp │ │ │ │ ├── dead-stores.m │ │ │ │ ├── delegates.m │ │ │ │ ├── elementtype.c │ │ │ │ ├── exercise-ps.c │ │ │ │ ├── fields.c │ │ │ │ ├── flat-store.c │ │ │ │ ├── free.c │ │ │ │ ├── func.c │ │ │ │ ├── idempotent-operations.c │ │ │ │ ├── idempotent-operations.cpp │ │ │ │ ├── inline.c │ │ │ │ ├── inline2.c │ │ │ │ ├── inline3.c │ │ │ │ ├── inline4.c │ │ │ │ ├── malloc.c │ │ │ │ ├── method-call.cpp │ │ │ │ ├── misc-ps-64.m │ │ │ │ ├── misc-ps-basic-store.m │ │ │ │ ├── misc-ps-eager-assume.m │ │ │ │ ├── misc-ps-flat-store.c │ │ │ │ ├── misc-ps-ranges.m │ │ │ │ ├── misc-ps-region-store-i386.m │ │ │ │ ├── misc-ps-region-store-x86_64.m │ │ │ │ ├── misc-ps-region-store.cpp │ │ │ │ ├── misc-ps-region-store.m │ │ │ │ ├── misc-ps-region-store.mm │ │ │ │ ├── misc-ps.m │ │ │ │ ├── new.cpp │ │ │ │ ├── nil-receiver-undefined-larger-than-voidptr-ret.m │ │ │ │ ├── no-exit-cfg.c │ │ │ │ ├── no-outofbounds.c │ │ │ │ ├── null-deref-ps-region.c │ │ │ │ ├── null-deref-ps.c │ │ │ │ ├── outofbound.c │ │ │ │ ├── override-werror.c │ │ │ │ ├── plist-output.m │ │ │ │ ├── pr4209.m │ │ │ │ ├── pr_2542_rdar_6793404.m │ │ │ │ ├── pr_4164.c │ │ │ │ ├── ptr-arith.c │ │ │ │ ├── rdar-6442306-1.m │ │ │ │ ├── rdar-6540084.m │ │ │ │ ├── rdar-6541136-region.c │ │ │ │ ├── rdar-6541136.c │ │ │ │ ├── rdar-6562655.m │ │ │ │ ├── rdar-6582778-basic-store.c │ │ │ │ ├── rdar-6600344-nil-receiver-undefined-struct-ret.m │ │ │ │ ├── rdar-7168531.m │ │ │ │ ├── refcnt_naming.m │ │ │ │ ├── reference.cpp │ │ │ │ ├── region-1.m │ │ │ │ ├── retain-release-basic-store.m │ │ │ │ ├── retain-release-gc-only.m │ │ │ │ ├── retain-release-region-store.m │ │ │ │ ├── retain-release.m │ │ │ │ ├── security-syntax-checks-no-emit.c │ │ │ │ ├── security-syntax-checks.m │ │ │ │ ├── sizeofpointer.c │ │ │ │ ├── stack-addr-ps.c │ │ │ │ ├── stack-addr-ps.cpp │ │ │ │ ├── stackaddrleak.c │ │ │ │ ├── stream.c │ │ │ │ ├── string.c │ │ │ │ ├── undef-buffers.c │ │ │ │ ├── uninit-msg-expr.m │ │ │ │ ├── uninit-ps-rdar6145427.m │ │ │ │ ├── uninit-vals-ps-region.m │ │ │ │ ├── uninit-vals-ps.c │ │ │ │ ├── uninit-vals.c │ │ │ │ ├── uninit-vals.m │ │ │ │ ├── unions-region.m │ │ │ │ ├── unix-fns.c │ │ │ │ ├── unreachable-code-path.c │ │ │ │ └── unused-ivars.m │ │ │ ├── CMakeLists.txt │ │ │ ├── CXX │ │ │ │ ├── basic │ │ │ │ │ ├── basic.def.odr │ │ │ │ │ │ ├── p1-var.cpp │ │ │ │ │ │ └── p2-typeid.cpp │ │ │ │ │ ├── basic.link │ │ │ │ │ │ └── p9.cpp │ │ │ │ │ ├── basic.lookup │ │ │ │ │ │ ├── basic.lookup.argdep │ │ │ │ │ │ │ ├── p2-template-id.cpp │ │ │ │ │ │ │ ├── p2.cpp │ │ │ │ │ │ │ ├── p3.cpp │ │ │ │ │ │ │ └── p4.cpp │ │ │ │ │ │ ├── basic.lookup.classref │ │ │ │ │ │ │ ├── p1.cpp │ │ │ │ │ │ │ └── p3.cpp │ │ │ │ │ │ ├── basic.lookup.elab │ │ │ │ │ │ │ ├── p2.cpp │ │ │ │ │ │ │ └── templateid.cpp │ │ │ │ │ │ ├── basic.lookup.qual │ │ │ │ │ │ │ ├── class.qual │ │ │ │ │ │ │ │ └── p2.cpp │ │ │ │ │ │ │ ├── namespace.qual │ │ │ │ │ │ │ │ ├── p2.cpp │ │ │ │ │ │ │ │ ├── p3.cpp │ │ │ │ │ │ │ │ ├── p4.cpp │ │ │ │ │ │ │ │ └── p5.cpp │ │ │ │ │ │ │ ├── p6-0x.cpp │ │ │ │ │ │ │ └── p6.cpp │ │ │ │ │ │ ├── basic.lookup.udir │ │ │ │ │ │ │ └── p1.cpp │ │ │ │ │ │ └── basic.lookup.unqual │ │ │ │ │ │ │ ├── p11.cpp │ │ │ │ │ │ │ ├── p12.cpp │ │ │ │ │ │ │ ├── p13.cpp │ │ │ │ │ │ │ ├── p14.cpp │ │ │ │ │ │ │ ├── p15.cpp │ │ │ │ │ │ │ ├── p3.cpp │ │ │ │ │ │ │ └── p7.cpp │ │ │ │ │ ├── basic.scope │ │ │ │ │ │ └── basic.scope.pdecl │ │ │ │ │ │ │ └── p9.cpp │ │ │ │ │ ├── basic.start │ │ │ │ │ │ └── basic.start.main │ │ │ │ │ │ │ ├── p2a.cpp │ │ │ │ │ │ │ ├── p2b.cpp │ │ │ │ │ │ │ ├── p2c.cpp │ │ │ │ │ │ │ ├── p2d.cpp │ │ │ │ │ │ │ ├── p2e.cpp │ │ │ │ │ │ │ ├── p2f.cpp │ │ │ │ │ │ │ └── p2g.cpp │ │ │ │ │ └── basic.stc │ │ │ │ │ │ └── basic.stc.dynamic │ │ │ │ │ │ ├── basic.stc.dynamic.allocation │ │ │ │ │ │ └── p1.cpp │ │ │ │ │ │ ├── basic.stc.dynamic.deallocation │ │ │ │ │ │ └── p1.cpp │ │ │ │ │ │ ├── p2-nodef.cpp │ │ │ │ │ │ ├── p2-noexceptions.cpp │ │ │ │ │ │ └── p2.cpp │ │ │ │ ├── class.access │ │ │ │ │ ├── class.access.base │ │ │ │ │ │ ├── p1.cpp │ │ │ │ │ │ └── p5.cpp │ │ │ │ │ ├── class.access.dcl │ │ │ │ │ │ └── p1.cpp │ │ │ │ │ ├── class.access.nest │ │ │ │ │ │ └── p1.cpp │ │ │ │ │ ├── class.friend │ │ │ │ │ │ ├── p1.cpp │ │ │ │ │ │ ├── p2-cxx03.cpp │ │ │ │ │ │ └── p3-cxx0x.cpp │ │ │ │ │ ├── class.protected │ │ │ │ │ │ └── p1.cpp │ │ │ │ │ ├── p4.cpp │ │ │ │ │ └── p6.cpp │ │ │ │ ├── class.derived │ │ │ │ │ ├── class.abstract │ │ │ │ │ │ ├── p4.cpp │ │ │ │ │ │ └── p5.cpp │ │ │ │ │ ├── class.member.lookup │ │ │ │ │ │ ├── p6.cpp │ │ │ │ │ │ └── p8.cpp │ │ │ │ │ ├── class.virtual │ │ │ │ │ │ ├── p12.cpp │ │ │ │ │ │ └── p2.cpp │ │ │ │ │ └── p2.cpp │ │ │ │ ├── class │ │ │ │ │ ├── class.friend │ │ │ │ │ │ ├── p1-ambiguous.cpp │ │ │ │ │ │ ├── p1.cpp │ │ │ │ │ │ ├── p2.cpp │ │ │ │ │ │ └── p6.cpp │ │ │ │ │ ├── class.local │ │ │ │ │ │ ├── p1.cpp │ │ │ │ │ │ ├── p2.cpp │ │ │ │ │ │ ├── p3.cpp │ │ │ │ │ │ └── p4.cpp │ │ │ │ │ ├── class.mem │ │ │ │ │ │ └── p1.cpp │ │ │ │ │ ├── class.mfct │ │ │ │ │ │ └── class.mfct.non-static │ │ │ │ │ │ │ └── p3.cpp │ │ │ │ │ ├── class.nest │ │ │ │ │ │ ├── p1.cpp │ │ │ │ │ │ └── p3.cpp │ │ │ │ │ ├── class.nested.type │ │ │ │ │ │ └── p1.cpp │ │ │ │ │ ├── class.static │ │ │ │ │ │ └── class.static.data │ │ │ │ │ │ │ └── p4.cpp │ │ │ │ │ └── class.union │ │ │ │ │ │ └── p1.cpp │ │ │ │ ├── conv │ │ │ │ │ ├── conv.mem │ │ │ │ │ │ └── p4.cpp │ │ │ │ │ ├── conv.ptr │ │ │ │ │ │ └── p2.cpp │ │ │ │ │ └── conv.qual │ │ │ │ │ │ └── pr6089.cpp │ │ │ │ ├── dcl.dcl │ │ │ │ │ ├── basic.namespace │ │ │ │ │ │ ├── namespace.def │ │ │ │ │ │ │ ├── namespace.memdef │ │ │ │ │ │ │ │ └── p3.cpp │ │ │ │ │ │ │ ├── namespace.unnamed │ │ │ │ │ │ │ │ └── p1.cpp │ │ │ │ │ │ │ ├── p1.cpp │ │ │ │ │ │ │ ├── p7.cpp │ │ │ │ │ │ │ └── p8.cpp │ │ │ │ │ │ ├── namespace.udecl │ │ │ │ │ │ │ ├── p1.cpp │ │ │ │ │ │ │ ├── p10.cpp │ │ │ │ │ │ │ ├── p11.cpp │ │ │ │ │ │ │ ├── p12.cpp │ │ │ │ │ │ │ ├── p13.cpp │ │ │ │ │ │ │ ├── p3-cxx0x.cpp │ │ │ │ │ │ │ ├── p4.cpp │ │ │ │ │ │ │ ├── p5-cxx0x.cpp │ │ │ │ │ │ │ ├── p6-cxx0x.cpp │ │ │ │ │ │ │ ├── p8-cxx0x.cpp │ │ │ │ │ │ │ └── p8.cpp │ │ │ │ │ │ └── namespace.udir │ │ │ │ │ │ │ ├── p1.cpp │ │ │ │ │ │ │ └── p6.cpp │ │ │ │ │ ├── dcl.enum │ │ │ │ │ │ └── p5.cpp │ │ │ │ │ ├── dcl.link │ │ │ │ │ │ └── p7.cpp │ │ │ │ │ └── dcl.spec │ │ │ │ │ │ ├── dcl.constexpr │ │ │ │ │ │ └── p1.cpp │ │ │ │ │ │ ├── dcl.fct.spec │ │ │ │ │ │ ├── p3.cpp │ │ │ │ │ │ ├── p4.cpp │ │ │ │ │ │ └── p6.cpp │ │ │ │ │ │ ├── dcl.stc │ │ │ │ │ │ ├── p10.cpp │ │ │ │ │ │ └── p9.cpp │ │ │ │ │ │ ├── dcl.type │ │ │ │ │ │ ├── dcl.spec.auto │ │ │ │ │ │ │ ├── p3.cpp │ │ │ │ │ │ │ └── p5.cpp │ │ │ │ │ │ ├── dcl.type.elab │ │ │ │ │ │ │ └── p3.cpp │ │ │ │ │ │ └── dcl.type.simple │ │ │ │ │ │ │ └── p4-cxx0x.cpp │ │ │ │ │ │ └── dcl.typedef │ │ │ │ │ │ ├── p3.cpp │ │ │ │ │ │ └── p4.cpp │ │ │ │ ├── dcl.decl │ │ │ │ │ ├── dcl.init │ │ │ │ │ │ ├── dcl.init.aggr │ │ │ │ │ │ │ └── p4.cpp │ │ │ │ │ │ ├── dcl.init.list │ │ │ │ │ │ │ └── basic.cpp │ │ │ │ │ │ ├── dcl.init.ref │ │ │ │ │ │ │ ├── basic.cpp │ │ │ │ │ │ │ ├── p1.cpp │ │ │ │ │ │ │ ├── p3.cpp │ │ │ │ │ │ │ ├── p5-cxx03-extra-copy.cpp │ │ │ │ │ │ │ ├── p5-cxx0x-no-extra-copy.cpp │ │ │ │ │ │ │ ├── p5-examples.cpp │ │ │ │ │ │ │ ├── p5-var.cpp │ │ │ │ │ │ │ └── p5.cpp │ │ │ │ │ │ ├── p5.cpp │ │ │ │ │ │ └── p6.cpp │ │ │ │ │ ├── dcl.meaning │ │ │ │ │ │ ├── dcl.array │ │ │ │ │ │ │ ├── p1-cxx0x.cpp │ │ │ │ │ │ │ └── p1.cpp │ │ │ │ │ │ ├── dcl.fct.default │ │ │ │ │ │ │ ├── p10.cpp │ │ │ │ │ │ │ ├── p2.cpp │ │ │ │ │ │ │ ├── p3.cpp │ │ │ │ │ │ │ ├── p4.cpp │ │ │ │ │ │ │ ├── p5.cpp │ │ │ │ │ │ │ ├── p6.cpp │ │ │ │ │ │ │ ├── p7.cpp │ │ │ │ │ │ │ └── p8.cpp │ │ │ │ │ │ ├── dcl.fct │ │ │ │ │ │ │ └── p3.cpp │ │ │ │ │ │ ├── dcl.mptr │ │ │ │ │ │ │ └── p3.cpp │ │ │ │ │ │ └── dcl.ref │ │ │ │ │ │ │ └── p5.cpp │ │ │ │ │ └── dcl.name │ │ │ │ │ │ └── p1.cpp │ │ │ │ ├── except │ │ │ │ │ ├── except.handle │ │ │ │ │ │ └── p16.cpp │ │ │ │ │ └── except.spec │ │ │ │ │ │ ├── p14-ir.cpp │ │ │ │ │ │ └── p14.cpp │ │ │ │ ├── expr │ │ │ │ │ ├── expr.post │ │ │ │ │ │ └── expr.ref │ │ │ │ │ │ │ └── p3.cpp │ │ │ │ │ ├── expr.unary │ │ │ │ │ │ ├── expr.delete │ │ │ │ │ │ │ └── p5.cpp │ │ │ │ │ │ ├── expr.new │ │ │ │ │ │ │ ├── p19.cpp │ │ │ │ │ │ │ ├── p20-0x.cpp │ │ │ │ │ │ │ └── p20.cpp │ │ │ │ │ │ └── expr.unary.op │ │ │ │ │ │ │ └── p4.cpp │ │ │ │ │ ├── p3.cpp │ │ │ │ │ ├── p8.cpp │ │ │ │ │ └── p9.cpp │ │ │ │ ├── lex │ │ │ │ │ ├── lex.literal │ │ │ │ │ │ └── lex.ccon │ │ │ │ │ │ │ └── p1.cpp │ │ │ │ │ └── lex.trigraph │ │ │ │ │ │ ├── p1.cpp │ │ │ │ │ │ ├── p2.cpp │ │ │ │ │ │ └── p3.cpp │ │ │ │ ├── over │ │ │ │ │ ├── over.match │ │ │ │ │ │ └── over.match.best │ │ │ │ │ │ │ ├── over.best.ics │ │ │ │ │ │ │ └── over.ics.user │ │ │ │ │ │ │ │ └── p3-0x.cpp │ │ │ │ │ │ │ └── p1.cpp │ │ │ │ │ └── over.over │ │ │ │ │ │ ├── p1.cpp │ │ │ │ │ │ ├── p2.cpp │ │ │ │ │ │ └── p4.cpp │ │ │ │ ├── special │ │ │ │ │ ├── class.copy │ │ │ │ │ │ ├── p20.cpp │ │ │ │ │ │ ├── p3.cpp │ │ │ │ │ │ └── p9.cpp │ │ │ │ │ ├── class.ctor │ │ │ │ │ │ └── p1.cpp │ │ │ │ │ ├── class.dtor │ │ │ │ │ │ ├── p2.cpp │ │ │ │ │ │ └── p9.cpp │ │ │ │ │ └── class.free │ │ │ │ │ │ ├── p1.cpp │ │ │ │ │ │ └── p6.cpp │ │ │ │ ├── stmt.stmt │ │ │ │ │ └── stmt.select │ │ │ │ │ │ └── p3.cpp │ │ │ │ └── temp │ │ │ │ │ ├── temp.arg │ │ │ │ │ ├── temp.arg.nontype │ │ │ │ │ │ ├── p1.cpp │ │ │ │ │ │ └── p5.cpp │ │ │ │ │ └── temp.arg.type │ │ │ │ │ │ └── p2-cxx0x.cpp │ │ │ │ │ ├── temp.decls │ │ │ │ │ ├── temp.class.spec │ │ │ │ │ │ ├── p6.cpp │ │ │ │ │ │ ├── temp.class.order │ │ │ │ │ │ │ └── p2.cpp │ │ │ │ │ │ └── temp.class.spec.mfunc │ │ │ │ │ │ │ ├── p1-neg.cpp │ │ │ │ │ │ │ └── p1.cpp │ │ │ │ │ ├── temp.class │ │ │ │ │ │ ├── temp.mem.class │ │ │ │ │ │ │ └── p1.cpp │ │ │ │ │ │ ├── temp.mem.func │ │ │ │ │ │ │ ├── p1-retmem.cpp │ │ │ │ │ │ │ ├── p1.cpp │ │ │ │ │ │ │ ├── p1inst.cpp │ │ │ │ │ │ │ └── pr5056.cpp │ │ │ │ │ │ └── temp.static │ │ │ │ │ │ │ ├── p1-inst.cpp │ │ │ │ │ │ │ └── p1.cpp │ │ │ │ │ ├── temp.fct │ │ │ │ │ │ ├── temp.func.order │ │ │ │ │ │ │ ├── p4.cpp │ │ │ │ │ │ │ └── p5.cpp │ │ │ │ │ │ └── temp.over.link │ │ │ │ │ │ │ ├── p4-neg.cpp │ │ │ │ │ │ │ ├── p4.cpp │ │ │ │ │ │ │ └── p6.cpp │ │ │ │ │ ├── temp.friend │ │ │ │ │ │ ├── p1.cpp │ │ │ │ │ │ ├── p3.cpp │ │ │ │ │ │ ├── p4.cpp │ │ │ │ │ │ └── p5.cpp │ │ │ │ │ ├── temp.mem │ │ │ │ │ │ ├── p1.cpp │ │ │ │ │ │ └── p5.cpp │ │ │ │ │ └── temp.variadic │ │ │ │ │ │ └── parameter-matching.cpp │ │ │ │ │ ├── temp.fct.spec │ │ │ │ │ ├── temp.arg.explicit │ │ │ │ │ │ ├── p1.cpp │ │ │ │ │ │ ├── p3-nodeduct.cpp │ │ │ │ │ │ └── p3.cpp │ │ │ │ │ └── temp.deduct │ │ │ │ │ │ ├── p9.cpp │ │ │ │ │ │ ├── sfinae-1.cpp │ │ │ │ │ │ ├── temp.deduct.call │ │ │ │ │ │ ├── basic.cpp │ │ │ │ │ │ ├── p2.cpp │ │ │ │ │ │ ├── p3.cpp │ │ │ │ │ │ └── p6.cpp │ │ │ │ │ │ ├── temp.deduct.conv │ │ │ │ │ │ ├── p2.cpp │ │ │ │ │ │ ├── p3.cpp │ │ │ │ │ │ └── p4.cpp │ │ │ │ │ │ ├── temp.deduct.funcaddr │ │ │ │ │ │ └── p1.cpp │ │ │ │ │ │ ├── temp.deduct.partial │ │ │ │ │ │ └── p11.cpp │ │ │ │ │ │ └── temp.deduct.type │ │ │ │ │ │ └── p17.cpp │ │ │ │ │ ├── temp.names │ │ │ │ │ ├── p2.cpp │ │ │ │ │ └── p4.cpp │ │ │ │ │ ├── temp.param │ │ │ │ │ ├── p1.cpp │ │ │ │ │ ├── p10.cpp │ │ │ │ │ ├── p11.cpp │ │ │ │ │ ├── p12.cpp │ │ │ │ │ ├── p13.cpp │ │ │ │ │ ├── p14.cpp │ │ │ │ │ ├── p15-cxx0x.cpp │ │ │ │ │ ├── p15.cpp │ │ │ │ │ ├── p2.cpp │ │ │ │ │ ├── p3.cpp │ │ │ │ │ ├── p4.cpp │ │ │ │ │ ├── p7.cpp │ │ │ │ │ ├── p8.cpp │ │ │ │ │ └── p9.cpp │ │ │ │ │ ├── temp.res │ │ │ │ │ ├── temp.dep.res │ │ │ │ │ │ └── temp.point │ │ │ │ │ │ │ └── p1.cpp │ │ │ │ │ ├── temp.dep │ │ │ │ │ │ └── p3.cpp │ │ │ │ │ └── temp.local │ │ │ │ │ │ ├── p1.cpp │ │ │ │ │ │ ├── p3.cpp │ │ │ │ │ │ ├── p7.cpp │ │ │ │ │ │ ├── p8.cpp │ │ │ │ │ │ └── p9.cpp │ │ │ │ │ └── temp.spec │ │ │ │ │ ├── p5.cpp │ │ │ │ │ ├── temp.expl.spec │ │ │ │ │ ├── p1.cpp │ │ │ │ │ ├── p10.cpp │ │ │ │ │ ├── p11.cpp │ │ │ │ │ ├── p13.cpp │ │ │ │ │ ├── p14.cpp │ │ │ │ │ ├── p15.cpp │ │ │ │ │ ├── p16.cpp │ │ │ │ │ ├── p17.cpp │ │ │ │ │ ├── p18.cpp │ │ │ │ │ ├── p19.cpp │ │ │ │ │ ├── p2.cpp │ │ │ │ │ ├── p20.cpp │ │ │ │ │ ├── p21.cpp │ │ │ │ │ ├── p3.cpp │ │ │ │ │ ├── p4.cpp │ │ │ │ │ ├── p5.cpp │ │ │ │ │ ├── p6.cpp │ │ │ │ │ └── p9.cpp │ │ │ │ │ ├── temp.explicit │ │ │ │ │ ├── p1-0x.cpp │ │ │ │ │ ├── p1-emit.cpp │ │ │ │ │ ├── p1.cpp │ │ │ │ │ ├── p10.cpp │ │ │ │ │ ├── p11.cpp │ │ │ │ │ ├── p12.cpp │ │ │ │ │ ├── p2.cpp │ │ │ │ │ ├── p3.cpp │ │ │ │ │ ├── p4.cpp │ │ │ │ │ ├── p5.cpp │ │ │ │ │ ├── p6.cpp │ │ │ │ │ ├── p7.cpp │ │ │ │ │ ├── p8.cpp │ │ │ │ │ ├── p9-linkage.cpp │ │ │ │ │ └── p9.cpp │ │ │ │ │ └── temp.inst │ │ │ │ │ └── p11.cpp │ │ │ ├── CodeCompletion │ │ │ │ ├── Inputs │ │ │ │ │ ├── macros.h │ │ │ │ │ └── reserved.h │ │ │ │ ├── call.c │ │ │ │ ├── call.cpp │ │ │ │ ├── enum-switch-case-qualified.cpp │ │ │ │ ├── enum-switch-case.c │ │ │ │ ├── enum-switch-case.cpp │ │ │ │ ├── function-templates.cpp │ │ │ │ ├── functions.cpp │ │ │ │ ├── macros.c │ │ │ │ ├── member-access.c │ │ │ │ ├── member-access.cpp │ │ │ │ ├── namespace-alias.cpp │ │ │ │ ├── namespace.cpp │ │ │ │ ├── nested-name-specifier.cpp │ │ │ │ ├── objc-message.m │ │ │ │ ├── operator.cpp │ │ │ │ ├── ordinary-name.c │ │ │ │ ├── ordinary-name.cpp │ │ │ │ ├── tag.c │ │ │ │ ├── tag.cpp │ │ │ │ ├── templates.cpp │ │ │ │ ├── truncation.c │ │ │ │ ├── truncation.c.h │ │ │ │ ├── using-namespace.cpp │ │ │ │ └── using.cpp │ │ │ ├── CodeGen │ │ │ │ ├── 2007-11-29-ArraySizeFromInitializer.c │ │ │ │ ├── 2008-02-07-bitfield-bug.c │ │ │ │ ├── 2008-02-08-bitfield-bug.c │ │ │ │ ├── 2008-02-26-inline-asm-bug.c │ │ │ │ ├── 2008-07-17-no-emit-on-error.c │ │ │ │ ├── 2008-07-21-mixed-var-fn-decl.c │ │ │ │ ├── 2008-07-22-bitfield-init-after-zero-len-array.c │ │ │ │ ├── 2008-07-22-packed-bitfield-access.c │ │ │ │ ├── 2008-07-29-override-alias-decl.c │ │ │ │ ├── 2008-07-30-implicit-initialization.c │ │ │ │ ├── 2008-07-30-redef-of-bitcasted-decl.c │ │ │ │ ├── 2008-07-31-asm-labels.c │ │ │ │ ├── 2008-07-31-promotion-of-compound-pointer-arithmetic.c │ │ │ │ ├── 2008-08-04-void-pointer-arithmetic.c │ │ │ │ ├── 2008-08-19-cast-of-typedef.c │ │ │ │ ├── 2008-08-25-incompatible-cond-expr.m │ │ │ │ ├── 2008-09-22-bad-switch-type.c │ │ │ │ ├── 2009-01-21-invalid-debug-info.m │ │ │ │ ├── 2009-03-22-increment-bitfield.c │ │ │ │ ├── 2009-04-23-dbg.c │ │ │ │ ├── 2009-05-22-callingconv.c │ │ │ │ ├── 2009-05-28-const-typedef.c │ │ │ │ ├── 2009-06-01-addrofknr.c │ │ │ │ ├── 2009-06-14-anonymous-union-init.c │ │ │ │ ├── 2009-07-31-DbgDeclare.c │ │ │ │ ├── 2009-08-14-vararray-crash.c │ │ │ │ ├── 2009-10-20-GlobalDebug.c │ │ │ │ ├── 2010-02-09-DbgSelf.m │ │ │ │ ├── 2010-02-15-Dbg-MethodStart.m │ │ │ │ ├── 2010-02-16-DbgScopes.c │ │ │ │ ├── 2010-02-18-Dbg-VectorType.c │ │ │ │ ├── 2010-03-09-DbgInfo.c │ │ │ │ ├── 2010-08-10-DbgConstant.c │ │ │ │ ├── OpaqueStruct.c │ │ │ │ ├── PR2001-bitfield-reload.c │ │ │ │ ├── PR2413-void-address-cast-error.c │ │ │ │ ├── PR2643-null-store-to-bitfield.c │ │ │ │ ├── PR2743-reference-missing-static.c │ │ │ │ ├── PR3130-cond-constant.c │ │ │ │ ├── PR3589-freestanding-libcalls.c │ │ │ │ ├── PR3613-static-decl.c │ │ │ │ ├── PR3709-int-to-pointer-sign.c │ │ │ │ ├── PR4611-bitfield-layout.c │ │ │ │ ├── PR5060-align.c │ │ │ │ ├── address-space-cast.c │ │ │ │ ├── address-space-compound-literal.c │ │ │ │ ├── address-space-field1.c │ │ │ │ ├── address-space.c │ │ │ │ ├── alias.c │ │ │ │ ├── align-local.c │ │ │ │ ├── alignof.c │ │ │ │ ├── altivec.c │ │ │ │ ├── always_inline.c │ │ │ │ ├── annotate.c │ │ │ │ ├── arm-arguments.c │ │ │ │ ├── arm-cc.c │ │ │ │ ├── array.c │ │ │ │ ├── asm-errors.c │ │ │ │ ├── asm-inout.c │ │ │ │ ├── asm.c │ │ │ │ ├── asm_arm.c │ │ │ │ ├── assign.c │ │ │ │ ├── atomic.c │ │ │ │ ├── attr-cleanup.c │ │ │ │ ├── attr-nodebug.c │ │ │ │ ├── attr-noinline.c │ │ │ │ ├── attr-used.c │ │ │ │ ├── attr-weakref.c │ │ │ │ ├── attr-weakref2.c │ │ │ │ ├── attributes.c │ │ │ │ ├── available-externally-suppress.c │ │ │ │ ├── bitfield-2.c │ │ │ │ ├── bitfield-assign.c │ │ │ │ ├── bitfield-init.c │ │ │ │ ├── bitfield-promote.c │ │ │ │ ├── bitfield.c │ │ │ │ ├── block-decl-merging.c │ │ │ │ ├── blocks-1.c │ │ │ │ ├── blocks-2.c │ │ │ │ ├── blocks-aligned-byref-variable.c │ │ │ │ ├── blocks-seq.c │ │ │ │ ├── blocks.c │ │ │ │ ├── blocksignature.c │ │ │ │ ├── blockstret.c │ │ │ │ ├── bool-bitfield.c │ │ │ │ ├── bool-convert.c │ │ │ │ ├── bool-init.c │ │ │ │ ├── boolassign.c │ │ │ │ ├── builtin-attributes.c │ │ │ │ ├── builtin-count-zeros.c │ │ │ │ ├── builtin-expect.c │ │ │ │ ├── builtin-memfns.c │ │ │ │ ├── builtin-nanf.c │ │ │ │ ├── builtin-rename.c │ │ │ │ ├── builtin-stackaddress.c │ │ │ │ ├── builtin-unwind-init.c │ │ │ │ ├── builtinmemcpy.c │ │ │ │ ├── builtins-arm.c │ │ │ │ ├── builtins-ppc-altivec.c │ │ │ │ ├── builtins-x86.c │ │ │ │ ├── builtins.c │ │ │ │ ├── builtinshufflevector.c │ │ │ │ ├── c-strings.c │ │ │ │ ├── call-knr-indirect.c │ │ │ │ ├── cast-emit.c │ │ │ │ ├── cast.c │ │ │ │ ├── catch-undef-behavior.c │ │ │ │ ├── cfstring.c │ │ │ │ ├── cfstring2.c │ │ │ │ ├── cleanup-stack.c │ │ │ │ ├── complex.c │ │ │ │ ├── compound-literal.c │ │ │ │ ├── compound-type.c │ │ │ │ ├── compound.c │ │ │ │ ├── conditional-gnu-ext.c │ │ │ │ ├── conditional.c │ │ │ │ ├── const-arithmetic.c │ │ │ │ ├── const-init.c │ │ │ │ ├── const-label-addr.c │ │ │ │ ├── const-unordered-compare.c │ │ │ │ ├── constant-comparison.c │ │ │ │ ├── constructor-attribute.c │ │ │ │ ├── cxx-condition.cpp │ │ │ │ ├── cxx-default-arg.cpp │ │ │ │ ├── cxx-value-init.cpp │ │ │ │ ├── darwin-string-literals.c │ │ │ │ ├── debug-info-crash.c │ │ │ │ ├── debug-info-enum.c │ │ │ │ ├── debug-info-scope.c │ │ │ │ ├── debug-info.c │ │ │ │ ├── decl.c │ │ │ │ ├── designated-initializers.c │ │ │ │ ├── dllimport-dllexport.c │ │ │ │ ├── dostmt.c │ │ │ │ ├── emit-all-decls.c │ │ │ │ ├── empty-union-init.c │ │ │ │ ├── enum.c │ │ │ │ ├── enum2.c │ │ │ │ ├── exprs.c │ │ │ │ ├── ext-vector-shuffle.c │ │ │ │ ├── ext-vector.c │ │ │ │ ├── extern-block-var.c │ │ │ │ ├── extern-inline.c │ │ │ │ ├── flexible-array-init.c │ │ │ │ ├── fold-const-declref.c │ │ │ │ ├── frame-pointer-elim.c │ │ │ │ ├── func-decl-cleanup.c │ │ │ │ ├── func-in-block.c │ │ │ │ ├── func-ptr-cast-decl.c │ │ │ │ ├── func-return-member.c │ │ │ │ ├── function-attributes.c │ │ │ │ ├── function-decay.m │ │ │ │ ├── functions.c │ │ │ │ ├── global-decls.c │ │ │ │ ├── global-init.c │ │ │ │ ├── global-with-initialiser.c │ │ │ │ ├── globalinit.c │ │ │ │ ├── illegal-UTF8.m │ │ │ │ ├── incomplete-function-type.c │ │ │ │ ├── indirect-goto.c │ │ │ │ ├── init-with-member-expr.c │ │ │ │ ├── init.c │ │ │ │ ├── inline.c │ │ │ │ ├── inline2.c │ │ │ │ ├── instrument-functions.c │ │ │ │ ├── int-to-pointer.c │ │ │ │ ├── integer-overflow.c │ │ │ │ ├── kr-func-promote.c │ │ │ │ ├── kr-style-block.c │ │ │ │ ├── libcalls.c │ │ │ │ ├── lineno-dbginfo.c │ │ │ │ ├── linkage-redecl.c │ │ │ │ ├── long-double-x86.c │ │ │ │ ├── mandel.c │ │ │ │ ├── mangle.c │ │ │ │ ├── merge-attrs.c │ │ │ │ ├── merge-statics.c │ │ │ │ ├── microsoft-call-conv.c │ │ │ │ ├── no-common.c │ │ │ │ ├── object-size.c │ │ │ │ ├── offsetof.c │ │ │ │ ├── opaque-pointer.c │ │ │ │ ├── overloadable.c │ │ │ │ ├── packed-structure.c │ │ │ │ ├── packed-union.c │ │ │ │ ├── palignr.c │ │ │ │ ├── parameter-passing.c │ │ │ │ ├── pascal-string.c │ │ │ │ ├── pascal-wchar-string.c │ │ │ │ ├── pointer-arithmetic.c │ │ │ │ ├── pointer-cmp-type.c │ │ │ │ ├── pointer-to-int.c │ │ │ │ ├── pragma-pack-1.c │ │ │ │ ├── pragma-pack-2.c │ │ │ │ ├── pragma-pack-3.c │ │ │ │ ├── pragma-visibility.c │ │ │ │ ├── pragma-weak.c │ │ │ │ ├── predefined-expr.c │ │ │ │ ├── private-extern.c │ │ │ │ ├── rdr-6732143-dangling-block-reference.m │ │ │ │ ├── regparm.c │ │ │ │ ├── restrict.c │ │ │ │ ├── shared-string-literals.c │ │ │ │ ├── sizeof-vla.c │ │ │ │ ├── stack-protector.c │ │ │ │ ├── statements.c │ │ │ │ ├── static-forward-decl-fun.c │ │ │ │ ├── static-forward-decl.c │ │ │ │ ├── static-local-union.c │ │ │ │ ├── static-order.c │ │ │ │ ├── staticinit.c │ │ │ │ ├── stdcall-fastcall.c │ │ │ │ ├── string-literal.c │ │ │ │ ├── struct-comma.c │ │ │ │ ├── struct-copy.c │ │ │ │ ├── struct-init.c │ │ │ │ ├── struct-passing.c │ │ │ │ ├── struct-x86-darwin.c │ │ │ │ ├── struct.c │ │ │ │ ├── switch.c │ │ │ │ ├── target-data.c │ │ │ │ ├── tentative-decls.c │ │ │ │ ├── thread-specifier.c │ │ │ │ ├── trapv.c │ │ │ │ ├── typedef-func.c │ │ │ │ ├── typedef.c │ │ │ │ ├── types.c │ │ │ │ ├── uint128_t.c │ │ │ │ ├── union-init.c │ │ │ │ ├── union-init2.c │ │ │ │ ├── union.c │ │ │ │ ├── unreachable.c │ │ │ │ ├── unwind-attr.c │ │ │ │ ├── var-align.c │ │ │ │ ├── varargs.c │ │ │ │ ├── variable-array.c │ │ │ │ ├── vector.c │ │ │ │ ├── vfprintf.c │ │ │ │ ├── visibility.c │ │ │ │ ├── vla.c │ │ │ │ ├── volatile-1.c │ │ │ │ ├── volatile.c │ │ │ │ ├── weak-global.c │ │ │ │ ├── weak-incomplete.c │ │ │ │ ├── whilestmt.c │ │ │ │ ├── writable-strings.c │ │ │ │ ├── x86.c │ │ │ │ ├── x86_32-arguments.c │ │ │ │ └── x86_64-arguments.c │ │ │ ├── CodeGenCXX │ │ │ │ ├── 2010-03-09-AnonAggregate.cpp │ │ │ │ ├── DynArrayInit.cpp │ │ │ │ ├── PR4827-cast.cpp │ │ │ │ ├── PR4983-constructor-conversion.cpp │ │ │ │ ├── PR5050-constructor-conversion.cpp │ │ │ │ ├── PR5093-static-member-function.cpp │ │ │ │ ├── PR5834-constructor-conversion.cpp │ │ │ │ ├── PR5863-unreachable-block.cpp │ │ │ │ ├── PR6474.cpp │ │ │ │ ├── address-of-fntemplate.cpp │ │ │ │ ├── alloca-align.cpp │ │ │ │ ├── anonymous-namespaces.cpp │ │ │ │ ├── anonymous-union-member-initializer.cpp │ │ │ │ ├── arm-cc.cpp │ │ │ │ ├── arm.cpp │ │ │ │ ├── array-construction.cpp │ │ │ │ ├── array-operator-delete-call.cpp │ │ │ │ ├── array-pointer-decay.cpp │ │ │ │ ├── array-value-initialize.cpp │ │ │ │ ├── assign-operator.cpp │ │ │ │ ├── attr.cpp │ │ │ │ ├── bitfield-layout.cpp │ │ │ │ ├── block-destruct.cpp │ │ │ │ ├── block-in-ctor-dtor.cpp │ │ │ │ ├── c-linkage.cpp │ │ │ │ ├── c99-variable-length-array.cpp │ │ │ │ ├── call-arg-zero-temp.cpp │ │ │ │ ├── cast-conversion.cpp │ │ │ │ ├── casts.cpp │ │ │ │ ├── class-layout.cpp │ │ │ │ ├── condition.cpp │ │ │ │ ├── conditional-expr-lvalue.cpp │ │ │ │ ├── conditional-temporaries.cpp │ │ │ │ ├── const-base-cast.cpp │ │ │ │ ├── const-global-linkage.cpp │ │ │ │ ├── const-init.cpp │ │ │ │ ├── constructor-conversion.cpp │ │ │ │ ├── constructor-convert.cpp │ │ │ │ ├── constructor-default-arg.cpp │ │ │ │ ├── constructor-for-array-members.cpp │ │ │ │ ├── constructor-init-reference.cpp │ │ │ │ ├── constructor-init.cpp │ │ │ │ ├── constructor-template.cpp │ │ │ │ ├── constructors.cpp │ │ │ │ ├── conversion-function.cpp │ │ │ │ ├── conversion-operator-base.cpp │ │ │ │ ├── convert-to-fptr.cpp │ │ │ │ ├── copy-assign-synthesis-1.cpp │ │ │ │ ├── copy-assign-synthesis-2.cpp │ │ │ │ ├── copy-assign-synthesis-3.cpp │ │ │ │ ├── copy-assign-synthesis.cpp │ │ │ │ ├── copy-constructor-elim-2.cpp │ │ │ │ ├── copy-constructor-elim.cpp │ │ │ │ ├── copy-constructor-synthesis-2.cpp │ │ │ │ ├── copy-constructor-synthesis.cpp │ │ │ │ ├── copy-in-cplus-object.cpp │ │ │ │ ├── copy-initialization.cpp │ │ │ │ ├── cxx-apple-kext.cpp │ │ │ │ ├── debug-info-byval.cpp │ │ │ │ ├── debug-info-class.cpp │ │ │ │ ├── debug-info-ctor.cpp │ │ │ │ ├── debug-info-enum.cpp │ │ │ │ ├── debug-info-friend.cpp │ │ │ │ ├── debug-info-template.cpp │ │ │ │ ├── debug-info.cpp │ │ │ │ ├── decl-ref-init.cpp │ │ │ │ ├── default-arg-temps.cpp │ │ │ │ ├── default-arguments.cpp │ │ │ │ ├── default-constructor-default-argument.cpp │ │ │ │ ├── default-constructor-for-members.cpp │ │ │ │ ├── default-constructor-template-member.cpp │ │ │ │ ├── default-destructor-nested.cpp │ │ │ │ ├── default-destructor-synthesis.cpp │ │ │ │ ├── deferred-global-init.cpp │ │ │ │ ├── delete-two-arg.cpp │ │ │ │ ├── delete.cpp │ │ │ │ ├── dependent-type-member-pointer.cpp │ │ │ │ ├── derived-to-base-conv.cpp │ │ │ │ ├── derived-to-base.cpp │ │ │ │ ├── destructor-calls.cpp │ │ │ │ ├── destructor-debug-info.cpp │ │ │ │ ├── destructors.cpp │ │ │ │ ├── devirtualize-virtual-function-calls.cpp │ │ │ │ ├── dynamic-cast.cpp │ │ │ │ ├── dyncast.cpp │ │ │ │ ├── eh.cpp │ │ │ │ ├── elide-call-reference.cpp │ │ │ │ ├── empty-classes.cpp │ │ │ │ ├── empty-union.cpp │ │ │ │ ├── enum.cpp │ │ │ │ ├── eval-recursive-constant.cpp │ │ │ │ ├── exceptions-no-rtti.cpp │ │ │ │ ├── exceptions.cpp │ │ │ │ ├── explicit-instantiation.cpp │ │ │ │ ├── expr.cpp │ │ │ │ ├── extern-c.cpp │ │ │ │ ├── field-access-debug-info.cpp │ │ │ │ ├── function-template-explicit-specialization.cpp │ │ │ │ ├── function-template-specialization.cpp │ │ │ │ ├── global-array-destruction.cpp │ │ │ │ ├── global-dtor-no-atexit.cpp │ │ │ │ ├── global-init-darwin.cpp │ │ │ │ ├── global-init.cpp │ │ │ │ ├── global-llvm-constant.cpp │ │ │ │ ├── implicit-copy-assign-operator.cpp │ │ │ │ ├── implicit-copy-constructor.cpp │ │ │ │ ├── implicit-instantiation-1.cpp │ │ │ │ ├── incomplete-member-function-pointer.cpp │ │ │ │ ├── init-incomplete-type.cpp │ │ │ │ ├── inline-functions.cpp │ │ │ │ ├── instantiate-blocks.cpp │ │ │ │ ├── instantiate-init-list.cpp │ │ │ │ ├── internal-linkage.cpp │ │ │ │ ├── key-function-vtable.cpp │ │ │ │ ├── lvalue-bitcasts.cpp │ │ │ │ ├── mangle-address-space.cpp │ │ │ │ ├── mangle-exprs.cpp │ │ │ │ ├── mangle-extern-local.cpp │ │ │ │ ├── mangle-extreme.cpp │ │ │ │ ├── mangle-local-class-names.cpp │ │ │ │ ├── mangle-ms.cpp │ │ │ │ ├── mangle-subst-std.cpp │ │ │ │ ├── mangle-subst.cpp │ │ │ │ ├── mangle-system-header.cpp │ │ │ │ ├── mangle-template.cpp │ │ │ │ ├── mangle-unnamed.cpp │ │ │ │ ├── mangle.cpp │ │ │ │ ├── member-call-parens.cpp │ │ │ │ ├── member-expressions.cpp │ │ │ │ ├── member-function-pointer-calls.cpp │ │ │ │ ├── member-function-pointers.cpp │ │ │ │ ├── member-functions.cpp │ │ │ │ ├── member-init-assignment.cpp │ │ │ │ ├── member-init-struct.cpp │ │ │ │ ├── member-init-union.cpp │ │ │ │ ├── member-initializers.cpp │ │ │ │ ├── member-pointer-type-convert.cpp │ │ │ │ ├── member-templates.cpp │ │ │ │ ├── multi-dim-operator-new.cpp │ │ │ │ ├── namespace-aliases.cpp │ │ │ │ ├── nested-base-member-access.cpp │ │ │ │ ├── new-operator-phi.cpp │ │ │ │ ├── new-with-default-arg.cpp │ │ │ │ ├── new.cpp │ │ │ │ ├── no-exceptions.cpp │ │ │ │ ├── nonconst-init.cpp │ │ │ │ ├── nrvo.cpp │ │ │ │ ├── nullptr.cpp │ │ │ │ ├── operator-new.cpp │ │ │ │ ├── overload-binop-implicitconvert.cpp │ │ │ │ ├── pointers-to-data-members.cpp │ │ │ │ ├── pragma-visibility.cpp │ │ │ │ ├── predefined-expr-sizeof.cpp │ │ │ │ ├── predefined-expr.cpp │ │ │ │ ├── ptr-to-datamember.cpp │ │ │ │ ├── ptr-to-member-function.cpp │ │ │ │ ├── reference-bind-default-argument.cpp │ │ │ │ ├── reference-cast.cpp │ │ │ │ ├── reference-field.cpp │ │ │ │ ├── reference-in-block-args.cpp │ │ │ │ ├── reference-in-blocks.cpp │ │ │ │ ├── reference-init.cpp │ │ │ │ ├── references.cpp │ │ │ │ ├── reinterpret-cast.cpp │ │ │ │ ├── rtti-fundamental.cpp │ │ │ │ ├── rtti-layout.cpp │ │ │ │ ├── rtti-linkage.cpp │ │ │ │ ├── sel-address.mm │ │ │ │ ├── static-assert.cpp │ │ │ │ ├── static-data-member.cpp │ │ │ │ ├── static-init-1.cpp │ │ │ │ ├── static-init-2.cpp │ │ │ │ ├── static-init-3.cpp │ │ │ │ ├── static-init.cpp │ │ │ │ ├── static-local-in-local-class.cpp │ │ │ │ ├── static-member-variable-explicit-specialization.cpp │ │ │ │ ├── temp-order.cpp │ │ │ │ ├── template-anonymous-types.cpp │ │ │ │ ├── template-anonymous-union-member-initializer.cpp │ │ │ │ ├── template-instantiation.cpp │ │ │ │ ├── template-linkage.cpp │ │ │ │ ├── template-static-var-defer.cpp │ │ │ │ ├── temporaries.cpp │ │ │ │ ├── threadsafe-statics-exceptions.cpp │ │ │ │ ├── threadsafe-statics.cpp │ │ │ │ ├── throw-expression-dtor.cpp │ │ │ │ ├── throw-expressions.cpp │ │ │ │ ├── thunks.cpp │ │ │ │ ├── trivial-constructor-init.cpp │ │ │ │ ├── try-catch.cpp │ │ │ │ ├── typeinfo │ │ │ │ ├── unary-type-trait.cpp │ │ │ │ ├── uncode-string.cpp │ │ │ │ ├── value-init.cpp │ │ │ │ ├── vararg-conversion-ctor.cpp │ │ │ │ ├── virt-call-offsets.cpp │ │ │ │ ├── virt-canonical-decl.cpp │ │ │ │ ├── virt-dtor-gen.cpp │ │ │ │ ├── virt-dtor-key.cpp │ │ │ │ ├── virt-template-vtable.cpp │ │ │ │ ├── virt-thunk-reference.cpp │ │ │ │ ├── virtual-base-cast.cpp │ │ │ │ ├── virtual-base-ctor.cpp │ │ │ │ ├── virtual-base-destructor-call.cpp │ │ │ │ ├── virtual-bases.cpp │ │ │ │ ├── virtual-destructor-calls.cpp │ │ │ │ ├── virtual-destructor-synthesis.cpp │ │ │ │ ├── virtual-function-calls.cpp │ │ │ │ ├── virtual-functions-incomplete-types.cpp │ │ │ │ ├── virtual-implicit-copy-assignment.cpp │ │ │ │ ├── virtual-inherited-destructor.cpp │ │ │ │ ├── virtual-operator-call.cpp │ │ │ │ ├── virtual-pseudo-destructor-call.cpp │ │ │ │ ├── visibility-hidden-extern-templates.cpp │ │ │ │ ├── visibility-inlines-hidden.cpp │ │ │ │ ├── visibility.cpp │ │ │ │ ├── volatile.cpp │ │ │ │ ├── vtable-cast-crash.cpp │ │ │ │ ├── vtable-key-function.cpp │ │ │ │ ├── vtable-layout-abi-examples.cpp │ │ │ │ ├── vtable-layout-extreme.cpp │ │ │ │ ├── vtable-layout.cpp │ │ │ │ ├── vtable-linkage.cpp │ │ │ │ ├── vtable-pointer-initialization.cpp │ │ │ │ ├── vtt-layout.cpp │ │ │ │ ├── x86_32-arguments.cpp │ │ │ │ └── x86_64-arguments.cpp │ │ │ ├── CodeGenObjC │ │ │ │ ├── 2008-10-23-invalid-icmp.m │ │ │ │ ├── assign.m │ │ │ │ ├── atomic-aggregate-property.m │ │ │ │ ├── attr-strong.c │ │ │ │ ├── bitfield-1.m │ │ │ │ ├── bitfield-access.m │ │ │ │ ├── bitfield-ivar-metadata.m │ │ │ │ ├── bitfield-ivar-offsets.m │ │ │ │ ├── bitfield_encoding.m │ │ │ │ ├── block-var-layout.m │ │ │ │ ├── blocks-1.m │ │ │ │ ├── blocks-2.m │ │ │ │ ├── blocks-3.m │ │ │ │ ├── blocks-4.m │ │ │ │ ├── blocks-5.m │ │ │ │ ├── blocks-ivar-debug.m │ │ │ │ ├── blocks.m │ │ │ │ ├── category-class.m │ │ │ │ ├── category-super-class-meth.m │ │ │ │ ├── class-getter-dotsyntax.m │ │ │ │ ├── class-type.m │ │ │ │ ├── compatibility-alias.m │ │ │ │ ├── complex-property.m │ │ │ │ ├── constant-strings.m │ │ │ │ ├── continuation-class.m │ │ │ │ ├── deadcode_strip_used_var.m │ │ │ │ ├── debug-info-crash.m │ │ │ │ ├── debug-info-linkagename.m │ │ │ │ ├── default-property-synthesis.m │ │ │ │ ├── dot-syntax-1.m │ │ │ │ ├── dot-syntax-2.m │ │ │ │ ├── dot-syntax.m │ │ │ │ ├── encode-cstyle-method.m │ │ │ │ ├── encode-test-1.m │ │ │ │ ├── encode-test-2.m │ │ │ │ ├── encode-test-3.m │ │ │ │ ├── encode-test-4.m │ │ │ │ ├── encode-test-5.m │ │ │ │ ├── encode-test.m │ │ │ │ ├── exceptions.m │ │ │ │ ├── for-in.m │ │ │ │ ├── forward-class-impl-metadata.m │ │ │ │ ├── fpret.m │ │ │ │ ├── gnu-exceptions.m │ │ │ │ ├── hidden-visibility.m │ │ │ │ ├── hidden.m │ │ │ │ ├── id-isa-codegen.m │ │ │ │ ├── image-info.m │ │ │ │ ├── implicit-objc_msgSend.m │ │ │ │ ├── implicit-property.m │ │ │ │ ├── interface-layout-64.m │ │ │ │ ├── interface.m │ │ │ │ ├── ivar-layout-64-bitfields.m │ │ │ │ ├── ivar-layout-64.m │ │ │ │ ├── ivar-layout-no-optimize.m │ │ │ │ ├── ivar-layout-nonfragile-abi2.m │ │ │ │ ├── ivars.m │ │ │ │ ├── link-errors.m │ │ │ │ ├── message-arrays.m │ │ │ │ ├── messages-2.m │ │ │ │ ├── messages.m │ │ │ │ ├── metadata-symbols-32.m │ │ │ │ ├── metadata-symbols-64.m │ │ │ │ ├── metadata_symbols.m │ │ │ │ ├── missing-atend-metadata.m │ │ │ │ ├── nested-rethrow.m │ │ │ │ ├── newproperty-nested-synthesis-1.m │ │ │ │ ├── next-objc-dispatch.m │ │ │ │ ├── no-category-class.m │ │ │ │ ├── non-lazy-classes.m │ │ │ │ ├── ns-constant-strings.m │ │ │ │ ├── objc-align.m │ │ │ │ ├── objc-assign-ivar.m │ │ │ │ ├── objc-gc-aggr-assign.m │ │ │ │ ├── objc-read-weak-byref.m │ │ │ │ ├── objc2-assign-global.m │ │ │ │ ├── objc2-ivar-assign.m │ │ │ │ ├── objc2-legacy-dispatch.m │ │ │ │ ├── objc2-new-gc-api-strongcast.m │ │ │ │ ├── objc2-no-strong-cast.m │ │ │ │ ├── objc2-no-write-barrier.m │ │ │ │ ├── objc2-nonfragile-abi-impl.m │ │ │ │ ├── objc2-property-encode.m │ │ │ │ ├── objc2-protocol-enc.m │ │ │ │ ├── objc2-retain-codegen.m │ │ │ │ ├── objc2-strong-cast-1.m │ │ │ │ ├── objc2-strong-cast.m │ │ │ │ ├── objc2-weak-assign.m │ │ │ │ ├── objc2-weak-block-call.m │ │ │ │ ├── objc2-weak-compare.m │ │ │ │ ├── objc2-weak-import-attribute.m │ │ │ │ ├── objc2-weak-ivar-debug.m │ │ │ │ ├── objc2-weak-ivar.m │ │ │ │ ├── objc2-write-barrier-2.m │ │ │ │ ├── objc2-write-barrier-3.m │ │ │ │ ├── objc2-write-barrier-4.m │ │ │ │ ├── objc2-write-barrier-5.m │ │ │ │ ├── objc2-write-barrier.m │ │ │ │ ├── object-incr-decr-1.m │ │ │ │ ├── overloadable.m │ │ │ │ ├── predefined-expr.m │ │ │ │ ├── property-aggr-type.m │ │ │ │ ├── property-agrr-getter.m │ │ │ │ ├── property-category-impl.m │ │ │ │ ├── property-complex.m │ │ │ │ ├── property-dbg.m │ │ │ │ ├── property-getter-dot-syntax.m │ │ │ │ ├── property-incr-decr-1.m │ │ │ │ ├── property-list-in-class.m │ │ │ │ ├── property-setter-attr.m │ │ │ │ ├── property.m │ │ │ │ ├── protocol-in-extended-class.m │ │ │ │ ├── protocol-property-synth.m │ │ │ │ ├── protocols-lazy.m │ │ │ │ ├── protocols.m │ │ │ │ ├── return-objc-object.mm │ │ │ │ ├── runtime-fns.m │ │ │ │ ├── sel-as-builtin-type.m │ │ │ │ ├── stand-alone-implementation.m │ │ │ │ ├── super-classmethod-category.m │ │ │ │ ├── super-dotsyntax-property.m │ │ │ │ ├── super-dotsyntax-struct-property.m │ │ │ │ ├── super-message-fragileabi.m │ │ │ │ ├── synchronized.m │ │ │ │ ├── synthesize_ivar-cont-class.m │ │ │ │ ├── synthesize_ivar.m │ │ │ │ ├── try.m │ │ │ │ ├── undefined-protocol.m │ │ │ │ ├── unname-bf-metadata.m │ │ │ │ ├── unwind-fn.m │ │ │ │ ├── variadic-sends.m │ │ │ │ └── x86_64-struct-return-gc.m │ │ │ ├── CodeGenObjCXX │ │ │ │ ├── copyable-property-object.mm │ │ │ │ ├── encode.mm │ │ │ │ ├── exceptions.mm │ │ │ │ ├── foreach-statement.mm │ │ │ │ ├── implicit-copy-assign-operator.mm │ │ │ │ ├── implicit-copy-constructor.mm │ │ │ │ ├── ivar-objects.mm │ │ │ │ ├── mangle-blocks.mm │ │ │ │ ├── mangle.mm │ │ │ │ ├── method-local-extern-mangle.mm │ │ │ │ ├── property-derived-to-base-conv.mm │ │ │ │ ├── property-objects.mm │ │ │ │ ├── references.mm │ │ │ │ ├── rtti.mm │ │ │ │ └── selector-expr-lvalue.mm │ │ │ ├── Coverage │ │ │ │ ├── ast-printing.c │ │ │ │ ├── ast-printing.cpp │ │ │ │ ├── ast-printing.m │ │ │ │ ├── c-language-features.inc │ │ │ │ ├── codegen-gnu.m │ │ │ │ ├── codegen-next.m │ │ │ │ ├── codegen.c │ │ │ │ ├── cxx-language-features.inc │ │ │ │ ├── html-diagnostics.c │ │ │ │ ├── html-print.c │ │ │ │ ├── objc-language-features.inc │ │ │ │ ├── targets.c │ │ │ │ └── verbose.c │ │ │ ├── Driver │ │ │ │ ├── Wp-args.c │ │ │ │ ├── Xarch.c │ │ │ │ ├── Xlinker-args.c │ │ │ │ ├── analyze.c │ │ │ │ ├── arch.c │ │ │ │ ├── arm-darwin-builtin.c │ │ │ │ ├── ast.c │ │ │ │ ├── at_file.c │ │ │ │ ├── at_file.c.args │ │ │ │ ├── bindings.c │ │ │ │ ├── cc-print-options.c │ │ │ │ ├── ccc-add-args.c │ │ │ │ ├── clang-c-as-cxx.c │ │ │ │ ├── clang-g-opts.c │ │ │ │ ├── clang-translation.c │ │ │ │ ├── clang_cpp.c │ │ │ │ ├── clang_f_opts.c │ │ │ │ ├── darwin-as.c │ │ │ │ ├── darwin-cc.c │ │ │ │ ├── darwin-debug-flags.c │ │ │ │ ├── darwin-dsymutil.c │ │ │ │ ├── darwin-iphone-defaults.m │ │ │ │ ├── darwin-ld.c │ │ │ │ ├── darwin-objc-defaults.m │ │ │ │ ├── darwin-objc-gc.m │ │ │ │ ├── darwin-objc-options.m │ │ │ │ ├── darwin-version.c │ │ │ │ ├── darwin-xarch.c │ │ │ │ ├── default-toolchain.c │ │ │ │ ├── dragonfly.c │ │ │ │ ├── emit-llvm.c │ │ │ │ ├── flags.c │ │ │ │ ├── freebsd.c │ │ │ │ ├── gcc_forward.c │ │ │ │ ├── hello.c │ │ │ │ ├── immediate-options.c │ │ │ │ ├── lto.c │ │ │ │ ├── nostdincxx.cpp │ │ │ │ ├── openbsd.c │ │ │ │ ├── option-aliases.c │ │ │ │ ├── parsing.c │ │ │ │ ├── phases.c │ │ │ │ ├── preprocessor.c │ │ │ │ ├── pth.c │ │ │ │ ├── qa_override.c │ │ │ │ ├── redzone.c │ │ │ │ ├── rewrite-objc.m │ │ │ │ ├── std.c │ │ │ │ ├── unknown-gcc-arch.c │ │ │ │ └── x86_features.c │ │ │ ├── FixIt │ │ │ │ ├── fixit-c90.c │ │ │ │ ├── fixit-cxx0x.cpp │ │ │ │ ├── fixit-errors-1.c │ │ │ │ ├── fixit-errors.c │ │ │ │ ├── fixit-objc.m │ │ │ │ ├── fixit-pmem.cpp │ │ │ │ ├── fixit-suffix.c │ │ │ │ ├── fixit-unrecoverable.c │ │ │ │ ├── fixit-unrecoverable.cpp │ │ │ │ ├── fixit.c │ │ │ │ ├── fixit.cpp │ │ │ │ ├── no-typo.c │ │ │ │ ├── typo-crash.m │ │ │ │ ├── typo.c │ │ │ │ ├── typo.cpp │ │ │ │ └── typo.m │ │ │ ├── Frontend │ │ │ │ ├── Inputs │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── test.h │ │ │ │ │ ├── test2.h │ │ │ │ │ └── test3.h │ │ │ │ ├── ast-codegen.c │ │ │ │ ├── ast-main.c │ │ │ │ ├── cpp-output.c │ │ │ │ ├── darwin-version.c │ │ │ │ ├── dependency-gen.c │ │ │ │ ├── ir-support-codegen.ll │ │ │ │ ├── ir-support-errors.ll │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── macros.c │ │ │ │ ├── output-failures.c │ │ │ │ ├── preprocessed-output-macro-first-token.c │ │ │ │ ├── print-header-includes.c │ │ │ │ ├── rewrite-macros.c │ │ │ │ ├── stdin.c │ │ │ │ └── unknown-pragmas.c │ │ │ ├── Headers │ │ │ │ ├── c89.c │ │ │ │ ├── int64-type.c │ │ │ │ ├── typedef_guards.c │ │ │ │ └── x86-intrinsics-headers.c │ │ │ ├── Index │ │ │ │ ├── Inputs │ │ │ │ │ ├── c-index-pch.h │ │ │ │ │ ├── cindex-from-source.h │ │ │ │ │ ├── complete-pch.h │ │ │ │ │ ├── crash-recovery-code-complete-remap.c │ │ │ │ │ ├── crash-recovery-reparse-remap.c │ │ │ │ │ ├── foo.h │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── objc.h │ │ │ │ │ ├── preamble-reparse-1.c │ │ │ │ │ ├── preamble-reparse-2.c │ │ │ │ │ ├── preamble.h │ │ │ │ │ ├── prefix.h │ │ │ │ │ ├── remap-complete-to.c │ │ │ │ │ ├── remap-load-to.c │ │ │ │ │ ├── t1.c │ │ │ │ │ ├── t1.m │ │ │ │ │ ├── t2.c │ │ │ │ │ └── t2.m │ │ │ │ ├── TestClassDecl.m │ │ │ │ ├── TestClassForwardDecl.m │ │ │ │ ├── annotate-tokens-include.c │ │ │ │ ├── annotate-tokens-include.h │ │ │ │ ├── annotate-tokens-pp.c │ │ │ │ ├── annotate-tokens.c │ │ │ │ ├── annotate-tokens.cpp │ │ │ │ ├── annotate-tokens.m │ │ │ │ ├── blocks.c │ │ │ │ ├── c-index-api-loadTU-test.m │ │ │ │ ├── c-index-getCursor-pp.c │ │ │ │ ├── c-index-getCursor-test.m │ │ │ │ ├── c-index-pch.c │ │ │ │ ├── cindex-from-source.m │ │ │ │ ├── cindex-on-invalid.m │ │ │ │ ├── cindex-test-inclusions.c │ │ │ │ ├── code-complete-errors.c │ │ │ │ ├── code-completion.cpp │ │ │ │ ├── complete-at-directives.m │ │ │ │ ├── complete-at-exprstmt.m │ │ │ │ ├── complete-blocks.m │ │ │ │ ├── complete-categories.m │ │ │ │ ├── complete-ctor-inits.cpp │ │ │ │ ├── complete-declarators.cpp │ │ │ │ ├── complete-declarators.m │ │ │ │ ├── complete-enums.c │ │ │ │ ├── complete-exprs.c │ │ │ │ ├── complete-hiding.c │ │ │ │ ├── complete-interfaces.m │ │ │ │ ├── complete-macros.c │ │ │ │ ├── complete-member-access.m │ │ │ │ ├── complete-memfunc-cvquals.cpp │ │ │ │ ├── complete-method-decls.m │ │ │ │ ├── complete-natural.m │ │ │ │ ├── complete-objc-message-id.m │ │ │ │ ├── complete-objc-message.m │ │ │ │ ├── complete-pch.m │ │ │ │ ├── complete-preprocessor.m │ │ │ │ ├── complete-properties.m │ │ │ │ ├── complete-property-flags.m │ │ │ │ ├── complete-property-getset.m │ │ │ │ ├── complete-protocols.m │ │ │ │ ├── complete-recovery.m │ │ │ │ ├── complete-super.cpp │ │ │ │ ├── complete-super.m │ │ │ │ ├── complete-tabs.c │ │ │ │ ├── complete-templates.cpp │ │ │ │ ├── complete-type-factors.m │ │ │ │ ├── complete-unterminated.c │ │ │ │ ├── crash-recovery-code-complete.c │ │ │ │ ├── crash-recovery-reparse.c │ │ │ │ ├── crash-recovery.c │ │ │ │ ├── cxx-operator-overload.cpp │ │ │ │ ├── include_test.h │ │ │ │ ├── include_test_2.h │ │ │ │ ├── index-templates.cpp │ │ │ │ ├── invalid-code-rdar_7833619.m │ │ │ │ ├── invalid-rdar-8236270.cpp │ │ │ │ ├── linkage.c │ │ │ │ ├── load-classes.cpp │ │ │ │ ├── load-decls.c │ │ │ │ ├── load-exprs.c │ │ │ │ ├── load-namespaces.cpp │ │ │ │ ├── load-stmts.cpp │ │ │ │ ├── local-symbols.m │ │ │ │ ├── preamble-reparse.c │ │ │ │ ├── preamble.c │ │ │ │ ├── print-typekind.c │ │ │ │ ├── print-typekind.m │ │ │ │ ├── print-usrs.c │ │ │ │ ├── properties-class-extensions.m │ │ │ │ ├── rdar-8288645-invalid-code.mm │ │ │ │ ├── recover-bad-code-rdar_7487294.c │ │ │ │ ├── remap-complete.c │ │ │ │ ├── remap-cursor-at.c │ │ │ │ ├── remap-load.c │ │ │ │ ├── usrs.cpp │ │ │ │ └── usrs.m │ │ │ ├── Lexer │ │ │ │ ├── 11-27-2007-FloatLiterals.c │ │ │ │ ├── badstring_in_if0.c │ │ │ │ ├── block_cmt_end.c │ │ │ │ ├── c90.c │ │ │ │ ├── char-escapes.c │ │ │ │ ├── comment-escape.c │ │ │ │ ├── conflict-marker.c │ │ │ │ ├── constants.c │ │ │ │ ├── counter.c │ │ │ │ ├── cxx0x_keyword.cpp │ │ │ │ ├── cxx0x_keyword_as_cxx98.cpp │ │ │ │ ├── digraph.c │ │ │ │ ├── dollar-idents.c │ │ │ │ ├── escape_newline.c │ │ │ │ ├── gnu_keywords.c │ │ │ │ ├── has_feature_cxx0x.cpp │ │ │ │ ├── has_feature_exceptions.cpp │ │ │ │ ├── has_feature_rtti.cpp │ │ │ │ ├── hexfloat.cpp │ │ │ │ ├── ms-extensions.c │ │ │ │ ├── msdos-cpm-eof.c │ │ │ │ ├── multiple-include.c │ │ │ │ ├── numeric-literal-trash.c │ │ │ │ ├── pragma-mark.c │ │ │ │ ├── preamble.c │ │ │ │ ├── rdr-6096838-2.c │ │ │ │ ├── rdr-6096838.c │ │ │ │ ├── token-concat-2.c │ │ │ │ ├── token-concat.c │ │ │ │ ├── unknown-char.c │ │ │ │ ├── utf-16.c │ │ │ │ └── utf-16.c.txt │ │ │ ├── Makefile │ │ │ ├── Misc │ │ │ │ ├── Inputs │ │ │ │ │ ├── remapped-file │ │ │ │ │ ├── remapped-file-2 │ │ │ │ │ └── remapped-file-3 │ │ │ │ ├── caret-diags-macros.c │ │ │ │ ├── caret-diags-scratch-buffer.c │ │ │ │ ├── diag-aka-types.cpp │ │ │ │ ├── diag-mapping.c │ │ │ │ ├── diag-mapping2.c │ │ │ │ ├── emit-html-insert.c │ │ │ │ ├── emit-html.c │ │ │ │ ├── macro-backtrace-limit.c │ │ │ │ ├── message-length.c │ │ │ │ ├── predefines.c │ │ │ │ ├── remap-file.c │ │ │ │ ├── tabstop.c │ │ │ │ └── verify.c │ │ │ ├── PCH │ │ │ │ ├── Inputs │ │ │ │ │ ├── chain-cxx1.h │ │ │ │ │ ├── chain-cxx2.h │ │ │ │ │ ├── chain-decls1.h │ │ │ │ │ ├── chain-decls2.h │ │ │ │ │ ├── chain-ext_vector1.h │ │ │ │ │ ├── chain-ext_vector2.h │ │ │ │ │ ├── chain-external-defs1.h │ │ │ │ │ ├── chain-external-defs2.h │ │ │ │ │ ├── chain-macro-override1.h │ │ │ │ │ ├── chain-macro-override2.h │ │ │ │ │ ├── chain-macro1.h │ │ │ │ │ ├── chain-macro2.h │ │ │ │ │ ├── chain-selectors1.h │ │ │ │ │ ├── chain-selectors2.h │ │ │ │ │ ├── chain-trivial1.h │ │ │ │ │ ├── chain-trivial2.h │ │ │ │ │ ├── namespaces.h │ │ │ │ │ └── preamble.h │ │ │ │ ├── asm.c │ │ │ │ ├── asm.h │ │ │ │ ├── attrs.c │ │ │ │ ├── attrs.h │ │ │ │ ├── blocks.c │ │ │ │ ├── blocks.h │ │ │ │ ├── builtins.c │ │ │ │ ├── builtins.h │ │ │ │ ├── chain-cxx.cpp │ │ │ │ ├── chain-decls.c │ │ │ │ ├── chain-ext_vector.c │ │ │ │ ├── chain-external-defs.c │ │ │ │ ├── chain-macro-override.c │ │ │ │ ├── chain-macro.c │ │ │ │ ├── chain-predecl.h │ │ │ │ ├── chain-predecl.m │ │ │ │ ├── chain-selectors.m │ │ │ │ ├── chain-trivial.c │ │ │ │ ├── changed-files.c │ │ │ │ ├── cxx-friends.cpp │ │ │ │ ├── cxx-friends.h │ │ │ │ ├── cxx-method.cpp │ │ │ │ ├── cxx-namespaces.cpp │ │ │ │ ├── cxx-namespaces.h │ │ │ │ ├── cxx-offsetof-base.cpp │ │ │ │ ├── cxx-offsetof-base.h │ │ │ │ ├── cxx-required-decls.cpp │ │ │ │ ├── cxx-required-decls.h │ │ │ │ ├── cxx-static_assert.cpp │ │ │ │ ├── cxx-static_assert.h │ │ │ │ ├── cxx-templates.cpp │ │ │ │ ├── cxx-templates.h │ │ │ │ ├── cxx-traits.cpp │ │ │ │ ├── cxx-traits.h │ │ │ │ ├── cxx-typeid.cpp │ │ │ │ ├── cxx-typeid.h │ │ │ │ ├── cxx-using.cpp │ │ │ │ ├── cxx-using.h │ │ │ │ ├── cxx_exprs.cpp │ │ │ │ ├── cxx_exprs.h │ │ │ │ ├── enum.c │ │ │ │ ├── enum.h │ │ │ │ ├── exprs.c │ │ │ │ ├── exprs.h │ │ │ │ ├── ext_vector.c │ │ │ │ ├── ext_vector.h │ │ │ │ ├── external-defs.c │ │ │ │ ├── external-defs.h │ │ │ │ ├── functions.c │ │ │ │ ├── functions.h │ │ │ │ ├── fuzzy-pch.c │ │ │ │ ├── fuzzy-pch.h │ │ │ │ ├── headermap.h │ │ │ │ ├── headermap.m │ │ │ │ ├── libroot │ │ │ │ │ └── usr │ │ │ │ │ │ └── include │ │ │ │ │ │ ├── reloc.h │ │ │ │ │ │ └── reloc2.h │ │ │ │ ├── line-directive.c │ │ │ │ ├── line-directive.h │ │ │ │ ├── method_pool.h │ │ │ │ ├── method_pool.m │ │ │ │ ├── multiple_decls.c │ │ │ │ ├── multiple_decls.h │ │ │ │ ├── namespaces.cpp │ │ │ │ ├── nonvisible-external-defs.c │ │ │ │ ├── nonvisible-external-defs.h │ │ │ │ ├── objc_exprs.h │ │ │ │ ├── objc_exprs.m │ │ │ │ ├── objc_import.h │ │ │ │ ├── objc_import.m │ │ │ │ ├── objc_methods.h │ │ │ │ ├── objc_methods.m │ │ │ │ ├── objc_property.h │ │ │ │ ├── objc_property.m │ │ │ │ ├── objc_stmts.h │ │ │ │ ├── objc_stmts.m │ │ │ │ ├── objcxx-ivar-class.h │ │ │ │ ├── objcxx-ivar-class.mm │ │ │ │ ├── pchpch.c │ │ │ │ ├── pchpch1.h │ │ │ │ ├── pchpch2.h │ │ │ │ ├── pr4489.c │ │ │ │ ├── pragma-weak.c │ │ │ │ ├── pragma-weak.h │ │ │ │ ├── preamble.c │ │ │ │ ├── preprocess.c │ │ │ │ ├── preprocess.h │ │ │ │ ├── pth.c │ │ │ │ ├── pth.h │ │ │ │ ├── reinclude.cpp │ │ │ │ ├── reinclude1.h │ │ │ │ ├── reinclude2.h │ │ │ │ ├── reloc.c │ │ │ │ ├── selector-warning.h │ │ │ │ ├── selector-warning.m │ │ │ │ ├── source-manager-stack.c │ │ │ │ ├── stmts.c │ │ │ │ ├── stmts.h │ │ │ │ ├── struct.c │ │ │ │ ├── struct.h │ │ │ │ ├── tentative-defs.c │ │ │ │ ├── tentative-defs.h │ │ │ │ ├── types.c │ │ │ │ ├── types.h │ │ │ │ ├── va_arg.c │ │ │ │ ├── va_arg.h │ │ │ │ ├── variables.c │ │ │ │ └── variables.h │ │ │ ├── Parser │ │ │ │ ├── CompoundStmtScope.c │ │ │ │ ├── MicrosoftExtensions.c │ │ │ │ ├── altivec.c │ │ │ │ ├── argument_qualified.c │ │ │ │ ├── argument_redef.c │ │ │ │ ├── argument_scope.c │ │ │ │ ├── asm-constraints-pr7869.c │ │ │ │ ├── asm.c │ │ │ │ ├── attributes.c │ │ │ │ ├── backtrack-crash.cpp │ │ │ │ ├── bad-control.c │ │ │ │ ├── block-block-storageclass.c │ │ │ │ ├── block-pointer-decl.c │ │ │ │ ├── bracket-crash.cpp │ │ │ │ ├── builtin_classify_type.c │ │ │ │ ├── builtin_types_compatible.c │ │ │ │ ├── c-namespace.c │ │ │ │ ├── char-literal-printing.c │ │ │ │ ├── check-objc2-syntax-1.m │ │ │ │ ├── check-syntax-1.m │ │ │ │ ├── check_cast.c │ │ │ │ ├── compound_literal.c │ │ │ │ ├── control-scope.c │ │ │ │ ├── cxx-altivec.cpp │ │ │ │ ├── cxx-ambig-decl-expr-xfail.cpp │ │ │ │ ├── cxx-ambig-decl-expr.cpp │ │ │ │ ├── cxx-ambig-paren-expr.cpp │ │ │ │ ├── cxx-attributes.cpp │ │ │ │ ├── cxx-bool.cpp │ │ │ │ ├── cxx-casting.cpp │ │ │ │ ├── cxx-class.cpp │ │ │ │ ├── cxx-condition.cpp │ │ │ │ ├── cxx-decl.cpp │ │ │ │ ├── cxx-default-args.cpp │ │ │ │ ├── cxx-exception-spec.cpp │ │ │ │ ├── cxx-extern-c-array.cpp │ │ │ │ ├── cxx-friend.cpp │ │ │ │ ├── cxx-member-initializers.cpp │ │ │ │ ├── cxx-namespace-alias.cpp │ │ │ │ ├── cxx-reference.cpp │ │ │ │ ├── cxx-stmt.cpp │ │ │ │ ├── cxx-template-argument.cpp │ │ │ │ ├── cxx-template-decl.cpp │ │ │ │ ├── cxx-throw.cpp │ │ │ │ ├── cxx-typeid.cpp │ │ │ │ ├── cxx-typeof.cpp │ │ │ │ ├── cxx-undeclared-identifier.cpp │ │ │ │ ├── cxx-using-declaration.cpp │ │ │ │ ├── cxx-using-directive.cpp │ │ │ │ ├── cxx-variadic-func.cpp │ │ │ │ ├── cxx0x-attributes.cpp │ │ │ │ ├── cxx0x-literal-operators.cpp │ │ │ │ ├── cxx0x-rvalue-reference.cpp │ │ │ │ ├── declarators.c │ │ │ │ ├── designator.c │ │ │ │ ├── encode.m │ │ │ │ ├── enhanced-proto-1.m │ │ │ │ ├── expressions.c │ │ │ │ ├── expressions.m │ │ │ │ ├── extension.c │ │ │ │ ├── function-decls.c │ │ │ │ ├── goto-ident.c │ │ │ │ ├── if-scope-c90.c │ │ │ │ ├── if-scope-c99.c │ │ │ │ ├── implicit-casts.c │ │ │ │ ├── knr_parameter_attributes.c │ │ │ │ ├── method-prototype-1.m │ │ │ │ ├── missing-end.m │ │ │ │ ├── namelookup-bug-1.c │ │ │ │ ├── namelookup-bug-2.c │ │ │ │ ├── namespace-alias-attr.cpp │ │ │ │ ├── namespaces.cpp │ │ │ │ ├── objc-alias-printing.m │ │ │ │ ├── objc-category-neg-1.m │ │ │ │ ├── objc-forcollection-1.m │ │ │ │ ├── objc-forcollection-neg-2.m │ │ │ │ ├── objc-forcollection-neg.m │ │ │ │ ├── objc-foreach-syntax.m │ │ │ │ ├── objc-init.m │ │ │ │ ├── objc-interfaces.m │ │ │ │ ├── objc-messaging-1.m │ │ │ │ ├── objc-messaging-neg-1.m │ │ │ │ ├── objc-missing-impl.m │ │ │ │ ├── objc-property-syntax.m │ │ │ │ ├── objc-quirks.m │ │ │ │ ├── objc-synthesized-recover.m │ │ │ │ ├── objc-try-catch-1.m │ │ │ │ ├── objc-type-printing.m │ │ │ │ ├── offsetof.c │ │ │ │ ├── parmvardecl_conversion.c │ │ │ │ ├── pointer-arithmetic.c │ │ │ │ ├── pointer_promotion.c │ │ │ │ ├── pragma-options.c │ │ │ │ ├── pragma-pack.c │ │ │ │ ├── pragma-visibility.c │ │ │ │ ├── pragma-weak.c │ │ │ │ ├── prefix-attributes.m │ │ │ │ ├── promote_types_in_proto.c │ │ │ │ ├── recovery.c │ │ │ │ ├── selector-1.m │ │ │ │ ├── statements.c │ │ │ │ ├── struct-recursion.c │ │ │ │ ├── switch-recovery.cpp │ │ │ │ ├── top-level-semi-cxx0x.cpp │ │ │ │ ├── traditional_arg_scope.c │ │ │ │ ├── typeof.c │ │ │ │ └── types.c │ │ │ ├── Preprocessor │ │ │ │ ├── assembler-with-cpp.c │ │ │ │ ├── builtin_line.c │ │ │ │ ├── c90.c │ │ │ │ ├── c99-6_10_3_3_p4.c │ │ │ │ ├── c99-6_10_3_4_p5.c │ │ │ │ ├── c99-6_10_3_4_p6.c │ │ │ │ ├── c99-6_10_3_4_p7.c │ │ │ │ ├── c99-6_10_3_4_p9.c │ │ │ │ ├── clang_headers.c │ │ │ │ ├── comment_save.c │ │ │ │ ├── comment_save_if.c │ │ │ │ ├── comment_save_macro.c │ │ │ │ ├── cxx_and.cpp │ │ │ │ ├── cxx_bitand.cpp │ │ │ │ ├── cxx_bitor.cpp │ │ │ │ ├── cxx_compl.cpp │ │ │ │ ├── cxx_not.cpp │ │ │ │ ├── cxx_not_eq.cpp │ │ │ │ ├── cxx_oper_keyword.cpp │ │ │ │ ├── cxx_oper_spelling.cpp │ │ │ │ ├── cxx_or.cpp │ │ │ │ ├── cxx_true.cpp │ │ │ │ ├── cxx_xor.cpp │ │ │ │ ├── dependencies-and-pp.c │ │ │ │ ├── directive-invalid.c │ │ │ │ ├── disabled-cond-diags.c │ │ │ │ ├── dump-macros-spacing.c │ │ │ │ ├── dump-macros-undef.c │ │ │ │ ├── dump-options.c │ │ │ │ ├── dump_macros.c │ │ │ │ ├── dumptokens_phyloc.c │ │ │ │ ├── expr_comma.c │ │ │ │ ├── expr_invalid_tok.c │ │ │ │ ├── expr_liveness.c │ │ │ │ ├── expr_multichar.c │ │ │ │ ├── expr_usual_conversions.c │ │ │ │ ├── extension-warning.c │ │ │ │ ├── feature_tests.c │ │ │ │ ├── file_to_include.h │ │ │ │ ├── function_macro_file.c │ │ │ │ ├── function_macro_file.h │ │ │ │ ├── has_include.c │ │ │ │ ├── hash_line.c │ │ │ │ ├── hash_space.c │ │ │ │ ├── header_lookup1.c │ │ │ │ ├── if_warning.c │ │ │ │ ├── ifdef-recover.c │ │ │ │ ├── import_self.c │ │ │ │ ├── include-directive1.c │ │ │ │ ├── include-directive2.c │ │ │ │ ├── include-directive3.c │ │ │ │ ├── include-macros.c │ │ │ │ ├── include-pth.c │ │ │ │ ├── indent_macro.c │ │ │ │ ├── init.c │ │ │ │ ├── line-directive-output.c │ │ │ │ ├── line-directive.c │ │ │ │ ├── macro-multiline.c │ │ │ │ ├── macro_arg_keyword.c │ │ │ │ ├── macro_disable.c │ │ │ │ ├── macro_expand.c │ │ │ │ ├── macro_expandloc.c │ │ │ │ ├── macro_expandloc2.c │ │ │ │ ├── macro_fn.c │ │ │ │ ├── macro_fn_comma_swallow.c │ │ │ │ ├── macro_fn_disable_expand.c │ │ │ │ ├── macro_fn_lparen_scan.c │ │ │ │ ├── macro_fn_lparen_scan2.c │ │ │ │ ├── macro_fn_placemarker.c │ │ │ │ ├── macro_fn_preexpand.c │ │ │ │ ├── macro_fn_varargs_iso.c │ │ │ │ ├── macro_fn_varargs_named.c │ │ │ │ ├── macro_misc.c │ │ │ │ ├── macro_not_define.c │ │ │ │ ├── macro_paste_bad.c │ │ │ │ ├── macro_paste_bcpl_comment.c │ │ │ │ ├── macro_paste_c_block_comment.c │ │ │ │ ├── macro_paste_commaext.c │ │ │ │ ├── macro_paste_empty.c │ │ │ │ ├── macro_paste_hard.c │ │ │ │ ├── macro_paste_hashhash.c │ │ │ │ ├── macro_paste_msextensions.c │ │ │ │ ├── macro_paste_none.c │ │ │ │ ├── macro_paste_simple.c │ │ │ │ ├── macro_paste_spacing.c │ │ │ │ ├── macro_paste_spacing2.c │ │ │ │ ├── macro_rescan.c │ │ │ │ ├── macro_rescan2.c │ │ │ │ ├── macro_rescan_varargs.c │ │ │ │ ├── macro_rparen_scan.c │ │ │ │ ├── macro_rparen_scan2.c │ │ │ │ ├── macro_space.c │ │ │ │ ├── macro_undef.c │ │ │ │ ├── mi_opt.c │ │ │ │ ├── mi_opt.h │ │ │ │ ├── mi_opt2.c │ │ │ │ ├── mi_opt2.h │ │ │ │ ├── non_fragile_feature.m │ │ │ │ ├── non_fragile_feature1.m │ │ │ │ ├── objc-pp.m │ │ │ │ ├── optimize.c │ │ │ │ ├── output_paste_avoid.c │ │ │ │ ├── overflow.c │ │ │ │ ├── pic.c │ │ │ │ ├── pr2086.c │ │ │ │ ├── pr2086.h │ │ │ │ ├── pragma-pushpop-macro.c │ │ │ │ ├── pragma_diagnostic.c │ │ │ │ ├── pragma_microsoft.c │ │ │ │ ├── pragma_poison.c │ │ │ │ ├── pragma_sysheader.c │ │ │ │ ├── pragma_sysheader.h │ │ │ │ ├── pragma_unknown.c │ │ │ │ ├── print_line_count.c │ │ │ │ ├── print_line_track.c │ │ │ │ ├── pushable-diagnostics.c │ │ │ │ ├── skipping_unclean.c │ │ │ │ ├── stdint.c │ │ │ │ ├── stringize_misc.c │ │ │ │ ├── stringize_space.c │ │ │ │ ├── stringize_space2.c │ │ │ │ ├── undef-error.c │ │ │ │ ├── unterminated.c │ │ │ │ └── x86_target_features.c │ │ │ ├── Rewriter │ │ │ │ ├── blockcast3.mm │ │ │ │ ├── crash.m │ │ │ │ ├── dllimport-typedef.c │ │ │ │ ├── finally.m │ │ │ │ ├── id-test-3.m │ │ │ │ ├── ivar-encoding-1.m │ │ │ │ ├── ivar-encoding-2.m │ │ │ │ ├── metadata-test-1.m │ │ │ │ ├── metadata-test-2.m │ │ │ │ ├── method-encoding-1.m │ │ │ │ ├── missing-dllimport.c │ │ │ │ ├── objc-encoding-bug-1.m │ │ │ │ ├── objc-ivar-receiver-1.m │ │ │ │ ├── objc-string-concat-1.m │ │ │ │ ├── objc-super-test.m │ │ │ │ ├── objc-synchronized-1.m │ │ │ │ ├── properties.m │ │ │ │ ├── protocol-rewrite-1.m │ │ │ │ ├── rewrite-anonymous-union.m │ │ │ │ ├── rewrite-api-bug.m │ │ │ │ ├── rewrite-block-argument.m │ │ │ │ ├── rewrite-block-consts.mm │ │ │ │ ├── rewrite-block-ivar-call.mm │ │ │ │ ├── rewrite-block-literal.c │ │ │ │ ├── rewrite-block-pointer.mm │ │ │ │ ├── rewrite-byref-in-nested-blocks.mm │ │ │ │ ├── rewrite-byref-vars.mm │ │ │ │ ├── rewrite-cast-ivar-access.mm │ │ │ │ ├── rewrite-category-property.mm │ │ │ │ ├── rewrite-constructor-init.mm │ │ │ │ ├── rewrite-eh.m │ │ │ │ ├── rewrite-elaborated-type.mm │ │ │ │ ├── rewrite-extern-c.mm │ │ │ │ ├── rewrite-foreach-1.m │ │ │ │ ├── rewrite-foreach-2.m │ │ │ │ ├── rewrite-foreach-3.m │ │ │ │ ├── rewrite-foreach-4.m │ │ │ │ ├── rewrite-foreach-5.m │ │ │ │ ├── rewrite-foreach-6.m │ │ │ │ ├── rewrite-foreach-7.m │ │ │ │ ├── rewrite-forward-class.m │ │ │ │ ├── rewrite-function-decl.mm │ │ │ │ ├── rewrite-implementation.mm │ │ │ │ ├── rewrite-ivar-use.m │ │ │ │ ├── rewrite-local-externs-in-block.mm │ │ │ │ ├── rewrite-local-static-id.mm │ │ │ │ ├── rewrite-message-expr.mm │ │ │ │ ├── rewrite-nest.m │ │ │ │ ├── rewrite-nested-blocks-1.mm │ │ │ │ ├── rewrite-nested-blocks.mm │ │ │ │ ├── rewrite-nested-ivar.mm │ │ │ │ ├── rewrite-no-nextline.mm │ │ │ │ ├── rewrite-property-attributes.mm │ │ │ │ ├── rewrite-protocol-qualified.mm │ │ │ │ ├── rewrite-protocol-type-1.m │ │ │ │ ├── rewrite-qualified-id.mm │ │ │ │ ├── rewrite-rewritten-initializer.mm │ │ │ │ ├── rewrite-static-block.mm │ │ │ │ ├── rewrite-super-message.mm │ │ │ │ ├── rewrite-trivial-constructor.mm │ │ │ │ ├── rewrite-try-catch.m │ │ │ │ ├── rewrite-typeof.mm │ │ │ │ ├── rewrite-unique-block-api.mm │ │ │ │ ├── rewrite-weak-attr.m │ │ │ │ ├── static-type-protocol-1.m │ │ │ │ ├── undecl-objc-h.m │ │ │ │ ├── undeclared-method-1.m │ │ │ │ ├── undef-field-reference-1.m │ │ │ │ ├── va-method.m │ │ │ │ └── weak_byref_objects.m │ │ │ ├── Sema │ │ │ │ ├── 128bitint.c │ │ │ │ ├── Inputs │ │ │ │ │ └── conversion.h │ │ │ │ ├── PR2727.c │ │ │ │ ├── PR2728.c │ │ │ │ ├── PR2919-builtin-types-compat-strips-crv.c │ │ │ │ ├── PR2923.c │ │ │ │ ├── PR2963-enum-constant.c │ │ │ │ ├── address-constant.c │ │ │ │ ├── address_spaces.c │ │ │ │ ├── align-arm-apcs.c │ │ │ │ ├── align-x86-64.c │ │ │ │ ├── align-x86.c │ │ │ │ ├── altivec-init.c │ │ │ │ ├── annotate.c │ │ │ │ ├── anonymous-struct-union.c │ │ │ │ ├── arg-duplicate.c │ │ │ │ ├── arg-scope-c99.c │ │ │ │ ├── arg-scope.c │ │ │ │ ├── arm-layout.c │ │ │ │ ├── array-constraint.c │ │ │ │ ├── array-declared-as-incorrect-type.c │ │ │ │ ├── array-init.c │ │ │ │ ├── array-size-64.c │ │ │ │ ├── array-size.c │ │ │ │ ├── asm.c │ │ │ │ ├── assign-null.c │ │ │ │ ├── assign.c │ │ │ │ ├── ast-print.c │ │ │ │ ├── attr-aligned.c │ │ │ │ ├── attr-cleanup.c │ │ │ │ ├── attr-decl-after-definition.c │ │ │ │ ├── attr-deprecated.c │ │ │ │ ├── attr-format.c │ │ │ │ ├── attr-format_arg.c │ │ │ │ ├── attr-malloc.c │ │ │ │ ├── attr-mode.c │ │ │ │ ├── attr-nodebug.c │ │ │ │ ├── attr-noinline.c │ │ │ │ ├── attr-noreturn.c │ │ │ │ ├── attr-regparm.c │ │ │ │ ├── attr-section.c │ │ │ │ ├── attr-sentinel.c │ │ │ │ ├── attr-unknown.c │ │ │ │ ├── attr-unused.c │ │ │ │ ├── attr-used.c │ │ │ │ ├── attr-weak.c │ │ │ │ ├── bitfield-layout.c │ │ │ │ ├── bitfield-promote-int-16bit.c │ │ │ │ ├── bitfield-promote.c │ │ │ │ ├── bitfield.c │ │ │ │ ├── block-args.c │ │ │ │ ├── block-as-object.m │ │ │ │ ├── block-call.c │ │ │ │ ├── block-labels.c │ │ │ │ ├── block-literal.c │ │ │ │ ├── block-misc.c │ │ │ │ ├── block-printf-attribute-1.c │ │ │ │ ├── block-return-1.c │ │ │ │ ├── block-return-2.c │ │ │ │ ├── block-return-3.c │ │ │ │ ├── block-return.c │ │ │ │ ├── block-sentinel-attribute.c │ │ │ │ ├── block-storageclass.c │ │ │ │ ├── builtin-object-size.c │ │ │ │ ├── builtin-prefetch.c │ │ │ │ ├── builtin-stackaddress.c │ │ │ │ ├── builtin-unary-fp.c │ │ │ │ ├── builtins-arm.c │ │ │ │ ├── builtins.c │ │ │ │ ├── c89-2.c │ │ │ │ ├── c89.c │ │ │ │ ├── callingconv.c │ │ │ │ ├── carbon.c │ │ │ │ ├── cast-incomplete.c │ │ │ │ ├── cast-to-union.c │ │ │ │ ├── cast.c │ │ │ │ ├── check-increment.c │ │ │ │ ├── compare.c │ │ │ │ ├── complex-int.c │ │ │ │ ├── complex-promotion.c │ │ │ │ ├── compound-literal.c │ │ │ │ ├── conditional-expr.c │ │ │ │ ├── conditional.c │ │ │ │ ├── const-eval.c │ │ │ │ ├── const-ptr-int-ptr-cast.c │ │ │ │ ├── constant-builtins-2.c │ │ │ │ ├── constant-builtins.c │ │ │ │ ├── constructor-attribute.c │ │ │ │ ├── conversion-64-32.c │ │ │ │ ├── conversion.c │ │ │ │ ├── darwin-align-cast.c │ │ │ │ ├── decl-invalid.c │ │ │ │ ├── decl-type-merging.c │ │ │ │ ├── declspec.c │ │ │ │ ├── default.c │ │ │ │ ├── default1.c │ │ │ │ ├── deref.c │ │ │ │ ├── designated-initializers.c │ │ │ │ ├── dllimport-dllexport.c │ │ │ │ ├── enum-packed.c │ │ │ │ ├── enum.c │ │ │ │ ├── expr-address-of.c │ │ │ │ ├── expr-comma-c89.c │ │ │ │ ├── expr-comma.c │ │ │ │ ├── exprs.c │ │ │ │ ├── ext_vector_casts.c │ │ │ │ ├── ext_vector_comparisons.c │ │ │ │ ├── ext_vector_components.c │ │ │ │ ├── extern-redecl.c │ │ │ │ ├── flexible-array-init.c │ │ │ │ ├── floating-point-compare.c │ │ │ │ ├── for.c │ │ │ │ ├── format-string-percentm.c │ │ │ │ ├── format-strings-fixit.c │ │ │ │ ├── format-strings-scanf.c │ │ │ │ ├── format-strings.c │ │ │ │ ├── freemain.c │ │ │ │ ├── function-ptr.c │ │ │ │ ├── function-redecl.c │ │ │ │ ├── function.c │ │ │ │ ├── gnu89.c │ │ │ │ ├── heinous-extensions-off.c │ │ │ │ ├── heinous-extensions-on.c │ │ │ │ ├── i-c-e.c │ │ │ │ ├── if-empty-body.c │ │ │ │ ├── illegal-types.c │ │ │ │ ├── implicit-builtin-decl.c │ │ │ │ ├── implicit-builtin-freestanding.c │ │ │ │ ├── implicit-builtin-redecl.c │ │ │ │ ├── implicit-cast.c │ │ │ │ ├── implicit-decl.c │ │ │ │ ├── implicit-def.c │ │ │ │ ├── implicit-int.c │ │ │ │ ├── incompatible-sign.c │ │ │ │ ├── incomplete-call.c │ │ │ │ ├── incomplete-decl.c │ │ │ │ ├── indirect-goto.c │ │ │ │ ├── init-struct-qualified.c │ │ │ │ ├── init-vector.c │ │ │ │ ├── init.c │ │ │ │ ├── inline.c │ │ │ │ ├── int-arith-convert.c │ │ │ │ ├── invalid-decl.c │ │ │ │ ├── invalid-init-diag.c │ │ │ │ ├── invalid-struct-init.c │ │ │ │ ├── knr-def-call.c │ │ │ │ ├── knr-variadic-def.c │ │ │ │ ├── member-reference.c │ │ │ │ ├── merge-decls.c │ │ │ │ ├── missing-field-initializers.c │ │ │ │ ├── ms-fuzzy-asm.c │ │ │ │ ├── nested-redef.c │ │ │ │ ├── offsetof.c │ │ │ │ ├── opencl-init.c │ │ │ │ ├── overloadable-complex.c │ │ │ │ ├── overloadable.c │ │ │ │ ├── parentheses.c │ │ │ │ ├── pointer-addition.c │ │ │ │ ├── pointer-conversion.c │ │ │ │ ├── pointer-subtract-compat.c │ │ │ │ ├── pragma-align-mac68k-unsupported.c │ │ │ │ ├── pragma-align-mac68k.c │ │ │ │ ├── pragma-align-packed.c │ │ │ │ ├── pragma-pack-2.c │ │ │ │ ├── pragma-pack-3.c │ │ │ │ ├── pragma-pack-4.c │ │ │ │ ├── pragma-pack-and-options-align.c │ │ │ │ ├── pragma-pack.c │ │ │ │ ├── pragma-unused.c │ │ │ │ ├── predef.c │ │ │ │ ├── predefined-function.c │ │ │ │ ├── private-extern.c │ │ │ │ ├── promote-int-16bit.c │ │ │ │ ├── rdar6248119.m │ │ │ │ ├── rdr6094103-unordered-compare-promote.c │ │ │ │ ├── recover-goto.c │ │ │ │ ├── redefinition.c │ │ │ │ ├── return-noreturn.c │ │ │ │ ├── return-silent.c │ │ │ │ ├── return.c │ │ │ │ ├── scope-check.c │ │ │ │ ├── self-comparison.c │ │ │ │ ├── sentinel-attribute.c │ │ │ │ ├── shift.c │ │ │ │ ├── statements.c │ │ │ │ ├── static-init.c │ │ │ │ ├── stdcall-fastcall.c │ │ │ │ ├── struct-cast.c │ │ │ │ ├── struct-compat.c │ │ │ │ ├── struct-decl.c │ │ │ │ ├── struct-packed-align.c │ │ │ │ ├── surpress-deprecated.c │ │ │ │ ├── switch.c │ │ │ │ ├── tentative-decls.c │ │ │ │ ├── text-diag.c │ │ │ │ ├── thread-specifier.c │ │ │ │ ├── transparent-union-pointer.c │ │ │ │ ├── transparent-union.c │ │ │ │ ├── type-spec-struct-union.c │ │ │ │ ├── typecheck-binop.c │ │ │ │ ├── typedef-prototype.c │ │ │ │ ├── typedef-redef.c │ │ │ │ ├── typedef-retain.c │ │ │ │ ├── typedef-variable-type.c │ │ │ │ ├── types.c │ │ │ │ ├── ucn-cstring.c │ │ │ │ ├── unnamed-bitfield-init.c │ │ │ │ ├── unused-expr.c │ │ │ │ ├── usual-float.c │ │ │ │ ├── va_arg_x86_32.c │ │ │ │ ├── va_arg_x86_64.c │ │ │ │ ├── var-redecl.c │ │ │ │ ├── varargs-x86-64.c │ │ │ │ ├── varargs.c │ │ │ │ ├── variadic-block.c │ │ │ │ ├── vector-assign.c │ │ │ │ ├── vector-cast.c │ │ │ │ ├── vector-init.c │ │ │ │ ├── vector-ops.c │ │ │ │ ├── vfprintf-invalid-redecl.c │ │ │ │ ├── vfprintf-valid-redecl.c │ │ │ │ ├── vla.c │ │ │ │ ├── void_arg.c │ │ │ │ ├── warn-cast-align.c │ │ │ │ ├── warn-char-subscripts.c │ │ │ │ ├── warn-freestanding-complex.c │ │ │ │ ├── warn-gnu-designators.c │ │ │ │ ├── warn-missing-braces.c │ │ │ │ ├── warn-missing-prototypes.c │ │ │ │ ├── warn-shadow.c │ │ │ │ ├── warn-unreachable.c │ │ │ │ ├── warn-unused-function.c │ │ │ │ ├── warn-unused-parameters.c │ │ │ │ ├── warn-unused-value.c │ │ │ │ ├── warn-unused-variables.c │ │ │ │ ├── warn-write-strings.c │ │ │ │ ├── wchar.c │ │ │ │ ├── x86-attr-force-align-arg-pointer.c │ │ │ │ └── x86-builtin-palignr.c │ │ │ ├── SemaCXX │ │ │ │ ├── Inputs │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ └── malloc.h │ │ │ │ ├── MicrosoftExtensions.cpp │ │ │ │ ├── PR5086-ambig-resolution-enum.cpp │ │ │ │ ├── PR6562.cpp │ │ │ │ ├── PR6618.cpp │ │ │ │ ├── abstract.cpp │ │ │ │ ├── access-base-class.cpp │ │ │ │ ├── access-control-check.cpp │ │ │ │ ├── access-member-pointer.cpp │ │ │ │ ├── access.cpp │ │ │ │ ├── addr-of-overloaded-function.cpp │ │ │ │ ├── address-of-temporary.cpp │ │ │ │ ├── address-of.cpp │ │ │ │ ├── aggregate-initialization.cpp │ │ │ │ ├── alignof-sizeof-reference.cpp │ │ │ │ ├── altivec.cpp │ │ │ │ ├── ambig-user-defined-conversions.cpp │ │ │ │ ├── ambiguous-builtin-unary-operator.cpp │ │ │ │ ├── anonymous-struct.cpp │ │ │ │ ├── anonymous-union.cpp │ │ │ │ ├── array-bound-merge.cpp │ │ │ │ ├── arrow-operator.cpp │ │ │ │ ├── attr-after-definition.cpp │ │ │ │ ├── attr-cxx0x.cpp │ │ │ │ ├── attr-deprecated.cpp │ │ │ │ ├── attr-format.cpp │ │ │ │ ├── attr-noreturn.cpp │ │ │ │ ├── attr-regparm.cpp │ │ │ │ ├── attr-sentinel.cpp │ │ │ │ ├── attr-unavailable.cpp │ │ │ │ ├── attr-weakref.cpp │ │ │ │ ├── auto-cxx0x.cpp │ │ │ │ ├── auto-cxx98.cpp │ │ │ │ ├── bitfield-layout.cpp │ │ │ │ ├── blocks-1.cpp │ │ │ │ ├── blocks.cpp │ │ │ │ ├── bool.cpp │ │ │ │ ├── borland-extensions.cpp │ │ │ │ ├── builtin-exception-spec.cpp │ │ │ │ ├── builtin-ptrtomember-ambig.cpp │ │ │ │ ├── builtin-ptrtomember-overload-1.cpp │ │ │ │ ├── builtin-ptrtomember-overload.cpp │ │ │ │ ├── builtins.cpp │ │ │ │ ├── c99-variable-length-array.cpp │ │ │ │ ├── c99.cpp │ │ │ │ ├── cast-conversion.cpp │ │ │ │ ├── cast-explicit-ctor.cpp │ │ │ │ ├── class-base-member-init.cpp │ │ │ │ ├── class-layout.cpp │ │ │ │ ├── class-names.cpp │ │ │ │ ├── class.cpp │ │ │ │ ├── comma.cpp │ │ │ │ ├── compare.cpp │ │ │ │ ├── complex-overload.cpp │ │ │ │ ├── composite-pointer-type.cpp │ │ │ │ ├── condition.cpp │ │ │ │ ├── conditional-expr.cpp │ │ │ │ ├── const-cast.cpp │ │ │ │ ├── constant-expression.cpp │ │ │ │ ├── constructor-initializer.cpp │ │ │ │ ├── constructor-recovery.cpp │ │ │ │ ├── constructor.cpp │ │ │ │ ├── conversion-delete-expr.cpp │ │ │ │ ├── conversion-function.cpp │ │ │ │ ├── conversion.cpp │ │ │ │ ├── convert-to-bool.cpp │ │ │ │ ├── converting-constructor.cpp │ │ │ │ ├── copy-assignment.cpp │ │ │ │ ├── copy-constructor-error.cpp │ │ │ │ ├── copy-initialization.cpp │ │ │ │ ├── crash-8124080.cpp │ │ │ │ ├── crash-PR7625.cpp │ │ │ │ ├── cstyle-cast.cpp │ │ │ │ ├── cv-unqual-rvalues.cpp │ │ │ │ ├── cxx-member-pointer-op.cpp │ │ │ │ ├── dcl_ambig_res.cpp │ │ │ │ ├── dcl_init_aggr.cpp │ │ │ │ ├── decl-expr-ambiguity.cpp │ │ │ │ ├── decl-init-ref.cpp │ │ │ │ ├── decltype-crash.cpp │ │ │ │ ├── decltype-overloaded-functions.cpp │ │ │ │ ├── decltype-pr4444.cpp │ │ │ │ ├── decltype-pr4448.cpp │ │ │ │ ├── decltype-this.cpp │ │ │ │ ├── decltype.cpp │ │ │ │ ├── default-argument-temporaries.cpp │ │ │ │ ├── default-assignment-operator.cpp │ │ │ │ ├── default-constructor-initializers.cpp │ │ │ │ ├── default1.cpp │ │ │ │ ├── default2.cpp │ │ │ │ ├── deleted-function.cpp │ │ │ │ ├── dependent-types.cpp │ │ │ │ ├── derived-to-base-ambig.cpp │ │ │ │ ├── destructor.cpp │ │ │ │ ├── direct-initializer.cpp │ │ │ │ ├── do-while-scope.cpp │ │ │ │ ├── dynamic-cast.cpp │ │ │ │ ├── elaborated-type-specifier.cpp │ │ │ │ ├── empty-class-layout.cpp │ │ │ │ ├── enum.cpp │ │ │ │ ├── exception-spec-no-exceptions.cpp │ │ │ │ ├── exception-spec.cpp │ │ │ │ ├── exceptions.cpp │ │ │ │ ├── explicit.cpp │ │ │ │ ├── expressions.cpp │ │ │ │ ├── flexible-array-test.cpp │ │ │ │ ├── fntype-decl.cpp │ │ │ │ ├── format-attribute.cpp │ │ │ │ ├── friend-class-nodecl.cpp │ │ │ │ ├── friend.cpp │ │ │ │ ├── function-overloaded-redecl.cpp │ │ │ │ ├── function-redecl.cpp │ │ │ │ ├── function-type-qual.cpp │ │ │ │ ├── functional-cast.cpp │ │ │ │ ├── i-c-e-cxx.cpp │ │ │ │ ├── illegal-member-initialization.cpp │ │ │ │ ├── implicit-int.cpp │ │ │ │ ├── implicit-member-functions.cpp │ │ │ │ ├── implicit-virtual-member-functions.cpp │ │ │ │ ├── incomplete-call.cpp │ │ │ │ ├── increment-decrement.cpp │ │ │ │ ├── inherit.cpp │ │ │ │ ├── init-priority-attr.cpp │ │ │ │ ├── inline.cpp │ │ │ │ ├── instantiate-blocks.cpp │ │ │ │ ├── invalid-instantiated-field-decl.cpp │ │ │ │ ├── invalid-member-expr.cpp │ │ │ │ ├── invalid-template-specifier.cpp │ │ │ │ ├── libstdcxx_is_pod_hack.cpp │ │ │ │ ├── libstdcxx_map_base_hack.cpp │ │ │ │ ├── linkage-spec.cpp │ │ │ │ ├── literal-operators.cpp │ │ │ │ ├── literal-type.cpp │ │ │ │ ├── local-classes.cpp │ │ │ │ ├── member-expr-anonymous-union.cpp │ │ │ │ ├── member-expr-static.cpp │ │ │ │ ├── member-expr.cpp │ │ │ │ ├── member-location.cpp │ │ │ │ ├── member-name-lookup.cpp │ │ │ │ ├── member-operator-expr.cpp │ │ │ │ ├── member-pointer-ms.cpp │ │ │ │ ├── member-pointer-size.cpp │ │ │ │ ├── member-pointer.cpp │ │ │ │ ├── member-pointers-2.cpp │ │ │ │ ├── missing-header.cpp │ │ │ │ ├── missing-members.cpp │ │ │ │ ├── ms-exception-spec.cpp │ │ │ │ ├── namespace-alias.cpp │ │ │ │ ├── namespace.cpp │ │ │ │ ├── nested-name-spec.cpp │ │ │ │ ├── new-array-size-conv.cpp │ │ │ │ ├── new-delete-predefined-decl-2.cpp │ │ │ │ ├── new-delete-predefined-decl.cpp │ │ │ │ ├── new-delete.cpp │ │ │ │ ├── no-exceptions.cpp │ │ │ │ ├── no-implicit-builtin-decls.cpp │ │ │ │ ├── nullptr.cpp │ │ │ │ ├── offsetof.cpp │ │ │ │ ├── overload-call-copycon.cpp │ │ │ │ ├── overload-call.cpp │ │ │ │ ├── overload-decl.cpp │ │ │ │ ├── overload-member-call.cpp │ │ │ │ ├── overload-value-dep-arg.cpp │ │ │ │ ├── overloaded-builtin-operators.cpp │ │ │ │ ├── overloaded-operator-decl.cpp │ │ │ │ ├── overloaded-operator.cpp │ │ │ │ ├── prefetch-enum.cpp │ │ │ │ ├── primary-base.cpp │ │ │ │ ├── pseudo-destructors.cpp │ │ │ │ ├── ptrtomember-badcall.cpp │ │ │ │ ├── ptrtomember-overload-resolution.cpp │ │ │ │ ├── qual-id-test.cpp │ │ │ │ ├── qualification-conversion.cpp │ │ │ │ ├── qualified-id-lookup.cpp │ │ │ │ ├── qualified-member-enum.cpp │ │ │ │ ├── qualified-names-diag.cpp │ │ │ │ ├── qualified-names-print.cpp │ │ │ │ ├── ref-init-ambiguous.cpp │ │ │ │ ├── references.cpp │ │ │ │ ├── reinterpret-cast.cpp │ │ │ │ ├── reinterpret-fn-obj-pedantic.cpp │ │ │ │ ├── return-noreturn.cpp │ │ │ │ ├── return-stack-addr.cpp │ │ │ │ ├── return.cpp │ │ │ │ ├── rval-references-xfail.cpp │ │ │ │ ├── rval-references.cpp │ │ │ │ ├── scope-check.cpp │ │ │ │ ├── statements.cpp │ │ │ │ ├── static-array-member.cpp │ │ │ │ ├── static-assert.cpp │ │ │ │ ├── static-cast-complete-type.cpp │ │ │ │ ├── static-cast.cpp │ │ │ │ ├── static-initializers.cpp │ │ │ │ ├── storage-class.cpp │ │ │ │ ├── struct-class-redecl.cpp │ │ │ │ ├── switch-0x.cpp │ │ │ │ ├── switch.cpp │ │ │ │ ├── templated-friend-decl.cpp │ │ │ │ ├── this.cpp │ │ │ │ ├── trivial-constructor.cpp │ │ │ │ ├── trivial-destructor.cpp │ │ │ │ ├── type-convert-construct.cpp │ │ │ │ ├── type-definition-in-specifier.cpp │ │ │ │ ├── type-dependent-exprs.cpp │ │ │ │ ├── type-traits-incomplete.cpp │ │ │ │ ├── type-traits.cpp │ │ │ │ ├── typedef-redecl.cpp │ │ │ │ ├── typeid-ref.cpp │ │ │ │ ├── typeid.cpp │ │ │ │ ├── types_compatible_p.cpp │ │ │ │ ├── unary-real-imag.cpp │ │ │ │ ├── unknown-type-name.cpp │ │ │ │ ├── unreachable-catch-clauses.cpp │ │ │ │ ├── unreachable-code.cpp │ │ │ │ ├── unused-functions.cpp │ │ │ │ ├── unused.cpp │ │ │ │ ├── user-defined-conversions.cpp │ │ │ │ ├── using-decl-1.cpp │ │ │ │ ├── using-decl-pr4441.cpp │ │ │ │ ├── using-decl-pr4450.cpp │ │ │ │ ├── using-decl-templates.cpp │ │ │ │ ├── using-directive.cpp │ │ │ │ ├── value-dependent-exprs.cpp │ │ │ │ ├── value-initialization.cpp │ │ │ │ ├── vararg-default-arg.cpp │ │ │ │ ├── vararg-non-pod.cpp │ │ │ │ ├── vector-casts.cpp │ │ │ │ ├── vector-no-lax.cpp │ │ │ │ ├── vector.cpp │ │ │ │ ├── virtual-base-used.cpp │ │ │ │ ├── virtual-member-functions-key-function.cpp │ │ │ │ ├── virtual-override.cpp │ │ │ │ ├── virtuals.cpp │ │ │ │ ├── warn-assignment-condition.cpp │ │ │ │ ├── warn-cast-align.cpp │ │ │ │ ├── warn-char-subscripts.cpp │ │ │ │ ├── warn-global-constructors.cpp │ │ │ │ ├── warn-missing-noreturn.cpp │ │ │ │ ├── warn-missing-prototypes.cpp │ │ │ │ ├── warn-reorder-ctor-initialization.cpp │ │ │ │ ├── warn-self-comparisons.cpp │ │ │ │ ├── warn-shadow.cpp │ │ │ │ ├── warn-sign-compare.cpp │ │ │ │ ├── warn-unreachable.cpp │ │ │ │ ├── warn-unused-filescoped.cpp │ │ │ │ ├── warn-unused-parameters.cpp │ │ │ │ ├── warn-unused-value.cpp │ │ │ │ ├── warn-unused-variables.cpp │ │ │ │ ├── warn-weak-vtables.cpp │ │ │ │ ├── warn_false_to_pointer.cpp │ │ │ │ └── wchar_t.cpp │ │ │ ├── SemaObjC │ │ │ │ ├── ContClassPropertyLookup.m │ │ │ │ ├── DoubleMethod.m │ │ │ │ ├── access-property-getter.m │ │ │ │ ├── alias-test-1.m │ │ │ │ ├── alias-test-2.m │ │ │ │ ├── argument-checking.m │ │ │ │ ├── at-defs.m │ │ │ │ ├── atomoic-property-synnthesis-rules.m │ │ │ │ ├── attr-cleanup.m │ │ │ │ ├── attr-deprecated.m │ │ │ │ ├── attr-malloc.m │ │ │ │ ├── attr-objc-exception.m │ │ │ │ ├── attr-objc-gc.m │ │ │ │ ├── bad-receiver-1.m │ │ │ │ ├── block-attr.m │ │ │ │ ├── block-explicit-return-type.m │ │ │ │ ├── block-ivar.m │ │ │ │ ├── block-type-safety.m │ │ │ │ ├── blocks.m │ │ │ │ ├── call-super-2.m │ │ │ │ ├── catch-stmt.m │ │ │ │ ├── category-1.m │ │ │ │ ├── category-method-lookup-2.m │ │ │ │ ├── category-method-lookup.m │ │ │ │ ├── check-dup-decl-methods-1.m │ │ │ │ ├── check-dup-objc-decls-1.m │ │ │ │ ├── class-bitfield.m │ │ │ │ ├── class-conforming-protocol-1.m │ │ │ │ ├── class-conforming-protocol-2.m │ │ │ │ ├── class-def-test-1.m │ │ │ │ ├── class-extension-after-implementation.m │ │ │ │ ├── class-extension-dup-methods.m │ │ │ │ ├── class-getter-using-dotsyntax.m │ │ │ │ ├── class-impl-1.m │ │ │ │ ├── class-method-lookup.m │ │ │ │ ├── class-method-self.m │ │ │ │ ├── class-property-access.m │ │ │ │ ├── class-proto-1.m │ │ │ │ ├── class-protocol.m │ │ │ │ ├── cocoa.m │ │ │ │ ├── compare-qualified-class.m │ │ │ │ ├── compare-qualified-id.m │ │ │ │ ├── compatible-protocol-qualified-types.m │ │ │ │ ├── compound-init.m │ │ │ │ ├── comptypes-1.m │ │ │ │ ├── comptypes-2.m │ │ │ │ ├── comptypes-3.m │ │ │ │ ├── comptypes-4.m │ │ │ │ ├── comptypes-5.m │ │ │ │ ├── comptypes-6.m │ │ │ │ ├── comptypes-7.m │ │ │ │ ├── comptypes-8.m │ │ │ │ ├── comptypes-9.m │ │ │ │ ├── comptypes-a.m │ │ │ │ ├── comptypes-legal.m │ │ │ │ ├── conditional-expr-2.m │ │ │ │ ├── conditional-expr-3.m │ │ │ │ ├── conditional-expr-4.m │ │ │ │ ├── conditional-expr-5.m │ │ │ │ ├── conditional-expr-6.m │ │ │ │ ├── conditional-expr-7.m │ │ │ │ ├── conditional-expr.m │ │ │ │ ├── conflict-nonfragile-abi2.m │ │ │ │ ├── conflicting-ivar-test-1.m │ │ │ │ ├── continuation-class-err.m │ │ │ │ ├── continuation-class-property.m │ │ │ │ ├── crash-label.m │ │ │ │ ├── default-synthesize-1.m │ │ │ │ ├── default-synthesize.m │ │ │ │ ├── deref-interface.m │ │ │ │ ├── duplicate-ivar-check.m │ │ │ │ ├── duplicate-ivar-in-class-extension.m │ │ │ │ ├── duplicate-property-class-extension.m │ │ │ │ ├── duplicate-property.m │ │ │ │ ├── enhanced-proto-2.m │ │ │ │ ├── error-property-gc-attr.m │ │ │ │ ├── exprs.m │ │ │ │ ├── foreach.m │ │ │ │ ├── format-arg-attribute.m │ │ │ │ ├── format-strings-objc.m │ │ │ │ ├── forward-class-1.m │ │ │ │ ├── forward-class-receiver.m │ │ │ │ ├── gcc-cast-ext.m │ │ │ │ ├── ibaction.m │ │ │ │ ├── iboutletcollection-attr.m │ │ │ │ ├── id-isa-ref.m │ │ │ │ ├── id.m │ │ │ │ ├── id_builtin.m │ │ │ │ ├── idiomatic-parentheses.m │ │ │ │ ├── ignore-weakimport-method.m │ │ │ │ ├── incompatible-protocol-qualified-types.m │ │ │ │ ├── inst-method-lookup-in-root.m │ │ │ │ ├── interface-1.m │ │ │ │ ├── interface-layout-2.m │ │ │ │ ├── interface-layout.m │ │ │ │ ├── interface-scope-2.m │ │ │ │ ├── interface-scope.m │ │ │ │ ├── interface-tu-variable.m │ │ │ │ ├── invalid-code.m │ │ │ │ ├── invalid-objc-decls-1.m │ │ │ │ ├── invalid-receiver.m │ │ │ │ ├── invalid-typename.m │ │ │ │ ├── ivar-access-package.m │ │ │ │ ├── ivar-access-tests.m │ │ │ │ ├── ivar-in-class-extension-error.m │ │ │ │ ├── ivar-in-class-extension.m │ │ │ │ ├── ivar-in-implementations.m │ │ │ │ ├── ivar-lookup-resolution-builtin.m │ │ │ │ ├── ivar-lookup.m │ │ │ │ ├── ivar-ref-misuse.m │ │ │ │ ├── ivar-sem-check-1.m │ │ │ │ ├── ivar-sem-check-2.m │ │ │ │ ├── legacy-implementation-1.m │ │ │ │ ├── message.m │ │ │ │ ├── method-arg-decay.m │ │ │ │ ├── method-arg-qualifier-warning.m │ │ │ │ ├── method-attributes.m │ │ │ │ ├── method-bad-param.m │ │ │ │ ├── method-conflict.m │ │ │ │ ├── method-def-1.m │ │ │ │ ├── method-def-2.m │ │ │ │ ├── method-encoding-2.m │ │ │ │ ├── method-lookup-2.m │ │ │ │ ├── method-lookup-3.m │ │ │ │ ├── method-lookup-4.m │ │ │ │ ├── method-lookup.m │ │ │ │ ├── method-no-context.m │ │ │ │ ├── method-not-defined.m │ │ │ │ ├── method-sentinel-attr.m │ │ │ │ ├── method-typecheck-1.m │ │ │ │ ├── method-typecheck-2.m │ │ │ │ ├── method-undef-category-warn-1.m │ │ │ │ ├── method-undef-extension-warn-1.m │ │ │ │ ├── method-undefined-warn-1.m │ │ │ │ ├── method-unused-attribute.m │ │ │ │ ├── method-warn-unused-attribute.m │ │ │ │ ├── missing-method-context.m │ │ │ │ ├── newproperty-class-method-1.m │ │ │ │ ├── no-gc-weak-test.m │ │ │ │ ├── no-protocol-option-tests.m │ │ │ │ ├── no-warn-qual-mismatch.m │ │ │ │ ├── no-warn-synth-protocol-meth.m │ │ │ │ ├── no-warn-unimpl-method.m │ │ │ │ ├── nonnull.m │ │ │ │ ├── nsobject-attribute-1.m │ │ │ │ ├── nsobject-attribute.m │ │ │ │ ├── objc-cstyle-args-in-methods.m │ │ │ │ ├── objc-string-constant.m │ │ │ │ ├── objc2-merge-gc-attribue-decl.m │ │ │ │ ├── objc2-warn-weak-decl.m │ │ │ │ ├── pedantic-dynamic-test.m │ │ │ │ ├── property-10.m │ │ │ │ ├── property-11.m │ │ │ │ ├── property-12.m │ │ │ │ ├── property-13.m │ │ │ │ ├── property-2.m │ │ │ │ ├── property-3.m │ │ │ │ ├── property-4.m │ │ │ │ ├── property-5.m │ │ │ │ ├── property-6.m │ │ │ │ ├── property-7.m │ │ │ │ ├── property-8.m │ │ │ │ ├── property-9-impl-method.m │ │ │ │ ├── property-9.m │ │ │ │ ├── property-and-class-extension.m │ │ │ │ ├── property-and-ivar-use.m │ │ │ │ ├── property-category-1.m │ │ │ │ ├── property-category-2.m │ │ │ │ ├── property-category-3.m │ │ │ │ ├── property-category-4.m │ │ │ │ ├── property-category-impl.m │ │ │ │ ├── property-error-readonly-assign.m │ │ │ │ ├── property-expression-error.m │ │ │ │ ├── property-impl-misuse.m │ │ │ │ ├── property-in-class-extension.m │ │ │ │ ├── property-inherited.m │ │ │ │ ├── property-ivar-mismatch.m │ │ │ │ ├── property-method-lookup-impl.m │ │ │ │ ├── property-missing.m │ │ │ │ ├── property-nonfragile-abi.m │ │ │ │ ├── property-noprotocol-warning.m │ │ │ │ ├── property-not-lvalue.m │ │ │ │ ├── property-redundant-decl-accessor.m │ │ │ │ ├── property-typecheck-1.m │ │ │ │ ├── property-user-setter.m │ │ │ │ ├── property-weak.m │ │ │ │ ├── property.m │ │ │ │ ├── props-on-prots.m │ │ │ │ ├── protocol-archane.m │ │ │ │ ├── protocol-attribute.m │ │ │ │ ├── protocol-expr-1.m │ │ │ │ ├── protocol-expr-neg-1.m │ │ │ │ ├── protocol-id-test-1.m │ │ │ │ ├── protocol-id-test-2.m │ │ │ │ ├── protocol-id-test-3.m │ │ │ │ ├── protocol-implementation-inherited.m │ │ │ │ ├── protocol-lookup-2.m │ │ │ │ ├── protocol-lookup.m │ │ │ │ ├── protocol-qualified-class-unsupported.m │ │ │ │ ├── protocol-typecheck.m │ │ │ │ ├── protocol-warn.m │ │ │ │ ├── protocols.m │ │ │ │ ├── rdr-6211479-array-property.m │ │ │ │ ├── restrict-id-type.m │ │ │ │ ├── return.m │ │ │ │ ├── scope-check.m │ │ │ │ ├── selector-1.m │ │ │ │ ├── selector-error.m │ │ │ │ ├── selector-overload.m │ │ │ │ ├── sizeof-interface.m │ │ │ │ ├── stand-alone-implementation.m │ │ │ │ ├── static-ivar-ref-1.m │ │ │ │ ├── stmts.m │ │ │ │ ├── string.m │ │ │ │ ├── super-cat-prot.m │ │ │ │ ├── super-class-protocol-conformance.m │ │ │ │ ├── super-property-message-expr.m │ │ │ │ ├── super-property-notation.m │ │ │ │ ├── super.m │ │ │ │ ├── synchronized.m │ │ │ │ ├── synth-provisional-ivars.m │ │ │ │ ├── synthesize-setter-contclass.m │ │ │ │ ├── synthesized-ivar.m │ │ │ │ ├── transparent-union.m │ │ │ │ ├── try-catch.m │ │ │ │ ├── typedef-class.m │ │ │ │ ├── ucn-objc-string.m │ │ │ │ ├── undeclared-selector.m │ │ │ │ ├── undef-class-messagin-error.m │ │ │ │ ├── undef-protocol-methods-1.m │ │ │ │ ├── undef-superclass-1.m │ │ │ │ ├── undefined-protocol-type-1.m │ │ │ │ ├── unimplemented-protocol-prop.m │ │ │ │ ├── unused.m │ │ │ │ ├── va-method-1.m │ │ │ │ ├── warn-assign-property-nscopying.m │ │ │ │ ├── warn-incompatible-builtin-types.m │ │ │ │ ├── warn-selector-selection.m │ │ │ │ ├── warn-strict-selector-match.m │ │ │ │ ├── warn-superclass-method-mismatch.m │ │ │ │ ├── warn-unused-exception-param.m │ │ │ │ ├── warn-weak-field.m │ │ │ │ ├── warn-write-strings.m │ │ │ │ ├── weak-attr-ivar.m │ │ │ │ └── writable-property-in-superclass.m │ │ │ ├── SemaObjCXX │ │ │ │ ├── blocks.mm │ │ │ │ ├── category-lookup.mm │ │ │ │ ├── composite-objc-pointertype.mm │ │ │ │ ├── conditional-expr.mm │ │ │ │ ├── const-cast.mm │ │ │ │ ├── conversion-to-objc-pointer-2.mm │ │ │ │ ├── conversion-to-objc-pointer.mm │ │ │ │ ├── cstyle-block-pointer-cast.mm │ │ │ │ ├── cstyle-cast.mm │ │ │ │ ├── cxxoperator-selector.mm │ │ │ │ ├── deduction.mm │ │ │ │ ├── exceptions-fragile.mm │ │ │ │ ├── expr-objcxx.mm │ │ │ │ ├── foreach-block.mm │ │ │ │ ├── function-pointer-void-star.mm │ │ │ │ ├── instantiate-expr.mm │ │ │ │ ├── instantiate-message.mm │ │ │ │ ├── instantiate-method-return.mm │ │ │ │ ├── instantiate-stmt.mm │ │ │ │ ├── ivar-construct.mm │ │ │ │ ├── ivar-lookup.mm │ │ │ │ ├── ivar-reference-type.mm │ │ │ │ ├── ivar-struct.mm │ │ │ │ ├── linkage-spec.mm │ │ │ │ ├── message.mm │ │ │ │ ├── objc-decls-inside-namespace.mm │ │ │ │ ├── objc-pointer-conv.mm │ │ │ │ ├── objc2-merge-gc-attribue-decl.mm │ │ │ │ ├── overload-1.mm │ │ │ │ ├── overload.mm │ │ │ │ ├── parameters.mm │ │ │ │ ├── pointer-to-objc-pointer-conv.mm │ │ │ │ ├── protocol-lookup.mm │ │ │ │ ├── references.mm │ │ │ │ ├── reinterpret-cast-objc-pointertype.mm │ │ │ │ ├── reserved-keyword-selectors.mm │ │ │ │ ├── standard-conversion-to-bool.mm │ │ │ │ ├── static-cast.mm │ │ │ │ ├── vararg-non-pod.mm │ │ │ │ ├── vla.mm │ │ │ │ ├── void_to_obj.mm │ │ │ │ └── warn-strict-selector-match.mm │ │ │ ├── SemaTemplate │ │ │ │ ├── ackermann.cpp │ │ │ │ ├── ambiguous-ovl-print.cpp │ │ │ │ ├── anonymous-union.cpp │ │ │ │ ├── array-to-pointer-decay.cpp │ │ │ │ ├── attributes.cpp │ │ │ │ ├── canonical-expr-type-0x.cpp │ │ │ │ ├── canonical-expr-type.cpp │ │ │ │ ├── class-template-ctor-initializer.cpp │ │ │ │ ├── class-template-decl.cpp │ │ │ │ ├── class-template-id-2.cpp │ │ │ │ ├── class-template-id.cpp │ │ │ │ ├── class-template-spec.cpp │ │ │ │ ├── constructor-template.cpp │ │ │ │ ├── copy-ctor-assign.cpp │ │ │ │ ├── crash-8204126.cpp │ │ │ │ ├── current-instantiation.cpp │ │ │ │ ├── deduction-crash.cpp │ │ │ │ ├── deduction.cpp │ │ │ │ ├── default-arguments-cxx0x.cpp │ │ │ │ ├── default-arguments.cpp │ │ │ │ ├── default-expr-arguments-2.cpp │ │ │ │ ├── default-expr-arguments.cpp │ │ │ │ ├── dependent-base-classes.cpp │ │ │ │ ├── dependent-base-member-init.cpp │ │ │ │ ├── dependent-class-member-operator.cpp │ │ │ │ ├── dependent-expr.cpp │ │ │ │ ├── dependent-names.cpp │ │ │ │ ├── dependent-sized_array.cpp │ │ │ │ ├── dependent-template-recover.cpp │ │ │ │ ├── dependent-type-identity.cpp │ │ │ │ ├── destructor-template.cpp │ │ │ │ ├── elaborated-type-specifier.cpp │ │ │ │ ├── enum-argument.cpp │ │ │ │ ├── example-dynarray.cpp │ │ │ │ ├── example-typelist.cpp │ │ │ │ ├── explicit-instantiation.cpp │ │ │ │ ├── explicit-specialization-member.cpp │ │ │ │ ├── ext-vector-type.cpp │ │ │ │ ├── extern-templates.cpp │ │ │ │ ├── fibonacci.cpp │ │ │ │ ├── friend-template.cpp │ │ │ │ ├── friend.cpp │ │ │ │ ├── fun-template-def.cpp │ │ │ │ ├── function-template-specialization.cpp │ │ │ │ ├── implicit-instantiation-1.cpp │ │ │ │ ├── inject-templated-friend-post.cpp │ │ │ │ ├── inject-templated-friend.cpp │ │ │ │ ├── injected-class-name.cpp │ │ │ │ ├── instantiate-anonymous-union.cpp │ │ │ │ ├── instantiate-array.cpp │ │ │ │ ├── instantiate-attr.cpp │ │ │ │ ├── instantiate-c99.cpp │ │ │ │ ├── instantiate-call.cpp │ │ │ │ ├── instantiate-case.cpp │ │ │ │ ├── instantiate-cast.cpp │ │ │ │ ├── instantiate-clang.cpp │ │ │ │ ├── instantiate-complete.cpp │ │ │ │ ├── instantiate-decl-dtor.cpp │ │ │ │ ├── instantiate-decl-init.cpp │ │ │ │ ├── instantiate-declref-ice.cpp │ │ │ │ ├── instantiate-declref.cpp │ │ │ │ ├── instantiate-deeply.cpp │ │ │ │ ├── instantiate-default-assignment-operator.cpp │ │ │ │ ├── instantiate-dependent-nested-name.cpp │ │ │ │ ├── instantiate-elab-type-specifier.cpp │ │ │ │ ├── instantiate-enum-2.cpp │ │ │ │ ├── instantiate-enum.cpp │ │ │ │ ├── instantiate-exception-spec.cpp │ │ │ │ ├── instantiate-expr-1.cpp │ │ │ │ ├── instantiate-expr-2.cpp │ │ │ │ ├── instantiate-expr-3.cpp │ │ │ │ ├── instantiate-expr-4.cpp │ │ │ │ ├── instantiate-expr-5.cpp │ │ │ │ ├── instantiate-expr-basic.cpp │ │ │ │ ├── instantiate-field.cpp │ │ │ │ ├── instantiate-friend-class.cpp │ │ │ │ ├── instantiate-function-1.cpp │ │ │ │ ├── instantiate-function-1.mm │ │ │ │ ├── instantiate-function-2.cpp │ │ │ │ ├── instantiate-function-params.cpp │ │ │ │ ├── instantiate-init.cpp │ │ │ │ ├── instantiate-invalid.cpp │ │ │ │ ├── instantiate-local-class.cpp │ │ │ │ ├── instantiate-member-class.cpp │ │ │ │ ├── instantiate-member-expr.cpp │ │ │ │ ├── instantiate-member-initializers.cpp │ │ │ │ ├── instantiate-member-pointers.cpp │ │ │ │ ├── instantiate-member-template.cpp │ │ │ │ ├── instantiate-method.cpp │ │ │ │ ├── instantiate-non-dependent-types.cpp │ │ │ │ ├── instantiate-non-type-template-parameter.cpp │ │ │ │ ├── instantiate-objc-1.mm │ │ │ │ ├── instantiate-overload-candidates.cpp │ │ │ │ ├── instantiate-overloaded-arrow.cpp │ │ │ │ ├── instantiate-static-var.cpp │ │ │ │ ├── instantiate-subscript.cpp │ │ │ │ ├── instantiate-template-template-parm.cpp │ │ │ │ ├── instantiate-try-catch.cpp │ │ │ │ ├── instantiate-type.cpp │ │ │ │ ├── instantiate-typedef.cpp │ │ │ │ ├── instantiate-using-decl.cpp │ │ │ │ ├── instantiation-backtrace.cpp │ │ │ │ ├── instantiation-default-1.cpp │ │ │ │ ├── instantiation-default-2.cpp │ │ │ │ ├── instantiation-default-3.cpp │ │ │ │ ├── instantiation-depth.cpp │ │ │ │ ├── member-access-expr.cpp │ │ │ │ ├── member-function-template.cpp │ │ │ │ ├── member-initializers.cpp │ │ │ │ ├── member-template-access-expr.cpp │ │ │ │ ├── metafun-apply.cpp │ │ │ │ ├── nested-linkage.cpp │ │ │ │ ├── nested-name-spec-template.cpp │ │ │ │ ├── nested-template.cpp │ │ │ │ ├── operator-function-id-template.cpp │ │ │ │ ├── operator-template.cpp │ │ │ │ ├── overload-candidates.cpp │ │ │ │ ├── overload-uneval.cpp │ │ │ │ ├── partial-spec-instantiate.cpp │ │ │ │ ├── qualified-id.cpp │ │ │ │ ├── qualified-names-diag.cpp │ │ │ │ ├── recovery-crash.cpp │ │ │ │ ├── recursive-template-instantiation.cpp │ │ │ │ ├── self-comparison.cpp │ │ │ │ ├── temp.cpp │ │ │ │ ├── temp_arg.cpp │ │ │ │ ├── temp_arg_nontype.cpp │ │ │ │ ├── temp_arg_template.cpp │ │ │ │ ├── temp_arg_type.cpp │ │ │ │ ├── temp_class_order.cpp │ │ │ │ ├── temp_class_spec.cpp │ │ │ │ ├── temp_class_spec_blocks.cpp │ │ │ │ ├── temp_class_spec_neg.cpp │ │ │ │ ├── temp_explicit.cpp │ │ │ │ ├── temp_explicit_cxx0x.cpp │ │ │ │ ├── temp_func_order.cpp │ │ │ │ ├── template-class-traits.cpp │ │ │ │ ├── template-decl-fail.cpp │ │ │ │ ├── template-id-expr.cpp │ │ │ │ ├── template-id-printing.cpp │ │ │ │ ├── typename-specifier-2.cpp │ │ │ │ ├── typename-specifier-3.cpp │ │ │ │ ├── typename-specifier-4.cpp │ │ │ │ ├── typename-specifier.cpp │ │ │ │ ├── typo-dependent-name.cpp │ │ │ │ ├── unused-variables.cpp │ │ │ │ ├── value-dependent-null-pointer-constant.cpp │ │ │ │ ├── variadic-class-template-1.cpp │ │ │ │ ├── variadic-class-template-2.cpp │ │ │ │ ├── variadic-parse.cpp │ │ │ │ ├── variadic-unsupported.cpp │ │ │ │ └── virtual-member-functions.cpp │ │ │ ├── TestRunner.sh │ │ │ ├── cxx-sections.data │ │ │ ├── lit.cfg │ │ │ ├── lit.site.cfg.in │ │ │ └── make_test_dirs.pl │ │ ├── tools │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── c-index-test │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile │ │ │ │ └── c-index-test.c │ │ │ ├── driver │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Info.plist.in │ │ │ │ ├── Makefile │ │ │ │ ├── cc1_main.cpp │ │ │ │ ├── cc1as_main.cpp │ │ │ │ └── driver.cpp │ │ │ ├── libclang │ │ │ │ ├── CIndex.cpp │ │ │ │ ├── CIndexCXX.cpp │ │ │ │ ├── CIndexCodeCompletion.cpp │ │ │ │ ├── CIndexDiagnostic.cpp │ │ │ │ ├── CIndexDiagnostic.h │ │ │ │ ├── CIndexInclusionStack.cpp │ │ │ │ ├── CIndexUSRs.cpp │ │ │ │ ├── CIndexer.cpp │ │ │ │ ├── CIndexer.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CXCursor.cpp │ │ │ │ ├── CXCursor.h │ │ │ │ ├── CXSourceLocation.h │ │ │ │ ├── CXType.cpp │ │ │ │ ├── CXType.h │ │ │ │ ├── Makefile │ │ │ │ ├── libclang.darwin.exports │ │ │ │ └── libclang.exports │ │ │ ├── scan-build │ │ │ │ ├── c++-analyzer │ │ │ │ ├── ccc-analyzer │ │ │ │ ├── scan-build │ │ │ │ ├── scanview.css │ │ │ │ ├── set-xcode-analyzer │ │ │ │ └── sorttable.js │ │ │ └── scan-view │ │ │ │ ├── Reporter.py │ │ │ │ ├── Resources │ │ │ │ ├── FileRadar.scpt │ │ │ │ ├── GetRadarVersion.scpt │ │ │ │ └── bugcatcher.ico │ │ │ │ ├── ScanView.py │ │ │ │ ├── scan-view │ │ │ │ └── startfile.py │ │ ├── utils │ │ │ ├── ABITest │ │ │ │ ├── ABITestGen.py │ │ │ │ ├── Enumeration.py │ │ │ │ ├── Makefile.test.common │ │ │ │ ├── TypeGen.py │ │ │ │ ├── build-and-summarize-all.sh │ │ │ │ ├── build-and-summarize.sh │ │ │ │ ├── build.sh │ │ │ │ ├── layout │ │ │ │ │ └── Makefile │ │ │ │ ├── return-types-32 │ │ │ │ │ └── Makefile │ │ │ │ ├── return-types-64 │ │ │ │ │ └── Makefile │ │ │ │ ├── single-args-32 │ │ │ │ │ └── Makefile │ │ │ │ ├── single-args-64 │ │ │ │ │ └── Makefile │ │ │ │ └── summarize.sh │ │ │ ├── C++Tests │ │ │ │ ├── Clang-Code-Compile │ │ │ │ │ └── lit.local.cfg │ │ │ │ ├── Clang-Code-Syntax │ │ │ │ │ └── lit.local.cfg │ │ │ │ ├── Clang-Syntax │ │ │ │ │ └── lit.local.cfg │ │ │ │ ├── LLVM-Code-Compile │ │ │ │ │ └── lit.local.cfg │ │ │ │ ├── LLVM-Code-Symbols │ │ │ │ │ ├── check-symbols │ │ │ │ │ └── lit.local.cfg │ │ │ │ ├── LLVM-Code-Syntax │ │ │ │ │ └── lit.local.cfg │ │ │ │ ├── LLVM-Syntax │ │ │ │ │ └── lit.local.cfg │ │ │ │ ├── lit.cfg │ │ │ │ └── stdc++-Syntax │ │ │ │ │ └── lit.local.cfg │ │ │ ├── CIndex │ │ │ │ └── completion_logger_server.py │ │ │ ├── CaptureCmd │ │ │ ├── CmpDriver │ │ │ ├── FindSpecRefs │ │ │ ├── FuzzTest │ │ │ ├── OptionalTests │ │ │ │ ├── Extra │ │ │ │ │ ├── README.txt │ │ │ │ │ └── Runtime │ │ │ │ │ │ └── darwin-clang_rt.c │ │ │ │ ├── README.txt │ │ │ │ └── lit.cfg │ │ │ ├── SummarizeErrors │ │ │ ├── TestUtils │ │ │ │ ├── deep-stack.py │ │ │ │ └── pch-test.pl │ │ │ ├── VtableTest │ │ │ │ ├── Makefile │ │ │ │ ├── check-zti │ │ │ │ ├── check-ztt │ │ │ │ ├── check-zvt │ │ │ │ └── gen.cc │ │ │ ├── analyzer │ │ │ │ ├── CmpRuns │ │ │ │ └── ubiviz │ │ │ ├── builtin-defines.c │ │ │ ├── clang-completion-mode.el │ │ │ ├── token-delta.py │ │ │ └── valgrind │ │ │ │ └── x86_64-pc-linux-gnu_gcc-4.3.3.supp │ │ └── www │ │ │ ├── CheckerNotes.html │ │ │ ├── OpenProjects.html │ │ │ ├── StaticAnalysis.html │ │ │ ├── StaticAnalysisUsage.html │ │ │ ├── UniversalDriver.html │ │ │ ├── analyzer │ │ │ ├── annotations.html │ │ │ ├── available_checks.html │ │ │ ├── content.css │ │ │ ├── dev_cxx.html │ │ │ ├── filing_bugs.html │ │ │ ├── images │ │ │ │ ├── analyzer_html.png │ │ │ │ ├── analyzer_xcode.png │ │ │ │ ├── example_attribute_nonnull.png │ │ │ │ ├── example_cf_returns_retained.png │ │ │ │ ├── example_cf_returns_retained_gc.png │ │ │ │ ├── example_ns_returns_retained.png │ │ │ │ ├── scan_build_cmd.png │ │ │ │ └── tree │ │ │ │ │ ├── bullet.gif │ │ │ │ │ ├── minus.gif │ │ │ │ │ └── plus.gif │ │ │ ├── index.html │ │ │ ├── installation.html │ │ │ ├── latest_checker.html.incl │ │ │ ├── menu.css │ │ │ ├── menu.html.incl │ │ │ ├── scan-build.html │ │ │ ├── scripts │ │ │ │ ├── dbtree.js │ │ │ │ └── menu.js │ │ │ └── xcode.html │ │ │ ├── carbon-compile.png │ │ │ ├── clang-tutorial.html │ │ │ ├── clang_video-05-25-2007.html │ │ │ ├── clang_video-07-25-2007.html │ │ │ ├── comparison.html │ │ │ ├── compatibility.html │ │ │ ├── content.css │ │ │ ├── cxx_compatibility.html │ │ │ ├── cxx_status.html │ │ │ ├── demo │ │ │ ├── DemoInfo.html │ │ │ ├── cathead.png │ │ │ ├── index.cgi │ │ │ ├── syntax.css │ │ │ └── what is this directory.txt │ │ │ ├── diagnostics.html │ │ │ ├── distclang_status.html │ │ │ ├── feature-compile1.png │ │ │ ├── feature-compile2.png │ │ │ ├── feature-memory1.png │ │ │ ├── features.html │ │ │ ├── get_involved.html │ │ │ ├── get_started.html │ │ │ ├── hacking.html │ │ │ ├── index.html │ │ │ ├── menu.css │ │ │ ├── menu.html.incl │ │ │ ├── performance-2008-10-31.html │ │ │ ├── performance-2009-03-02.html │ │ │ ├── performance.html │ │ │ └── timing-data │ │ │ ├── 2008-10-31 │ │ │ ├── 176.gcc-01.txt │ │ │ ├── 176.gcc-02.txt │ │ │ ├── 176.gcc.png │ │ │ ├── sketch-01.txt │ │ │ ├── sketch-02.txt │ │ │ └── sketch.png │ │ │ ├── 2009-03-02 │ │ │ ├── 176.gcc.pdf │ │ │ ├── 176.gcc.png │ │ │ ├── 176.gcc.txt │ │ │ ├── sketch.pdf │ │ │ ├── sketch.png │ │ │ └── sketch.txt │ │ │ └── 2009-06-26 │ │ │ ├── 176.gcc.pdf │ │ │ ├── 176.gcc.png │ │ │ ├── 176.gcc.txt │ │ │ ├── sketch.pdf │ │ │ ├── sketch.png │ │ │ └── sketch.txt │ ├── edis │ │ ├── CMakeLists.txt │ │ ├── EDMain.cpp │ │ ├── EnhancedDisassembly.exports │ │ └── Makefile │ ├── gold │ │ ├── Makefile │ │ ├── README.txt │ │ ├── gold-plugin.cpp │ │ └── gold.exports │ ├── llc │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ └── llc.cpp │ ├── lli │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ └── lli.cpp │ ├── llvm-ar │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ └── llvm-ar.cpp │ ├── llvm-as │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ └── llvm-as.cpp │ ├── llvm-bcanalyzer │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ └── llvm-bcanalyzer.cpp │ ├── llvm-config │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── find-cycles.pl │ │ └── llvm-config.in.in │ ├── llvm-diff │ │ ├── CMakeLists.txt │ │ ├── DifferenceEngine.cpp │ │ ├── DifferenceEngine.h │ │ ├── Makefile │ │ └── llvm-diff.cpp │ ├── llvm-dis │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ └── llvm-dis.cpp │ ├── llvm-extract │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ └── llvm-extract.cpp │ ├── llvm-ld │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── Optimize.cpp │ │ └── llvm-ld.cpp │ ├── llvm-link │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ └── llvm-link.cpp │ ├── llvm-mc │ │ ├── CMakeLists.txt │ │ ├── Disassembler.cpp │ │ ├── Disassembler.h │ │ ├── Makefile │ │ └── llvm-mc.cpp │ ├── llvm-nm │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ └── llvm-nm.cpp │ ├── llvm-prof │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ └── llvm-prof.cpp │ ├── llvm-ranlib │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ └── llvm-ranlib.cpp │ ├── llvm-shlib │ │ └── Makefile │ ├── llvm-stub │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ └── llvm-stub.c │ ├── llvmc │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── doc │ │ │ ├── LLVMC-Reference.rst │ │ │ ├── LLVMC-Tutorial.rst │ │ │ ├── Makefile │ │ │ └── img │ │ │ │ └── lines.gif │ │ ├── examples │ │ │ ├── Hello │ │ │ │ ├── Hello.cpp │ │ │ │ └── Makefile │ │ │ ├── Makefile │ │ │ ├── Simple │ │ │ │ ├── Makefile │ │ │ │ ├── Simple.cpp │ │ │ │ └── Simple.td │ │ │ ├── Skeleton │ │ │ │ ├── AutoGenerated.td │ │ │ │ ├── Hooks.cpp │ │ │ │ ├── Main.cpp │ │ │ │ ├── Makefile │ │ │ │ └── README │ │ │ └── mcc16 │ │ │ │ ├── Hooks.cpp │ │ │ │ ├── Main.cpp │ │ │ │ ├── Makefile │ │ │ │ ├── PIC16.td │ │ │ │ └── README │ │ └── src │ │ │ ├── AutoGenerated.td │ │ │ ├── Base.td.in │ │ │ ├── Clang.td │ │ │ ├── Hooks.cpp │ │ │ ├── Main.cpp │ │ │ └── Makefile │ ├── lto │ │ ├── LTOCodeGenerator.cpp │ │ ├── LTOCodeGenerator.h │ │ ├── LTOModule.cpp │ │ ├── LTOModule.h │ │ ├── Makefile │ │ ├── lto.cpp │ │ └── lto.exports │ └── opt │ │ ├── AnalysisWrappers.cpp │ │ ├── CMakeLists.txt │ │ ├── GraphPrinters.cpp │ │ ├── Makefile │ │ ├── PrintSCC.cpp │ │ └── opt.cpp │ ├── unittests │ ├── ADT │ │ ├── APFloatTest.cpp │ │ ├── APIntTest.cpp │ │ ├── BitVectorTest.cpp │ │ ├── DAGDeltaAlgorithmTest.cpp │ │ ├── DeltaAlgorithmTest.cpp │ │ ├── DenseMapTest.cpp │ │ ├── DenseSetTest.cpp │ │ ├── ImmutableSetTest.cpp │ │ ├── Makefile │ │ ├── SmallBitVectorTest.cpp │ │ ├── SmallStringTest.cpp │ │ ├── SmallVectorTest.cpp │ │ ├── SparseBitVectorTest.cpp │ │ ├── StringMapTest.cpp │ │ ├── StringRefTest.cpp │ │ ├── TripleTest.cpp │ │ ├── TwineTest.cpp │ │ ├── ValueMapTest.cpp │ │ └── ilistTest.cpp │ ├── Analysis │ │ ├── Makefile │ │ └── ScalarEvolutionTest.cpp │ ├── ExecutionEngine │ │ ├── ExecutionEngineTest.cpp │ │ ├── JIT │ │ │ ├── JITEventListenerTest.cpp │ │ │ ├── JITMemoryManagerTest.cpp │ │ │ ├── JITTest.cpp │ │ │ ├── Makefile │ │ │ └── MultiJITTest.cpp │ │ └── Makefile │ ├── Makefile │ ├── Makefile.unittest │ ├── Support │ │ ├── AllocatorTest.cpp │ │ ├── Casting.cpp │ │ ├── CommandLineTest.cpp │ │ ├── ConstantRangeTest.cpp │ │ ├── LeakDetectorTest.cpp │ │ ├── Makefile │ │ ├── MathExtrasTest.cpp │ │ ├── RegexTest.cpp │ │ ├── System.cpp │ │ ├── TypeBuilderTest.cpp │ │ ├── ValueHandleTest.cpp │ │ └── raw_ostream_test.cpp │ ├── Transforms │ │ ├── Makefile │ │ └── Utils │ │ │ ├── Cloning.cpp │ │ │ └── Makefile │ └── VMCore │ │ ├── ConstantsTest.cpp │ │ ├── DerivedTypesTest.cpp │ │ ├── InstructionsTest.cpp │ │ ├── Makefile │ │ ├── MetadataTest.cpp │ │ ├── PassManagerTest.cpp │ │ └── VerifierTest.cpp │ ├── utils │ ├── DSAclean.py │ ├── DSAextract.py │ ├── FileCheck │ │ ├── CMakeLists.txt │ │ ├── FileCheck.cpp │ │ └── Makefile │ ├── FileUpdate │ │ ├── CMakeLists.txt │ │ ├── FileUpdate.cpp │ │ └── Makefile │ ├── GenLibDeps.pl │ ├── GetSourceVersion │ ├── Makefile │ ├── Misc │ │ └── zkill │ ├── NLT.schema │ ├── NewNightlyTest.pl │ ├── NightlyTest.gnuplot │ ├── NightlyTestTemplate.html │ ├── OldenDataRecover.pl │ ├── PerfectShuffle │ │ ├── Makefile │ │ └── PerfectShuffle.cpp │ ├── TableGen │ │ ├── ARMDecoderEmitter.cpp │ │ ├── ARMDecoderEmitter.h │ │ ├── AsmMatcherEmitter.cpp │ │ ├── AsmMatcherEmitter.h │ │ ├── AsmWriterEmitter.cpp │ │ ├── AsmWriterEmitter.h │ │ ├── AsmWriterInst.cpp │ │ ├── AsmWriterInst.h │ │ ├── CMakeLists.txt │ │ ├── CallingConvEmitter.cpp │ │ ├── CallingConvEmitter.h │ │ ├── ClangASTNodesEmitter.cpp │ │ ├── ClangASTNodesEmitter.h │ │ ├── ClangAttrEmitter.cpp │ │ ├── ClangAttrEmitter.h │ │ ├── ClangDiagnosticsEmitter.cpp │ │ ├── ClangDiagnosticsEmitter.h │ │ ├── CodeEmitterGen.cpp │ │ ├── CodeEmitterGen.h │ │ ├── CodeGenDAGPatterns.cpp │ │ ├── CodeGenDAGPatterns.h │ │ ├── CodeGenInstruction.cpp │ │ ├── CodeGenInstruction.h │ │ ├── CodeGenIntrinsics.h │ │ ├── CodeGenRegisters.h │ │ ├── CodeGenTarget.cpp │ │ ├── CodeGenTarget.h │ │ ├── DAGISelEmitter.cpp │ │ ├── DAGISelEmitter.h │ │ ├── DAGISelMatcher.cpp │ │ ├── DAGISelMatcher.h │ │ ├── DAGISelMatcherEmitter.cpp │ │ ├── DAGISelMatcherGen.cpp │ │ ├── DAGISelMatcherOpt.cpp │ │ ├── DisassemblerEmitter.cpp │ │ ├── DisassemblerEmitter.h │ │ ├── EDEmitter.cpp │ │ ├── EDEmitter.h │ │ ├── FastISelEmitter.cpp │ │ ├── FastISelEmitter.h │ │ ├── InstrEnumEmitter.cpp │ │ ├── InstrEnumEmitter.h │ │ ├── InstrInfoEmitter.cpp │ │ ├── InstrInfoEmitter.h │ │ ├── IntrinsicEmitter.cpp │ │ ├── IntrinsicEmitter.h │ │ ├── LLVMCConfigurationEmitter.cpp │ │ ├── LLVMCConfigurationEmitter.h │ │ ├── Makefile │ │ ├── NeonEmitter.cpp │ │ ├── NeonEmitter.h │ │ ├── OptParserEmitter.cpp │ │ ├── OptParserEmitter.h │ │ ├── Record.cpp │ │ ├── Record.h │ │ ├── RegisterInfoEmitter.cpp │ │ ├── RegisterInfoEmitter.h │ │ ├── StringToOffsetTable.h │ │ ├── SubtargetEmitter.cpp │ │ ├── SubtargetEmitter.h │ │ ├── TGLexer.cpp │ │ ├── TGLexer.h │ │ ├── TGParser.cpp │ │ ├── TGParser.h │ │ ├── TGValueTypes.cpp │ │ ├── TableGen.cpp │ │ ├── TableGenBackend.cpp │ │ ├── TableGenBackend.h │ │ ├── X86DisassemblerShared.h │ │ ├── X86DisassemblerTables.cpp │ │ ├── X86DisassemblerTables.h │ │ ├── X86ModRMFilters.h │ │ ├── X86RecognizableInstr.cpp │ │ ├── X86RecognizableInstr.h │ │ └── build │ │ │ ├── CMakeCache.txt │ │ │ ├── CMakeFiles │ │ │ ├── CMakeCCompiler.cmake │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ ├── CMakeOutput.log │ │ │ ├── CMakeSystem.cmake │ │ │ ├── CompilerIdC │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ └── a.out │ │ │ ├── CompilerIdCXX │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ └── a.out │ │ │ ├── Makefile.cmake │ │ │ ├── Makefile2 │ │ │ ├── Progress │ │ │ │ ├── 1 │ │ │ │ └── count.txt │ │ │ ├── TargetDirectories.txt │ │ │ ├── cmake.check_cache │ │ │ ├── progress.marks │ │ │ └── tblgen.dir │ │ │ │ ├── CXX.includecache │ │ │ │ ├── DependInfo.cmake │ │ │ │ ├── build.make │ │ │ │ ├── cmake_clean.cmake │ │ │ │ ├── depend.internal │ │ │ │ ├── depend.make │ │ │ │ ├── flags.make │ │ │ │ ├── link.txt │ │ │ │ └── progress.make │ │ │ ├── Makefile │ │ │ ├── Nvfuc.td │ │ │ └── cmake_install.cmake │ ├── UpdateCMakeLists.pl │ ├── bugpoint │ │ └── RemoteRunSafely.sh │ ├── buildit │ │ ├── GNUmakefile │ │ └── build_llvm │ ├── cgiplotNLT.pl │ ├── check-each-file │ ├── codegen-diff │ ├── count │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ └── count.c │ ├── countloc.sh │ ├── crosstool │ │ ├── ARM │ │ │ ├── README │ │ │ └── build-install-linux.sh │ │ └── create-snapshots.sh │ ├── emacs │ │ ├── README │ │ ├── emacs.el │ │ ├── llvm-mode.el │ │ └── tablegen-mode.el │ ├── findmisopt │ ├── findoptdiff │ ├── findsym.pl │ ├── fpcmp │ │ ├── Makefile │ │ └── fpcmp.cpp │ ├── getsrcs.sh │ ├── git │ │ └── find-rev │ ├── importNLT.pl │ ├── jedit │ │ ├── README │ │ └── tablegen.xml │ ├── lint │ │ ├── common_lint.py │ │ ├── cpp_lint.py │ │ ├── generic_lint.py │ │ └── remove_trailing_whitespace.sh │ ├── lit │ │ ├── TODO │ │ ├── lit.py │ │ ├── lit │ │ │ ├── ExampleTests.ObjDir │ │ │ │ └── lit.site.cfg │ │ │ ├── ExampleTests │ │ │ │ ├── Clang │ │ │ │ │ ├── fsyntax-only.c │ │ │ │ │ └── lit.cfg │ │ │ │ ├── LLVM.InTree │ │ │ │ │ └── test │ │ │ │ │ │ ├── Bar │ │ │ │ │ │ ├── bar-test.ll │ │ │ │ │ │ └── dg.exp │ │ │ │ │ │ ├── lit.cfg │ │ │ │ │ │ ├── lit.site.cfg │ │ │ │ │ │ └── site.exp │ │ │ │ ├── LLVM.OutOfTree │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── obj │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── Foo │ │ │ │ │ │ │ └── lit.local.cfg │ │ │ │ │ │ │ ├── lit.site.cfg │ │ │ │ │ │ │ └── site.exp │ │ │ │ │ └── src │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── Foo │ │ │ │ │ │ ├── data.txt │ │ │ │ │ │ ├── dg.exp │ │ │ │ │ │ └── pct-S.ll │ │ │ │ │ │ └── lit.cfg │ │ │ │ ├── ShExternal │ │ │ │ │ └── lit.local.cfg │ │ │ │ ├── ShInternal │ │ │ │ │ └── lit.local.cfg │ │ │ │ ├── TclTest │ │ │ │ │ ├── lit.local.cfg │ │ │ │ │ ├── stderr-pipe.ll │ │ │ │ │ └── tcl-redir-1.ll │ │ │ │ ├── fail.c │ │ │ │ ├── lit.cfg │ │ │ │ ├── pass.c │ │ │ │ ├── required-and-missing.c │ │ │ │ ├── required-and-present.c │ │ │ │ ├── xfail.c │ │ │ │ └── xpass.c │ │ │ ├── LitConfig.py │ │ │ ├── LitFormats.py │ │ │ ├── LitTestCase.py │ │ │ ├── ProgressBar.py │ │ │ ├── ShCommands.py │ │ │ ├── ShUtil.py │ │ │ ├── TclUtil.py │ │ │ ├── Test.py │ │ │ ├── TestFormats.py │ │ │ ├── TestRunner.py │ │ │ ├── TestingConfig.py │ │ │ ├── Util.py │ │ │ └── lit.py │ │ └── setup.py │ ├── llvm-lit │ │ ├── Makefile │ │ └── llvm-lit.in │ ├── llvm-native-gcc │ ├── llvm-native-gxx │ ├── llvm.grm │ ├── llvmdo │ ├── llvmgrep │ ├── makellvm │ ├── not │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ └── not.cpp │ ├── parseNLT.pl │ ├── plotNLT.pl │ ├── profile.pl │ ├── unittest │ │ ├── Makefile │ │ ├── UnitTestMain │ │ │ ├── Makefile │ │ │ └── TestMain.cpp │ │ └── googletest │ │ │ ├── LICENSE.TXT │ │ │ ├── Makefile │ │ │ ├── README.LLVM │ │ │ ├── gtest-death-test.cc │ │ │ ├── gtest-filepath.cc │ │ │ ├── gtest-port.cc │ │ │ ├── gtest-test-part.cc │ │ │ ├── gtest-typed-test.cc │ │ │ ├── gtest.cc │ │ │ └── include │ │ │ └── gtest │ │ │ ├── gtest-death-test.h │ │ │ ├── gtest-message.h │ │ │ ├── gtest-param-test.h │ │ │ ├── gtest-spi.h │ │ │ ├── gtest-test-part.h │ │ │ ├── gtest-typed-test.h │ │ │ ├── gtest.h │ │ │ ├── gtest_pred_impl.h │ │ │ ├── gtest_prod.h │ │ │ └── internal │ │ │ ├── gtest-death-test-internal.h │ │ │ ├── gtest-filepath.h │ │ │ ├── gtest-internal-inl.h │ │ │ ├── gtest-internal.h │ │ │ ├── gtest-linked_ptr.h │ │ │ ├── gtest-param-util-generated.h │ │ │ ├── gtest-param-util.h │ │ │ ├── gtest-port.h │ │ │ ├── gtest-string.h │ │ │ ├── gtest-tuple.h │ │ │ └── gtest-type-util.h │ ├── valgrind │ │ ├── i386-pc-linux-gnu.supp │ │ └── x86_64-pc-linux-gnu.supp │ ├── vim │ │ ├── README │ │ ├── llvm.vim │ │ ├── tablegen.vim │ │ └── vimrc │ └── webNLT.pl │ └── website │ └── index.html ├── loader ├── Makefile ├── fucload.c ├── libio.c ├── libio.h ├── libpg.c └── libpg.h ├── loader_firmware ├── Makefile ├── fucload.c ├── libio.c ├── libio.h ├── libpg.c └── libpg.h ├── monitor ├── Makefile ├── libio.c ├── libio.h ├── libpg.c ├── libpg.h ├── monitor1.c └── monitor2.c ├── script ├── bin2hex ├── datalist ├── hex2bin ├── hex2bytelist └── llvm2envyas └── test ├── test_br ├── Makefile ├── asminsn.h ├── boot.S ├── main.c ├── mmio.h ├── regs.h └── types.h ├── test_func ├── Makefile ├── asminsn.h ├── boot.S ├── main.c ├── mmio.h ├── regs.h └── types.h ├── test_intr ├── Makefile ├── asminsn.h ├── boot.S ├── main.c ├── mmio.h ├── regs.h └── types.h ├── test_sp ├── Makefile ├── asminsn.h ├── boot.S ├── main.c ├── mmio.h ├── regs.h └── types.h ├── test_timer ├── Makefile ├── asminsn.h ├── boot.S ├── main.c ├── mmio.h ├── regs.h └── types.h └── test_xfers ├── Makefile ├── asminsn.h ├── boot.S ├── main.c ├── mmio.h ├── regs.h └── types.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/README.md -------------------------------------------------------------------------------- /compiler/llvm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/CMakeLists.txt -------------------------------------------------------------------------------- /compiler/llvm/CREDITS.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/CREDITS.TXT -------------------------------------------------------------------------------- /compiler/llvm/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/LICENSE.TXT -------------------------------------------------------------------------------- /compiler/llvm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/Makefile -------------------------------------------------------------------------------- /compiler/llvm/Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/Makefile.common -------------------------------------------------------------------------------- /compiler/llvm/Makefile.config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/Makefile.config.in -------------------------------------------------------------------------------- /compiler/llvm/Makefile.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/Makefile.rules -------------------------------------------------------------------------------- /compiler/llvm/ModuleInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/ModuleInfo.txt -------------------------------------------------------------------------------- /compiler/llvm/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/README.txt -------------------------------------------------------------------------------- /compiler/llvm/autoconf/AutoRegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/autoconf/AutoRegen.sh -------------------------------------------------------------------------------- /compiler/llvm/autoconf/ExportMap.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/autoconf/ExportMap.map -------------------------------------------------------------------------------- /compiler/llvm/autoconf/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/autoconf/LICENSE.TXT -------------------------------------------------------------------------------- /compiler/llvm/autoconf/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/autoconf/README.TXT -------------------------------------------------------------------------------- /compiler/llvm/autoconf/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/autoconf/aclocal.m4 -------------------------------------------------------------------------------- /compiler/llvm/autoconf/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/autoconf/config.guess -------------------------------------------------------------------------------- /compiler/llvm/autoconf/config.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/autoconf/config.log -------------------------------------------------------------------------------- /compiler/llvm/autoconf/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/autoconf/config.sub -------------------------------------------------------------------------------- /compiler/llvm/autoconf/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/autoconf/configure -------------------------------------------------------------------------------- /compiler/llvm/autoconf/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/autoconf/configure.ac -------------------------------------------------------------------------------- /compiler/llvm/autoconf/configure.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/autoconf/configure.org -------------------------------------------------------------------------------- /compiler/llvm/autoconf/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/autoconf/depcomp -------------------------------------------------------------------------------- /compiler/llvm/autoconf/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/autoconf/install-sh -------------------------------------------------------------------------------- /compiler/llvm/autoconf/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/autoconf/ltmain.sh -------------------------------------------------------------------------------- /compiler/llvm/autoconf/m4/c_printf_a.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/autoconf/m4/c_printf_a.m4 -------------------------------------------------------------------------------- /compiler/llvm/autoconf/m4/func_isinf.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/autoconf/m4/func_isinf.m4 -------------------------------------------------------------------------------- /compiler/llvm/autoconf/m4/func_isnan.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/autoconf/m4/func_isnan.m4 -------------------------------------------------------------------------------- /compiler/llvm/autoconf/m4/huge_val.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/autoconf/m4/huge_val.m4 -------------------------------------------------------------------------------- /compiler/llvm/autoconf/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/autoconf/m4/libtool.m4 -------------------------------------------------------------------------------- /compiler/llvm/autoconf/m4/ltdl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/autoconf/m4/ltdl.m4 -------------------------------------------------------------------------------- /compiler/llvm/autoconf/m4/path_perl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/autoconf/m4/path_perl.m4 -------------------------------------------------------------------------------- /compiler/llvm/autoconf/m4/path_tclsh.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/autoconf/m4/path_tclsh.m4 -------------------------------------------------------------------------------- /compiler/llvm/autoconf/m4/rand48.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/autoconf/m4/rand48.m4 -------------------------------------------------------------------------------- /compiler/llvm/autoconf/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/autoconf/missing -------------------------------------------------------------------------------- /compiler/llvm/autoconf/mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/autoconf/mkinstalldirs -------------------------------------------------------------------------------- /compiler/llvm/autom4te.cache/output.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/autom4te.cache/output.0 -------------------------------------------------------------------------------- /compiler/llvm/autom4te.cache/requests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/autom4te.cache/requests -------------------------------------------------------------------------------- /compiler/llvm/autom4te.cache/traces.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/autom4te.cache/traces.0 -------------------------------------------------------------------------------- /compiler/llvm/bindings/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/bindings/Makefile -------------------------------------------------------------------------------- /compiler/llvm/bindings/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/bindings/README.txt -------------------------------------------------------------------------------- /compiler/llvm/bindings/ada/llvm.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/bindings/ada/llvm.gpr -------------------------------------------------------------------------------- /compiler/llvm/bindings/ocaml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/bindings/ocaml/Makefile -------------------------------------------------------------------------------- /compiler/llvm/build-for-llvm-top.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/build-for-llvm-top.sh -------------------------------------------------------------------------------- /compiler/llvm/cmake/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/cmake/README -------------------------------------------------------------------------------- /compiler/llvm/cmake/config-ix.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/cmake/config-ix.cmake -------------------------------------------------------------------------------- /compiler/llvm/cmake/modules/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /compiler/llvm/cmake/modules/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /compiler/llvm/cmake/modules/LLVM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/cmake/modules/LLVM.cmake -------------------------------------------------------------------------------- /compiler/llvm/cmake/modules/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/cmake/modules/Makefile -------------------------------------------------------------------------------- /compiler/llvm/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/configure -------------------------------------------------------------------------------- /compiler/llvm/docs/AliasAnalysis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/AliasAnalysis.html -------------------------------------------------------------------------------- /compiler/llvm/docs/BitCodeFormat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/BitCodeFormat.html -------------------------------------------------------------------------------- /compiler/llvm/docs/Bugpoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/Bugpoint.html -------------------------------------------------------------------------------- /compiler/llvm/docs/CFEBuildInstrs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/CFEBuildInstrs.html -------------------------------------------------------------------------------- /compiler/llvm/docs/CMake.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/CMake.html -------------------------------------------------------------------------------- /compiler/llvm/docs/CodeGenerator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/CodeGenerator.html -------------------------------------------------------------------------------- /compiler/llvm/docs/CodingStandards.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/CodingStandards.html -------------------------------------------------------------------------------- /compiler/llvm/docs/CommandGuide/lit.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/CommandGuide/lit.pod -------------------------------------------------------------------------------- /compiler/llvm/docs/CommandGuide/llc.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/CommandGuide/llc.pod -------------------------------------------------------------------------------- /compiler/llvm/docs/CommandGuide/lli.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/CommandGuide/lli.pod -------------------------------------------------------------------------------- /compiler/llvm/docs/CommandGuide/opt.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/CommandGuide/opt.pod -------------------------------------------------------------------------------- /compiler/llvm/docs/CommandLine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/CommandLine.html -------------------------------------------------------------------------------- /compiler/llvm/docs/CompilerDriver.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/CompilerDriver.html -------------------------------------------------------------------------------- /compiler/llvm/docs/DeveloperPolicy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/DeveloperPolicy.html -------------------------------------------------------------------------------- /compiler/llvm/docs/ExtendingLLVM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/ExtendingLLVM.html -------------------------------------------------------------------------------- /compiler/llvm/docs/FAQ.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/FAQ.html -------------------------------------------------------------------------------- /compiler/llvm/docs/GetElementPtr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/GetElementPtr.html -------------------------------------------------------------------------------- /compiler/llvm/docs/GettingStarted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/GettingStarted.html -------------------------------------------------------------------------------- /compiler/llvm/docs/GoldPlugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/GoldPlugin.html -------------------------------------------------------------------------------- /compiler/llvm/docs/HowToSubmitABug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/HowToSubmitABug.html -------------------------------------------------------------------------------- /compiler/llvm/docs/LangRef.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/LangRef.html -------------------------------------------------------------------------------- /compiler/llvm/docs/Lexicon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/Lexicon.html -------------------------------------------------------------------------------- /compiler/llvm/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/Makefile -------------------------------------------------------------------------------- /compiler/llvm/docs/MakefileGuide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/MakefileGuide.html -------------------------------------------------------------------------------- /compiler/llvm/docs/Packaging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/Packaging.html -------------------------------------------------------------------------------- /compiler/llvm/docs/Passes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/Passes.html -------------------------------------------------------------------------------- /compiler/llvm/docs/Projects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/Projects.html -------------------------------------------------------------------------------- /compiler/llvm/docs/ReleaseNotes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/ReleaseNotes.html -------------------------------------------------------------------------------- /compiler/llvm/docs/SystemLibrary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/SystemLibrary.html -------------------------------------------------------------------------------- /compiler/llvm/docs/TestingGuide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/TestingGuide.html -------------------------------------------------------------------------------- /compiler/llvm/docs/UsingLibraries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/UsingLibraries.html -------------------------------------------------------------------------------- /compiler/llvm/docs/doxygen.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/doxygen.cfg.in -------------------------------------------------------------------------------- /compiler/llvm/docs/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/doxygen.css -------------------------------------------------------------------------------- /compiler/llvm/docs/doxygen.footer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/doxygen.footer -------------------------------------------------------------------------------- /compiler/llvm/docs/doxygen.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/doxygen.header -------------------------------------------------------------------------------- /compiler/llvm/docs/doxygen.intro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/doxygen.intro -------------------------------------------------------------------------------- /compiler/llvm/docs/img/Debugging.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/img/Debugging.gif -------------------------------------------------------------------------------- /compiler/llvm/docs/img/libdeps.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/img/libdeps.gif -------------------------------------------------------------------------------- /compiler/llvm/docs/img/lines.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/img/lines.gif -------------------------------------------------------------------------------- /compiler/llvm/docs/img/objdeps.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/img/objdeps.gif -------------------------------------------------------------------------------- /compiler/llvm/docs/img/venusflytrap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/img/venusflytrap.jpg -------------------------------------------------------------------------------- /compiler/llvm/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/index.html -------------------------------------------------------------------------------- /compiler/llvm/docs/llvm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/llvm.css -------------------------------------------------------------------------------- /compiler/llvm/docs/re_format.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/re_format.7 -------------------------------------------------------------------------------- /compiler/llvm/docs/tutorial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/tutorial/Makefile -------------------------------------------------------------------------------- /compiler/llvm/docs/tutorial/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/docs/tutorial/index.html -------------------------------------------------------------------------------- /compiler/llvm/examples/BrainF/BrainF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/examples/BrainF/BrainF.h -------------------------------------------------------------------------------- /compiler/llvm/examples/BrainF/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/examples/BrainF/Makefile -------------------------------------------------------------------------------- /compiler/llvm/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/examples/CMakeLists.txt -------------------------------------------------------------------------------- /compiler/llvm/examples/Kaleidoscope/Chapter2/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_llvm_example(Kaleidoscope-Ch2 2 | toy.cpp 3 | ) 4 | -------------------------------------------------------------------------------- /compiler/llvm/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/examples/Makefile -------------------------------------------------------------------------------- /compiler/llvm/include/llvm-c/Analysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/include/llvm-c/Analysis.h -------------------------------------------------------------------------------- /compiler/llvm/include/llvm-c/Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/include/llvm-c/Core.h -------------------------------------------------------------------------------- /compiler/llvm/include/llvm-c/Target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/include/llvm-c/Target.h -------------------------------------------------------------------------------- /compiler/llvm/include/llvm-c/lto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/include/llvm-c/lto.h -------------------------------------------------------------------------------- /compiler/llvm/include/llvm/ADT/APInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/include/llvm/ADT/APInt.h -------------------------------------------------------------------------------- /compiler/llvm/include/llvm/ADT/APSInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/include/llvm/ADT/APSInt.h -------------------------------------------------------------------------------- /compiler/llvm/include/llvm/ADT/Trie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/include/llvm/ADT/Trie.h -------------------------------------------------------------------------------- /compiler/llvm/include/llvm/ADT/Triple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/include/llvm/ADT/Triple.h -------------------------------------------------------------------------------- /compiler/llvm/include/llvm/ADT/Twine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/include/llvm/ADT/Twine.h -------------------------------------------------------------------------------- /compiler/llvm/include/llvm/ADT/ilist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/include/llvm/ADT/ilist.h -------------------------------------------------------------------------------- /compiler/llvm/include/llvm/Argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/include/llvm/Argument.h -------------------------------------------------------------------------------- /compiler/llvm/include/llvm/Attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/include/llvm/Attributes.h -------------------------------------------------------------------------------- /compiler/llvm/include/llvm/BasicBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/include/llvm/BasicBlock.h -------------------------------------------------------------------------------- /compiler/llvm/include/llvm/Constant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/include/llvm/Constant.h -------------------------------------------------------------------------------- /compiler/llvm/include/llvm/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/include/llvm/Constants.h -------------------------------------------------------------------------------- /compiler/llvm/include/llvm/Function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/include/llvm/Function.h -------------------------------------------------------------------------------- /compiler/llvm/include/llvm/InlineAsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/include/llvm/InlineAsm.h -------------------------------------------------------------------------------- /compiler/llvm/include/llvm/InstrTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/include/llvm/InstrTypes.h -------------------------------------------------------------------------------- /compiler/llvm/include/llvm/Intrinsics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/include/llvm/Intrinsics.h -------------------------------------------------------------------------------- /compiler/llvm/include/llvm/Linker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/include/llvm/Linker.h -------------------------------------------------------------------------------- /compiler/llvm/include/llvm/MC/MCDwarf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/include/llvm/MC/MCDwarf.h -------------------------------------------------------------------------------- /compiler/llvm/include/llvm/MC/MCExpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/include/llvm/MC/MCExpr.h -------------------------------------------------------------------------------- /compiler/llvm/include/llvm/MC/MCFixup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/include/llvm/MC/MCFixup.h -------------------------------------------------------------------------------- /compiler/llvm/include/llvm/MC/MCInst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/include/llvm/MC/MCInst.h -------------------------------------------------------------------------------- /compiler/llvm/include/llvm/MC/MCLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/include/llvm/MC/MCLabel.h -------------------------------------------------------------------------------- /compiler/llvm/include/llvm/MC/MCValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/include/llvm/MC/MCValue.h -------------------------------------------------------------------------------- /compiler/llvm/include/llvm/Metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/include/llvm/Metadata.h -------------------------------------------------------------------------------- /compiler/llvm/include/llvm/Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/include/llvm/Module.h -------------------------------------------------------------------------------- /compiler/llvm/include/llvm/Operator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/include/llvm/Operator.h -------------------------------------------------------------------------------- /compiler/llvm/include/llvm/Pass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/include/llvm/Pass.h -------------------------------------------------------------------------------- /compiler/llvm/include/llvm/Type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/include/llvm/Type.h -------------------------------------------------------------------------------- /compiler/llvm/include/llvm/Use.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/include/llvm/Use.h -------------------------------------------------------------------------------- /compiler/llvm/include/llvm/User.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/include/llvm/User.h -------------------------------------------------------------------------------- /compiler/llvm/include/llvm/Value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/include/llvm/Value.h -------------------------------------------------------------------------------- /compiler/llvm/lib/Analysis/Analysis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Analysis/Analysis.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/Analysis/IPA/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Analysis/IPA/Makefile -------------------------------------------------------------------------------- /compiler/llvm/lib/Analysis/IVUsers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Analysis/IVUsers.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/Analysis/Interval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Analysis/Interval.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/Analysis/Lint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Analysis/Lint.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/Analysis/Loads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Analysis/Loads.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/Analysis/LoopInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Analysis/LoopInfo.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/Analysis/LoopPass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Analysis/LoopPass.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/Analysis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Analysis/Makefile -------------------------------------------------------------------------------- /compiler/llvm/lib/Analysis/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Analysis/README.txt -------------------------------------------------------------------------------- /compiler/llvm/lib/Analysis/Trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Analysis/Trace.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/Archive/Archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Archive/Archive.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/Archive/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Archive/Makefile -------------------------------------------------------------------------------- /compiler/llvm/lib/AsmParser/LLLexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/AsmParser/LLLexer.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/AsmParser/LLLexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/AsmParser/LLLexer.h -------------------------------------------------------------------------------- /compiler/llvm/lib/AsmParser/LLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/AsmParser/LLParser.h -------------------------------------------------------------------------------- /compiler/llvm/lib/AsmParser/LLToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/AsmParser/LLToken.h -------------------------------------------------------------------------------- /compiler/llvm/lib/AsmParser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/AsmParser/Makefile -------------------------------------------------------------------------------- /compiler/llvm/lib/AsmParser/Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/AsmParser/Parser.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/Bitcode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Bitcode/Makefile -------------------------------------------------------------------------------- /compiler/llvm/lib/CodeGen/Analysis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/CodeGen/Analysis.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/CodeGen/ELF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/CodeGen/ELF.h -------------------------------------------------------------------------------- /compiler/llvm/lib/CodeGen/ELFWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/CodeGen/ELFWriter.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/CodeGen/ELFWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/CodeGen/ELFWriter.h -------------------------------------------------------------------------------- /compiler/llvm/lib/CodeGen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/CodeGen/Makefile -------------------------------------------------------------------------------- /compiler/llvm/lib/CodeGen/OcamlGC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/CodeGen/OcamlGC.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/CodeGen/PBQP/Graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/CodeGen/PBQP/Graph.h -------------------------------------------------------------------------------- /compiler/llvm/lib/CodeGen/PBQP/Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/CodeGen/PBQP/Math.h -------------------------------------------------------------------------------- /compiler/llvm/lib/CodeGen/Passes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/CodeGen/Passes.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/CodeGen/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/CodeGen/README.txt -------------------------------------------------------------------------------- /compiler/llvm/lib/CodeGen/Spiller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/CodeGen/Spiller.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/CodeGen/Spiller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/CodeGen/Spiller.h -------------------------------------------------------------------------------- /compiler/llvm/lib/CodeGen/SplitKit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/CodeGen/SplitKit.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/CodeGen/SplitKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/CodeGen/SplitKit.h -------------------------------------------------------------------------------- /compiler/llvm/lib/CodeGen/Splitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/CodeGen/Splitter.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/CodeGen/Splitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/CodeGen/Splitter.h -------------------------------------------------------------------------------- /compiler/llvm/lib/CodeGen/VirtRegMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/CodeGen/VirtRegMap.h -------------------------------------------------------------------------------- /compiler/llvm/lib/Linker/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Linker/CMakeLists.txt -------------------------------------------------------------------------------- /compiler/llvm/lib/Linker/LinkItems.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Linker/LinkItems.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/Linker/Linker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Linker/Linker.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/Linker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Linker/Makefile -------------------------------------------------------------------------------- /compiler/llvm/lib/MC/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/MC/CMakeLists.txt -------------------------------------------------------------------------------- /compiler/llvm/lib/MC/MCAsmInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/MC/MCAsmInfo.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/MC/MCAsmInfoCOFF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/MC/MCAsmInfoCOFF.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/MC/MCAsmStreamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/MC/MCAsmStreamer.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/MC/MCAssembler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/MC/MCAssembler.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/MC/MCCodeEmitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/MC/MCCodeEmitter.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/MC/MCContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/MC/MCContext.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/MC/MCDisassembler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/MC/MCDisassembler.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/MC/MCDwarf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/MC/MCDwarf.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/MC/MCELFStreamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/MC/MCELFStreamer.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/MC/MCExpr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/MC/MCExpr.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/MC/MCInst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/MC/MCInst.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/MC/MCInstPrinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/MC/MCInstPrinter.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/MC/MCLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/MC/MCLabel.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/MC/MCNullStreamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/MC/MCNullStreamer.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/MC/MCObjectWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/MC/MCObjectWriter.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/MC/MCParser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/MC/MCParser/Makefile -------------------------------------------------------------------------------- /compiler/llvm/lib/MC/MCSection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/MC/MCSection.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/MC/MCSectionCOFF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/MC/MCSectionCOFF.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/MC/MCSectionELF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/MC/MCSectionELF.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/MC/MCSectionMachO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/MC/MCSectionMachO.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/MC/MCStreamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/MC/MCStreamer.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/MC/MCSymbol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/MC/MCSymbol.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/MC/MCValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/MC/MCValue.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/MC/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/MC/Makefile -------------------------------------------------------------------------------- /compiler/llvm/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Makefile -------------------------------------------------------------------------------- /compiler/llvm/lib/Support/APFloat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Support/APFloat.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/Support/APInt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Support/APInt.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/Support/APSInt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Support/APSInt.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/Support/Allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Support/Allocator.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/Support/Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Support/Debug.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/Support/Dwarf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Support/Dwarf.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/Support/IsInf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Support/IsInf.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/Support/IsNAN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Support/IsNAN.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/Support/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Support/Makefile -------------------------------------------------------------------------------- /compiler/llvm/lib/Support/Regex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Support/Regex.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/Support/SourceMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Support/SourceMgr.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/Support/Statistic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Support/Statistic.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/Support/StringMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Support/StringMap.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/Support/StringRef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Support/StringRef.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/Support/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Support/Timer.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/Support/Triple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Support/Triple.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/Support/Twine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Support/Twine.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/Support/regcclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Support/regcclass.h -------------------------------------------------------------------------------- /compiler/llvm/lib/Support/regcname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Support/regcname.h -------------------------------------------------------------------------------- /compiler/llvm/lib/Support/regcomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Support/regcomp.c -------------------------------------------------------------------------------- /compiler/llvm/lib/Support/regengine.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Support/regengine.inc -------------------------------------------------------------------------------- /compiler/llvm/lib/Support/regerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Support/regerror.c -------------------------------------------------------------------------------- /compiler/llvm/lib/Support/regex2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Support/regex2.h -------------------------------------------------------------------------------- /compiler/llvm/lib/Support/regex_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Support/regex_impl.h -------------------------------------------------------------------------------- /compiler/llvm/lib/Support/regexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Support/regexec.c -------------------------------------------------------------------------------- /compiler/llvm/lib/Support/regfree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Support/regfree.c -------------------------------------------------------------------------------- /compiler/llvm/lib/Support/regstrlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Support/regstrlcpy.c -------------------------------------------------------------------------------- /compiler/llvm/lib/Support/regutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Support/regutils.h -------------------------------------------------------------------------------- /compiler/llvm/lib/System/Alarm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/System/Alarm.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/System/Atomic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/System/Atomic.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/System/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/System/CMakeLists.txt -------------------------------------------------------------------------------- /compiler/llvm/lib/System/Errno.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/System/Errno.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/System/Host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/System/Host.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/System/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/System/Makefile -------------------------------------------------------------------------------- /compiler/llvm/lib/System/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/System/Memory.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/System/Mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/System/Mutex.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/System/Path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/System/Path.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/System/Process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/System/Process.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/System/Program.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/System/Program.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/System/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/System/README.txt -------------------------------------------------------------------------------- /compiler/llvm/lib/System/RWMutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/System/RWMutex.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/System/Signals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/System/Signals.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/System/Threading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/System/Threading.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/System/TimeValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/System/TimeValue.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/System/Unix/Alarm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/System/Unix/Alarm.inc -------------------------------------------------------------------------------- /compiler/llvm/lib/System/Unix/Host.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/System/Unix/Host.inc -------------------------------------------------------------------------------- /compiler/llvm/lib/System/Unix/Mutex.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/System/Unix/Mutex.inc -------------------------------------------------------------------------------- /compiler/llvm/lib/System/Unix/Path.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/System/Unix/Path.inc -------------------------------------------------------------------------------- /compiler/llvm/lib/System/Unix/Unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/System/Unix/Unix.h -------------------------------------------------------------------------------- /compiler/llvm/lib/System/Valgrind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/System/Valgrind.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/System/Win32/Host.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/System/Win32/Host.inc -------------------------------------------------------------------------------- /compiler/llvm/lib/System/Win32/Path.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/System/Win32/Path.inc -------------------------------------------------------------------------------- /compiler/llvm/lib/System/Win32/Win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/System/Win32/Win32.h -------------------------------------------------------------------------------- /compiler/llvm/lib/Target/ARM/ARM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Target/ARM/ARM.h -------------------------------------------------------------------------------- /compiler/llvm/lib/Target/ARM/ARM.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Target/ARM/ARM.td -------------------------------------------------------------------------------- /compiler/llvm/lib/Target/ARM/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Target/ARM/Makefile -------------------------------------------------------------------------------- /compiler/llvm/lib/Target/ARM/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Target/ARM/README.txt -------------------------------------------------------------------------------- /compiler/llvm/lib/Target/Alpha/Alpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Target/Alpha/Alpha.h -------------------------------------------------------------------------------- /compiler/llvm/lib/Target/Alpha/Alpha.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Target/Alpha/Alpha.td -------------------------------------------------------------------------------- /compiler/llvm/lib/Target/Alpha/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Target/Alpha/Makefile -------------------------------------------------------------------------------- /compiler/llvm/lib/Target/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Target/CMakeLists.txt -------------------------------------------------------------------------------- /compiler/llvm/lib/Target/CellSPU/SPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Target/CellSPU/SPU.h -------------------------------------------------------------------------------- /compiler/llvm/lib/Target/CellSPU/SPU.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Target/CellSPU/SPU.td -------------------------------------------------------------------------------- /compiler/llvm/lib/Target/Guc/Guc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Target/Guc/Guc.h -------------------------------------------------------------------------------- /compiler/llvm/lib/Target/Guc/Guc.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Target/Guc/Guc.td -------------------------------------------------------------------------------- /compiler/llvm/lib/Target/Guc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Target/Guc/Makefile -------------------------------------------------------------------------------- /compiler/llvm/lib/Target/Guc/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Target/Guc/README.txt -------------------------------------------------------------------------------- /compiler/llvm/lib/Target/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Target/Makefile -------------------------------------------------------------------------------- /compiler/llvm/lib/Target/Mangler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Target/Mangler.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/Target/Mips/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Target/Mips/Makefile -------------------------------------------------------------------------------- /compiler/llvm/lib/Target/Mips/Mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Target/Mips/Mips.h -------------------------------------------------------------------------------- /compiler/llvm/lib/Target/Mips/Mips.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Target/Mips/Mips.td -------------------------------------------------------------------------------- /compiler/llvm/lib/Target/PIC16/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Target/PIC16/Makefile -------------------------------------------------------------------------------- /compiler/llvm/lib/Target/PIC16/PIC16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Target/PIC16/PIC16.h -------------------------------------------------------------------------------- /compiler/llvm/lib/Target/PIC16/PIC16.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Target/PIC16/PIC16.td -------------------------------------------------------------------------------- /compiler/llvm/lib/Target/PowerPC/PPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Target/PowerPC/PPC.h -------------------------------------------------------------------------------- /compiler/llvm/lib/Target/PowerPC/PPC.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Target/PowerPC/PPC.td -------------------------------------------------------------------------------- /compiler/llvm/lib/Target/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Target/README.txt -------------------------------------------------------------------------------- /compiler/llvm/lib/Target/Sparc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Target/Sparc/Makefile -------------------------------------------------------------------------------- /compiler/llvm/lib/Target/Sparc/Sparc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Target/Sparc/Sparc.h -------------------------------------------------------------------------------- /compiler/llvm/lib/Target/Sparc/Sparc.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Target/Sparc/Sparc.td -------------------------------------------------------------------------------- /compiler/llvm/lib/Target/Target.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Target/Target.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/Target/TargetData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Target/TargetData.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/Target/X86/InstrSSE.td: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /compiler/llvm/lib/Target/X86/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Target/X86/Makefile -------------------------------------------------------------------------------- /compiler/llvm/lib/Target/X86/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Target/X86/README.txt -------------------------------------------------------------------------------- /compiler/llvm/lib/Target/X86/X86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Target/X86/X86.h -------------------------------------------------------------------------------- /compiler/llvm/lib/Target/X86/X86.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Target/X86/X86.td -------------------------------------------------------------------------------- /compiler/llvm/lib/Target/XCore/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Target/XCore/Makefile -------------------------------------------------------------------------------- /compiler/llvm/lib/Target/XCore/XCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Target/XCore/XCore.h -------------------------------------------------------------------------------- /compiler/llvm/lib/Target/XCore/XCore.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Target/XCore/XCore.td -------------------------------------------------------------------------------- /compiler/llvm/lib/Transforms/Hello/Hello.exports: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /compiler/llvm/lib/Transforms/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/Transforms/Makefile -------------------------------------------------------------------------------- /compiler/llvm/lib/VMCore/AsmWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/VMCore/AsmWriter.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/VMCore/Attributes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/VMCore/Attributes.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/VMCore/BasicBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/VMCore/BasicBlock.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/VMCore/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/VMCore/CMakeLists.txt -------------------------------------------------------------------------------- /compiler/llvm/lib/VMCore/ConstantFold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/VMCore/ConstantFold.h -------------------------------------------------------------------------------- /compiler/llvm/lib/VMCore/Constants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/VMCore/Constants.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/VMCore/Core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/VMCore/Core.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/VMCore/DebugLoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/VMCore/DebugLoc.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/VMCore/Dominators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/VMCore/Dominators.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/VMCore/Function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/VMCore/Function.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/VMCore/Globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/VMCore/Globals.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/VMCore/IRBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/VMCore/IRBuilder.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/VMCore/InlineAsm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/VMCore/InlineAsm.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/VMCore/LeaksContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/VMCore/LeaksContext.h -------------------------------------------------------------------------------- /compiler/llvm/lib/VMCore/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/VMCore/Makefile -------------------------------------------------------------------------------- /compiler/llvm/lib/VMCore/Metadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/VMCore/Metadata.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/VMCore/Module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/VMCore/Module.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/VMCore/Pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/VMCore/Pass.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/VMCore/Type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/VMCore/Type.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/VMCore/TypesContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/VMCore/TypesContext.h -------------------------------------------------------------------------------- /compiler/llvm/lib/VMCore/Use.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/VMCore/Use.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/VMCore/Value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/VMCore/Value.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/VMCore/ValueTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/VMCore/ValueTypes.cpp -------------------------------------------------------------------------------- /compiler/llvm/lib/VMCore/Verifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/lib/VMCore/Verifier.cpp -------------------------------------------------------------------------------- /compiler/llvm/llvm.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/llvm.spec.in -------------------------------------------------------------------------------- /compiler/llvm/projects/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/projects/CMakeLists.txt -------------------------------------------------------------------------------- /compiler/llvm/projects/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/projects/Makefile -------------------------------------------------------------------------------- /compiler/llvm/projects/sample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/projects/sample/Makefile -------------------------------------------------------------------------------- /compiler/llvm/projects/sample/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/projects/sample/configure -------------------------------------------------------------------------------- /compiler/llvm/runtime/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/runtime/Makefile -------------------------------------------------------------------------------- /compiler/llvm/runtime/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/runtime/README.txt -------------------------------------------------------------------------------- /compiler/llvm/test/Archive/GNU.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Archive/GNU.a -------------------------------------------------------------------------------- /compiler/llvm/test/Archive/GNU.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Archive/GNU.toc -------------------------------------------------------------------------------- /compiler/llvm/test/Archive/IsNAN.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Archive/IsNAN.o -------------------------------------------------------------------------------- /compiler/llvm/test/Archive/MacOSX.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Archive/MacOSX.a -------------------------------------------------------------------------------- /compiler/llvm/test/Archive/MacOSX.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Archive/MacOSX.toc -------------------------------------------------------------------------------- /compiler/llvm/test/Archive/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Archive/README.txt -------------------------------------------------------------------------------- /compiler/llvm/test/Archive/SVR4.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Archive/SVR4.a -------------------------------------------------------------------------------- /compiler/llvm/test/Archive/SVR4.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Archive/SVR4.toc -------------------------------------------------------------------------------- /compiler/llvm/test/Archive/dg.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Archive/dg.exp -------------------------------------------------------------------------------- /compiler/llvm/test/Archive/evenlen: -------------------------------------------------------------------------------- 1 | evenlen 2 | -------------------------------------------------------------------------------- /compiler/llvm/test/Archive/extract.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Archive/extract.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Archive/oddlen: -------------------------------------------------------------------------------- 1 | oddlen 2 | -------------------------------------------------------------------------------- /compiler/llvm/test/Archive/toc_GNU.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Archive/toc_GNU.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Archive/toc_SVR4.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Archive/toc_SVR4.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Archive/toc_xpg4.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Archive/toc_xpg4.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Archive/xpg4.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Archive/xpg4.a -------------------------------------------------------------------------------- /compiler/llvm/test/Archive/xpg4.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Archive/xpg4.toc -------------------------------------------------------------------------------- /compiler/llvm/test/Assembler/bcwrap.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Assembler/bcwrap.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Assembler/comment.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Assembler/comment.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Assembler/dg.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Assembler/dg.exp -------------------------------------------------------------------------------- /compiler/llvm/test/Assembler/flags.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Assembler/flags.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Assembler/private.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Assembler/private.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Assembler/select.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Assembler/select.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Assembler/unnamed.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Assembler/unnamed.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Bitcode/dg.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Bitcode/dg.exp -------------------------------------------------------------------------------- /compiler/llvm/test/Bitcode/flags.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Bitcode/flags.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Bitcode/memcpy.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Bitcode/memcpy.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Bitcode/metadata.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Bitcode/metadata.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Bitcode/ssse3_palignr.ll: -------------------------------------------------------------------------------- 1 | ; RUN: llvm-dis < %s.bc | not grep {@llvm\\.palign} 2 | -------------------------------------------------------------------------------- /compiler/llvm/test/BugPoint/dg.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/BugPoint/dg.exp -------------------------------------------------------------------------------- /compiler/llvm/test/BugPoint/metadata.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/BugPoint/metadata.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CMakeLists.txt -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/align.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/align.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/armv4.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/armv4.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/bfc.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/bfc.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/bfi.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/bfi.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/bfx.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/bfx.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/bic.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/bic.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/bits.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/bits.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/call.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/call.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/carry.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/carry.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/clz.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/clz.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/ctz.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/ctz.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/dg.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/dg.exp -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/div.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/div.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/fabss.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/fabss.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/fadds.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/fadds.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/fdivs.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/fdivs.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/fmacs.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/fmacs.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/fmscs.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/fmscs.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/fmuls.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/fmuls.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/fnegs.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/fnegs.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/fnmul.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/fnmul.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/fp.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/fp.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/fp16.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/fp16.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/fpcmp.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/fpcmp.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/fpmem.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/fpmem.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/fpow.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/fpow.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/fpowi.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/fpowi.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/fsubs.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/fsubs.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/hello.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/hello.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/iabs.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/iabs.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/imm.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/imm.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/ldm.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/ldm.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/ldr.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/ldr.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/ldrd.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/ldrd.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/load.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/load.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/long.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/long.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/mem.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/mem.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/mls.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/mls.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/movt.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/movt.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/mul.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/mul.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/mulhi.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/mulhi.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/mvn.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/mvn.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/pack.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/pack.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/remat.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/remat.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/ret0.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/ret0.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/rev.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/rev.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/sbfx.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/sbfx.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/smul.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/smul.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/stm.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/stm.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/sub.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/sub.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/tls1.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/tls1.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/tls2.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/tls2.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/tls3.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/tls3.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/trap.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/trap.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/unord.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/unord.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/uxtb.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/uxtb.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vaba.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vaba.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vabd.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vabd.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vabs.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vabs.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vadd.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vadd.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vargs.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vargs.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vbits.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vbits.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vbsl.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vbsl.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vceq.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vceq.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vcge.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vcge.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vcgt.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vcgt.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vcnt.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vcnt.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vcvt.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vcvt.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vdup.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vdup.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vext.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vext.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vfcmp.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vfcmp.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vfp.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vfp.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vhadd.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vhadd.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vhsub.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vhsub.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vicmp.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vicmp.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vld1.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vld1.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vld2.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vld2.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vld3.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vld3.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vld4.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vld4.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vmla.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vmla.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vmls.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vmls.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vmov.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vmov.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vmul.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vmul.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vneg.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vneg.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vpadd.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vpadd.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vqadd.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vqadd.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vqshl.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vqshl.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vqsub.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vqsub.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vrec.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vrec.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vrev.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vrev.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vshl.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vshl.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vshll.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vshll.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vshrn.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vshrn.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vsra.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vsra.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vst1.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vst1.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vst2.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vst2.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vst3.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vst3.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vst4.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vst4.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vsub.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vsub.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vtbl.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vtbl.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vtrn.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vtrn.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vuzp.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vuzp.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/vzip.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/vzip.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/weak.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/weak.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/ARM/weak2.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/ARM/weak2.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/Alpha/add.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/Alpha/add.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/Alpha/bic.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/Alpha/bic.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/Alpha/bsr.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/Alpha/bsr.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/Alpha/dg.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/Alpha/dg.exp -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/Alpha/eqv.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/Alpha/eqv.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/Alpha/mb.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/Alpha/mb.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/Alpha/not.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/Alpha/not.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/Alpha/wmb.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/Alpha/wmb.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/CPP/dg.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/CPP/dg.exp -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/CellSPU/useful-harnesses/lit.local.cfg: -------------------------------------------------------------------------------- 1 | config.suffixes = [] 2 | -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/MBlaze/cc.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/MBlaze/cc.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/Mips/dg.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/Mips/dg.exp -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/PIC16/dg.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/PIC16/dg.exp -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/SPARC/dg.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/SPARC/dg.exp -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/Thumb/dg.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/Thumb/dg.exp -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/Thumb/mul.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/Thumb/mul.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/Thumb/pop.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/Thumb/pop.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/add.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/add.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/bswap.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/bswap.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/bt.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/bt.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/byval.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/byval.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/clz.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/clz.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/cmov.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/cmov.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/cmp0.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/cmp0.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/cmp2.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/cmp2.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/crash.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/crash.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/dg.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/dg.exp -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/fabs.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/fabs.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/i2k.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/i2k.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/iabs.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/iabs.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/isint.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/isint.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/isnan.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/isnan.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/lea-2.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/lea-2.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/lea-3.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/lea-3.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/lea-4.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/lea-4.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/lea.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/lea.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/movfs.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/movfs.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/movgs.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/movgs.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/mul64.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/mul64.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/nobt.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/nobt.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/pic.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/pic.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/pmul.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/pmul.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/powi.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/powi.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/rdtsc.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/rdtsc.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/rem-2.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/rem-2.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/rem.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/rem.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/rot16.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/rot16.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/rot32.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/rot32.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/rot64.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/rot64.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/setcc.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/setcc.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/sret.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/sret.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/sse1.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/sse1.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/sse2.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/sse2.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/sse3.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/sse3.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/sse41.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/sse41.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/sse42.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/sse42.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/tls-1.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/tls-1.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/tls1.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/tls1.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/tls10.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/tls10.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/tls11.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/tls11.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/tls12.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/tls12.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/tls13.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/tls13.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/tls14.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/tls14.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/tls15.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/tls15.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/tls2.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/tls2.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/tls3.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/tls3.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/tls4.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/tls4.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/tls5.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/tls5.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/tls6.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/tls6.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/tls7.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/tls7.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/tls8.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/tls8.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/tls9.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/tls9.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/trap.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/trap.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/v2f32.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/v2f32.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/vfcmp.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/vfcmp.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/weak.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/weak.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/X86/xor.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/X86/xor.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/XCore/cos.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/XCore/cos.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/XCore/dg.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/XCore/dg.exp -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/XCore/exp.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/XCore/exp.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/XCore/log.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/XCore/log.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/XCore/pow.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/XCore/pow.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/XCore/sin.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/XCore/sin.ll -------------------------------------------------------------------------------- /compiler/llvm/test/CodeGen/XCore/tls.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/CodeGen/XCore/tls.ll -------------------------------------------------------------------------------- /compiler/llvm/test/DebugInfo/dg.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/DebugInfo/dg.exp -------------------------------------------------------------------------------- /compiler/llvm/test/Feature/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Feature/README.txt -------------------------------------------------------------------------------- /compiler/llvm/test/Feature/aliases.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Feature/aliases.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Feature/alignment.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Feature/alignment.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Feature/basictest.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Feature/basictest.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Feature/calltest.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Feature/calltest.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Feature/casttest.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Feature/casttest.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Feature/constexpr.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Feature/constexpr.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Feature/dg.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Feature/dg.exp -------------------------------------------------------------------------------- /compiler/llvm/test/Feature/float.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Feature/float.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Feature/inlineasm.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Feature/inlineasm.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Feature/llvm2cpp.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Feature/llvm2cpp.exp -------------------------------------------------------------------------------- /compiler/llvm/test/Feature/metadata.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Feature/metadata.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Feature/newcasts.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Feature/newcasts.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Feature/packed.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Feature/packed.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Feature/ppcld.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Feature/ppcld.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Feature/prototype.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Feature/prototype.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Feature/small.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Feature/small.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Feature/smallest.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Feature/smallest.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Feature/sparcld.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Feature/sparcld.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Feature/testtype.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Feature/testtype.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Feature/undefined.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Feature/undefined.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Feature/varargs.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Feature/varargs.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Feature/x86ld.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Feature/x86ld.ll -------------------------------------------------------------------------------- /compiler/llvm/test/FrontendAda/asm.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/FrontendAda/asm.adb -------------------------------------------------------------------------------- /compiler/llvm/test/FrontendAda/dg.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/FrontendAda/dg.exp -------------------------------------------------------------------------------- /compiler/llvm/test/FrontendAda/vce.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/FrontendAda/vce.adb -------------------------------------------------------------------------------- /compiler/llvm/test/FrontendC++/dg.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/FrontendC++/dg.exp -------------------------------------------------------------------------------- /compiler/llvm/test/FrontendC/2007-03-26-ZeroWidthBitfield.c: -------------------------------------------------------------------------------- 1 | // RUN: %llvmgcc %s -S -o - 2 | struct Z { int :0; } z; 3 | -------------------------------------------------------------------------------- /compiler/llvm/test/FrontendC/Atomics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/FrontendC/Atomics.c -------------------------------------------------------------------------------- /compiler/llvm/test/FrontendC/dg.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/FrontendC/dg.exp -------------------------------------------------------------------------------- /compiler/llvm/test/FrontendC/funccall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/FrontendC/funccall.c -------------------------------------------------------------------------------- /compiler/llvm/test/FrontendC/libcalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/FrontendC/libcalls.c -------------------------------------------------------------------------------- /compiler/llvm/test/FrontendC/pr2394.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/FrontendC/pr2394.c -------------------------------------------------------------------------------- /compiler/llvm/test/FrontendC/pr3518.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/FrontendC/pr3518.c -------------------------------------------------------------------------------- /compiler/llvm/test/FrontendC/pr4349.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/FrontendC/pr4349.c -------------------------------------------------------------------------------- /compiler/llvm/test/FrontendC/pr5406.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/FrontendC/pr5406.c -------------------------------------------------------------------------------- /compiler/llvm/test/FrontendC/sret.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/FrontendC/sret.c -------------------------------------------------------------------------------- /compiler/llvm/test/FrontendC/sret2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/FrontendC/sret2.c -------------------------------------------------------------------------------- /compiler/llvm/test/FrontendC/vla-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/FrontendC/vla-1.c -------------------------------------------------------------------------------- /compiler/llvm/test/FrontendC/vla-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/FrontendC/vla-2.c -------------------------------------------------------------------------------- /compiler/llvm/test/FrontendObjC/dg.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/FrontendObjC/dg.exp -------------------------------------------------------------------------------- /compiler/llvm/test/Integer/BitArith.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Integer/BitArith.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Integer/BitBit.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Integer/BitBit.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Integer/BitCast.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Integer/BitCast.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Integer/BitIcmp.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Integer/BitIcmp.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Integer/BitMem.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Integer/BitMem.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Integer/BitMisc.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Integer/BitMisc.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Integer/BitPacked.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Integer/BitPacked.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Integer/dg.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Integer/dg.exp -------------------------------------------------------------------------------- /compiler/llvm/test/Integer/packed_bt.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Integer/packed_bt.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Integer/small_bt.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Integer/small_bt.ll -------------------------------------------------------------------------------- /compiler/llvm/test/LLVMC/Alias.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/LLVMC/Alias.td -------------------------------------------------------------------------------- /compiler/llvm/test/LLVMC/C++/dash-x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/LLVMC/C++/dash-x.cpp -------------------------------------------------------------------------------- /compiler/llvm/test/LLVMC/C++/dg.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/LLVMC/C++/dg.exp -------------------------------------------------------------------------------- /compiler/llvm/test/LLVMC/C++/hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/LLVMC/C++/hello.cpp -------------------------------------------------------------------------------- /compiler/llvm/test/LLVMC/C/dg.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/LLVMC/C/dg.exp -------------------------------------------------------------------------------- /compiler/llvm/test/LLVMC/C/emit-llvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/LLVMC/C/emit-llvm.c -------------------------------------------------------------------------------- /compiler/llvm/test/LLVMC/C/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/LLVMC/C/hello.c -------------------------------------------------------------------------------- /compiler/llvm/test/LLVMC/C/include.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/LLVMC/C/include.c -------------------------------------------------------------------------------- /compiler/llvm/test/LLVMC/C/opt-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/LLVMC/C/opt-test.c -------------------------------------------------------------------------------- /compiler/llvm/test/LLVMC/C/sink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/LLVMC/C/sink.c -------------------------------------------------------------------------------- /compiler/llvm/test/LLVMC/C/wall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/LLVMC/C/wall.c -------------------------------------------------------------------------------- /compiler/llvm/test/LLVMC/ForwardAs.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/LLVMC/ForwardAs.td -------------------------------------------------------------------------------- /compiler/llvm/test/LLVMC/Init.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/LLVMC/Init.td -------------------------------------------------------------------------------- /compiler/llvm/test/LLVMC/LanguageMap.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/LLVMC/LanguageMap.td -------------------------------------------------------------------------------- /compiler/llvm/test/LLVMC/NoActions.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/LLVMC/NoActions.td -------------------------------------------------------------------------------- /compiler/llvm/test/LLVMC/ObjC++/dg.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/LLVMC/ObjC++/dg.exp -------------------------------------------------------------------------------- /compiler/llvm/test/LLVMC/ObjC/dg.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/LLVMC/ObjC/dg.exp -------------------------------------------------------------------------------- /compiler/llvm/test/LLVMC/ObjC/hello.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/LLVMC/ObjC/hello.m -------------------------------------------------------------------------------- /compiler/llvm/test/LLVMC/OneOrMore.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/LLVMC/OneOrMore.td -------------------------------------------------------------------------------- /compiler/llvm/test/LLVMC/dg.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/LLVMC/dg.exp -------------------------------------------------------------------------------- /compiler/llvm/test/LLVMC/test_data/together.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void test() { 4 | printf("hello\n"); 5 | } 6 | -------------------------------------------------------------------------------- /compiler/llvm/test/Linker/LinkOnce.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Linker/LinkOnce.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Linker/basiclink.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Linker/basiclink.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Linker/dg.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Linker/dg.exp -------------------------------------------------------------------------------- /compiler/llvm/test/Linker/linkmdnode.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Linker/linkmdnode.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Linker/metadata-a.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Linker/metadata-a.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Linker/metadata-b.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Linker/metadata-b.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Linker/testlink1.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Linker/testlink1.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Linker/testlink2.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Linker/testlink2.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Linker/weakextern.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Linker/weakextern.ll -------------------------------------------------------------------------------- /compiler/llvm/test/MC/AsmParser/dg.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/MC/AsmParser/dg.exp -------------------------------------------------------------------------------- /compiler/llvm/test/MC/AsmParser/exprs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/MC/AsmParser/exprs.s -------------------------------------------------------------------------------- /compiler/llvm/test/MC/AsmParser/hello.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/MC/AsmParser/hello.s -------------------------------------------------------------------------------- /compiler/llvm/test/MC/COFF/dg.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/MC/COFF/dg.exp -------------------------------------------------------------------------------- /compiler/llvm/test/MC/ELF/bss.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/MC/ELF/bss.ll -------------------------------------------------------------------------------- /compiler/llvm/test/MC/ELF/dg.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/MC/ELF/dg.exp -------------------------------------------------------------------------------- /compiler/llvm/test/MC/MachO/comm-1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/MC/MachO/comm-1.s -------------------------------------------------------------------------------- /compiler/llvm/test/MC/MachO/data.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/MC/MachO/data.s -------------------------------------------------------------------------------- /compiler/llvm/test/MC/MachO/dg.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/MC/MachO/dg.exp -------------------------------------------------------------------------------- /compiler/llvm/test/MC/MachO/jcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/MC/MachO/jcc.s -------------------------------------------------------------------------------- /compiler/llvm/test/MC/MachO/reloc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/MC/MachO/reloc.s -------------------------------------------------------------------------------- /compiler/llvm/test/MC/MachO/symbols-1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/MC/MachO/symbols-1.s -------------------------------------------------------------------------------- /compiler/llvm/test/MC/MachO/tbss.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/MC/MachO/tbss.s -------------------------------------------------------------------------------- /compiler/llvm/test/MC/MachO/tdata.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/MC/MachO/tdata.s -------------------------------------------------------------------------------- /compiler/llvm/test/MC/MachO/tls.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/MC/MachO/tls.s -------------------------------------------------------------------------------- /compiler/llvm/test/MC/MachO/tlv-reloc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/MC/MachO/tlv-reloc.s -------------------------------------------------------------------------------- /compiler/llvm/test/MC/MachO/tlv.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/MC/MachO/tlv.s -------------------------------------------------------------------------------- /compiler/llvm/test/MC/MachO/values.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/MC/MachO/values.s -------------------------------------------------------------------------------- /compiler/llvm/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Makefile -------------------------------------------------------------------------------- /compiler/llvm/test/Makefile.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Makefile.tests -------------------------------------------------------------------------------- /compiler/llvm/test/Other/dg.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Other/dg.exp -------------------------------------------------------------------------------- /compiler/llvm/test/Other/lint.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Other/lint.ll -------------------------------------------------------------------------------- /compiler/llvm/test/Scripts/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Scripts/README.txt -------------------------------------------------------------------------------- /compiler/llvm/test/Scripts/ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Scripts/ignore -------------------------------------------------------------------------------- /compiler/llvm/test/Scripts/macho-dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Scripts/macho-dump -------------------------------------------------------------------------------- /compiler/llvm/test/TableGen/Slice.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/TableGen/Slice.td -------------------------------------------------------------------------------- /compiler/llvm/test/TableGen/String.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/TableGen/String.td -------------------------------------------------------------------------------- /compiler/llvm/test/TableGen/Tree.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/TableGen/Tree.td -------------------------------------------------------------------------------- /compiler/llvm/test/TableGen/cast.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/TableGen/cast.td -------------------------------------------------------------------------------- /compiler/llvm/test/TableGen/dg.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/TableGen/dg.exp -------------------------------------------------------------------------------- /compiler/llvm/test/TableGen/eq.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/TableGen/eq.td -------------------------------------------------------------------------------- /compiler/llvm/test/TableGen/eqbit.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/TableGen/eqbit.td -------------------------------------------------------------------------------- /compiler/llvm/test/TableGen/if.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/TableGen/if.td -------------------------------------------------------------------------------- /compiler/llvm/test/TableGen/ifbit.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/TableGen/ifbit.td -------------------------------------------------------------------------------- /compiler/llvm/test/TableGen/lisp.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/TableGen/lisp.td -------------------------------------------------------------------------------- /compiler/llvm/test/TableGen/subst.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/TableGen/subst.td -------------------------------------------------------------------------------- /compiler/llvm/test/TableGen/subst2.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/TableGen/subst2.td -------------------------------------------------------------------------------- /compiler/llvm/test/TestRunner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/TestRunner.sh -------------------------------------------------------------------------------- /compiler/llvm/test/Transforms/Internalize/2008-05-09-AllButMain.ll.apifile: -------------------------------------------------------------------------------- 1 | foo 2 | j 3 | -------------------------------------------------------------------------------- /compiler/llvm/test/Unit/lit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Unit/lit.cfg -------------------------------------------------------------------------------- /compiler/llvm/test/Verifier/byval-1.ll: -------------------------------------------------------------------------------- 1 | ; RUN: not llvm-as < %s >& /dev/null 2 | declare void @h(i32 byval %num) 3 | -------------------------------------------------------------------------------- /compiler/llvm/test/Verifier/dg.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/Verifier/dg.exp -------------------------------------------------------------------------------- /compiler/llvm/test/lib/llvm.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/lib/llvm.exp -------------------------------------------------------------------------------- /compiler/llvm/test/lib/llvm2cpp.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/lib/llvm2cpp.exp -------------------------------------------------------------------------------- /compiler/llvm/test/lit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/lit.cfg -------------------------------------------------------------------------------- /compiler/llvm/test/lit.site.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/lit.site.cfg.in -------------------------------------------------------------------------------- /compiler/llvm/test/site.exp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/test/site.exp.in -------------------------------------------------------------------------------- /compiler/llvm/tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/tools/CMakeLists.txt -------------------------------------------------------------------------------- /compiler/llvm/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/tools/Makefile -------------------------------------------------------------------------------- /compiler/llvm/tools/bugpoint-passes/bugpoint.exports: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /compiler/llvm/tools/bugpoint/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/tools/bugpoint/Makefile -------------------------------------------------------------------------------- /compiler/llvm/tools/clang-2.8.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/tools/clang-2.8.tgz -------------------------------------------------------------------------------- /compiler/llvm/tools/clang-3.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/tools/clang-3.0.tar.gz -------------------------------------------------------------------------------- /compiler/llvm/tools/clang/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/tools/clang/INSTALL.txt -------------------------------------------------------------------------------- /compiler/llvm/tools/clang/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/tools/clang/LICENSE.TXT -------------------------------------------------------------------------------- /compiler/llvm/tools/clang/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/tools/clang/Makefile -------------------------------------------------------------------------------- /compiler/llvm/tools/clang/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/tools/clang/NOTES.txt -------------------------------------------------------------------------------- /compiler/llvm/tools/clang/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/tools/clang/README.txt -------------------------------------------------------------------------------- /compiler/llvm/tools/clang/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/tools/clang/TODO.txt -------------------------------------------------------------------------------- /compiler/llvm/tools/clang/examples/PrintFunctionNames/PrintFunctionNames.exports: -------------------------------------------------------------------------------- 1 | _ZN4llvm8Registry* 2 | -------------------------------------------------------------------------------- /compiler/llvm/tools/clang/include/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(clang) 2 | -------------------------------------------------------------------------------- /compiler/llvm/tools/clang/test/ASTMerge/Inputs/lit.local.cfg: -------------------------------------------------------------------------------- 1 | config.suffixes = [] 2 | -------------------------------------------------------------------------------- /compiler/llvm/tools/clang/test/ASTMerge/Inputs/var1.h: -------------------------------------------------------------------------------- 1 | double x2; 2 | -------------------------------------------------------------------------------- /compiler/llvm/tools/clang/test/Coverage/verbose.c: -------------------------------------------------------------------------------- 1 | // RUN: %clang_cc1 -fsyntax-only -v %s 2 | -------------------------------------------------------------------------------- /compiler/llvm/tools/clang/test/Frontend/Inputs/lit.local.cfg: -------------------------------------------------------------------------------- 1 | config.suffixes = [] 2 | -------------------------------------------------------------------------------- /compiler/llvm/tools/clang/test/Frontend/Inputs/test.h: -------------------------------------------------------------------------------- 1 | #include "test2.h" 2 | -------------------------------------------------------------------------------- /compiler/llvm/tools/clang/test/Frontend/Inputs/test2.h: -------------------------------------------------------------------------------- 1 | int x; 2 | -------------------------------------------------------------------------------- /compiler/llvm/tools/clang/test/Frontend/Inputs/test3.h: -------------------------------------------------------------------------------- 1 | int y; 2 | -------------------------------------------------------------------------------- /compiler/llvm/tools/clang/test/Index/Inputs/cindex-from-source.h: -------------------------------------------------------------------------------- 1 | typedef int t0; 2 | -------------------------------------------------------------------------------- /compiler/llvm/tools/clang/test/Index/Inputs/lit.local.cfg: -------------------------------------------------------------------------------- 1 | config.suffixes = [] 2 | -------------------------------------------------------------------------------- /compiler/llvm/tools/clang/test/Index/Inputs/preamble-reparse-1.c: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /compiler/llvm/tools/clang/test/Index/Inputs/preamble-reparse-2.c: -------------------------------------------------------------------------------- 1 | int x; 2 | -------------------------------------------------------------------------------- /compiler/llvm/tools/clang/test/Index/annotate-tokens-include.h: -------------------------------------------------------------------------------- 1 | int foo(); 2 | -------------------------------------------------------------------------------- /compiler/llvm/tools/clang/test/Index/include_test_2.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /compiler/llvm/tools/clang/test/Misc/Inputs/remapped-file-3: -------------------------------------------------------------------------------- 1 | extern float *fp; 2 | 3 | -------------------------------------------------------------------------------- /compiler/llvm/tools/clang/test/PCH/Inputs/chain-macro1.h: -------------------------------------------------------------------------------- 1 | #define FOOBAR void f(); 2 | -------------------------------------------------------------------------------- /compiler/llvm/tools/clang/test/PCH/Inputs/chain-macro2.h: -------------------------------------------------------------------------------- 1 | #define BARFOO void g(); 2 | -------------------------------------------------------------------------------- /compiler/llvm/tools/clang/test/PCH/Inputs/chain-trivial1.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /compiler/llvm/tools/clang/test/PCH/Inputs/chain-trivial2.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /compiler/llvm/tools/clang/test/PCH/Inputs/preamble.h: -------------------------------------------------------------------------------- 1 | int f(int); 2 | -------------------------------------------------------------------------------- /compiler/llvm/tools/clang/test/PCH/fuzzy-pch.h: -------------------------------------------------------------------------------- 1 | // Header for PCH test fuzzy-pch.c 2 | void f(int X); 3 | -------------------------------------------------------------------------------- /compiler/llvm/tools/clang/test/PCH/headermap.h: -------------------------------------------------------------------------------- 1 | /* Helper for the headermap.m test */ 2 | int x = 17; 3 | 4 | -------------------------------------------------------------------------------- /compiler/llvm/tools/clang/test/PCH/pchpch1.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /compiler/llvm/tools/clang/test/PCH/pchpch2.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /compiler/llvm/tools/clang/test/PCH/reinclude2.h: -------------------------------------------------------------------------------- 1 | int q1 = A::x; 2 | -------------------------------------------------------------------------------- /compiler/llvm/tools/clang/test/Preprocessor/clang_headers.c: -------------------------------------------------------------------------------- 1 | // RUN: %clang_cc1 -E %s 2 | 3 | #include 4 | -------------------------------------------------------------------------------- /compiler/llvm/tools/clang/test/Preprocessor/file_to_include.h: -------------------------------------------------------------------------------- 1 | 2 | #warning file successfully included 3 | 4 | -------------------------------------------------------------------------------- /compiler/llvm/tools/clang/test/Preprocessor/function_macro_file.h: -------------------------------------------------------------------------------- 1 | 2 | #define f() x 3 | f 4 | -------------------------------------------------------------------------------- /compiler/llvm/tools/clang/test/SemaCXX/Inputs/lit.local.cfg: -------------------------------------------------------------------------------- 1 | config.suffixes = [] 2 | -------------------------------------------------------------------------------- /compiler/llvm/tools/clang/tools/scan-view/Resources/GetRadarVersion.scpt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /compiler/llvm/tools/edis/EDMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/tools/edis/EDMain.cpp -------------------------------------------------------------------------------- /compiler/llvm/tools/edis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/tools/edis/Makefile -------------------------------------------------------------------------------- /compiler/llvm/tools/gold/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/tools/gold/Makefile -------------------------------------------------------------------------------- /compiler/llvm/tools/gold/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/tools/gold/README.txt -------------------------------------------------------------------------------- /compiler/llvm/tools/gold/gold.exports: -------------------------------------------------------------------------------- 1 | onload 2 | -------------------------------------------------------------------------------- /compiler/llvm/tools/llc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/tools/llc/Makefile -------------------------------------------------------------------------------- /compiler/llvm/tools/llc/llc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/tools/llc/llc.cpp -------------------------------------------------------------------------------- /compiler/llvm/tools/lli/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/tools/lli/Makefile -------------------------------------------------------------------------------- /compiler/llvm/tools/lli/lli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/tools/lli/lli.cpp -------------------------------------------------------------------------------- /compiler/llvm/tools/llvm-ar/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/tools/llvm-ar/Makefile -------------------------------------------------------------------------------- /compiler/llvm/tools/llvm-as/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/tools/llvm-as/Makefile -------------------------------------------------------------------------------- /compiler/llvm/tools/llvm-dis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/tools/llvm-dis/Makefile -------------------------------------------------------------------------------- /compiler/llvm/tools/llvm-ld/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/tools/llvm-ld/Makefile -------------------------------------------------------------------------------- /compiler/llvm/tools/llvm-mc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/tools/llvm-mc/Makefile -------------------------------------------------------------------------------- /compiler/llvm/tools/llvm-nm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/tools/llvm-nm/Makefile -------------------------------------------------------------------------------- /compiler/llvm/tools/llvmc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/tools/llvmc/Makefile -------------------------------------------------------------------------------- /compiler/llvm/tools/lto/LTOModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/tools/lto/LTOModule.cpp -------------------------------------------------------------------------------- /compiler/llvm/tools/lto/LTOModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/tools/lto/LTOModule.h -------------------------------------------------------------------------------- /compiler/llvm/tools/lto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/tools/lto/Makefile -------------------------------------------------------------------------------- /compiler/llvm/tools/lto/lto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/tools/lto/lto.cpp -------------------------------------------------------------------------------- /compiler/llvm/tools/lto/lto.exports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/tools/lto/lto.exports -------------------------------------------------------------------------------- /compiler/llvm/tools/opt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/tools/opt/Makefile -------------------------------------------------------------------------------- /compiler/llvm/tools/opt/PrintSCC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/tools/opt/PrintSCC.cpp -------------------------------------------------------------------------------- /compiler/llvm/tools/opt/opt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/tools/opt/opt.cpp -------------------------------------------------------------------------------- /compiler/llvm/unittests/ADT/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/unittests/ADT/Makefile -------------------------------------------------------------------------------- /compiler/llvm/unittests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/unittests/Makefile -------------------------------------------------------------------------------- /compiler/llvm/utils/DSAclean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/DSAclean.py -------------------------------------------------------------------------------- /compiler/llvm/utils/DSAextract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/DSAextract.py -------------------------------------------------------------------------------- /compiler/llvm/utils/GenLibDeps.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/GenLibDeps.pl -------------------------------------------------------------------------------- /compiler/llvm/utils/GetSourceVersion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/GetSourceVersion -------------------------------------------------------------------------------- /compiler/llvm/utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/Makefile -------------------------------------------------------------------------------- /compiler/llvm/utils/Misc/zkill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/Misc/zkill -------------------------------------------------------------------------------- /compiler/llvm/utils/NLT.schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/NLT.schema -------------------------------------------------------------------------------- /compiler/llvm/utils/NewNightlyTest.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/NewNightlyTest.pl -------------------------------------------------------------------------------- /compiler/llvm/utils/TableGen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/TableGen/Makefile -------------------------------------------------------------------------------- /compiler/llvm/utils/TableGen/Record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/TableGen/Record.h -------------------------------------------------------------------------------- /compiler/llvm/utils/TableGen/build/CMakeFiles/Progress/1: -------------------------------------------------------------------------------- 1 | empty -------------------------------------------------------------------------------- /compiler/llvm/utils/TableGen/build/CMakeFiles/Progress/count.txt: -------------------------------------------------------------------------------- 1 | 36 2 | -------------------------------------------------------------------------------- /compiler/llvm/utils/TableGen/build/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 36 2 | -------------------------------------------------------------------------------- /compiler/llvm/utils/cgiplotNLT.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/cgiplotNLT.pl -------------------------------------------------------------------------------- /compiler/llvm/utils/check-each-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/check-each-file -------------------------------------------------------------------------------- /compiler/llvm/utils/codegen-diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/codegen-diff -------------------------------------------------------------------------------- /compiler/llvm/utils/count/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/count/Makefile -------------------------------------------------------------------------------- /compiler/llvm/utils/count/count.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/count/count.c -------------------------------------------------------------------------------- /compiler/llvm/utils/countloc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/countloc.sh -------------------------------------------------------------------------------- /compiler/llvm/utils/emacs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/emacs/README -------------------------------------------------------------------------------- /compiler/llvm/utils/emacs/emacs.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/emacs/emacs.el -------------------------------------------------------------------------------- /compiler/llvm/utils/findmisopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/findmisopt -------------------------------------------------------------------------------- /compiler/llvm/utils/findoptdiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/findoptdiff -------------------------------------------------------------------------------- /compiler/llvm/utils/findsym.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/findsym.pl -------------------------------------------------------------------------------- /compiler/llvm/utils/fpcmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/fpcmp/Makefile -------------------------------------------------------------------------------- /compiler/llvm/utils/fpcmp/fpcmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/fpcmp/fpcmp.cpp -------------------------------------------------------------------------------- /compiler/llvm/utils/getsrcs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/getsrcs.sh -------------------------------------------------------------------------------- /compiler/llvm/utils/git/find-rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/git/find-rev -------------------------------------------------------------------------------- /compiler/llvm/utils/importNLT.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/importNLT.pl -------------------------------------------------------------------------------- /compiler/llvm/utils/jedit/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/jedit/README -------------------------------------------------------------------------------- /compiler/llvm/utils/lint/cpp_lint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/lint/cpp_lint.py -------------------------------------------------------------------------------- /compiler/llvm/utils/lit/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/lit/TODO -------------------------------------------------------------------------------- /compiler/llvm/utils/lit/lit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/lit/lit.py -------------------------------------------------------------------------------- /compiler/llvm/utils/lit/lit/ExampleTests/LLVM.OutOfTree/lit.local.cfg: -------------------------------------------------------------------------------- 1 | config.excludes = ['src'] 2 | -------------------------------------------------------------------------------- /compiler/llvm/utils/lit/lit/ExampleTests/LLVM.OutOfTree/obj/test/Foo/lit.local.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /compiler/llvm/utils/lit/lit/ExampleTests/LLVM.OutOfTree/src/test/Foo/data.txt: -------------------------------------------------------------------------------- 1 | hi 2 | -------------------------------------------------------------------------------- /compiler/llvm/utils/lit/lit/ExampleTests/LLVM.OutOfTree/src/test/Foo/pct-S.ll: -------------------------------------------------------------------------------- 1 | ; RUN: grep "hi" %S/data.txt 2 | -------------------------------------------------------------------------------- /compiler/llvm/utils/lit/lit/ExampleTests/TclTest/stderr-pipe.ll: -------------------------------------------------------------------------------- 1 | ; RUN: gcc -### > /dev/null |& grep {gcc version} 2 | -------------------------------------------------------------------------------- /compiler/llvm/utils/lit/lit/ExampleTests/pass.c: -------------------------------------------------------------------------------- 1 | // RUN: true 2 | -------------------------------------------------------------------------------- /compiler/llvm/utils/lit/lit/ExampleTests/required-and-present.c: -------------------------------------------------------------------------------- 1 | // RUN: true 2 | // REQUIRES: some-feature-name 3 | -------------------------------------------------------------------------------- /compiler/llvm/utils/lit/lit/ExampleTests/xfail.c: -------------------------------------------------------------------------------- 1 | // RUN: false 2 | // XFAIL: * 3 | -------------------------------------------------------------------------------- /compiler/llvm/utils/lit/lit/ExampleTests/xpass.c: -------------------------------------------------------------------------------- 1 | // RUN: true 2 | // XFAIL 3 | -------------------------------------------------------------------------------- /compiler/llvm/utils/lit/lit/ShUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/lit/lit/ShUtil.py -------------------------------------------------------------------------------- /compiler/llvm/utils/lit/lit/Test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/lit/lit/Test.py -------------------------------------------------------------------------------- /compiler/llvm/utils/lit/lit/Util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/lit/lit/Util.py -------------------------------------------------------------------------------- /compiler/llvm/utils/lit/lit/lit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/lit/lit/lit.py -------------------------------------------------------------------------------- /compiler/llvm/utils/lit/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/lit/setup.py -------------------------------------------------------------------------------- /compiler/llvm/utils/llvm-lit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/llvm-lit/Makefile -------------------------------------------------------------------------------- /compiler/llvm/utils/llvm-native-gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/llvm-native-gcc -------------------------------------------------------------------------------- /compiler/llvm/utils/llvm-native-gxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/llvm-native-gxx -------------------------------------------------------------------------------- /compiler/llvm/utils/llvm.grm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/llvm.grm -------------------------------------------------------------------------------- /compiler/llvm/utils/llvmdo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/llvmdo -------------------------------------------------------------------------------- /compiler/llvm/utils/llvmgrep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/llvmgrep -------------------------------------------------------------------------------- /compiler/llvm/utils/makellvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/makellvm -------------------------------------------------------------------------------- /compiler/llvm/utils/not/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/not/Makefile -------------------------------------------------------------------------------- /compiler/llvm/utils/not/not.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/not/not.cpp -------------------------------------------------------------------------------- /compiler/llvm/utils/parseNLT.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/parseNLT.pl -------------------------------------------------------------------------------- /compiler/llvm/utils/plotNLT.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/plotNLT.pl -------------------------------------------------------------------------------- /compiler/llvm/utils/profile.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/profile.pl -------------------------------------------------------------------------------- /compiler/llvm/utils/unittest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/unittest/Makefile -------------------------------------------------------------------------------- /compiler/llvm/utils/vim/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/vim/README -------------------------------------------------------------------------------- /compiler/llvm/utils/vim/llvm.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/vim/llvm.vim -------------------------------------------------------------------------------- /compiler/llvm/utils/vim/tablegen.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/vim/tablegen.vim -------------------------------------------------------------------------------- /compiler/llvm/utils/vim/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/vim/vimrc -------------------------------------------------------------------------------- /compiler/llvm/utils/webNLT.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/utils/webNLT.pl -------------------------------------------------------------------------------- /compiler/llvm/website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/compiler/llvm/website/index.html -------------------------------------------------------------------------------- /loader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/loader/Makefile -------------------------------------------------------------------------------- /loader/fucload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/loader/fucload.c -------------------------------------------------------------------------------- /loader/libio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/loader/libio.c -------------------------------------------------------------------------------- /loader/libio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/loader/libio.h -------------------------------------------------------------------------------- /loader/libpg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/loader/libpg.c -------------------------------------------------------------------------------- /loader/libpg.h: -------------------------------------------------------------------------------- 1 | void nv50_graph_reset(); 2 | -------------------------------------------------------------------------------- /loader_firmware/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/loader_firmware/Makefile -------------------------------------------------------------------------------- /loader_firmware/fucload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/loader_firmware/fucload.c -------------------------------------------------------------------------------- /loader_firmware/libio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/loader_firmware/libio.c -------------------------------------------------------------------------------- /loader_firmware/libio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/loader_firmware/libio.h -------------------------------------------------------------------------------- /loader_firmware/libpg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/loader_firmware/libpg.c -------------------------------------------------------------------------------- /loader_firmware/libpg.h: -------------------------------------------------------------------------------- 1 | void nv50_graph_reset(); 2 | -------------------------------------------------------------------------------- /monitor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/monitor/Makefile -------------------------------------------------------------------------------- /monitor/libio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/monitor/libio.c -------------------------------------------------------------------------------- /monitor/libio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/monitor/libio.h -------------------------------------------------------------------------------- /monitor/libpg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/monitor/libpg.c -------------------------------------------------------------------------------- /monitor/libpg.h: -------------------------------------------------------------------------------- 1 | void nv50_graph_reset(); 2 | -------------------------------------------------------------------------------- /monitor/monitor1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/monitor/monitor1.c -------------------------------------------------------------------------------- /monitor/monitor2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/monitor/monitor2.c -------------------------------------------------------------------------------- /script/bin2hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/script/bin2hex -------------------------------------------------------------------------------- /script/datalist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/script/datalist -------------------------------------------------------------------------------- /script/hex2bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/script/hex2bin -------------------------------------------------------------------------------- /script/hex2bytelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/script/hex2bytelist -------------------------------------------------------------------------------- /script/llvm2envyas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/script/llvm2envyas -------------------------------------------------------------------------------- /test/test_br/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_br/Makefile -------------------------------------------------------------------------------- /test/test_br/asminsn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_br/asminsn.h -------------------------------------------------------------------------------- /test/test_br/boot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_br/boot.S -------------------------------------------------------------------------------- /test/test_br/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_br/main.c -------------------------------------------------------------------------------- /test/test_br/mmio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_br/mmio.h -------------------------------------------------------------------------------- /test/test_br/regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_br/regs.h -------------------------------------------------------------------------------- /test/test_br/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_br/types.h -------------------------------------------------------------------------------- /test/test_func/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_func/Makefile -------------------------------------------------------------------------------- /test/test_func/asminsn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_func/asminsn.h -------------------------------------------------------------------------------- /test/test_func/boot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_func/boot.S -------------------------------------------------------------------------------- /test/test_func/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_func/main.c -------------------------------------------------------------------------------- /test/test_func/mmio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_func/mmio.h -------------------------------------------------------------------------------- /test/test_func/regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_func/regs.h -------------------------------------------------------------------------------- /test/test_func/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_func/types.h -------------------------------------------------------------------------------- /test/test_intr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_intr/Makefile -------------------------------------------------------------------------------- /test/test_intr/asminsn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_intr/asminsn.h -------------------------------------------------------------------------------- /test/test_intr/boot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_intr/boot.S -------------------------------------------------------------------------------- /test/test_intr/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_intr/main.c -------------------------------------------------------------------------------- /test/test_intr/mmio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_intr/mmio.h -------------------------------------------------------------------------------- /test/test_intr/regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_intr/regs.h -------------------------------------------------------------------------------- /test/test_intr/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_intr/types.h -------------------------------------------------------------------------------- /test/test_sp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_sp/Makefile -------------------------------------------------------------------------------- /test/test_sp/asminsn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_sp/asminsn.h -------------------------------------------------------------------------------- /test/test_sp/boot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_sp/boot.S -------------------------------------------------------------------------------- /test/test_sp/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_sp/main.c -------------------------------------------------------------------------------- /test/test_sp/mmio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_sp/mmio.h -------------------------------------------------------------------------------- /test/test_sp/regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_sp/regs.h -------------------------------------------------------------------------------- /test/test_sp/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_sp/types.h -------------------------------------------------------------------------------- /test/test_timer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_timer/Makefile -------------------------------------------------------------------------------- /test/test_timer/asminsn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_timer/asminsn.h -------------------------------------------------------------------------------- /test/test_timer/boot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_timer/boot.S -------------------------------------------------------------------------------- /test/test_timer/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_timer/main.c -------------------------------------------------------------------------------- /test/test_timer/mmio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_timer/mmio.h -------------------------------------------------------------------------------- /test/test_timer/regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_timer/regs.h -------------------------------------------------------------------------------- /test/test_timer/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_timer/types.h -------------------------------------------------------------------------------- /test/test_xfers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_xfers/Makefile -------------------------------------------------------------------------------- /test/test_xfers/asminsn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_xfers/asminsn.h -------------------------------------------------------------------------------- /test/test_xfers/boot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_xfers/boot.S -------------------------------------------------------------------------------- /test/test_xfers/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_xfers/main.c -------------------------------------------------------------------------------- /test/test_xfers/mmio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_xfers/mmio.h -------------------------------------------------------------------------------- /test/test_xfers/regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_xfers/regs.h -------------------------------------------------------------------------------- /test/test_xfers/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CPFL/guc/HEAD/test/test_xfers/types.h --------------------------------------------------------------------------------