├── .arcconfig ├── .clang-format ├── .clang-tidy ├── .gitattributes ├── .gitignore ├── CMakeLists.txt ├── CODE_OWNERS.TXT ├── CREDITS.TXT ├── LICENSE.TXT ├── LLVMBuild.txt ├── README.txt ├── RELEASE_TESTERS.TXT ├── bindings ├── LLVMBuild.txt ├── README.txt ├── go │ ├── README.txt │ ├── build.sh │ ├── conftest.go │ └── llvm │ │ ├── DIBuilderBindings.cpp │ │ ├── DIBuilderBindings.h │ │ ├── IRBindings.cpp │ │ ├── IRBindings.h │ │ ├── InstrumentationBindings.cpp │ │ ├── InstrumentationBindings.h │ │ ├── SupportBindings.cpp │ │ ├── SupportBindings.h │ │ ├── analysis.go │ │ ├── bitreader.go │ │ ├── bitwriter.go │ │ ├── dibuilder.go │ │ ├── executionengine.go │ │ ├── executionengine_test.go │ │ ├── ir.go │ │ ├── ir_test.go │ │ ├── linker.go │ │ ├── llvm_config.go.in │ │ ├── llvm_dep.go │ │ ├── string.go │ │ ├── string_test.go │ │ ├── support.go │ │ ├── target.go │ │ ├── transforms_instrumentation.go │ │ ├── transforms_ipo.go │ │ ├── transforms_pmbuilder.go │ │ ├── transforms_scalar.go │ │ └── version.go ├── ocaml │ ├── CMakeLists.txt │ ├── README.txt │ ├── all_backends │ │ ├── CMakeLists.txt │ │ ├── all_backends_ocaml.c │ │ ├── llvm_all_backends.ml │ │ └── llvm_all_backends.mli │ ├── analysis │ │ ├── CMakeLists.txt │ │ ├── analysis_ocaml.c │ │ ├── llvm_analysis.ml │ │ └── llvm_analysis.mli │ ├── backends │ │ ├── CMakeLists.txt │ │ ├── META.llvm_backend.in │ │ ├── backend_ocaml.c │ │ ├── llvm_backend.ml.in │ │ └── llvm_backend.mli.in │ ├── bitreader │ │ ├── CMakeLists.txt │ │ ├── bitreader_ocaml.c │ │ ├── llvm_bitreader.ml │ │ └── llvm_bitreader.mli │ ├── bitwriter │ │ ├── CMakeLists.txt │ │ ├── bitwriter_ocaml.c │ │ ├── llvm_bitwriter.ml │ │ └── llvm_bitwriter.mli │ ├── executionengine │ │ ├── CMakeLists.txt │ │ ├── executionengine_ocaml.c │ │ ├── llvm_executionengine.ml │ │ └── llvm_executionengine.mli │ ├── irreader │ │ ├── CMakeLists.txt │ │ ├── irreader_ocaml.c │ │ ├── llvm_irreader.ml │ │ └── llvm_irreader.mli │ ├── linker │ │ ├── CMakeLists.txt │ │ ├── linker_ocaml.c │ │ ├── llvm_linker.ml │ │ └── llvm_linker.mli │ ├── llvm │ │ ├── CMakeLists.txt │ │ ├── META.llvm.in │ │ ├── llvm.ml │ │ ├── llvm.mli │ │ └── llvm_ocaml.c │ ├── target │ │ ├── CMakeLists.txt │ │ ├── llvm_target.ml │ │ ├── llvm_target.mli │ │ └── target_ocaml.c │ └── transforms │ │ ├── CMakeLists.txt │ │ ├── ipo │ │ ├── CMakeLists.txt │ │ ├── ipo_ocaml.c │ │ ├── llvm_ipo.ml │ │ └── llvm_ipo.mli │ │ ├── passmgr_builder │ │ ├── CMakeLists.txt │ │ ├── llvm_passmgr_builder.ml │ │ ├── llvm_passmgr_builder.mli │ │ └── passmgr_builder_ocaml.c │ │ ├── scalar_opts │ │ ├── CMakeLists.txt │ │ ├── llvm_scalar_opts.ml │ │ ├── llvm_scalar_opts.mli │ │ └── scalar_opts_ocaml.c │ │ ├── utils │ │ ├── CMakeLists.txt │ │ ├── llvm_transform_utils.ml │ │ ├── llvm_transform_utils.mli │ │ └── transform_utils_ocaml.c │ │ └── vectorize │ │ ├── CMakeLists.txt │ │ ├── llvm_vectorize.ml │ │ ├── llvm_vectorize.mli │ │ └── vectorize_ocaml.c └── python │ ├── README.txt │ └── llvm │ ├── __init__.py │ ├── bit_reader.py │ ├── common.py │ ├── core.py │ ├── disassembler.py │ ├── enumerations.py │ ├── object.py │ └── tests │ ├── __init__.py │ ├── base.py │ ├── test.bc │ ├── test_bitreader.py │ ├── test_core.py │ ├── test_disassembler.py │ ├── test_file │ └── test_object.py ├── cmake ├── README ├── config-ix.cmake ├── config.guess ├── dummy.cpp ├── modules │ ├── AddLLVM.cmake │ ├── AddLLVMDefinitions.cmake │ ├── AddOCaml.cmake │ ├── AddSphinxTarget.cmake │ ├── CMakeLists.txt │ ├── CheckAtomic.cmake │ ├── CheckCompilerVersion.cmake │ ├── CheckLinkerFlag.cmake │ ├── ChooseMSVCCRT.cmake │ ├── CrossCompile.cmake │ ├── DetermineGCCCompatible.cmake │ ├── FindOCaml.cmake │ ├── FindSphinx.cmake │ ├── GenerateVersionFromCVS.cmake │ ├── GetHostTriple.cmake │ ├── GetSVN.cmake │ ├── HandleLLVMOptions.cmake │ ├── HandleLLVMStdlib.cmake │ ├── LLVM-Config.cmake │ ├── LLVMConfig.cmake.in │ ├── LLVMConfigVersion.cmake.in │ ├── LLVMExternalProjectUtils.cmake │ ├── LLVMInstallSymlink.cmake │ ├── LLVMProcessSources.cmake │ ├── TableGen.cmake │ └── VersionFromVCS.cmake ├── nsis_icon.ico ├── nsis_logo.bmp └── platforms │ ├── Android.cmake │ ├── ClangClCMakeCompileRules.cmake │ ├── WinMsvc.cmake │ └── iOS.cmake ├── configure ├── docs ├── AMDGPUUsage.rst ├── ARM-BE-bitcastfail.png ├── ARM-BE-bitcastsuccess.png ├── ARM-BE-ld1.png ├── ARM-BE-ldr.png ├── AdvancedBuilds.rst ├── AliasAnalysis.rst ├── Atomics.rst ├── Benchmarking.rst ├── BigEndianNEON.rst ├── BitCodeFormat.rst ├── BlockFrequencyTerminology.rst ├── BranchWeightMetadata.rst ├── Bugpoint.rst ├── CFIVerify.rst ├── CMake.rst ├── CMakeLists.txt ├── CMakePrimer.rst ├── CodeGenerator.rst ├── CodeOfConduct.rst ├── CodingStandards.rst ├── CommandGuide │ ├── FileCheck.rst │ ├── bugpoint.rst │ ├── dsymutil.rst │ ├── index.rst │ ├── lit.rst │ ├── llc.rst │ ├── lli.rst │ ├── llvm-ar.rst │ ├── llvm-as.rst │ ├── llvm-bcanalyzer.rst │ ├── llvm-build.rst │ ├── llvm-config.rst │ ├── llvm-cov.rst │ ├── llvm-diff.rst │ ├── llvm-dis.rst │ ├── llvm-dwarfdump.rst │ ├── llvm-extract.rst │ ├── llvm-lib.rst │ ├── llvm-link.rst │ ├── llvm-nm.rst │ ├── llvm-pdbutil.rst │ ├── llvm-profdata.rst │ ├── llvm-readobj.rst │ ├── llvm-stress.rst │ ├── llvm-symbolizer.rst │ ├── opt.rst │ └── tblgen.rst ├── CommandLine.rst ├── CompileCudaWithLLVM.rst ├── CompilerWriterInfo.rst ├── Coroutines.rst ├── CoverageMappingFormat.rst ├── DebuggingJITedCode.rst ├── DeveloperPolicy.rst ├── Docker.rst ├── ExceptionHandling.rst ├── ExtendedIntegerResults.txt ├── ExtendingLLVM.rst ├── Extensions.rst ├── FAQ.rst ├── FaultMaps.rst ├── Frontend │ └── PerformanceTips.rst ├── FuzzingLLVM.rst ├── GarbageCollection.rst ├── GetElementPtr.rst ├── GettingStarted.rst ├── GettingStartedVS.rst ├── GlobalISel.rst ├── GoldPlugin.rst ├── 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 ├── HowToAddABuilder.rst ├── HowToBuildOnARM.rst ├── HowToCrossCompileBuiltinsOnArm.rst ├── HowToCrossCompileLLVM.rst ├── HowToReleaseLLVM.rst ├── HowToSetUpLLVMStyleRTTI.rst ├── HowToSubmitABug.rst ├── HowToUseAttributes.rst ├── HowToUseInstrMappings.rst ├── InAlloca.rst ├── LLVMBuild.rst ├── LLVMBuild.txt ├── LangRef.rst ├── Lexicon.rst ├── LibFuzzer.rst ├── LinkTimeOptimization.rst ├── MCJIT-creation.png ├── MCJIT-dyld-load.png ├── MCJIT-engine-builder.png ├── MCJIT-load-object.png ├── MCJIT-load.png ├── MCJIT-resolve-relocations.png ├── MCJITDesignAndImplementation.rst ├── MIRLangRef.rst ├── Makefile.sphinx ├── MarkedUpDisassembly.rst ├── MemorySSA.rst ├── MergeFunctions.rst ├── NVPTXUsage.rst ├── OptBisect.rst ├── PDB │ ├── CodeViewSymbols.rst │ ├── CodeViewTypes.rst │ ├── DbiStream.rst │ ├── GlobalStream.rst │ ├── HashStream.rst │ ├── ModiStream.rst │ ├── MsfFile.rst │ ├── PdbStream.rst │ ├── PublicStream.rst │ ├── TpiStream.rst │ └── index.rst ├── Packaging.rst ├── Passes.rst ├── Phabricator.rst ├── ProgrammersManual.rst ├── Projects.rst ├── Proposals │ ├── GitHubMove.rst │ └── VectorizationPlan.rst ├── README.txt ├── ReleaseNotes.rst ├── ReleaseProcess.rst ├── ReportingGuide.rst ├── ScudoHardenedAllocator.rst ├── SegmentedStacks.rst ├── SourceLevelDebugging.rst ├── SphinxQuickstartTemplate.rst ├── StackMaps.rst ├── Statepoints.rst ├── SystemLibrary.rst ├── TableGen │ ├── BackEnds.rst │ ├── Deficiencies.rst │ ├── LangIntro.rst │ ├── LangRef.rst │ └── index.rst ├── TableGenFundamentals.rst ├── TestSuiteMakefileGuide.rst ├── TestingGuide.rst ├── TypeMetadata.rst ├── Vectorizers.rst ├── WritingAnLLVMBackend.rst ├── WritingAnLLVMPass.rst ├── XRay.rst ├── XRayExample.rst ├── XRayFDRFormat.rst ├── YamlIO.rst ├── _ocamldoc │ └── style.css ├── _static │ ├── lines.gif │ └── llvm.css ├── _templates │ ├── indexsidebar.html │ └── layout.html ├── _themes │ └── llvm-theme │ │ ├── layout.html │ │ ├── static │ │ ├── contents.png │ │ ├── llvm-theme.css │ │ ├── logo.png │ │ └── navigation.png │ │ └── theme.conf ├── conf.py ├── doxygen-mainpage.dox ├── doxygen.cfg.in ├── gcc-loops.png ├── index.rst ├── linpack-pc.png ├── make.bat ├── re_format.7 ├── tutorial │ ├── BuildingAJIT1.rst │ ├── BuildingAJIT2.rst │ ├── BuildingAJIT3.rst │ ├── BuildingAJIT4.rst │ ├── BuildingAJIT5.rst │ ├── LangImpl01.rst │ ├── LangImpl02.rst │ ├── LangImpl03.rst │ ├── LangImpl04.rst │ ├── LangImpl05-cfg.png │ ├── LangImpl05.rst │ ├── LangImpl06.rst │ ├── LangImpl07.rst │ ├── LangImpl08.rst │ ├── LangImpl09.rst │ ├── LangImpl10.rst │ ├── OCamlLangImpl1.rst │ ├── OCamlLangImpl2.rst │ ├── OCamlLangImpl3.rst │ ├── OCamlLangImpl4.rst │ ├── OCamlLangImpl5.rst │ ├── OCamlLangImpl6.rst │ ├── OCamlLangImpl7.rst │ ├── OCamlLangImpl8.rst │ └── index.rst └── yaml2obj.rst ├── examples ├── BrainF │ ├── BrainF.cpp │ ├── BrainF.h │ ├── BrainFDriver.cpp │ └── CMakeLists.txt ├── CMakeLists.txt ├── ExceptionDemo │ ├── CMakeLists.txt │ └── ExceptionDemo.cpp ├── Fibonacci │ ├── CMakeLists.txt │ └── fibonacci.cpp ├── HowToUseJIT │ ├── CMakeLists.txt │ └── HowToUseJIT.cpp ├── Kaleidoscope │ ├── BuildingAJIT │ │ ├── CMakeLists.txt │ │ ├── Chapter1 │ │ │ ├── CMakeLists.txt │ │ │ ├── KaleidoscopeJIT.h │ │ │ └── toy.cpp │ │ ├── Chapter2 │ │ │ ├── CMakeLists.txt │ │ │ ├── KaleidoscopeJIT.h │ │ │ └── toy.cpp │ │ ├── Chapter3 │ │ │ ├── CMakeLists.txt │ │ │ ├── KaleidoscopeJIT.h │ │ │ └── toy.cpp │ │ ├── Chapter4 │ │ │ ├── CMakeLists.txt │ │ │ ├── KaleidoscopeJIT.h │ │ │ └── toy.cpp │ │ └── Chapter5 │ │ │ ├── CMakeLists.txt │ │ │ ├── KaleidoscopeJIT.h │ │ │ ├── RemoteJITUtils.h │ │ │ ├── Server │ │ │ ├── CMakeLists.txt │ │ │ └── server.cpp │ │ │ └── toy.cpp │ ├── CMakeLists.txt │ ├── Chapter2 │ │ ├── CMakeLists.txt │ │ └── toy.cpp │ ├── Chapter3 │ │ ├── CMakeLists.txt │ │ └── toy.cpp │ ├── Chapter4 │ │ ├── CMakeLists.txt │ │ └── toy.cpp │ ├── Chapter5 │ │ ├── CMakeLists.txt │ │ └── toy.cpp │ ├── Chapter6 │ │ ├── CMakeLists.txt │ │ └── toy.cpp │ ├── Chapter7 │ │ ├── CMakeLists.txt │ │ └── toy.cpp │ ├── Chapter8 │ │ ├── CMakeLists.txt │ │ └── toy.cpp │ ├── Chapter9 │ │ ├── CMakeLists.txt │ │ └── toy.cpp │ ├── MCJIT │ │ ├── README.txt │ │ ├── cached │ │ │ ├── README.txt │ │ │ ├── genk-timing.py │ │ │ ├── split-lib.py │ │ │ ├── toy-jit.cpp │ │ │ └── toy.cpp │ │ ├── complete │ │ │ ├── README.txt │ │ │ ├── genk-timing.py │ │ │ ├── split-lib.py │ │ │ └── toy.cpp │ │ ├── initial │ │ │ ├── README.txt │ │ │ └── toy.cpp │ │ └── lazy │ │ │ ├── README.txt │ │ │ ├── genk-timing.py │ │ │ ├── toy-jit.cpp │ │ │ └── toy.cpp │ └── include │ │ └── KaleidoscopeJIT.h ├── LLVMBuild.txt ├── ModuleMaker │ ├── CMakeLists.txt │ ├── ModuleMaker.cpp │ └── README.txt ├── OCaml-Kaleidoscope │ ├── Chapter2 │ │ ├── _tags │ │ ├── ast.ml │ │ ├── lexer.ml │ │ ├── parser.ml │ │ ├── token.ml │ │ ├── toplevel.ml │ │ └── toy.ml │ ├── Chapter3 │ │ ├── _tags │ │ ├── ast.ml │ │ ├── codegen.ml │ │ ├── lexer.ml │ │ ├── myocamlbuild.ml │ │ ├── parser.ml │ │ ├── token.ml │ │ ├── toplevel.ml │ │ └── toy.ml │ ├── Chapter4 │ │ ├── _tags │ │ ├── ast.ml │ │ ├── bindings.c │ │ ├── codegen.ml │ │ ├── lexer.ml │ │ ├── myocamlbuild.ml │ │ ├── parser.ml │ │ ├── token.ml │ │ ├── toplevel.ml │ │ └── toy.ml │ ├── Chapter5 │ │ ├── _tags │ │ ├── ast.ml │ │ ├── bindings.c │ │ ├── codegen.ml │ │ ├── lexer.ml │ │ ├── myocamlbuild.ml │ │ ├── parser.ml │ │ ├── token.ml │ │ ├── toplevel.ml │ │ └── toy.ml │ ├── Chapter6 │ │ ├── _tags │ │ ├── ast.ml │ │ ├── bindings.c │ │ ├── codegen.ml │ │ ├── lexer.ml │ │ ├── myocamlbuild.ml │ │ ├── parser.ml │ │ ├── token.ml │ │ ├── toplevel.ml │ │ └── toy.ml │ └── Chapter7 │ │ ├── _tags │ │ ├── ast.ml │ │ ├── bindings.c │ │ ├── codegen.ml │ │ ├── lexer.ml │ │ ├── myocamlbuild.ml │ │ ├── parser.ml │ │ ├── token.ml │ │ ├── toplevel.ml │ │ └── toy.ml └── ParallelJIT │ ├── CMakeLists.txt │ └── ParallelJIT.cpp ├── include ├── llvm-c │ ├── Analysis.h │ ├── BitReader.h │ ├── BitWriter.h │ ├── Core.h │ ├── DebugInfo.h │ ├── Disassembler.h │ ├── ErrorHandling.h │ ├── ExecutionEngine.h │ ├── IRReader.h │ ├── Initialization.h │ ├── LinkTimeOptimizer.h │ ├── Linker.h │ ├── Object.h │ ├── OrcBindings.h │ ├── Support.h │ ├── Target.h │ ├── TargetMachine.h │ ├── Transforms │ │ ├── IPO.h │ │ ├── PassManagerBuilder.h │ │ ├── Scalar.h │ │ └── Vectorize.h │ ├── Types.h │ ├── lto.h │ └── module.modulemap └── llvm │ ├── ADT │ ├── APFloat.h │ ├── APInt.h │ ├── APSInt.h │ ├── AllocatorList.h │ ├── ArrayRef.h │ ├── BitVector.h │ ├── BitmaskEnum.h │ ├── BreadthFirstIterator.h │ ├── CachedHashString.h │ ├── DAGDeltaAlgorithm.h │ ├── DeltaAlgorithm.h │ ├── DenseMap.h │ ├── DenseMapInfo.h │ ├── DenseSet.h │ ├── DepthFirstIterator.h │ ├── EpochTracker.h │ ├── EquivalenceClasses.h │ ├── FoldingSet.h │ ├── GraphTraits.h │ ├── Hashing.h │ ├── ImmutableList.h │ ├── ImmutableMap.h │ ├── ImmutableSet.h │ ├── IndexedMap.h │ ├── IntEqClasses.h │ ├── IntervalMap.h │ ├── IntrusiveRefCntPtr.h │ ├── MapVector.h │ ├── None.h │ ├── Optional.h │ ├── PackedVector.h │ ├── PointerEmbeddedInt.h │ ├── PointerIntPair.h │ ├── PointerSumType.h │ ├── PointerUnion.h │ ├── PostOrderIterator.h │ ├── PriorityQueue.h │ ├── PriorityWorklist.h │ ├── SCCIterator.h │ ├── STLExtras.h │ ├── ScopeExit.h │ ├── ScopedHashTable.h │ ├── Sequence.h │ ├── SetOperations.h │ ├── SetVector.h │ ├── SmallBitVector.h │ ├── SmallPtrSet.h │ ├── SmallSet.h │ ├── SmallString.h │ ├── SmallVector.h │ ├── SparseBitVector.h │ ├── SparseMultiSet.h │ ├── SparseSet.h │ ├── Statistic.h │ ├── StringExtras.h │ ├── StringMap.h │ ├── StringRef.h │ ├── StringSet.h │ ├── StringSwitch.h │ ├── TinyPtrVector.h │ ├── Triple.h │ ├── Twine.h │ ├── UniqueVector.h │ ├── VariadicFunction.h │ ├── edit_distance.h │ ├── ilist.h │ ├── ilist_base.h │ ├── ilist_iterator.h │ ├── ilist_node.h │ ├── ilist_node_base.h │ ├── ilist_node_options.h │ ├── iterator.h │ ├── iterator_range.h │ └── simple_ilist.h │ ├── Analysis │ ├── AliasAnalysis.h │ ├── AliasAnalysisEvaluator.h │ ├── AliasSetTracker.h │ ├── AssumptionCache.h │ ├── BasicAliasAnalysis.h │ ├── BlockFrequencyInfo.h │ ├── BlockFrequencyInfoImpl.h │ ├── BranchProbabilityInfo.h │ ├── CFG.h │ ├── CFGPrinter.h │ ├── CFLAliasAnalysisUtils.h │ ├── CFLAndersAliasAnalysis.h │ ├── CFLSteensAliasAnalysis.h │ ├── CGSCCPassManager.h │ ├── CallGraph.h │ ├── CallGraphSCCPass.h │ ├── CallPrinter.h │ ├── CaptureTracking.h │ ├── CmpInstAnalysis.h │ ├── CodeMetrics.h │ ├── ConstantFolding.h │ ├── DOTGraphTraitsPass.h │ ├── DemandedBits.h │ ├── DependenceAnalysis.h │ ├── DivergenceAnalysis.h │ ├── DomPrinter.h │ ├── DominanceFrontier.h │ ├── DominanceFrontierImpl.h │ ├── EHPersonalities.h │ ├── GlobalsModRef.h │ ├── IVUsers.h │ ├── IndirectCallPromotionAnalysis.h │ ├── IndirectCallSiteVisitor.h │ ├── InlineCost.h │ ├── InstructionSimplify.h │ ├── Interval.h │ ├── IntervalIterator.h │ ├── IntervalPartition.h │ ├── IteratedDominanceFrontier.h │ ├── LazyBlockFrequencyInfo.h │ ├── LazyBranchProbabilityInfo.h │ ├── LazyCallGraph.h │ ├── LazyValueInfo.h │ ├── Lint.h │ ├── Loads.h │ ├── LoopAccessAnalysis.h │ ├── LoopAnalysisManager.h │ ├── LoopInfo.h │ ├── LoopInfoImpl.h │ ├── LoopIterator.h │ ├── LoopPass.h │ ├── LoopUnrollAnalyzer.h │ ├── MemoryBuiltins.h │ ├── MemoryDependenceAnalysis.h │ ├── MemoryLocation.h │ ├── MemorySSA.h │ ├── MemorySSAUpdater.h │ ├── ModuleSummaryAnalysis.h │ ├── ObjCARCAliasAnalysis.h │ ├── ObjCARCAnalysisUtils.h │ ├── ObjCARCInstKind.h │ ├── ObjectUtils.h │ ├── OptimizationRemarkEmitter.h │ ├── OrderedBasicBlock.h │ ├── PHITransAddr.h │ ├── Passes.h │ ├── PostDominators.h │ ├── ProfileSummaryInfo.h │ ├── PtrUseVisitor.h │ ├── RegionInfo.h │ ├── RegionInfoImpl.h │ ├── RegionIterator.h │ ├── RegionPass.h │ ├── RegionPrinter.h │ ├── ScalarEvolution.h │ ├── ScalarEvolutionAliasAnalysis.h │ ├── ScalarEvolutionExpander.h │ ├── ScalarEvolutionExpressions.h │ ├── ScalarEvolutionNormalization.h │ ├── ScopedNoAliasAA.h │ ├── SparsePropagation.h │ ├── TargetFolder.h │ ├── TargetLibraryInfo.def │ ├── TargetLibraryInfo.h │ ├── TargetTransformInfo.h │ ├── TargetTransformInfoImpl.h │ ├── Trace.h │ ├── TypeBasedAliasAnalysis.h │ ├── TypeMetadataUtils.h │ ├── ValueLattice.h │ ├── ValueLatticeUtils.h │ ├── ValueTracking.h │ └── VectorUtils.h │ ├── AsmParser │ ├── Parser.h │ └── SlotMapping.h │ ├── BinaryFormat │ ├── COFF.h │ ├── Dwarf.def │ ├── Dwarf.h │ ├── ELF.h │ ├── ELFRelocs │ │ ├── AArch64.def │ │ ├── AMDGPU.def │ │ ├── ARC.def │ │ ├── ARM.def │ │ ├── AVR.def │ │ ├── BPF.def │ │ ├── Hexagon.def │ │ ├── Lanai.def │ │ ├── Mips.def │ │ ├── PowerPC.def │ │ ├── PowerPC64.def │ │ ├── RISCV.def │ │ ├── Sparc.def │ │ ├── SystemZ.def │ │ ├── WebAssembly.def │ │ ├── i386.def │ │ └── x86_64.def │ ├── MachO.def │ ├── MachO.h │ ├── Magic.h │ ├── Wasm.h │ └── WasmRelocs.def │ ├── Bitcode │ ├── BitCodes.h │ ├── BitcodeReader.h │ ├── BitcodeWriter.h │ ├── BitcodeWriterPass.h │ ├── BitstreamReader.h │ ├── BitstreamWriter.h │ └── LLVMBitCodes.h │ ├── CMakeLists.txt │ ├── CodeGen │ ├── Analysis.h │ ├── AsmPrinter.h │ ├── AtomicExpandUtils.h │ ├── BasicTTIImpl.h │ ├── CalcSpillWeights.h │ ├── CallingConvLower.h │ ├── CommandFlags.def │ ├── CostTable.h │ ├── DAGCombine.h │ ├── DFAPacketizer.h │ ├── DIE.h │ ├── DIEValue.def │ ├── DwarfStringPoolEntry.h │ ├── EdgeBundles.h │ ├── ExecutionDepsFix.h │ ├── ExpandReductions.h │ ├── FastISel.h │ ├── FaultMaps.h │ ├── FunctionLoweringInfo.h │ ├── GCMetadata.h │ ├── GCMetadataPrinter.h │ ├── GCStrategy.h │ ├── GCs.h │ ├── GlobalISel │ │ ├── CallLowering.h │ │ ├── GISelWorkList.h │ │ ├── IRTranslator.h │ │ ├── InstructionSelect.h │ │ ├── InstructionSelector.h │ │ ├── InstructionSelectorImpl.h │ │ ├── LegalizationArtifactCombiner.h │ │ ├── Legalizer.h │ │ ├── LegalizerHelper.h │ │ ├── LegalizerInfo.h │ │ ├── Localizer.h │ │ ├── MachineIRBuilder.h │ │ ├── RegBankSelect.h │ │ ├── RegisterBank.h │ │ ├── RegisterBankInfo.h │ │ ├── Types.h │ │ └── Utils.h │ ├── ISDOpcodes.h │ ├── IntrinsicLowering.h │ ├── LatencyPriorityQueue.h │ ├── LazyMachineBlockFrequencyInfo.h │ ├── LexicalScopes.h │ ├── LinkAllAsmWriterComponents.h │ ├── LinkAllCodegenComponents.h │ ├── LiveInterval.h │ ├── LiveIntervalUnion.h │ ├── LiveIntervals.h │ ├── LivePhysRegs.h │ ├── LiveRangeEdit.h │ ├── LiveRegMatrix.h │ ├── LiveRegUnits.h │ ├── LiveStacks.h │ ├── LiveVariables.h │ ├── LowLevelType.h │ ├── MIRParser │ │ └── MIRParser.h │ ├── MIRPrinter.h │ ├── MIRYamlMapping.h │ ├── MachORelocation.h │ ├── MachineBasicBlock.h │ ├── MachineBlockFrequencyInfo.h │ ├── MachineBranchProbabilityInfo.h │ ├── MachineCombinerPattern.h │ ├── MachineConstantPool.h │ ├── MachineDominanceFrontier.h │ ├── MachineDominators.h │ ├── MachineFrameInfo.h │ ├── MachineFunction.h │ ├── MachineFunctionPass.h │ ├── MachineInstr.h │ ├── MachineInstrBuilder.h │ ├── MachineInstrBundle.h │ ├── MachineInstrBundleIterator.h │ ├── MachineJumpTableInfo.h │ ├── MachineLoopInfo.h │ ├── MachineMemOperand.h │ ├── MachineModuleInfo.h │ ├── MachineModuleInfoImpls.h │ ├── MachineOperand.h │ ├── MachineOptimizationRemarkEmitter.h │ ├── MachinePassRegistry.h │ ├── MachinePostDominators.h │ ├── MachineRegionInfo.h │ ├── MachineRegisterInfo.h │ ├── MachineSSAUpdater.h │ ├── MachineScheduler.h │ ├── MachineTraceMetrics.h │ ├── MachineValueType.h │ ├── MacroFusion.h │ ├── PBQP │ │ ├── CostAllocator.h │ │ ├── Graph.h │ │ ├── Math.h │ │ ├── ReductionRules.h │ │ └── Solution.h │ ├── PBQPRAConstraint.h │ ├── ParallelCG.h │ ├── Passes.h │ ├── PreISelIntrinsicLowering.h │ ├── PseudoSourceValue.h │ ├── RegAllocPBQP.h │ ├── RegAllocRegistry.h │ ├── RegisterClassInfo.h │ ├── RegisterPressure.h │ ├── RegisterScavenging.h │ ├── RegisterUsageInfo.h │ ├── ResourcePriorityQueue.h │ ├── RuntimeLibcalls.def │ ├── RuntimeLibcalls.h │ ├── SDNodeProperties.td │ ├── ScheduleDAG.h │ ├── ScheduleDAGInstrs.h │ ├── ScheduleDAGMutation.h │ ├── ScheduleDFS.h │ ├── ScheduleHazardRecognizer.h │ ├── SchedulerRegistry.h │ ├── ScoreboardHazardRecognizer.h │ ├── SelectionDAG.h │ ├── SelectionDAGAddressAnalysis.h │ ├── SelectionDAGISel.h │ ├── SelectionDAGNodes.h │ ├── SelectionDAGTargetInfo.h │ ├── SlotIndexes.h │ ├── StackMaps.h │ ├── StackProtector.h │ ├── TailDuplicator.h │ ├── TargetCallingConv.h │ ├── TargetFrameLowering.h │ ├── TargetInstrInfo.h │ ├── TargetLowering.h │ ├── TargetLoweringObjectFile.h │ ├── TargetLoweringObjectFileImpl.h │ ├── TargetOpcodes.def │ ├── TargetOpcodes.h │ ├── TargetPassConfig.h │ ├── TargetRegisterInfo.h │ ├── TargetSchedule.h │ ├── TargetSubtargetInfo.h │ ├── UnreachableBlockElim.h │ ├── ValueTypes.h │ ├── ValueTypes.td │ ├── VirtRegMap.h │ └── WinEHFuncInfo.h │ ├── Config │ ├── AsmParsers.def.in │ ├── AsmPrinters.def.in │ ├── Disassemblers.def.in │ ├── Targets.def.in │ ├── abi-breaking.h.cmake │ ├── config.h.cmake │ └── llvm-config.h.cmake │ ├── DebugInfo │ ├── CodeView │ │ ├── AppendingTypeTableBuilder.h │ │ ├── CVDebugRecord.h │ │ ├── CVRecord.h │ │ ├── CVSymbolVisitor.h │ │ ├── CVTypeVisitor.h │ │ ├── CodeView.h │ │ ├── CodeViewError.h │ │ ├── CodeViewRecordIO.h │ │ ├── CodeViewRegisters.def │ │ ├── CodeViewSymbols.def │ │ ├── CodeViewTypes.def │ │ ├── ContinuationRecordBuilder.h │ │ ├── DebugChecksumsSubsection.h │ │ ├── DebugCrossExSubsection.h │ │ ├── DebugCrossImpSubsection.h │ │ ├── DebugFrameDataSubsection.h │ │ ├── DebugInlineeLinesSubsection.h │ │ ├── DebugLinesSubsection.h │ │ ├── DebugStringTableSubsection.h │ │ ├── DebugSubsection.h │ │ ├── DebugSubsectionRecord.h │ │ ├── DebugSubsectionVisitor.h │ │ ├── DebugSymbolRVASubsection.h │ │ ├── DebugSymbolsSubsection.h │ │ ├── DebugUnknownSubsection.h │ │ ├── EnumTables.h │ │ ├── Formatters.h │ │ ├── FunctionId.h │ │ ├── GUID.h │ │ ├── GlobalTypeTableBuilder.h │ │ ├── LazyRandomTypeCollection.h │ │ ├── Line.h │ │ ├── MergingTypeTableBuilder.h │ │ ├── RecordName.h │ │ ├── RecordSerialization.h │ │ ├── SimpleTypeSerializer.h │ │ ├── StringsAndChecksums.h │ │ ├── SymbolDeserializer.h │ │ ├── SymbolDumpDelegate.h │ │ ├── SymbolDumper.h │ │ ├── SymbolRecord.h │ │ ├── SymbolRecordMapping.h │ │ ├── SymbolSerializer.h │ │ ├── SymbolVisitorCallbackPipeline.h │ │ ├── SymbolVisitorCallbacks.h │ │ ├── SymbolVisitorDelegate.h │ │ ├── TypeCollection.h │ │ ├── TypeDeserializer.h │ │ ├── TypeDumpVisitor.h │ │ ├── TypeHashing.h │ │ ├── TypeIndex.h │ │ ├── TypeIndexDiscovery.h │ │ ├── TypeRecord.h │ │ ├── TypeRecordMapping.h │ │ ├── TypeStreamMerger.h │ │ ├── TypeSymbolEmitter.h │ │ ├── TypeTableCollection.h │ │ ├── TypeVisitorCallbackPipeline.h │ │ └── TypeVisitorCallbacks.h │ ├── DIContext.h │ ├── DWARF │ │ ├── DWARFAbbreviationDeclaration.h │ │ ├── DWARFAcceleratorTable.h │ │ ├── DWARFAttribute.h │ │ ├── DWARFCompileUnit.h │ │ ├── DWARFContext.h │ │ ├── DWARFDataExtractor.h │ │ ├── DWARFDebugAbbrev.h │ │ ├── DWARFDebugArangeSet.h │ │ ├── DWARFDebugAranges.h │ │ ├── DWARFDebugFrame.h │ │ ├── DWARFDebugInfoEntry.h │ │ ├── DWARFDebugLine.h │ │ ├── DWARFDebugLoc.h │ │ ├── DWARFDebugMacro.h │ │ ├── DWARFDebugPubTable.h │ │ ├── DWARFDebugRangeList.h │ │ ├── DWARFDie.h │ │ ├── DWARFExpression.h │ │ ├── DWARFFormValue.h │ │ ├── DWARFGdbIndex.h │ │ ├── DWARFObject.h │ │ ├── DWARFRelocMap.h │ │ ├── DWARFSection.h │ │ ├── DWARFTypeUnit.h │ │ ├── DWARFUnit.h │ │ ├── DWARFUnitIndex.h │ │ └── DWARFVerifier.h │ ├── MSF │ │ ├── IMSFFile.h │ │ ├── MSFBuilder.h │ │ ├── MSFCommon.h │ │ ├── MSFError.h │ │ └── MappedBlockStream.h │ ├── PDB │ │ ├── ConcreteSymbolEnumerator.h │ │ ├── DIA │ │ │ ├── DIADataStream.h │ │ │ ├── DIAEnumDebugStreams.h │ │ │ ├── DIAEnumLineNumbers.h │ │ │ ├── DIAEnumSourceFiles.h │ │ │ ├── DIAEnumSymbols.h │ │ │ ├── DIAEnumTables.h │ │ │ ├── DIAError.h │ │ │ ├── DIALineNumber.h │ │ │ ├── DIARawSymbol.h │ │ │ ├── DIASession.h │ │ │ ├── DIASourceFile.h │ │ │ ├── DIASupport.h │ │ │ └── DIATable.h │ │ ├── GenericError.h │ │ ├── IPDBDataStream.h │ │ ├── IPDBEnumChildren.h │ │ ├── IPDBLineNumber.h │ │ ├── IPDBRawSymbol.h │ │ ├── IPDBSession.h │ │ ├── IPDBSourceFile.h │ │ ├── IPDBTable.h │ │ ├── Native │ │ │ ├── DbiModuleDescriptor.h │ │ │ ├── DbiModuleDescriptorBuilder.h │ │ │ ├── DbiModuleList.h │ │ │ ├── DbiStream.h │ │ │ ├── DbiStreamBuilder.h │ │ │ ├── EnumTables.h │ │ │ ├── Formatters.h │ │ │ ├── GSIStreamBuilder.h │ │ │ ├── GlobalsStream.h │ │ │ ├── Hash.h │ │ │ ├── HashTable.h │ │ │ ├── ISectionContribVisitor.h │ │ │ ├── InfoStream.h │ │ │ ├── InfoStreamBuilder.h │ │ │ ├── ModuleDebugStream.h │ │ │ ├── NamedStreamMap.h │ │ │ ├── NativeBuiltinSymbol.h │ │ │ ├── NativeCompilandSymbol.h │ │ │ ├── NativeEnumModules.h │ │ │ ├── NativeEnumSymbol.h │ │ │ ├── NativeEnumTypes.h │ │ │ ├── NativeExeSymbol.h │ │ │ ├── NativeRawSymbol.h │ │ │ ├── NativeSession.h │ │ │ ├── PDBFile.h │ │ │ ├── PDBFileBuilder.h │ │ │ ├── PDBStringTable.h │ │ │ ├── PDBStringTableBuilder.h │ │ │ ├── PublicsStream.h │ │ │ ├── RawConstants.h │ │ │ ├── RawError.h │ │ │ ├── RawTypes.h │ │ │ ├── SymbolStream.h │ │ │ ├── TpiHashing.h │ │ │ ├── TpiStream.h │ │ │ └── TpiStreamBuilder.h │ │ ├── PDB.h │ │ ├── PDBContext.h │ │ ├── PDBExtras.h │ │ ├── PDBSymDumper.h │ │ ├── PDBSymbol.h │ │ ├── PDBSymbolAnnotation.h │ │ ├── PDBSymbolBlock.h │ │ ├── PDBSymbolCompiland.h │ │ ├── PDBSymbolCompilandDetails.h │ │ ├── PDBSymbolCompilandEnv.h │ │ ├── PDBSymbolCustom.h │ │ ├── PDBSymbolData.h │ │ ├── PDBSymbolExe.h │ │ ├── PDBSymbolFunc.h │ │ ├── PDBSymbolFuncDebugEnd.h │ │ ├── PDBSymbolFuncDebugStart.h │ │ ├── PDBSymbolLabel.h │ │ ├── PDBSymbolPublicSymbol.h │ │ ├── PDBSymbolThunk.h │ │ ├── PDBSymbolTypeArray.h │ │ ├── PDBSymbolTypeBaseClass.h │ │ ├── PDBSymbolTypeBuiltin.h │ │ ├── PDBSymbolTypeCustom.h │ │ ├── PDBSymbolTypeDimension.h │ │ ├── PDBSymbolTypeEnum.h │ │ ├── PDBSymbolTypeFriend.h │ │ ├── PDBSymbolTypeFunctionArg.h │ │ ├── PDBSymbolTypeFunctionSig.h │ │ ├── PDBSymbolTypeManaged.h │ │ ├── PDBSymbolTypePointer.h │ │ ├── PDBSymbolTypeTypedef.h │ │ ├── PDBSymbolTypeUDT.h │ │ ├── PDBSymbolTypeVTable.h │ │ ├── PDBSymbolTypeVTableShape.h │ │ ├── PDBSymbolUnknown.h │ │ ├── PDBSymbolUsingNamespace.h │ │ ├── PDBTypes.h │ │ └── UDTLayout.h │ └── Symbolize │ │ ├── DIPrinter.h │ │ ├── SymbolizableModule.h │ │ └── Symbolize.h │ ├── Demangle │ └── Demangle.h │ ├── ExecutionEngine │ ├── ExecutionEngine.h │ ├── GenericValue.h │ ├── Interpreter.h │ ├── JITEventListener.h │ ├── JITSymbol.h │ ├── MCJIT.h │ ├── OProfileWrapper.h │ ├── ObjectCache.h │ ├── ObjectMemoryBuffer.h │ ├── Orc │ │ ├── CompileOnDemandLayer.h │ │ ├── CompileUtils.h │ │ ├── ExecutionUtils.h │ │ ├── GlobalMappingLayer.h │ │ ├── IRCompileLayer.h │ │ ├── IRTransformLayer.h │ │ ├── IndirectionUtils.h │ │ ├── LambdaResolver.h │ │ ├── LazyEmittingLayer.h │ │ ├── NullResolver.h │ │ ├── ObjectTransformLayer.h │ │ ├── OrcABISupport.h │ │ ├── OrcError.h │ │ ├── OrcRemoteTargetClient.h │ │ ├── OrcRemoteTargetRPCAPI.h │ │ ├── OrcRemoteTargetServer.h │ │ ├── RPCSerialization.h │ │ ├── RPCUtils.h │ │ ├── RTDyldObjectLinkingLayer.h │ │ ├── RawByteChannel.h │ │ ├── RemoteObjectLayer.h │ │ └── SymbolStringPool.h │ ├── OrcMCJITReplacement.h │ ├── RTDyldMemoryManager.h │ ├── RuntimeDyld.h │ ├── RuntimeDyldChecker.h │ └── SectionMemoryManager.h │ ├── FuzzMutate │ ├── FuzzerCLI.h │ ├── IRMutator.h │ ├── OpDescriptor.h │ ├── Operations.h │ ├── Random.h │ └── RandomIRBuilder.h │ ├── IR │ ├── Argument.h │ ├── AssemblyAnnotationWriter.h │ ├── Attributes.h │ ├── Attributes.td │ ├── AutoUpgrade.h │ ├── BasicBlock.h │ ├── CFG.h │ ├── CMakeLists.txt │ ├── CallSite.h │ ├── CallingConv.h │ ├── Comdat.h │ ├── Constant.h │ ├── ConstantFolder.h │ ├── ConstantRange.h │ ├── Constants.h │ ├── DIBuilder.h │ ├── DataLayout.h │ ├── DebugInfo.h │ ├── DebugInfoFlags.def │ ├── DebugInfoMetadata.h │ ├── DebugLoc.h │ ├── DerivedTypes.h │ ├── DerivedUser.h │ ├── DiagnosticHandler.h │ ├── DiagnosticInfo.h │ ├── DiagnosticPrinter.h │ ├── Dominators.h │ ├── Function.h │ ├── GVMaterializer.h │ ├── GetElementPtrTypeIterator.h │ ├── GlobalAlias.h │ ├── GlobalIFunc.h │ ├── GlobalIndirectSymbol.h │ ├── GlobalObject.h │ ├── GlobalValue.h │ ├── GlobalVariable.h │ ├── IRBuilder.h │ ├── IRPrintingPasses.h │ ├── InlineAsm.h │ ├── InstIterator.h │ ├── InstVisitor.h │ ├── InstrTypes.h │ ├── Instruction.def │ ├── Instruction.h │ ├── Instructions.h │ ├── IntrinsicInst.h │ ├── Intrinsics.h │ ├── Intrinsics.td │ ├── IntrinsicsAArch64.td │ ├── IntrinsicsAMDGPU.td │ ├── IntrinsicsARM.td │ ├── IntrinsicsBPF.td │ ├── IntrinsicsHexagon.td │ ├── IntrinsicsMips.td │ ├── IntrinsicsNVVM.td │ ├── IntrinsicsPowerPC.td │ ├── IntrinsicsSystemZ.td │ ├── IntrinsicsWebAssembly.td │ ├── IntrinsicsX86.td │ ├── IntrinsicsXCore.td │ ├── LLVMContext.h │ ├── LegacyPassManager.h │ ├── LegacyPassManagers.h │ ├── LegacyPassNameParser.h │ ├── MDBuilder.h │ ├── Mangler.h │ ├── Metadata.def │ ├── Metadata.h │ ├── Module.h │ ├── ModuleSlotTracker.h │ ├── ModuleSummaryIndex.h │ ├── ModuleSummaryIndexYAML.h │ ├── NoFolder.h │ ├── OperandTraits.h │ ├── Operator.h │ ├── OptBisect.h │ ├── PassManager.h │ ├── PassManagerInternal.h │ ├── PatternMatch.h │ ├── PredIteratorCache.h │ ├── ProfileSummary.h │ ├── SafepointIRVerifier.h │ ├── Statepoint.h │ ├── SymbolTableListTraits.h │ ├── TrackingMDRef.h │ ├── Type.h │ ├── TypeBuilder.h │ ├── TypeFinder.h │ ├── Use.h │ ├── UseListOrder.h │ ├── User.h │ ├── Value.def │ ├── Value.h │ ├── ValueHandle.h │ ├── ValueMap.h │ ├── ValueSymbolTable.h │ └── Verifier.h │ ├── IRReader │ └── IRReader.h │ ├── InitializePasses.h │ ├── LTO │ ├── Caching.h │ ├── Config.h │ ├── LTO.h │ ├── LTOBackend.h │ └── legacy │ │ ├── LTOCodeGenerator.h │ │ ├── LTOModule.h │ │ ├── ThinLTOCodeGenerator.h │ │ └── UpdateCompilerUsed.h │ ├── LineEditor │ └── LineEditor.h │ ├── LinkAllIR.h │ ├── LinkAllPasses.h │ ├── Linker │ ├── IRMover.h │ └── Linker.h │ ├── MC │ ├── ConstantPools.h │ ├── LaneBitmask.h │ ├── MCAsmBackend.h │ ├── MCAsmInfo.h │ ├── MCAsmInfoCOFF.h │ ├── MCAsmInfoDarwin.h │ ├── MCAsmInfoELF.h │ ├── MCAsmInfoWasm.h │ ├── MCAsmLayout.h │ ├── MCAsmMacro.h │ ├── MCAssembler.h │ ├── MCCodeEmitter.h │ ├── MCCodePadder.h │ ├── MCCodeView.h │ ├── MCContext.h │ ├── MCDirectives.h │ ├── MCDisassembler │ │ ├── MCDisassembler.h │ │ ├── MCExternalSymbolizer.h │ │ ├── MCRelocationInfo.h │ │ └── MCSymbolizer.h │ ├── MCDwarf.h │ ├── MCELFObjectWriter.h │ ├── MCELFStreamer.h │ ├── MCExpr.h │ ├── MCFixedLenDisassembler.h │ ├── MCFixup.h │ ├── MCFixupKindInfo.h │ ├── MCFragment.h │ ├── MCInst.h │ ├── MCInstBuilder.h │ ├── MCInstPrinter.h │ ├── MCInstrAnalysis.h │ ├── MCInstrDesc.h │ ├── MCInstrInfo.h │ ├── MCInstrItineraries.h │ ├── MCLabel.h │ ├── MCLinkerOptimizationHint.h │ ├── MCMachObjectWriter.h │ ├── MCObjectFileInfo.h │ ├── MCObjectStreamer.h │ ├── MCObjectWriter.h │ ├── MCParser │ │ ├── AsmCond.h │ │ ├── AsmLexer.h │ │ ├── MCAsmLexer.h │ │ ├── MCAsmParser.h │ │ ├── MCAsmParserExtension.h │ │ ├── MCAsmParserUtils.h │ │ ├── MCParsedAsmOperand.h │ │ └── MCTargetAsmParser.h │ ├── MCRegisterInfo.h │ ├── MCSchedule.h │ ├── MCSection.h │ ├── MCSectionCOFF.h │ ├── MCSectionELF.h │ ├── MCSectionMachO.h │ ├── MCSectionWasm.h │ ├── MCStreamer.h │ ├── MCSubtargetInfo.h │ ├── MCSymbol.h │ ├── MCSymbolCOFF.h │ ├── MCSymbolELF.h │ ├── MCSymbolMachO.h │ ├── MCSymbolWasm.h │ ├── MCTargetOptions.h │ ├── MCTargetOptionsCommandFlags.def │ ├── MCValue.h │ ├── MCWasmObjectWriter.h │ ├── MCWasmStreamer.h │ ├── MCWin64EH.h │ ├── MCWinCOFFObjectWriter.h │ ├── MCWinCOFFStreamer.h │ ├── MCWinEH.h │ ├── MachineLocation.h │ ├── SectionKind.h │ ├── StringTableBuilder.h │ └── SubtargetFeature.h │ ├── Object │ ├── Archive.h │ ├── ArchiveWriter.h │ ├── Binary.h │ ├── COFF.h │ ├── COFFImportFile.h │ ├── COFFModuleDefinition.h │ ├── Decompressor.h │ ├── ELF.h │ ├── ELFObjectFile.h │ ├── ELFTypes.h │ ├── Error.h │ ├── IRObjectFile.h │ ├── IRSymtab.h │ ├── MachO.h │ ├── MachOUniversal.h │ ├── ModuleSymbolTable.h │ ├── ObjectFile.h │ ├── RelocVisitor.h │ ├── StackMapParser.h │ ├── SymbolSize.h │ ├── SymbolicFile.h │ ├── Wasm.h │ └── WindowsResource.h │ ├── ObjectYAML │ ├── COFFYAML.h │ ├── CodeViewYAMLDebugSections.h │ ├── CodeViewYAMLSymbols.h │ ├── CodeViewYAMLTypeHashing.h │ ├── CodeViewYAMLTypes.h │ ├── DWARFEmitter.h │ ├── DWARFYAML.h │ ├── ELFYAML.h │ ├── MachOYAML.h │ ├── ObjectYAML.h │ ├── WasmYAML.h │ └── YAML.h │ ├── Option │ ├── Arg.h │ ├── ArgList.h │ ├── OptParser.td │ ├── OptSpecifier.h │ ├── OptTable.h │ └── Option.h │ ├── Pass.h │ ├── PassAnalysisSupport.h │ ├── PassInfo.h │ ├── PassRegistry.h │ ├── PassSupport.h │ ├── Passes │ └── PassBuilder.h │ ├── ProfileData │ ├── Coverage │ │ ├── CoverageMapping.h │ │ ├── CoverageMappingReader.h │ │ └── CoverageMappingWriter.h │ ├── GCOV.h │ ├── InstrProf.h │ ├── InstrProfData.inc │ ├── InstrProfReader.h │ ├── InstrProfWriter.h │ ├── ProfileCommon.h │ ├── SampleProf.h │ ├── SampleProfReader.h │ └── SampleProfWriter.h │ ├── Support │ ├── AArch64TargetParser.def │ ├── AMDGPUKernelDescriptor.h │ ├── AMDGPUMetadata.h │ ├── ARMAttributeParser.h │ ├── ARMBuildAttributes.h │ ├── ARMEHABI.h │ ├── ARMTargetParser.def │ ├── ARMWinEH.h │ ├── AlignOf.h │ ├── Allocator.h │ ├── ArrayRecycler.h │ ├── Atomic.h │ ├── AtomicOrdering.h │ ├── BinaryByteStream.h │ ├── BinaryItemStream.h │ ├── BinaryStream.h │ ├── BinaryStreamArray.h │ ├── BinaryStreamError.h │ ├── BinaryStreamReader.h │ ├── BinaryStreamRef.h │ ├── BinaryStreamWriter.h │ ├── BlockFrequency.h │ ├── BranchProbability.h │ ├── CBindingWrapping.h │ ├── CMakeLists.txt │ ├── COM.h │ ├── CachePruning.h │ ├── Capacity.h │ ├── Casting.h │ ├── Chrono.h │ ├── CodeGen.h │ ├── CodeGenCWrappers.h │ ├── CodeGenCoverage.h │ ├── CommandLine.h │ ├── Compiler.h │ ├── Compression.h │ ├── ConvertUTF.h │ ├── CrashRecoveryContext.h │ ├── DOTGraphTraits.h │ ├── DataExtractor.h │ ├── DataTypes.h.cmake │ ├── Debug.h │ ├── DebugCounter.h │ ├── DynamicLibrary.h │ ├── Endian.h │ ├── EndianStream.h │ ├── Errc.h │ ├── Errno.h │ ├── Error.h │ ├── ErrorHandling.h │ ├── ErrorOr.h │ ├── FileOutputBuffer.h │ ├── FileSystem.h │ ├── FileUtilities.h │ ├── Format.h │ ├── FormatAdapters.h │ ├── FormatCommon.h │ ├── FormatProviders.h │ ├── FormatVariadic.h │ ├── FormatVariadicDetails.h │ ├── FormattedStream.h │ ├── GenericDomTree.h │ ├── GenericDomTreeConstruction.h │ ├── GlobPattern.h │ ├── GraphWriter.h │ ├── Host.h │ ├── JamCRC.h │ ├── KnownBits.h │ ├── LEB128.h │ ├── LICENSE.TXT │ ├── LineIterator.h │ ├── Locale.h │ ├── LockFileManager.h │ ├── LowLevelTypeImpl.h │ ├── MD5.h │ ├── ManagedStatic.h │ ├── MathExtras.h │ ├── Memory.h │ ├── MemoryBuffer.h │ ├── MipsABIFlags.h │ ├── Mutex.h │ ├── MutexGuard.h │ ├── NativeFormatting.h │ ├── OnDiskHashTable.h │ ├── Options.h │ ├── Parallel.h │ ├── Path.h │ ├── PluginLoader.h │ ├── PointerLikeTypeTraits.h │ ├── PrettyStackTrace.h │ ├── Printable.h │ ├── Process.h │ ├── Program.h │ ├── RWMutex.h │ ├── RandomNumberGenerator.h │ ├── Recycler.h │ ├── RecyclingAllocator.h │ ├── Regex.h │ ├── Registry.h │ ├── ReverseIteration.h │ ├── SHA1.h │ ├── SMLoc.h │ ├── SaveAndRestore.h │ ├── ScaledNumber.h │ ├── ScopedPrinter.h │ ├── Signals.h │ ├── Solaris │ │ └── sys │ │ │ └── regset.h │ ├── SourceMgr.h │ ├── SpecialCaseList.h │ ├── StringPool.h │ ├── StringSaver.h │ ├── SwapByteOrder.h │ ├── SystemUtils.h │ ├── TarWriter.h │ ├── TargetParser.h │ ├── TargetRegistry.h │ ├── TargetSelect.h │ ├── ThreadLocal.h │ ├── ThreadPool.h │ ├── Threading.h │ ├── Timer.h │ ├── ToolOutputFile.h │ ├── TrailingObjects.h │ ├── TrigramIndex.h │ ├── TypeName.h │ ├── Unicode.h │ ├── UnicodeCharRanges.h │ ├── UniqueLock.h │ ├── Valgrind.h │ ├── Watchdog.h │ ├── Win64EH.h │ ├── WindowsError.h │ ├── X86TargetParser.def │ ├── YAMLParser.h │ ├── YAMLTraits.h │ ├── circular_raw_ostream.h │ ├── raw_os_ostream.h │ ├── raw_ostream.h │ ├── raw_sha1_ostream.h │ ├── thread.h │ ├── type_traits.h │ └── xxhash.h │ ├── TableGen │ ├── Error.h │ ├── Main.h │ ├── Record.h │ ├── SearchableTable.td │ ├── SetTheory.h │ ├── StringMatcher.h │ ├── StringToOffsetTable.h │ └── TableGenBackend.h │ ├── Target │ ├── GenericOpcodes.td │ ├── GlobalISel │ │ ├── RegisterBank.td │ │ ├── SelectionDAGCompat.td │ │ └── Target.td │ ├── Target.td │ ├── TargetCallingConv.td │ ├── TargetIntrinsicInfo.h │ ├── TargetItinerary.td │ ├── TargetMachine.h │ ├── TargetOptions.h │ ├── TargetSchedule.td │ └── TargetSelectionDAG.td │ ├── Testing │ └── Support │ │ ├── Error.h │ │ └── SupportHelpers.h │ ├── ToolDrivers │ ├── llvm-dlltool │ │ └── DlltoolDriver.h │ └── llvm-lib │ │ └── LibDriver.h │ ├── Transforms │ ├── Coroutines.h │ ├── GCOVProfiler.h │ ├── IPO.h │ ├── IPO │ │ ├── AlwaysInliner.h │ │ ├── ArgumentPromotion.h │ │ ├── CalledValuePropagation.h │ │ ├── ConstantMerge.h │ │ ├── CrossDSOCFI.h │ │ ├── DeadArgumentElimination.h │ │ ├── ElimAvailExtern.h │ │ ├── ForceFunctionAttrs.h │ │ ├── FunctionAttrs.h │ │ ├── FunctionImport.h │ │ ├── GlobalDCE.h │ │ ├── GlobalOpt.h │ │ ├── GlobalSplit.h │ │ ├── InferFunctionAttrs.h │ │ ├── Inliner.h │ │ ├── Internalize.h │ │ ├── LowerTypeTests.h │ │ ├── PartialInlining.h │ │ ├── PassManagerBuilder.h │ │ ├── SCCP.h │ │ ├── StripDeadPrototypes.h │ │ ├── ThinLTOBitcodeWriter.h │ │ └── WholeProgramDevirt.h │ ├── InstCombine │ │ ├── InstCombine.h │ │ └── InstCombineWorklist.h │ ├── InstrProfiling.h │ ├── Instrumentation.h │ ├── Instrumentation │ │ └── BoundsChecking.h │ ├── ObjCARC.h │ ├── PGOInstrumentation.h │ ├── SampleProfile.h │ ├── Scalar.h │ ├── Scalar │ │ ├── ADCE.h │ │ ├── AlignmentFromAssumptions.h │ │ ├── BDCE.h │ │ ├── CallSiteSplitting.h │ │ ├── ConstantHoisting.h │ │ ├── CorrelatedValuePropagation.h │ │ ├── DCE.h │ │ ├── DeadStoreElimination.h │ │ ├── DivRemPairs.h │ │ ├── EarlyCSE.h │ │ ├── Float2Int.h │ │ ├── GVN.h │ │ ├── GVNExpression.h │ │ ├── GuardWidening.h │ │ ├── IVUsersPrinter.h │ │ ├── IndVarSimplify.h │ │ ├── JumpThreading.h │ │ ├── LICM.h │ │ ├── LoopAccessAnalysisPrinter.h │ │ ├── LoopDataPrefetch.h │ │ ├── LoopDeletion.h │ │ ├── LoopDistribute.h │ │ ├── LoopIdiomRecognize.h │ │ ├── LoopInstSimplify.h │ │ ├── LoopLoadElimination.h │ │ ├── LoopPassManager.h │ │ ├── LoopPredication.h │ │ ├── LoopRotation.h │ │ ├── LoopSimplifyCFG.h │ │ ├── LoopSink.h │ │ ├── LoopStrengthReduce.h │ │ ├── LoopUnrollPass.h │ │ ├── LowerAtomic.h │ │ ├── LowerExpectIntrinsic.h │ │ ├── LowerGuardIntrinsic.h │ │ ├── MemCpyOptimizer.h │ │ ├── MergedLoadStoreMotion.h │ │ ├── NaryReassociate.h │ │ ├── NewGVN.h │ │ ├── PartiallyInlineLibCalls.h │ │ ├── Reassociate.h │ │ ├── RewriteStatepointsForGC.h │ │ ├── SCCP.h │ │ ├── SROA.h │ │ ├── SimpleLoopUnswitch.h │ │ ├── SimplifyCFG.h │ │ ├── Sink.h │ │ ├── SpeculateAroundPHIs.h │ │ ├── SpeculativeExecution.h │ │ └── TailRecursionElimination.h │ ├── Utils │ │ ├── ASanStackFrameLayout.h │ │ ├── AddDiscriminators.h │ │ ├── BasicBlockUtils.h │ │ ├── BreakCriticalEdges.h │ │ ├── BuildLibCalls.h │ │ ├── BypassSlowDivision.h │ │ ├── CallPromotionUtils.h │ │ ├── Cloning.h │ │ ├── CodeExtractor.h │ │ ├── CtorUtils.h │ │ ├── EntryExitInstrumenter.h │ │ ├── EscapeEnumerator.h │ │ ├── Evaluator.h │ │ ├── FunctionComparator.h │ │ ├── FunctionImportUtils.h │ │ ├── GlobalStatus.h │ │ ├── ImportedFunctionsInliningStatistics.h │ │ ├── IntegerDivision.h │ │ ├── LCSSA.h │ │ ├── LibCallsShrinkWrap.h │ │ ├── Local.h │ │ ├── LoopSimplify.h │ │ ├── LoopUtils.h │ │ ├── LoopVersioning.h │ │ ├── LowerInvoke.h │ │ ├── LowerMemIntrinsics.h │ │ ├── Mem2Reg.h │ │ ├── ModuleUtils.h │ │ ├── NameAnonGlobals.h │ │ ├── OrderedInstructions.h │ │ ├── PredicateInfo.h │ │ ├── PromoteMemToReg.h │ │ ├── SSAUpdater.h │ │ ├── SSAUpdaterImpl.h │ │ ├── SanitizerStats.h │ │ ├── SimplifyIndVar.h │ │ ├── SimplifyInstructions.h │ │ ├── SimplifyLibCalls.h │ │ ├── SplitModule.h │ │ ├── SymbolRewriter.h │ │ ├── UnifyFunctionExitNodes.h │ │ ├── UnrollLoop.h │ │ ├── VNCoercion.h │ │ └── ValueMapper.h │ ├── Vectorize.h │ └── Vectorize │ │ ├── LoopVectorize.h │ │ └── SLPVectorizer.h │ ├── WindowsManifest │ └── WindowsManifestMerger.h │ ├── WindowsResource │ ├── ResourceProcessor.h │ ├── ResourceScriptToken.h │ └── ResourceScriptTokenList.h │ ├── XRay │ ├── Graph.h │ ├── InstrumentationMap.h │ ├── Trace.h │ ├── XRayRecord.h │ └── YAMLXRayRecord.h │ ├── module.modulemap │ └── module.modulemap.build ├── lib ├── Analysis │ ├── AliasAnalysis.cpp │ ├── AliasAnalysisEvaluator.cpp │ ├── AliasAnalysisSummary.cpp │ ├── AliasAnalysisSummary.h │ ├── AliasSetTracker.cpp │ ├── Analysis.cpp │ ├── AssumptionCache.cpp │ ├── BasicAliasAnalysis.cpp │ ├── BlockFrequencyInfo.cpp │ ├── BlockFrequencyInfoImpl.cpp │ ├── BranchProbabilityInfo.cpp │ ├── CFG.cpp │ ├── CFGPrinter.cpp │ ├── CFLAndersAliasAnalysis.cpp │ ├── CFLGraph.h │ ├── CFLSteensAliasAnalysis.cpp │ ├── CGSCCPassManager.cpp │ ├── CMakeLists.txt │ ├── CallGraph.cpp │ ├── CallGraphSCCPass.cpp │ ├── CallPrinter.cpp │ ├── CaptureTracking.cpp │ ├── CmpInstAnalysis.cpp │ ├── CodeMetrics.cpp │ ├── ConstantFolding.cpp │ ├── CostModel.cpp │ ├── Delinearization.cpp │ ├── DemandedBits.cpp │ ├── DependenceAnalysis.cpp │ ├── DivergenceAnalysis.cpp │ ├── DomPrinter.cpp │ ├── DominanceFrontier.cpp │ ├── EHPersonalities.cpp │ ├── GlobalsModRef.cpp │ ├── IVUsers.cpp │ ├── IndirectCallPromotionAnalysis.cpp │ ├── InlineCost.cpp │ ├── InstCount.cpp │ ├── InstructionSimplify.cpp │ ├── Interval.cpp │ ├── IntervalPartition.cpp │ ├── IteratedDominanceFrontier.cpp │ ├── LLVMBuild.txt │ ├── LazyBlockFrequencyInfo.cpp │ ├── LazyBranchProbabilityInfo.cpp │ ├── LazyCallGraph.cpp │ ├── LazyValueInfo.cpp │ ├── Lint.cpp │ ├── Loads.cpp │ ├── LoopAccessAnalysis.cpp │ ├── LoopAnalysisManager.cpp │ ├── LoopInfo.cpp │ ├── LoopPass.cpp │ ├── LoopUnrollAnalyzer.cpp │ ├── MemDepPrinter.cpp │ ├── MemDerefPrinter.cpp │ ├── MemoryBuiltins.cpp │ ├── MemoryDependenceAnalysis.cpp │ ├── MemoryLocation.cpp │ ├── MemorySSA.cpp │ ├── MemorySSAUpdater.cpp │ ├── ModuleDebugInfoPrinter.cpp │ ├── ModuleSummaryAnalysis.cpp │ ├── ObjCARCAliasAnalysis.cpp │ ├── ObjCARCAnalysisUtils.cpp │ ├── ObjCARCInstKind.cpp │ ├── OptimizationRemarkEmitter.cpp │ ├── OrderedBasicBlock.cpp │ ├── PHITransAddr.cpp │ ├── PostDominators.cpp │ ├── ProfileSummaryInfo.cpp │ ├── PtrUseVisitor.cpp │ ├── README.txt │ ├── RegionInfo.cpp │ ├── RegionPass.cpp │ ├── RegionPrinter.cpp │ ├── ScalarEvolution.cpp │ ├── ScalarEvolutionAliasAnalysis.cpp │ ├── ScalarEvolutionExpander.cpp │ ├── ScalarEvolutionNormalization.cpp │ ├── ScopedNoAliasAA.cpp │ ├── StratifiedSets.h │ ├── TargetLibraryInfo.cpp │ ├── TargetTransformInfo.cpp │ ├── Trace.cpp │ ├── TypeBasedAliasAnalysis.cpp │ ├── TypeMetadataUtils.cpp │ ├── ValueLattice.cpp │ ├── ValueLatticeUtils.cpp │ ├── ValueTracking.cpp │ └── VectorUtils.cpp ├── AsmParser │ ├── CMakeLists.txt │ ├── LLLexer.cpp │ ├── LLLexer.h │ ├── LLParser.cpp │ ├── LLParser.h │ ├── LLToken.h │ ├── LLVMBuild.txt │ └── Parser.cpp ├── BinaryFormat │ ├── CMakeLists.txt │ ├── Dwarf.cpp │ ├── LLVMBuild.txt │ └── Magic.cpp ├── Bitcode │ ├── CMakeLists.txt │ ├── LLVMBuild.txt │ ├── Reader │ │ ├── BitReader.cpp │ │ ├── BitcodeReader.cpp │ │ ├── BitstreamReader.cpp │ │ ├── CMakeLists.txt │ │ ├── LLVMBuild.txt │ │ ├── MetadataLoader.cpp │ │ ├── MetadataLoader.h │ │ ├── ValueList.cpp │ │ └── ValueList.h │ └── Writer │ │ ├── BitWriter.cpp │ │ ├── BitcodeWriter.cpp │ │ ├── BitcodeWriterPass.cpp │ │ ├── CMakeLists.txt │ │ ├── LLVMBuild.txt │ │ ├── ValueEnumerator.cpp │ │ └── ValueEnumerator.h ├── CMakeLists.txt ├── CodeGen │ ├── AggressiveAntiDepBreaker.cpp │ ├── AggressiveAntiDepBreaker.h │ ├── AllocationOrder.cpp │ ├── AllocationOrder.h │ ├── Analysis.cpp │ ├── AntiDepBreaker.h │ ├── AsmPrinter │ │ ├── ARMException.cpp │ │ ├── AddressPool.cpp │ │ ├── AddressPool.h │ │ ├── AsmPrinter.cpp │ │ ├── AsmPrinterDwarf.cpp │ │ ├── AsmPrinterHandler.h │ │ ├── AsmPrinterInlineAsm.cpp │ │ ├── ByteStreamer.h │ │ ├── CMakeLists.txt │ │ ├── CodeViewDebug.cpp │ │ ├── CodeViewDebug.h │ │ ├── DIE.cpp │ │ ├── DIEHash.cpp │ │ ├── DIEHash.h │ │ ├── DIEHashAttributes.def │ │ ├── DbgValueHistoryCalculator.cpp │ │ ├── DbgValueHistoryCalculator.h │ │ ├── DebugHandlerBase.cpp │ │ ├── DebugHandlerBase.h │ │ ├── DebugLocEntry.h │ │ ├── DebugLocStream.cpp │ │ ├── DebugLocStream.h │ │ ├── DwarfAccelTable.cpp │ │ ├── DwarfAccelTable.h │ │ ├── DwarfCFIException.cpp │ │ ├── DwarfCompileUnit.cpp │ │ ├── DwarfCompileUnit.h │ │ ├── DwarfDebug.cpp │ │ ├── DwarfDebug.h │ │ ├── DwarfException.h │ │ ├── DwarfExpression.cpp │ │ ├── DwarfExpression.h │ │ ├── DwarfFile.cpp │ │ ├── DwarfFile.h │ │ ├── DwarfStringPool.cpp │ │ ├── DwarfStringPool.h │ │ ├── DwarfUnit.cpp │ │ ├── DwarfUnit.h │ │ ├── EHStreamer.cpp │ │ ├── EHStreamer.h │ │ ├── ErlangGCPrinter.cpp │ │ ├── LLVMBuild.txt │ │ ├── OcamlGCPrinter.cpp │ │ ├── WinException.cpp │ │ └── WinException.h │ ├── AtomicExpandPass.cpp │ ├── BasicTargetTransformInfo.cpp │ ├── BranchFolding.cpp │ ├── BranchFolding.h │ ├── BranchRelaxation.cpp │ ├── BuiltinGCs.cpp │ ├── CMakeLists.txt │ ├── CalcSpillWeights.cpp │ ├── CallingConvLower.cpp │ ├── CodeGen.cpp │ ├── CodeGenPrepare.cpp │ ├── CriticalAntiDepBreaker.cpp │ ├── CriticalAntiDepBreaker.h │ ├── DFAPacketizer.cpp │ ├── DeadMachineInstructionElim.cpp │ ├── DetectDeadLanes.cpp │ ├── DwarfEHPrepare.cpp │ ├── EarlyIfConversion.cpp │ ├── EdgeBundles.cpp │ ├── ExecutionDepsFix.cpp │ ├── ExpandISelPseudos.cpp │ ├── ExpandMemCmp.cpp │ ├── ExpandPostRAPseudos.cpp │ ├── ExpandReductions.cpp │ ├── FEntryInserter.cpp │ ├── FaultMaps.cpp │ ├── FuncletLayout.cpp │ ├── GCMetadata.cpp │ ├── GCMetadataPrinter.cpp │ ├── GCRootLowering.cpp │ ├── GCStrategy.cpp │ ├── GlobalISel │ │ ├── CMakeLists.txt │ │ ├── CallLowering.cpp │ │ ├── GlobalISel.cpp │ │ ├── IRTranslator.cpp │ │ ├── InstructionSelect.cpp │ │ ├── InstructionSelector.cpp │ │ ├── LLVMBuild.txt │ │ ├── Legalizer.cpp │ │ ├── LegalizerHelper.cpp │ │ ├── LegalizerInfo.cpp │ │ ├── Localizer.cpp │ │ ├── MachineIRBuilder.cpp │ │ ├── RegBankSelect.cpp │ │ ├── RegisterBank.cpp │ │ ├── RegisterBankInfo.cpp │ │ └── Utils.cpp │ ├── GlobalMerge.cpp │ ├── IfConversion.cpp │ ├── ImplicitNullChecks.cpp │ ├── IndirectBrExpandPass.cpp │ ├── InlineSpiller.cpp │ ├── InterferenceCache.cpp │ ├── InterferenceCache.h │ ├── InterleavedAccessPass.cpp │ ├── IntrinsicLowering.cpp │ ├── LLVMBuild.txt │ ├── LLVMTargetMachine.cpp │ ├── LatencyPriorityQueue.cpp │ ├── LazyMachineBlockFrequencyInfo.cpp │ ├── LexicalScopes.cpp │ ├── LiveDebugValues.cpp │ ├── LiveDebugVariables.cpp │ ├── LiveDebugVariables.h │ ├── LiveInterval.cpp │ ├── LiveIntervalUnion.cpp │ ├── LiveIntervals.cpp │ ├── LivePhysRegs.cpp │ ├── LiveRangeCalc.cpp │ ├── LiveRangeCalc.h │ ├── LiveRangeEdit.cpp │ ├── LiveRangeShrink.cpp │ ├── LiveRangeUtils.h │ ├── LiveRegMatrix.cpp │ ├── LiveRegUnits.cpp │ ├── LiveStacks.cpp │ ├── LiveVariables.cpp │ ├── LocalStackSlotAllocation.cpp │ ├── LowLevelType.cpp │ ├── LowerEmuTLS.cpp │ ├── MIRCanonicalizerPass.cpp │ ├── MIRParser │ │ ├── CMakeLists.txt │ │ ├── LLVMBuild.txt │ │ ├── MILexer.cpp │ │ ├── MILexer.h │ │ ├── MIParser.cpp │ │ ├── MIParser.h │ │ └── MIRParser.cpp │ ├── MIRPrinter.cpp │ ├── MIRPrintingPass.cpp │ ├── MachineBasicBlock.cpp │ ├── MachineBlockFrequencyInfo.cpp │ ├── MachineBlockPlacement.cpp │ ├── MachineBranchProbabilityInfo.cpp │ ├── MachineCSE.cpp │ ├── MachineCombiner.cpp │ ├── MachineCopyPropagation.cpp │ ├── MachineDominanceFrontier.cpp │ ├── MachineDominators.cpp │ ├── MachineFrameInfo.cpp │ ├── MachineFunction.cpp │ ├── MachineFunctionPass.cpp │ ├── MachineFunctionPrinterPass.cpp │ ├── MachineInstr.cpp │ ├── MachineInstrBundle.cpp │ ├── MachineLICM.cpp │ ├── MachineLoopInfo.cpp │ ├── MachineModuleInfo.cpp │ ├── MachineModuleInfoImpls.cpp │ ├── MachineOperand.cpp │ ├── MachineOptimizationRemarkEmitter.cpp │ ├── MachineOutliner.cpp │ ├── MachinePassRegistry.cpp │ ├── MachinePipeliner.cpp │ ├── MachinePostDominators.cpp │ ├── MachineRegionInfo.cpp │ ├── MachineRegisterInfo.cpp │ ├── MachineSSAUpdater.cpp │ ├── MachineScheduler.cpp │ ├── MachineSink.cpp │ ├── MachineTraceMetrics.cpp │ ├── MachineVerifier.cpp │ ├── MacroFusion.cpp │ ├── OptimizePHIs.cpp │ ├── PHIElimination.cpp │ ├── PHIEliminationUtils.cpp │ ├── PHIEliminationUtils.h │ ├── ParallelCG.cpp │ ├── PatchableFunction.cpp │ ├── PeepholeOptimizer.cpp │ ├── PostRAHazardRecognizer.cpp │ ├── PostRASchedulerList.cpp │ ├── PreISelIntrinsicLowering.cpp │ ├── ProcessImplicitDefs.cpp │ ├── PrologEpilogInserter.cpp │ ├── PseudoSourceValue.cpp │ ├── README.txt │ ├── RegAllocBase.cpp │ ├── RegAllocBase.h │ ├── RegAllocBasic.cpp │ ├── RegAllocFast.cpp │ ├── RegAllocGreedy.cpp │ ├── RegAllocPBQP.cpp │ ├── RegUsageInfoCollector.cpp │ ├── RegUsageInfoPropagate.cpp │ ├── RegisterClassInfo.cpp │ ├── RegisterCoalescer.cpp │ ├── RegisterCoalescer.h │ ├── RegisterPressure.cpp │ ├── RegisterScavenging.cpp │ ├── RegisterUsageInfo.cpp │ ├── RenameIndependentSubregs.cpp │ ├── ResetMachineFunctionPass.cpp │ ├── SafeStack.cpp │ ├── SafeStackColoring.cpp │ ├── SafeStackColoring.h │ ├── SafeStackLayout.cpp │ ├── SafeStackLayout.h │ ├── ScalarizeMaskedMemIntrin.cpp │ ├── ScheduleDAG.cpp │ ├── ScheduleDAGInstrs.cpp │ ├── ScheduleDAGPrinter.cpp │ ├── ScoreboardHazardRecognizer.cpp │ ├── SelectionDAG │ │ ├── CMakeLists.txt │ │ ├── DAGCombiner.cpp │ │ ├── FastISel.cpp │ │ ├── FunctionLoweringInfo.cpp │ │ ├── InstrEmitter.cpp │ │ ├── InstrEmitter.h │ │ ├── LLVMBuild.txt │ │ ├── LegalizeDAG.cpp │ │ ├── LegalizeFloatTypes.cpp │ │ ├── LegalizeIntegerTypes.cpp │ │ ├── LegalizeTypes.cpp │ │ ├── LegalizeTypes.h │ │ ├── LegalizeTypesGeneric.cpp │ │ ├── LegalizeVectorOps.cpp │ │ ├── LegalizeVectorTypes.cpp │ │ ├── ResourcePriorityQueue.cpp │ │ ├── SDNodeDbgValue.h │ │ ├── ScheduleDAGFast.cpp │ │ ├── ScheduleDAGRRList.cpp │ │ ├── ScheduleDAGSDNodes.cpp │ │ ├── ScheduleDAGSDNodes.h │ │ ├── ScheduleDAGVLIW.cpp │ │ ├── SelectionDAG.cpp │ │ ├── SelectionDAGAddressAnalysis.cpp │ │ ├── SelectionDAGBuilder.cpp │ │ ├── SelectionDAGBuilder.h │ │ ├── SelectionDAGDumper.cpp │ │ ├── SelectionDAGISel.cpp │ │ ├── SelectionDAGPrinter.cpp │ │ ├── SelectionDAGTargetInfo.cpp │ │ ├── StatepointLowering.cpp │ │ ├── StatepointLowering.h │ │ └── TargetLowering.cpp │ ├── ShadowStackGCLowering.cpp │ ├── ShrinkWrap.cpp │ ├── SjLjEHPrepare.cpp │ ├── SlotIndexes.cpp │ ├── SpillPlacement.cpp │ ├── SpillPlacement.h │ ├── Spiller.h │ ├── SplitKit.cpp │ ├── SplitKit.h │ ├── StackColoring.cpp │ ├── StackMapLivenessAnalysis.cpp │ ├── StackMaps.cpp │ ├── StackProtector.cpp │ ├── StackSlotColoring.cpp │ ├── TailDuplication.cpp │ ├── TailDuplicator.cpp │ ├── TargetFrameLoweringImpl.cpp │ ├── TargetInstrInfo.cpp │ ├── TargetLoweringBase.cpp │ ├── TargetLoweringObjectFileImpl.cpp │ ├── TargetOptionsImpl.cpp │ ├── TargetPassConfig.cpp │ ├── TargetRegisterInfo.cpp │ ├── TargetSchedule.cpp │ ├── TargetSubtargetInfo.cpp │ ├── TwoAddressInstructionPass.cpp │ ├── UnreachableBlockElim.cpp │ ├── VirtRegMap.cpp │ ├── WinEHPrepare.cpp │ └── XRayInstrumentation.cpp ├── DebugInfo │ ├── CMakeLists.txt │ ├── CodeView │ │ ├── AppendingTypeTableBuilder.cpp │ │ ├── CMakeLists.txt │ │ ├── CVSymbolVisitor.cpp │ │ ├── CVTypeVisitor.cpp │ │ ├── CodeViewError.cpp │ │ ├── CodeViewRecordIO.cpp │ │ ├── ContinuationRecordBuilder.cpp │ │ ├── DebugChecksumsSubsection.cpp │ │ ├── DebugCrossExSubsection.cpp │ │ ├── DebugCrossImpSubsection.cpp │ │ ├── DebugFrameDataSubsection.cpp │ │ ├── DebugInlineeLinesSubsection.cpp │ │ ├── DebugLinesSubsection.cpp │ │ ├── DebugStringTableSubsection.cpp │ │ ├── DebugSubsection.cpp │ │ ├── DebugSubsectionRecord.cpp │ │ ├── DebugSubsectionVisitor.cpp │ │ ├── DebugSymbolRVASubsection.cpp │ │ ├── DebugSymbolsSubsection.cpp │ │ ├── EnumTables.cpp │ │ ├── Formatters.cpp │ │ ├── GlobalTypeTableBuilder.cpp │ │ ├── LLVMBuild.txt │ │ ├── LazyRandomTypeCollection.cpp │ │ ├── Line.cpp │ │ ├── MergingTypeTableBuilder.cpp │ │ ├── RecordName.cpp │ │ ├── RecordSerialization.cpp │ │ ├── SimpleTypeSerializer.cpp │ │ ├── StringsAndChecksums.cpp │ │ ├── SymbolDumper.cpp │ │ ├── SymbolRecordMapping.cpp │ │ ├── SymbolSerializer.cpp │ │ ├── TypeDumpVisitor.cpp │ │ ├── TypeHashing.cpp │ │ ├── TypeIndex.cpp │ │ ├── TypeIndexDiscovery.cpp │ │ ├── TypeRecordMapping.cpp │ │ ├── TypeStreamMerger.cpp │ │ └── TypeTableCollection.cpp │ ├── DWARF │ │ ├── CMakeLists.txt │ │ ├── DWARFAbbreviationDeclaration.cpp │ │ ├── DWARFAcceleratorTable.cpp │ │ ├── DWARFCompileUnit.cpp │ │ ├── DWARFContext.cpp │ │ ├── DWARFDataExtractor.cpp │ │ ├── DWARFDebugAbbrev.cpp │ │ ├── DWARFDebugArangeSet.cpp │ │ ├── DWARFDebugAranges.cpp │ │ ├── DWARFDebugFrame.cpp │ │ ├── DWARFDebugInfoEntry.cpp │ │ ├── DWARFDebugLine.cpp │ │ ├── DWARFDebugLoc.cpp │ │ ├── DWARFDebugMacro.cpp │ │ ├── DWARFDebugPubTable.cpp │ │ ├── DWARFDebugRangeList.cpp │ │ ├── DWARFDie.cpp │ │ ├── DWARFExpression.cpp │ │ ├── DWARFFormValue.cpp │ │ ├── DWARFGdbIndex.cpp │ │ ├── DWARFTypeUnit.cpp │ │ ├── DWARFUnit.cpp │ │ ├── DWARFUnitIndex.cpp │ │ ├── DWARFVerifier.cpp │ │ ├── LLVMBuild.txt │ │ ├── SyntaxHighlighting.cpp │ │ └── SyntaxHighlighting.h │ ├── LLVMBuild.txt │ ├── MSF │ │ ├── CMakeLists.txt │ │ ├── LLVMBuild.txt │ │ ├── MSFBuilder.cpp │ │ ├── MSFCommon.cpp │ │ ├── MSFError.cpp │ │ └── MappedBlockStream.cpp │ ├── PDB │ │ ├── CMakeLists.txt │ │ ├── DIA │ │ │ ├── DIADataStream.cpp │ │ │ ├── DIAEnumDebugStreams.cpp │ │ │ ├── DIAEnumLineNumbers.cpp │ │ │ ├── DIAEnumSourceFiles.cpp │ │ │ ├── DIAEnumSymbols.cpp │ │ │ ├── DIAEnumTables.cpp │ │ │ ├── DIAError.cpp │ │ │ ├── DIALineNumber.cpp │ │ │ ├── DIARawSymbol.cpp │ │ │ ├── DIASession.cpp │ │ │ ├── DIASourceFile.cpp │ │ │ └── DIATable.cpp │ │ ├── GenericError.cpp │ │ ├── IPDBSourceFile.cpp │ │ ├── LLVMBuild.txt │ │ ├── Native │ │ │ ├── DbiModuleDescriptor.cpp │ │ │ ├── DbiModuleDescriptorBuilder.cpp │ │ │ ├── DbiModuleList.cpp │ │ │ ├── DbiStream.cpp │ │ │ ├── DbiStreamBuilder.cpp │ │ │ ├── EnumTables.cpp │ │ │ ├── GSIStreamBuilder.cpp │ │ │ ├── GlobalsStream.cpp │ │ │ ├── Hash.cpp │ │ │ ├── HashTable.cpp │ │ │ ├── InfoStream.cpp │ │ │ ├── InfoStreamBuilder.cpp │ │ │ ├── ModuleDebugStream.cpp │ │ │ ├── NamedStreamMap.cpp │ │ │ ├── NativeBuiltinSymbol.cpp │ │ │ ├── NativeCompilandSymbol.cpp │ │ │ ├── NativeEnumModules.cpp │ │ │ ├── NativeEnumSymbol.cpp │ │ │ ├── NativeEnumTypes.cpp │ │ │ ├── NativeExeSymbol.cpp │ │ │ ├── NativeRawSymbol.cpp │ │ │ ├── NativeSession.cpp │ │ │ ├── PDBFile.cpp │ │ │ ├── PDBFileBuilder.cpp │ │ │ ├── PDBStringTable.cpp │ │ │ ├── PDBStringTableBuilder.cpp │ │ │ ├── PublicsStream.cpp │ │ │ ├── RawError.cpp │ │ │ ├── SymbolStream.cpp │ │ │ ├── TpiHashing.cpp │ │ │ ├── TpiStream.cpp │ │ │ └── TpiStreamBuilder.cpp │ │ ├── PDB.cpp │ │ ├── PDBContext.cpp │ │ ├── PDBExtras.cpp │ │ ├── PDBInterfaceAnchors.cpp │ │ ├── PDBSymDumper.cpp │ │ ├── PDBSymbol.cpp │ │ ├── PDBSymbolAnnotation.cpp │ │ ├── PDBSymbolBlock.cpp │ │ ├── PDBSymbolCompiland.cpp │ │ ├── PDBSymbolCompilandDetails.cpp │ │ ├── PDBSymbolCompilandEnv.cpp │ │ ├── PDBSymbolCustom.cpp │ │ ├── PDBSymbolData.cpp │ │ ├── PDBSymbolExe.cpp │ │ ├── PDBSymbolFunc.cpp │ │ ├── PDBSymbolFuncDebugEnd.cpp │ │ ├── PDBSymbolFuncDebugStart.cpp │ │ ├── PDBSymbolLabel.cpp │ │ ├── PDBSymbolPublicSymbol.cpp │ │ ├── PDBSymbolThunk.cpp │ │ ├── PDBSymbolTypeArray.cpp │ │ ├── PDBSymbolTypeBaseClass.cpp │ │ ├── PDBSymbolTypeBuiltin.cpp │ │ ├── PDBSymbolTypeCustom.cpp │ │ ├── PDBSymbolTypeDimension.cpp │ │ ├── PDBSymbolTypeEnum.cpp │ │ ├── PDBSymbolTypeFriend.cpp │ │ ├── PDBSymbolTypeFunctionArg.cpp │ │ ├── PDBSymbolTypeFunctionSig.cpp │ │ ├── PDBSymbolTypeManaged.cpp │ │ ├── PDBSymbolTypePointer.cpp │ │ ├── PDBSymbolTypeTypedef.cpp │ │ ├── PDBSymbolTypeUDT.cpp │ │ ├── PDBSymbolTypeVTable.cpp │ │ ├── PDBSymbolTypeVTableShape.cpp │ │ ├── PDBSymbolUnknown.cpp │ │ ├── PDBSymbolUsingNamespace.cpp │ │ └── UDTLayout.cpp │ └── Symbolize │ │ ├── CMakeLists.txt │ │ ├── DIPrinter.cpp │ │ ├── LLVMBuild.txt │ │ ├── SymbolizableObjectFile.cpp │ │ ├── SymbolizableObjectFile.h │ │ └── Symbolize.cpp ├── Demangle │ ├── CMakeLists.txt │ ├── ItaniumDemangle.cpp │ └── LLVMBuild.txt ├── ExecutionEngine │ ├── CMakeLists.txt │ ├── ExecutionEngine.cpp │ ├── ExecutionEngineBindings.cpp │ ├── GDBRegistrationListener.cpp │ ├── IntelJITEvents │ │ ├── CMakeLists.txt │ │ ├── IntelJITEventListener.cpp │ │ ├── IntelJITEventsWrapper.h │ │ ├── LLVMBuild.txt │ │ ├── ittnotify_config.h │ │ ├── ittnotify_types.h │ │ ├── jitprofiling.c │ │ └── jitprofiling.h │ ├── Interpreter │ │ ├── CMakeLists.txt │ │ ├── Execution.cpp │ │ ├── ExternalFunctions.cpp │ │ ├── Interpreter.cpp │ │ ├── Interpreter.h │ │ └── LLVMBuild.txt │ ├── LLVMBuild.txt │ ├── MCJIT │ │ ├── CMakeLists.txt │ │ ├── LLVMBuild.txt │ │ ├── MCJIT.cpp │ │ ├── MCJIT.h │ │ └── ObjectBuffer.h │ ├── OProfileJIT │ │ ├── CMakeLists.txt │ │ ├── LLVMBuild.txt │ │ ├── OProfileJITEventListener.cpp │ │ └── OProfileWrapper.cpp │ ├── Orc │ │ ├── CMakeLists.txt │ │ ├── ExecutionUtils.cpp │ │ ├── IndirectionUtils.cpp │ │ ├── LLVMBuild.txt │ │ ├── NullResolver.cpp │ │ ├── OrcABISupport.cpp │ │ ├── OrcCBindings.cpp │ │ ├── OrcCBindingsStack.h │ │ ├── OrcError.cpp │ │ ├── OrcMCJITReplacement.cpp │ │ ├── OrcMCJITReplacement.h │ │ └── RPCUtils.cpp │ ├── RuntimeDyld │ │ ├── CMakeLists.txt │ │ ├── JITSymbol.cpp │ │ ├── LLVMBuild.txt │ │ ├── RTDyldMemoryManager.cpp │ │ ├── RuntimeDyld.cpp │ │ ├── RuntimeDyldCOFF.cpp │ │ ├── RuntimeDyldCOFF.h │ │ ├── RuntimeDyldChecker.cpp │ │ ├── RuntimeDyldCheckerImpl.h │ │ ├── RuntimeDyldELF.cpp │ │ ├── RuntimeDyldELF.h │ │ ├── RuntimeDyldImpl.h │ │ ├── RuntimeDyldMachO.cpp │ │ ├── RuntimeDyldMachO.h │ │ └── Targets │ │ │ ├── RuntimeDyldCOFFI386.h │ │ │ ├── RuntimeDyldCOFFThumb.h │ │ │ ├── RuntimeDyldCOFFX86_64.h │ │ │ ├── RuntimeDyldELFMips.cpp │ │ │ ├── RuntimeDyldELFMips.h │ │ │ ├── RuntimeDyldMachOAArch64.h │ │ │ ├── RuntimeDyldMachOARM.h │ │ │ ├── RuntimeDyldMachOI386.h │ │ │ └── RuntimeDyldMachOX86_64.h │ ├── SectionMemoryManager.cpp │ └── TargetSelect.cpp ├── FuzzMutate │ ├── CMakeLists.txt │ ├── FuzzerCLI.cpp │ ├── IRMutator.cpp │ ├── LLVMBuild.txt │ ├── OpDescriptor.cpp │ ├── Operations.cpp │ └── RandomIRBuilder.cpp ├── Fuzzer │ └── README.txt ├── IR │ ├── AsmWriter.cpp │ ├── AttributeImpl.h │ ├── Attributes.cpp │ ├── AttributesCompatFunc.td │ ├── AutoUpgrade.cpp │ ├── BasicBlock.cpp │ ├── CMakeLists.txt │ ├── Comdat.cpp │ ├── ConstantFold.cpp │ ├── ConstantFold.h │ ├── ConstantRange.cpp │ ├── Constants.cpp │ ├── ConstantsContext.h │ ├── Core.cpp │ ├── DIBuilder.cpp │ ├── DataLayout.cpp │ ├── DebugInfo.cpp │ ├── DebugInfoMetadata.cpp │ ├── DebugLoc.cpp │ ├── DiagnosticHandler.cpp │ ├── DiagnosticInfo.cpp │ ├── DiagnosticPrinter.cpp │ ├── Dominators.cpp │ ├── Function.cpp │ ├── GVMaterializer.cpp │ ├── Globals.cpp │ ├── IRBuilder.cpp │ ├── IRPrintingPasses.cpp │ ├── InlineAsm.cpp │ ├── Instruction.cpp │ ├── Instructions.cpp │ ├── IntrinsicInst.cpp │ ├── LLVMBuild.txt │ ├── LLVMContext.cpp │ ├── LLVMContextImpl.cpp │ ├── LLVMContextImpl.h │ ├── LegacyPassManager.cpp │ ├── MDBuilder.cpp │ ├── Mangler.cpp │ ├── Metadata.cpp │ ├── MetadataImpl.h │ ├── Module.cpp │ ├── ModuleSummaryIndex.cpp │ ├── Operator.cpp │ ├── OptBisect.cpp │ ├── Pass.cpp │ ├── PassManager.cpp │ ├── PassRegistry.cpp │ ├── ProfileSummary.cpp │ ├── SafepointIRVerifier.cpp │ ├── Statepoint.cpp │ ├── SymbolTableListTraitsImpl.h │ ├── Type.cpp │ ├── TypeFinder.cpp │ ├── Use.cpp │ ├── User.cpp │ ├── Value.cpp │ ├── ValueSymbolTable.cpp │ ├── ValueTypes.cpp │ └── Verifier.cpp ├── IRReader │ ├── CMakeLists.txt │ ├── IRReader.cpp │ └── LLVMBuild.txt ├── LLVMBuild.txt ├── LTO │ ├── CMakeLists.txt │ ├── Caching.cpp │ ├── LLVMBuild.txt │ ├── LTO.cpp │ ├── LTOBackend.cpp │ ├── LTOCodeGenerator.cpp │ ├── LTOModule.cpp │ ├── ThinLTOCodeGenerator.cpp │ └── UpdateCompilerUsed.cpp ├── LineEditor │ ├── CMakeLists.txt │ ├── LLVMBuild.txt │ └── LineEditor.cpp ├── Linker │ ├── CMakeLists.txt │ ├── IRMover.cpp │ ├── LLVMBuild.txt │ ├── LinkDiagnosticInfo.h │ └── LinkModules.cpp ├── MC │ ├── CMakeLists.txt │ ├── ConstantPools.cpp │ ├── ELFObjectWriter.cpp │ ├── LLVMBuild.txt │ ├── MCAsmBackend.cpp │ ├── MCAsmInfo.cpp │ ├── MCAsmInfoCOFF.cpp │ ├── MCAsmInfoDarwin.cpp │ ├── MCAsmInfoELF.cpp │ ├── MCAsmInfoWasm.cpp │ ├── MCAsmStreamer.cpp │ ├── MCAssembler.cpp │ ├── MCCodeEmitter.cpp │ ├── MCCodePadder.cpp │ ├── MCCodeView.cpp │ ├── MCContext.cpp │ ├── MCDisassembler │ │ ├── CMakeLists.txt │ │ ├── Disassembler.cpp │ │ ├── Disassembler.h │ │ ├── LLVMBuild.txt │ │ ├── MCDisassembler.cpp │ │ ├── MCExternalSymbolizer.cpp │ │ ├── MCRelocationInfo.cpp │ │ └── MCSymbolizer.cpp │ ├── MCDwarf.cpp │ ├── MCELFObjectTargetWriter.cpp │ ├── MCELFStreamer.cpp │ ├── MCExpr.cpp │ ├── MCFragment.cpp │ ├── MCInst.cpp │ ├── MCInstPrinter.cpp │ ├── MCInstrAnalysis.cpp │ ├── MCInstrDesc.cpp │ ├── MCLabel.cpp │ ├── MCLinkerOptimizationHint.cpp │ ├── MCMachOStreamer.cpp │ ├── MCMachObjectTargetWriter.cpp │ ├── MCNullStreamer.cpp │ ├── MCObjectFileInfo.cpp │ ├── MCObjectStreamer.cpp │ ├── MCObjectWriter.cpp │ ├── MCParser │ │ ├── AsmLexer.cpp │ │ ├── AsmParser.cpp │ │ ├── CMakeLists.txt │ │ ├── COFFAsmParser.cpp │ │ ├── DarwinAsmParser.cpp │ │ ├── ELFAsmParser.cpp │ │ ├── LLVMBuild.txt │ │ ├── MCAsmLexer.cpp │ │ ├── MCAsmParser.cpp │ │ ├── MCAsmParserExtension.cpp │ │ └── MCTargetAsmParser.cpp │ ├── MCRegisterInfo.cpp │ ├── MCSchedule.cpp │ ├── MCSection.cpp │ ├── MCSectionCOFF.cpp │ ├── MCSectionELF.cpp │ ├── MCSectionMachO.cpp │ ├── MCSectionWasm.cpp │ ├── MCStreamer.cpp │ ├── MCSubtargetInfo.cpp │ ├── MCSymbol.cpp │ ├── MCSymbolELF.cpp │ ├── MCTargetOptions.cpp │ ├── MCValue.cpp │ ├── MCWasmObjectTargetWriter.cpp │ ├── MCWasmStreamer.cpp │ ├── MCWin64EH.cpp │ ├── MCWinCOFFStreamer.cpp │ ├── MCWinEH.cpp │ ├── MachObjectWriter.cpp │ ├── StringTableBuilder.cpp │ ├── SubtargetFeature.cpp │ ├── WasmObjectWriter.cpp │ └── WinCOFFObjectWriter.cpp ├── Object │ ├── Archive.cpp │ ├── ArchiveWriter.cpp │ ├── Binary.cpp │ ├── CMakeLists.txt │ ├── COFFImportFile.cpp │ ├── COFFModuleDefinition.cpp │ ├── COFFObjectFile.cpp │ ├── Decompressor.cpp │ ├── ELF.cpp │ ├── ELFObjectFile.cpp │ ├── Error.cpp │ ├── IRObjectFile.cpp │ ├── IRSymtab.cpp │ ├── LLVMBuild.txt │ ├── MachOObjectFile.cpp │ ├── MachOUniversal.cpp │ ├── ModuleSymbolTable.cpp │ ├── Object.cpp │ ├── ObjectFile.cpp │ ├── RecordStreamer.cpp │ ├── RecordStreamer.h │ ├── SymbolSize.cpp │ ├── SymbolicFile.cpp │ ├── WasmObjectFile.cpp │ └── WindowsResource.cpp ├── ObjectYAML │ ├── CMakeLists.txt │ ├── COFFYAML.cpp │ ├── CodeViewYAMLDebugSections.cpp │ ├── CodeViewYAMLSymbols.cpp │ ├── CodeViewYAMLTypeHashing.cpp │ ├── CodeViewYAMLTypes.cpp │ ├── DWARFEmitter.cpp │ ├── DWARFVisitor.cpp │ ├── DWARFVisitor.h │ ├── DWARFYAML.cpp │ ├── ELFYAML.cpp │ ├── LLVMBuild.txt │ ├── MachOYAML.cpp │ ├── ObjectYAML.cpp │ ├── WasmYAML.cpp │ └── YAML.cpp ├── Option │ ├── Arg.cpp │ ├── ArgList.cpp │ ├── CMakeLists.txt │ ├── LLVMBuild.txt │ ├── OptTable.cpp │ └── Option.cpp ├── Passes │ ├── CMakeLists.txt │ ├── LLVMBuild.txt │ ├── PassBuilder.cpp │ └── PassRegistry.def ├── ProfileData │ ├── CMakeLists.txt │ ├── Coverage │ │ ├── CMakeLists.txt │ │ ├── CoverageMapping.cpp │ │ ├── CoverageMappingReader.cpp │ │ ├── CoverageMappingWriter.cpp │ │ └── LLVMBuild.txt │ ├── GCOV.cpp │ ├── InstrProf.cpp │ ├── InstrProfReader.cpp │ ├── InstrProfWriter.cpp │ ├── LLVMBuild.txt │ ├── ProfileSummaryBuilder.cpp │ ├── SampleProf.cpp │ ├── SampleProfReader.cpp │ └── SampleProfWriter.cpp ├── Support │ ├── AMDGPUMetadata.cpp │ ├── APFloat.cpp │ ├── APInt.cpp │ ├── APSInt.cpp │ ├── ARMAttributeParser.cpp │ ├── ARMBuildAttrs.cpp │ ├── ARMWinEH.cpp │ ├── Allocator.cpp │ ├── Atomic.cpp │ ├── BinaryStreamError.cpp │ ├── BinaryStreamReader.cpp │ ├── BinaryStreamRef.cpp │ ├── BinaryStreamWriter.cpp │ ├── BlockFrequency.cpp │ ├── BranchProbability.cpp │ ├── CMakeLists.txt │ ├── COM.cpp │ ├── COPYRIGHT.regex │ ├── CachePruning.cpp │ ├── Chrono.cpp │ ├── CodeGenCoverage.cpp │ ├── CommandLine.cpp │ ├── Compression.cpp │ ├── ConvertUTF.cpp │ ├── ConvertUTFWrapper.cpp │ ├── CrashRecoveryContext.cpp │ ├── DAGDeltaAlgorithm.cpp │ ├── DataExtractor.cpp │ ├── Debug.cpp │ ├── DebugCounter.cpp │ ├── DeltaAlgorithm.cpp │ ├── DynamicLibrary.cpp │ ├── Errno.cpp │ ├── Error.cpp │ ├── ErrorHandling.cpp │ ├── FileOutputBuffer.cpp │ ├── FileUtilities.cpp │ ├── FoldingSet.cpp │ ├── FormatVariadic.cpp │ ├── FormattedStream.cpp │ ├── GlobPattern.cpp │ ├── GraphWriter.cpp │ ├── Hashing.cpp │ ├── Host.cpp │ ├── IntEqClasses.cpp │ ├── IntervalMap.cpp │ ├── JamCRC.cpp │ ├── KnownBits.cpp │ ├── LEB128.cpp │ ├── LLVMBuild.txt │ ├── LineIterator.cpp │ ├── Locale.cpp │ ├── LockFileManager.cpp │ ├── LowLevelType.cpp │ ├── MD5.cpp │ ├── ManagedStatic.cpp │ ├── MathExtras.cpp │ ├── Memory.cpp │ ├── MemoryBuffer.cpp │ ├── Mutex.cpp │ ├── NativeFormatting.cpp │ ├── Options.cpp │ ├── Parallel.cpp │ ├── Path.cpp │ ├── PluginLoader.cpp │ ├── PrettyStackTrace.cpp │ ├── Process.cpp │ ├── Program.cpp │ ├── README.txt.system │ ├── RWMutex.cpp │ ├── RandomNumberGenerator.cpp │ ├── Regex.cpp │ ├── SHA1.cpp │ ├── ScaledNumber.cpp │ ├── ScopedPrinter.cpp │ ├── Signals.cpp │ ├── SmallPtrSet.cpp │ ├── SmallVector.cpp │ ├── SourceMgr.cpp │ ├── SpecialCaseList.cpp │ ├── Statistic.cpp │ ├── StringExtras.cpp │ ├── StringMap.cpp │ ├── StringPool.cpp │ ├── StringRef.cpp │ ├── StringSaver.cpp │ ├── SystemUtils.cpp │ ├── TarWriter.cpp │ ├── TargetParser.cpp │ ├── TargetRegistry.cpp │ ├── ThreadLocal.cpp │ ├── ThreadPool.cpp │ ├── Threading.cpp │ ├── Timer.cpp │ ├── ToolOutputFile.cpp │ ├── TrigramIndex.cpp │ ├── Triple.cpp │ ├── Twine.cpp │ ├── Unicode.cpp │ ├── Unix │ │ ├── COM.inc │ │ ├── DynamicLibrary.inc │ │ ├── Host.inc │ │ ├── Memory.inc │ │ ├── Mutex.inc │ │ ├── Path.inc │ │ ├── Process.inc │ │ ├── Program.inc │ │ ├── README.txt │ │ ├── RWMutex.inc │ │ ├── Signals.inc │ │ ├── ThreadLocal.inc │ │ ├── Threading.inc │ │ ├── Unix.h │ │ └── Watchdog.inc │ ├── Valgrind.cpp │ ├── Watchdog.cpp │ ├── Windows │ │ ├── COM.inc │ │ ├── DynamicLibrary.inc │ │ ├── Host.inc │ │ ├── Memory.inc │ │ ├── Mutex.inc │ │ ├── Path.inc │ │ ├── Process.inc │ │ ├── Program.inc │ │ ├── RWMutex.inc │ │ ├── Signals.inc │ │ ├── ThreadLocal.inc │ │ ├── Threading.inc │ │ ├── Watchdog.inc │ │ ├── WindowsSupport.h │ │ └── explicit_symbols.inc │ ├── YAMLParser.cpp │ ├── YAMLTraits.cpp │ ├── circular_raw_ostream.cpp │ ├── raw_os_ostream.cpp │ ├── raw_ostream.cpp │ ├── regcomp.c │ ├── regengine.inc │ ├── regerror.c │ ├── regex2.h │ ├── regex_impl.h │ ├── regexec.c │ ├── regfree.c │ ├── regstrlcpy.c │ ├── regutils.h │ └── xxhash.cpp ├── TableGen │ ├── CMakeLists.txt │ ├── Error.cpp │ ├── LLVMBuild.txt │ ├── Main.cpp │ ├── Record.cpp │ ├── SetTheory.cpp │ ├── StringMatcher.cpp │ ├── TGLexer.cpp │ ├── TGLexer.h │ ├── TGParser.cpp │ ├── TGParser.h │ └── TableGenBackend.cpp ├── Target │ ├── AArch64 │ │ ├── AArch64.h │ │ ├── AArch64.td │ │ ├── AArch64A53Fix835769.cpp │ │ ├── AArch64A57FPLoadBalancing.cpp │ │ ├── AArch64AdvSIMDScalarPass.cpp │ │ ├── AArch64AsmPrinter.cpp │ │ ├── AArch64CallLowering.cpp │ │ ├── AArch64CallLowering.h │ │ ├── AArch64CallingConvention.h │ │ ├── AArch64CallingConvention.td │ │ ├── AArch64CleanupLocalDynamicTLSPass.cpp │ │ ├── AArch64CollectLOH.cpp │ │ ├── AArch64CondBrTuning.cpp │ │ ├── AArch64ConditionOptimizer.cpp │ │ ├── AArch64ConditionalCompares.cpp │ │ ├── AArch64DeadRegisterDefinitionsPass.cpp │ │ ├── AArch64ExpandPseudoInsts.cpp │ │ ├── AArch64FalkorHWPFFix.cpp │ │ ├── AArch64FastISel.cpp │ │ ├── AArch64FrameLowering.cpp │ │ ├── AArch64FrameLowering.h │ │ ├── AArch64GenRegisterBankInfo.def │ │ ├── AArch64ISelDAGToDAG.cpp │ │ ├── AArch64ISelLowering.cpp │ │ ├── AArch64ISelLowering.h │ │ ├── AArch64InstrAtomics.td │ │ ├── AArch64InstrFormats.td │ │ ├── AArch64InstrInfo.cpp │ │ ├── AArch64InstrInfo.h │ │ ├── AArch64InstrInfo.td │ │ ├── AArch64InstructionSelector.cpp │ │ ├── AArch64LegalizerInfo.cpp │ │ ├── AArch64LegalizerInfo.h │ │ ├── AArch64LoadStoreOptimizer.cpp │ │ ├── AArch64MCInstLower.cpp │ │ ├── AArch64MCInstLower.h │ │ ├── AArch64MachineFunctionInfo.h │ │ ├── AArch64MacroFusion.cpp │ │ ├── AArch64MacroFusion.h │ │ ├── AArch64PBQPRegAlloc.cpp │ │ ├── AArch64PBQPRegAlloc.h │ │ ├── AArch64PerfectShuffle.h │ │ ├── AArch64PromoteConstant.cpp │ │ ├── AArch64RedundantCopyElimination.cpp │ │ ├── AArch64RegisterBankInfo.cpp │ │ ├── AArch64RegisterBankInfo.h │ │ ├── AArch64RegisterBanks.td │ │ ├── AArch64RegisterInfo.cpp │ │ ├── AArch64RegisterInfo.h │ │ ├── AArch64RegisterInfo.td │ │ ├── AArch64SIMDInstrOpt.cpp │ │ ├── AArch64SVEInstrInfo.td │ │ ├── AArch64SchedA53.td │ │ ├── AArch64SchedA57.td │ │ ├── AArch64SchedA57WriteRes.td │ │ ├── AArch64SchedCyclone.td │ │ ├── AArch64SchedFalkor.td │ │ ├── AArch64SchedFalkorDetails.td │ │ ├── AArch64SchedKryo.td │ │ ├── AArch64SchedKryoDetails.td │ │ ├── AArch64SchedM1.td │ │ ├── AArch64SchedThunderX.td │ │ ├── AArch64SchedThunderX2T99.td │ │ ├── AArch64Schedule.td │ │ ├── AArch64SelectionDAGInfo.cpp │ │ ├── AArch64SelectionDAGInfo.h │ │ ├── AArch64StorePairSuppress.cpp │ │ ├── AArch64Subtarget.cpp │ │ ├── AArch64Subtarget.h │ │ ├── AArch64SystemOperands.td │ │ ├── AArch64TargetMachine.cpp │ │ ├── AArch64TargetMachine.h │ │ ├── AArch64TargetObjectFile.cpp │ │ ├── AArch64TargetObjectFile.h │ │ ├── AArch64TargetTransformInfo.cpp │ │ ├── AArch64TargetTransformInfo.h │ │ ├── AsmParser │ │ │ ├── AArch64AsmParser.cpp │ │ │ ├── CMakeLists.txt │ │ │ └── LLVMBuild.txt │ │ ├── CMakeLists.txt │ │ ├── Disassembler │ │ │ ├── AArch64Disassembler.cpp │ │ │ ├── AArch64Disassembler.h │ │ │ ├── AArch64ExternalSymbolizer.cpp │ │ │ ├── AArch64ExternalSymbolizer.h │ │ │ ├── CMakeLists.txt │ │ │ └── LLVMBuild.txt │ │ ├── InstPrinter │ │ │ ├── AArch64InstPrinter.cpp │ │ │ ├── AArch64InstPrinter.h │ │ │ ├── CMakeLists.txt │ │ │ └── LLVMBuild.txt │ │ ├── LLVMBuild.txt │ │ ├── MCTargetDesc │ │ │ ├── AArch64AddressingModes.h │ │ │ ├── AArch64AsmBackend.cpp │ │ │ ├── AArch64ELFObjectWriter.cpp │ │ │ ├── AArch64ELFStreamer.cpp │ │ │ ├── AArch64ELFStreamer.h │ │ │ ├── AArch64FixupKinds.h │ │ │ ├── AArch64MCAsmInfo.cpp │ │ │ ├── AArch64MCAsmInfo.h │ │ │ ├── AArch64MCCodeEmitter.cpp │ │ │ ├── AArch64MCExpr.cpp │ │ │ ├── AArch64MCExpr.h │ │ │ ├── AArch64MCTargetDesc.cpp │ │ │ ├── AArch64MCTargetDesc.h │ │ │ ├── AArch64MachObjectWriter.cpp │ │ │ ├── AArch64TargetStreamer.cpp │ │ │ ├── AArch64TargetStreamer.h │ │ │ ├── AArch64WinCOFFObjectWriter.cpp │ │ │ ├── AArch64WinCOFFStreamer.cpp │ │ │ ├── AArch64WinCOFFStreamer.h │ │ │ ├── CMakeLists.txt │ │ │ └── LLVMBuild.txt │ │ ├── SVEInstrFormats.td │ │ ├── TargetInfo │ │ │ ├── AArch64TargetInfo.cpp │ │ │ ├── CMakeLists.txt │ │ │ └── LLVMBuild.txt │ │ └── Utils │ │ │ ├── AArch64BaseInfo.cpp │ │ │ ├── AArch64BaseInfo.h │ │ │ ├── CMakeLists.txt │ │ │ └── LLVMBuild.txt │ ├── AMDGPU │ │ ├── AMDGPU.h │ │ ├── AMDGPU.td │ │ ├── AMDGPUAliasAnalysis.cpp │ │ ├── AMDGPUAliasAnalysis.h │ │ ├── AMDGPUAlwaysInlinePass.cpp │ │ ├── AMDGPUAnnotateKernelFeatures.cpp │ │ ├── AMDGPUAnnotateUniformValues.cpp │ │ ├── AMDGPUArgumentUsageInfo.cpp │ │ ├── AMDGPUArgumentUsageInfo.h │ │ ├── AMDGPUAsmPrinter.cpp │ │ ├── AMDGPUAsmPrinter.h │ │ ├── AMDGPUCallLowering.cpp │ │ ├── AMDGPUCallLowering.h │ │ ├── AMDGPUCallingConv.td │ │ ├── AMDGPUCodeGenPrepare.cpp │ │ ├── AMDGPUFrameLowering.cpp │ │ ├── AMDGPUFrameLowering.h │ │ ├── AMDGPUGenRegisterBankInfo.def │ │ ├── AMDGPUISelDAGToDAG.cpp │ │ ├── AMDGPUISelLowering.cpp │ │ ├── AMDGPUISelLowering.h │ │ ├── AMDGPUInline.cpp │ │ ├── AMDGPUInstrInfo.cpp │ │ ├── AMDGPUInstrInfo.h │ │ ├── AMDGPUInstrInfo.td │ │ ├── AMDGPUInstructionSelector.cpp │ │ ├── AMDGPUInstructionSelector.h │ │ ├── AMDGPUInstructions.td │ │ ├── AMDGPUIntrinsicInfo.cpp │ │ ├── AMDGPUIntrinsicInfo.h │ │ ├── AMDGPUIntrinsics.td │ │ ├── AMDGPULegalizerInfo.cpp │ │ ├── AMDGPULegalizerInfo.h │ │ ├── AMDGPULibCalls.cpp │ │ ├── AMDGPULibFunc.cpp │ │ ├── AMDGPULibFunc.h │ │ ├── AMDGPULowerIntrinsics.cpp │ │ ├── AMDGPUMCInstLower.cpp │ │ ├── AMDGPUMCInstLower.h │ │ ├── AMDGPUMachineCFGStructurizer.cpp │ │ ├── AMDGPUMachineFunction.cpp │ │ ├── AMDGPUMachineFunction.h │ │ ├── AMDGPUMachineModuleInfo.cpp │ │ ├── AMDGPUMachineModuleInfo.h │ │ ├── AMDGPUMacroFusion.cpp │ │ ├── AMDGPUMacroFusion.h │ │ ├── AMDGPUOpenCLEnqueuedBlockLowering.cpp │ │ ├── AMDGPUOpenCLImageTypeLoweringPass.cpp │ │ ├── AMDGPUPTNote.h │ │ ├── AMDGPUPromoteAlloca.cpp │ │ ├── AMDGPURegAsmNames.inc.cpp │ │ ├── AMDGPURegisterBankInfo.cpp │ │ ├── AMDGPURegisterBankInfo.h │ │ ├── AMDGPURegisterBanks.td │ │ ├── AMDGPURegisterInfo.cpp │ │ ├── AMDGPURegisterInfo.h │ │ ├── AMDGPURegisterInfo.td │ │ ├── AMDGPURewriteOutArguments.cpp │ │ ├── AMDGPUSubtarget.cpp │ │ ├── AMDGPUSubtarget.h │ │ ├── AMDGPUTargetMachine.cpp │ │ ├── AMDGPUTargetMachine.h │ │ ├── AMDGPUTargetObjectFile.cpp │ │ ├── AMDGPUTargetObjectFile.h │ │ ├── AMDGPUTargetTransformInfo.cpp │ │ ├── AMDGPUTargetTransformInfo.h │ │ ├── AMDGPUUnifyDivergentExitNodes.cpp │ │ ├── AMDGPUUnifyMetadata.cpp │ │ ├── AMDILCFGStructurizer.cpp │ │ ├── AMDKernelCodeT.h │ │ ├── AsmParser │ │ │ ├── AMDGPUAsmParser.cpp │ │ │ ├── CMakeLists.txt │ │ │ └── LLVMBuild.txt │ │ ├── BUFInstructions.td │ │ ├── CMakeLists.txt │ │ ├── CaymanInstructions.td │ │ ├── DSInstructions.td │ │ ├── Disassembler │ │ │ ├── AMDGPUDisassembler.cpp │ │ │ ├── AMDGPUDisassembler.h │ │ │ ├── CMakeLists.txt │ │ │ └── LLVMBuild.txt │ │ ├── EvergreenInstructions.td │ │ ├── FLATInstructions.td │ │ ├── GCNHazardRecognizer.cpp │ │ ├── GCNHazardRecognizer.h │ │ ├── GCNILPSched.cpp │ │ ├── GCNIterativeScheduler.cpp │ │ ├── GCNIterativeScheduler.h │ │ ├── GCNMinRegStrategy.cpp │ │ ├── GCNProcessors.td │ │ ├── GCNRegPressure.cpp │ │ ├── GCNRegPressure.h │ │ ├── GCNSchedStrategy.cpp │ │ ├── GCNSchedStrategy.h │ │ ├── InstPrinter │ │ │ ├── AMDGPUInstPrinter.cpp │ │ │ ├── AMDGPUInstPrinter.h │ │ │ ├── CMakeLists.txt │ │ │ └── LLVMBuild.txt │ │ ├── LLVMBuild.txt │ │ ├── MCTargetDesc │ │ │ ├── AMDGPUAsmBackend.cpp │ │ │ ├── AMDGPUELFObjectWriter.cpp │ │ │ ├── AMDGPUELFStreamer.cpp │ │ │ ├── AMDGPUELFStreamer.h │ │ │ ├── AMDGPUFixupKinds.h │ │ │ ├── AMDGPUHSAMetadataStreamer.cpp │ │ │ ├── AMDGPUHSAMetadataStreamer.h │ │ │ ├── AMDGPUMCAsmInfo.cpp │ │ │ ├── AMDGPUMCAsmInfo.h │ │ │ ├── AMDGPUMCCodeEmitter.cpp │ │ │ ├── AMDGPUMCCodeEmitter.h │ │ │ ├── AMDGPUMCTargetDesc.cpp │ │ │ ├── AMDGPUMCTargetDesc.h │ │ │ ├── AMDGPUTargetStreamer.cpp │ │ │ ├── AMDGPUTargetStreamer.h │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── R600MCCodeEmitter.cpp │ │ │ └── SIMCCodeEmitter.cpp │ │ ├── MIMGInstructions.td │ │ ├── Processors.td │ │ ├── R600ClauseMergePass.cpp │ │ ├── R600ControlFlowFinalizer.cpp │ │ ├── R600Defines.h │ │ ├── R600EmitClauseMarkers.cpp │ │ ├── R600ExpandSpecialInstrs.cpp │ │ ├── R600FrameLowering.cpp │ │ ├── R600FrameLowering.h │ │ ├── R600ISelLowering.cpp │ │ ├── R600ISelLowering.h │ │ ├── R600InstrFormats.td │ │ ├── R600InstrInfo.cpp │ │ ├── R600InstrInfo.h │ │ ├── R600Instructions.td │ │ ├── R600Intrinsics.td │ │ ├── R600MachineFunctionInfo.cpp │ │ ├── R600MachineFunctionInfo.h │ │ ├── R600MachineScheduler.cpp │ │ ├── R600MachineScheduler.h │ │ ├── R600OptimizeVectorRegisters.cpp │ │ ├── R600Packetizer.cpp │ │ ├── R600Processors.td │ │ ├── R600RegisterInfo.cpp │ │ ├── R600RegisterInfo.h │ │ ├── R600RegisterInfo.td │ │ ├── R600Schedule.td │ │ ├── R700Instructions.td │ │ ├── SIAnnotateControlFlow.cpp │ │ ├── SIDebuggerInsertNops.cpp │ │ ├── SIDefines.h │ │ ├── SIFixSGPRCopies.cpp │ │ ├── SIFixVGPRCopies.cpp │ │ ├── SIFixWWMLiveness.cpp │ │ ├── SIFoldOperands.cpp │ │ ├── SIFrameLowering.cpp │ │ ├── SIFrameLowering.h │ │ ├── SIISelLowering.cpp │ │ ├── SIISelLowering.h │ │ ├── SIInsertSkips.cpp │ │ ├── SIInsertWaitcnts.cpp │ │ ├── SIInsertWaits.cpp │ │ ├── SIInstrFormats.td │ │ ├── SIInstrInfo.cpp │ │ ├── SIInstrInfo.h │ │ ├── SIInstrInfo.td │ │ ├── SIInstructions.td │ │ ├── SIIntrinsics.td │ │ ├── SILoadStoreOptimizer.cpp │ │ ├── SILowerControlFlow.cpp │ │ ├── SILowerI1Copies.cpp │ │ ├── SIMachineFunctionInfo.cpp │ │ ├── SIMachineFunctionInfo.h │ │ ├── SIMachineScheduler.cpp │ │ ├── SIMachineScheduler.h │ │ ├── SIMemoryLegalizer.cpp │ │ ├── SIOptimizeExecMasking.cpp │ │ ├── SIOptimizeExecMaskingPreRA.cpp │ │ ├── SIPeepholeSDWA.cpp │ │ ├── SIRegisterInfo.cpp │ │ ├── SIRegisterInfo.h │ │ ├── SIRegisterInfo.td │ │ ├── SISchedule.td │ │ ├── SIShrinkInstructions.cpp │ │ ├── SIWholeQuadMode.cpp │ │ ├── SMInstructions.td │ │ ├── SOPInstructions.td │ │ ├── TargetInfo │ │ │ ├── AMDGPUTargetInfo.cpp │ │ │ ├── CMakeLists.txt │ │ │ └── LLVMBuild.txt │ │ ├── Utils │ │ │ ├── AMDGPUAsmUtils.cpp │ │ │ ├── AMDGPUAsmUtils.h │ │ │ ├── AMDGPUBaseInfo.cpp │ │ │ ├── AMDGPUBaseInfo.h │ │ │ ├── AMDKernelCodeTInfo.h │ │ │ ├── AMDKernelCodeTUtils.cpp │ │ │ ├── AMDKernelCodeTUtils.h │ │ │ ├── CMakeLists.txt │ │ │ └── LLVMBuild.txt │ │ ├── VIInstrFormats.td │ │ ├── VIInstructions.td │ │ ├── VOP1Instructions.td │ │ ├── VOP2Instructions.td │ │ ├── VOP3Instructions.td │ │ ├── VOP3PInstructions.td │ │ ├── VOPCInstructions.td │ │ └── VOPInstructions.td │ ├── ARC │ │ ├── ARC.h │ │ ├── ARC.td │ │ ├── ARCAsmPrinter.cpp │ │ ├── ARCBranchFinalize.cpp │ │ ├── ARCCallingConv.td │ │ ├── ARCExpandPseudos.cpp │ │ ├── ARCFrameLowering.cpp │ │ ├── ARCFrameLowering.h │ │ ├── ARCISelDAGToDAG.cpp │ │ ├── ARCISelLowering.cpp │ │ ├── ARCISelLowering.h │ │ ├── ARCInstrFormats.td │ │ ├── ARCInstrInfo.cpp │ │ ├── ARCInstrInfo.h │ │ ├── ARCInstrInfo.td │ │ ├── ARCMCInstLower.cpp │ │ ├── ARCMCInstLower.h │ │ ├── ARCMachineFunctionInfo.cpp │ │ ├── ARCMachineFunctionInfo.h │ │ ├── ARCRegisterInfo.cpp │ │ ├── ARCRegisterInfo.h │ │ ├── ARCRegisterInfo.td │ │ ├── ARCSubtarget.cpp │ │ ├── ARCSubtarget.h │ │ ├── ARCTargetMachine.cpp │ │ ├── ARCTargetMachine.h │ │ ├── ARCTargetStreamer.h │ │ ├── ARCTargetTransformInfo.h │ │ ├── CMakeLists.txt │ │ ├── Disassembler │ │ │ ├── ARCDisassembler.cpp │ │ │ ├── CMakeLists.txt │ │ │ └── LLVMBuild.txt │ │ ├── InstPrinter │ │ │ ├── ARCInstPrinter.cpp │ │ │ ├── ARCInstPrinter.h │ │ │ ├── CMakeLists.txt │ │ │ └── LLVMBuild.txt │ │ ├── LLVMBuild.txt │ │ ├── MCTargetDesc │ │ │ ├── ARCInfo.h │ │ │ ├── ARCMCAsmInfo.cpp │ │ │ ├── ARCMCAsmInfo.h │ │ │ ├── ARCMCTargetDesc.cpp │ │ │ ├── ARCMCTargetDesc.h │ │ │ ├── CMakeLists.txt │ │ │ └── LLVMBuild.txt │ │ └── TargetInfo │ │ │ ├── ARCTargetInfo.cpp │ │ │ ├── CMakeLists.txt │ │ │ └── LLVMBuild.txt │ ├── ARM │ │ ├── A15SDOptimizer.cpp │ │ ├── ARM.h │ │ ├── ARM.td │ │ ├── ARMAsmPrinter.cpp │ │ ├── ARMAsmPrinter.h │ │ ├── ARMBaseInstrInfo.cpp │ │ ├── ARMBaseInstrInfo.h │ │ ├── ARMBaseRegisterInfo.cpp │ │ ├── ARMBaseRegisterInfo.h │ │ ├── ARMBasicBlockInfo.h │ │ ├── ARMCallLowering.cpp │ │ ├── ARMCallLowering.h │ │ ├── ARMCallingConv.h │ │ ├── ARMCallingConv.td │ │ ├── ARMComputeBlockSize.cpp │ │ ├── ARMConstantIslandPass.cpp │ │ ├── ARMConstantPoolValue.cpp │ │ ├── ARMConstantPoolValue.h │ │ ├── ARMExpandPseudoInsts.cpp │ │ ├── ARMFastISel.cpp │ │ ├── ARMFeatures.h │ │ ├── ARMFrameLowering.cpp │ │ ├── ARMFrameLowering.h │ │ ├── ARMHazardRecognizer.cpp │ │ ├── ARMHazardRecognizer.h │ │ ├── ARMISelDAGToDAG.cpp │ │ ├── ARMISelLowering.cpp │ │ ├── ARMISelLowering.h │ │ ├── ARMInstrFormats.td │ │ ├── ARMInstrInfo.cpp │ │ ├── ARMInstrInfo.h │ │ ├── ARMInstrInfo.td │ │ ├── ARMInstrNEON.td │ │ ├── ARMInstrThumb.td │ │ ├── ARMInstrThumb2.td │ │ ├── ARMInstrVFP.td │ │ ├── ARMInstructionSelector.cpp │ │ ├── ARMLegalizerInfo.cpp │ │ ├── ARMLegalizerInfo.h │ │ ├── ARMLoadStoreOptimizer.cpp │ │ ├── ARMMCInstLower.cpp │ │ ├── ARMMachineFunctionInfo.cpp │ │ ├── ARMMachineFunctionInfo.h │ │ ├── ARMMacroFusion.cpp │ │ ├── ARMMacroFusion.h │ │ ├── ARMOptimizeBarriersPass.cpp │ │ ├── ARMPerfectShuffle.h │ │ ├── ARMRegisterBankInfo.cpp │ │ ├── ARMRegisterBankInfo.h │ │ ├── ARMRegisterBanks.td │ │ ├── ARMRegisterInfo.cpp │ │ ├── ARMRegisterInfo.h │ │ ├── ARMRegisterInfo.td │ │ ├── ARMSchedule.td │ │ ├── ARMScheduleA57.td │ │ ├── ARMScheduleA57WriteRes.td │ │ ├── ARMScheduleA8.td │ │ ├── ARMScheduleA9.td │ │ ├── ARMScheduleM3.td │ │ ├── ARMScheduleR52.td │ │ ├── ARMScheduleSwift.td │ │ ├── ARMScheduleV6.td │ │ ├── ARMSelectionDAGInfo.cpp │ │ ├── ARMSelectionDAGInfo.h │ │ ├── ARMSubtarget.cpp │ │ ├── ARMSubtarget.h │ │ ├── ARMSystemRegister.td │ │ ├── ARMTargetMachine.cpp │ │ ├── ARMTargetMachine.h │ │ ├── ARMTargetObjectFile.cpp │ │ ├── ARMTargetObjectFile.h │ │ ├── ARMTargetTransformInfo.cpp │ │ ├── ARMTargetTransformInfo.h │ │ ├── AsmParser │ │ │ ├── ARMAsmParser.cpp │ │ │ ├── CMakeLists.txt │ │ │ └── LLVMBuild.txt │ │ ├── CMakeLists.txt │ │ ├── Disassembler │ │ │ ├── ARMDisassembler.cpp │ │ │ ├── CMakeLists.txt │ │ │ └── LLVMBuild.txt │ │ ├── InstPrinter │ │ │ ├── ARMInstPrinter.cpp │ │ │ ├── ARMInstPrinter.h │ │ │ ├── CMakeLists.txt │ │ │ └── LLVMBuild.txt │ │ ├── LICENSE.TXT │ │ ├── LLVMBuild.txt │ │ ├── MCTargetDesc │ │ │ ├── ARMAddressingModes.h │ │ │ ├── ARMAsmBackend.cpp │ │ │ ├── ARMAsmBackend.h │ │ │ ├── ARMAsmBackendDarwin.h │ │ │ ├── ARMAsmBackendELF.h │ │ │ ├── ARMAsmBackendWinCOFF.h │ │ │ ├── ARMBaseInfo.h │ │ │ ├── ARMELFObjectWriter.cpp │ │ │ ├── ARMELFStreamer.cpp │ │ │ ├── ARMFixupKinds.h │ │ │ ├── ARMMCAsmInfo.cpp │ │ │ ├── ARMMCAsmInfo.h │ │ │ ├── ARMMCCodeEmitter.cpp │ │ │ ├── ARMMCExpr.cpp │ │ │ ├── ARMMCExpr.h │ │ │ ├── ARMMCTargetDesc.cpp │ │ │ ├── ARMMCTargetDesc.h │ │ │ ├── ARMMachORelocationInfo.cpp │ │ │ ├── ARMMachObjectWriter.cpp │ │ │ ├── ARMTargetStreamer.cpp │ │ │ ├── ARMUnwindOpAsm.cpp │ │ │ ├── ARMUnwindOpAsm.h │ │ │ ├── ARMWinCOFFObjectWriter.cpp │ │ │ ├── ARMWinCOFFStreamer.cpp │ │ │ ├── CMakeLists.txt │ │ │ └── LLVMBuild.txt │ │ ├── MLxExpansionPass.cpp │ │ ├── README-Thumb.txt │ │ ├── README-Thumb2.txt │ │ ├── README.txt │ │ ├── TargetInfo │ │ │ ├── ARMTargetInfo.cpp │ │ │ ├── CMakeLists.txt │ │ │ └── LLVMBuild.txt │ │ ├── Thumb1FrameLowering.cpp │ │ ├── Thumb1FrameLowering.h │ │ ├── Thumb1InstrInfo.cpp │ │ ├── Thumb1InstrInfo.h │ │ ├── Thumb2ITBlockPass.cpp │ │ ├── Thumb2InstrInfo.cpp │ │ ├── Thumb2InstrInfo.h │ │ ├── Thumb2SizeReduction.cpp │ │ ├── ThumbRegisterInfo.cpp │ │ ├── ThumbRegisterInfo.h │ │ └── Utils │ │ │ ├── ARMBaseInfo.cpp │ │ │ ├── ARMBaseInfo.h │ │ │ ├── CMakeLists.txt │ │ │ └── LLVMBuild.txt │ ├── AVR │ │ ├── AVR.h │ │ ├── AVR.td │ │ ├── AVRAsmPrinter.cpp │ │ ├── AVRCallingConv.td │ │ ├── AVRDevices.td │ │ ├── AVRExpandPseudoInsts.cpp │ │ ├── AVRFrameLowering.cpp │ │ ├── AVRFrameLowering.h │ │ ├── AVRISelDAGToDAG.cpp │ │ ├── AVRISelLowering.cpp │ │ ├── AVRISelLowering.h │ │ ├── AVRInstrFormats.td │ │ ├── AVRInstrInfo.cpp │ │ ├── AVRInstrInfo.h │ │ ├── AVRInstrInfo.td │ │ ├── AVRMCInstLower.cpp │ │ ├── AVRMCInstLower.h │ │ ├── AVRMachineFunctionInfo.h │ │ ├── AVRRegisterInfo.cpp │ │ ├── AVRRegisterInfo.h │ │ ├── AVRRegisterInfo.td │ │ ├── AVRRelaxMemOperations.cpp │ │ ├── AVRSelectionDAGInfo.h │ │ ├── AVRSubtarget.cpp │ │ ├── AVRSubtarget.h │ │ ├── AVRTargetMachine.cpp │ │ ├── AVRTargetMachine.h │ │ ├── AVRTargetObjectFile.cpp │ │ ├── AVRTargetObjectFile.h │ │ ├── AsmParser │ │ │ ├── AVRAsmParser.cpp │ │ │ ├── CMakeLists.txt │ │ │ └── LLVMBuild.txt │ │ ├── CMakeLists.txt │ │ ├── Disassembler │ │ │ ├── AVRDisassembler.cpp │ │ │ ├── CMakeLists.txt │ │ │ └── LLVMBuild.txt │ │ ├── InstPrinter │ │ │ ├── AVRInstPrinter.cpp │ │ │ ├── AVRInstPrinter.h │ │ │ ├── CMakeLists.txt │ │ │ └── LLVMBuild.txt │ │ ├── LLVMBuild.txt │ │ ├── MCTargetDesc │ │ │ ├── AVRAsmBackend.cpp │ │ │ ├── AVRAsmBackend.h │ │ │ ├── AVRELFObjectWriter.cpp │ │ │ ├── AVRELFStreamer.cpp │ │ │ ├── AVRELFStreamer.h │ │ │ ├── AVRFixupKinds.h │ │ │ ├── AVRMCAsmInfo.cpp │ │ │ ├── AVRMCAsmInfo.h │ │ │ ├── AVRMCCodeEmitter.cpp │ │ │ ├── AVRMCCodeEmitter.h │ │ │ ├── AVRMCELFStreamer.cpp │ │ │ ├── AVRMCELFStreamer.h │ │ │ ├── AVRMCExpr.cpp │ │ │ ├── AVRMCExpr.h │ │ │ ├── AVRMCTargetDesc.cpp │ │ │ ├── AVRMCTargetDesc.h │ │ │ ├── AVRTargetStreamer.cpp │ │ │ ├── AVRTargetStreamer.h │ │ │ ├── CMakeLists.txt │ │ │ └── LLVMBuild.txt │ │ ├── README.md │ │ ├── TODO.md │ │ └── TargetInfo │ │ │ ├── AVRTargetInfo.cpp │ │ │ ├── CMakeLists.txt │ │ │ └── LLVMBuild.txt │ ├── BPF │ │ ├── AsmParser │ │ │ ├── BPFAsmParser.cpp │ │ │ ├── CMakeLists.txt │ │ │ └── LLVMBuild.txt │ │ ├── BPF.h │ │ ├── BPF.td │ │ ├── BPFAsmPrinter.cpp │ │ ├── BPFCallingConv.td │ │ ├── BPFFrameLowering.cpp │ │ ├── BPFFrameLowering.h │ │ ├── BPFISelDAGToDAG.cpp │ │ ├── BPFISelLowering.cpp │ │ ├── BPFISelLowering.h │ │ ├── BPFInstrFormats.td │ │ ├── BPFInstrInfo.cpp │ │ ├── BPFInstrInfo.h │ │ ├── BPFInstrInfo.td │ │ ├── BPFMCInstLower.cpp │ │ ├── BPFMCInstLower.h │ │ ├── BPFRegisterInfo.cpp │ │ ├── BPFRegisterInfo.h │ │ ├── BPFRegisterInfo.td │ │ ├── BPFSubtarget.cpp │ │ ├── BPFSubtarget.h │ │ ├── BPFTargetMachine.cpp │ │ ├── BPFTargetMachine.h │ │ ├── CMakeLists.txt │ │ ├── Disassembler │ │ │ ├── BPFDisassembler.cpp │ │ │ ├── CMakeLists.txt │ │ │ └── LLVMBuild.txt │ │ ├── InstPrinter │ │ │ ├── BPFInstPrinter.cpp │ │ │ ├── BPFInstPrinter.h │ │ │ ├── CMakeLists.txt │ │ │ └── LLVMBuild.txt │ │ ├── LLVMBuild.txt │ │ ├── MCTargetDesc │ │ │ ├── BPFAsmBackend.cpp │ │ │ ├── BPFELFObjectWriter.cpp │ │ │ ├── BPFMCAsmInfo.h │ │ │ ├── BPFMCCodeEmitter.cpp │ │ │ ├── BPFMCTargetDesc.cpp │ │ │ ├── BPFMCTargetDesc.h │ │ │ ├── CMakeLists.txt │ │ │ └── LLVMBuild.txt │ │ └── TargetInfo │ │ │ ├── BPFTargetInfo.cpp │ │ │ ├── CMakeLists.txt │ │ │ └── LLVMBuild.txt │ ├── CMakeLists.txt │ ├── Hexagon │ │ ├── AsmParser │ │ │ ├── CMakeLists.txt │ │ │ ├── HexagonAsmParser.cpp │ │ │ └── LLVMBuild.txt │ │ ├── BitTracker.cpp │ │ ├── BitTracker.h │ │ ├── CMakeLists.txt │ │ ├── Disassembler │ │ │ ├── CMakeLists.txt │ │ │ ├── HexagonDisassembler.cpp │ │ │ └── LLVMBuild.txt │ │ ├── Hexagon.h │ │ ├── Hexagon.td │ │ ├── HexagonAsmPrinter.cpp │ │ ├── HexagonAsmPrinter.h │ │ ├── HexagonBitSimplify.cpp │ │ ├── HexagonBitTracker.cpp │ │ ├── HexagonBitTracker.h │ │ ├── HexagonBlockRanges.cpp │ │ ├── HexagonBlockRanges.h │ │ ├── HexagonBranchRelaxation.cpp │ │ ├── HexagonCFGOptimizer.cpp │ │ ├── HexagonCommonGEP.cpp │ │ ├── HexagonConstExtenders.cpp │ │ ├── HexagonConstPropagation.cpp │ │ ├── HexagonCopyToCombine.cpp │ │ ├── HexagonDepArch.h │ │ ├── HexagonDepArch.td │ │ ├── HexagonDepDecoders.h │ │ ├── HexagonDepIICHVX.td │ │ ├── HexagonDepIICScalar.td │ │ ├── HexagonDepITypes.h │ │ ├── HexagonDepITypes.td │ │ ├── HexagonDepInstrFormats.td │ │ ├── HexagonDepInstrInfo.td │ │ ├── HexagonDepMappings.td │ │ ├── HexagonDepOperands.td │ │ ├── HexagonDepTimingClasses.h │ │ ├── HexagonEarlyIfConv.cpp │ │ ├── HexagonExpandCondsets.cpp │ │ ├── HexagonFixupHwLoops.cpp │ │ ├── HexagonFrameLowering.cpp │ │ ├── HexagonFrameLowering.h │ │ ├── HexagonGatherPacketize.cpp │ │ ├── HexagonGenExtract.cpp │ │ ├── HexagonGenInsert.cpp │ │ ├── HexagonGenMux.cpp │ │ ├── HexagonGenPredicate.cpp │ │ ├── HexagonHardwareLoops.cpp │ │ ├── HexagonHazardRecognizer.cpp │ │ ├── HexagonHazardRecognizer.h │ │ ├── HexagonIICHVX.td │ │ ├── HexagonIICScalar.td │ │ ├── HexagonISelDAGToDAG.cpp │ │ ├── HexagonISelDAGToDAG.h │ │ ├── HexagonISelDAGToDAGHVX.cpp │ │ ├── HexagonISelLowering.cpp │ │ ├── HexagonISelLowering.h │ │ ├── HexagonISelLoweringHVX.cpp │ │ ├── HexagonInstrFormats.td │ │ ├── HexagonInstrFormatsV4.td │ │ ├── HexagonInstrFormatsV60.td │ │ ├── HexagonInstrFormatsV65.td │ │ ├── HexagonInstrInfo.cpp │ │ ├── HexagonInstrInfo.h │ │ ├── HexagonIntrinsics.td │ │ ├── HexagonIntrinsicsV3.td │ │ ├── HexagonIntrinsicsV4.td │ │ ├── HexagonIntrinsicsV5.td │ │ ├── HexagonIntrinsicsV60.td │ │ ├── HexagonLoopIdiomRecognition.cpp │ │ ├── HexagonMCInstLower.cpp │ │ ├── HexagonMachineFunctionInfo.cpp │ │ ├── HexagonMachineFunctionInfo.h │ │ ├── HexagonMachineScheduler.cpp │ │ ├── HexagonMachineScheduler.h │ │ ├── HexagonMapAsm2IntrinV62.gen.td │ │ ├── HexagonMapAsm2IntrinV65.gen.td │ │ ├── HexagonNewValueJump.cpp │ │ ├── HexagonOperands.td │ │ ├── HexagonOptAddrMode.cpp │ │ ├── HexagonOptimizeSZextends.cpp │ │ ├── HexagonPatterns.td │ │ ├── HexagonPatternsV65.td │ │ ├── HexagonPeephole.cpp │ │ ├── HexagonPseudo.td │ │ ├── HexagonRDFOpt.cpp │ │ ├── HexagonRegisterInfo.cpp │ │ ├── HexagonRegisterInfo.h │ │ ├── HexagonRegisterInfo.td │ │ ├── HexagonSchedule.td │ │ ├── HexagonScheduleV4.td │ │ ├── HexagonScheduleV55.td │ │ ├── HexagonScheduleV60.td │ │ ├── HexagonScheduleV62.td │ │ ├── HexagonScheduleV65.td │ │ ├── HexagonSelectionDAGInfo.cpp │ │ ├── HexagonSelectionDAGInfo.h │ │ ├── HexagonSplitConst32AndConst64.cpp │ │ ├── HexagonSplitDouble.cpp │ │ ├── HexagonStoreWidening.cpp │ │ ├── HexagonSubtarget.cpp │ │ ├── HexagonSubtarget.h │ │ ├── HexagonTargetMachine.cpp │ │ ├── HexagonTargetMachine.h │ │ ├── HexagonTargetObjectFile.cpp │ │ ├── HexagonTargetObjectFile.h │ │ ├── HexagonTargetStreamer.h │ │ ├── HexagonTargetTransformInfo.cpp │ │ ├── HexagonTargetTransformInfo.h │ │ ├── HexagonVLIWPacketizer.cpp │ │ ├── HexagonVLIWPacketizer.h │ │ ├── HexagonVectorLoopCarriedReuse.cpp │ │ ├── HexagonVectorPrint.cpp │ │ ├── LLVMBuild.txt │ │ ├── MCTargetDesc │ │ │ ├── CMakeLists.txt │ │ │ ├── HexagonAsmBackend.cpp │ │ │ ├── HexagonBaseInfo.h │ │ │ ├── HexagonELFObjectWriter.cpp │ │ │ ├── HexagonFixupKinds.h │ │ │ ├── HexagonInstPrinter.cpp │ │ │ ├── HexagonInstPrinter.h │ │ │ ├── HexagonMCAsmInfo.cpp │ │ │ ├── HexagonMCAsmInfo.h │ │ │ ├── HexagonMCChecker.cpp │ │ │ ├── HexagonMCChecker.h │ │ │ ├── HexagonMCCodeEmitter.cpp │ │ │ ├── HexagonMCCodeEmitter.h │ │ │ ├── HexagonMCCompound.cpp │ │ │ ├── HexagonMCDuplexInfo.cpp │ │ │ ├── HexagonMCELFStreamer.cpp │ │ │ ├── HexagonMCELFStreamer.h │ │ │ ├── HexagonMCExpr.cpp │ │ │ ├── HexagonMCExpr.h │ │ │ ├── HexagonMCInstrInfo.cpp │ │ │ ├── HexagonMCInstrInfo.h │ │ │ ├── HexagonMCShuffler.cpp │ │ │ ├── HexagonMCShuffler.h │ │ │ ├── HexagonMCTargetDesc.cpp │ │ │ ├── HexagonMCTargetDesc.h │ │ │ ├── HexagonShuffler.cpp │ │ │ ├── HexagonShuffler.h │ │ │ └── LLVMBuild.txt │ │ ├── RDFCopy.cpp │ │ ├── RDFCopy.h │ │ ├── RDFDeadCode.cpp │ │ ├── RDFDeadCode.h │ │ ├── RDFGraph.cpp │ │ ├── RDFGraph.h │ │ ├── RDFLiveness.cpp │ │ ├── RDFLiveness.h │ │ ├── RDFRegisters.cpp │ │ ├── RDFRegisters.h │ │ └── TargetInfo │ │ │ ├── CMakeLists.txt │ │ │ ├── HexagonTargetInfo.cpp │ │ │ └── LLVMBuild.txt │ ├── LLVMBuild.txt │ ├── Lanai │ │ ├── AsmParser │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── LanaiAsmParser.cpp │ │ ├── CMakeLists.txt │ │ ├── Disassembler │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── LanaiDisassembler.cpp │ │ │ └── LanaiDisassembler.h │ │ ├── InstPrinter │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── LanaiInstPrinter.cpp │ │ │ └── LanaiInstPrinter.h │ │ ├── LLVMBuild.txt │ │ ├── Lanai.h │ │ ├── Lanai.td │ │ ├── LanaiAluCode.h │ │ ├── LanaiAsmPrinter.cpp │ │ ├── LanaiCallingConv.td │ │ ├── LanaiCondCode.h │ │ ├── LanaiDelaySlotFiller.cpp │ │ ├── LanaiFrameLowering.cpp │ │ ├── LanaiFrameLowering.h │ │ ├── LanaiISelDAGToDAG.cpp │ │ ├── LanaiISelLowering.cpp │ │ ├── LanaiISelLowering.h │ │ ├── LanaiInstrFormats.td │ │ ├── LanaiInstrInfo.cpp │ │ ├── LanaiInstrInfo.h │ │ ├── LanaiInstrInfo.td │ │ ├── LanaiMCInstLower.cpp │ │ ├── LanaiMCInstLower.h │ │ ├── LanaiMachineFunctionInfo.cpp │ │ ├── LanaiMachineFunctionInfo.h │ │ ├── LanaiMemAluCombiner.cpp │ │ ├── LanaiRegisterInfo.cpp │ │ ├── LanaiRegisterInfo.h │ │ ├── LanaiRegisterInfo.td │ │ ├── LanaiSchedule.td │ │ ├── LanaiSelectionDAGInfo.cpp │ │ ├── LanaiSelectionDAGInfo.h │ │ ├── LanaiSubtarget.cpp │ │ ├── LanaiSubtarget.h │ │ ├── LanaiTargetMachine.cpp │ │ ├── LanaiTargetMachine.h │ │ ├── LanaiTargetObjectFile.cpp │ │ ├── LanaiTargetObjectFile.h │ │ ├── LanaiTargetTransformInfo.h │ │ ├── MCTargetDesc │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── LanaiAsmBackend.cpp │ │ │ ├── LanaiBaseInfo.h │ │ │ ├── LanaiELFObjectWriter.cpp │ │ │ ├── LanaiFixupKinds.h │ │ │ ├── LanaiMCAsmInfo.cpp │ │ │ ├── LanaiMCAsmInfo.h │ │ │ ├── LanaiMCCodeEmitter.cpp │ │ │ ├── LanaiMCExpr.cpp │ │ │ ├── LanaiMCExpr.h │ │ │ ├── LanaiMCTargetDesc.cpp │ │ │ └── LanaiMCTargetDesc.h │ │ └── TargetInfo │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── LanaiTargetInfo.cpp │ ├── M6502 │ │ ├── CMakeLists.txt │ │ ├── InstPrinter │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── M6502InstPrinter.cpp │ │ │ └── M6502InstPrinter.h │ │ ├── LLVMBuild.txt │ │ ├── M6502.h │ │ ├── M6502.td │ │ ├── M6502AsmPrinter.cpp │ │ ├── M6502CallingConv.td │ │ ├── M6502Expand16BitPseudoInsts.cpp │ │ ├── M6502FrameLowering.cpp │ │ ├── M6502FrameLowering.h │ │ ├── M6502FunctionInfo.cpp │ │ ├── M6502FunctionInfo.h │ │ ├── M6502ISelDAGToDAG.cpp │ │ ├── M6502ISelLowering.cpp │ │ ├── M6502ISelLowering.h │ │ ├── M6502InstrInfo.cpp │ │ ├── M6502InstrInfo.h │ │ ├── M6502InstrInfo.td │ │ ├── M6502RegisterInfo.cpp │ │ ├── M6502RegisterInfo.h │ │ ├── M6502RegisterInfo.td │ │ ├── M6502Subtarget.cpp │ │ ├── M6502Subtarget.h │ │ ├── M6502TargetMachine.cpp │ │ ├── M6502TargetMachine.h │ │ ├── M6502TargetObjectFile.cpp │ │ ├── M6502TargetObjectFile.h │ │ ├── MCTargetDesc │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── M6502MCAsmInfo.h │ │ │ ├── M6502MCTargetDesc.cpp │ │ │ └── M6502MCTargetDesc.h │ │ └── TargetInfo │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── M6502TargetInfo.cpp │ ├── MSP430 │ │ ├── CMakeLists.txt │ │ ├── InstPrinter │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── MSP430InstPrinter.cpp │ │ │ └── MSP430InstPrinter.h │ │ ├── LLVMBuild.txt │ │ ├── MCTargetDesc │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── MSP430MCAsmInfo.cpp │ │ │ ├── MSP430MCAsmInfo.h │ │ │ ├── MSP430MCTargetDesc.cpp │ │ │ └── MSP430MCTargetDesc.h │ │ ├── MSP430.h │ │ ├── MSP430.td │ │ ├── MSP430AsmPrinter.cpp │ │ ├── MSP430BranchSelector.cpp │ │ ├── MSP430CallingConv.td │ │ ├── MSP430FrameLowering.cpp │ │ ├── MSP430FrameLowering.h │ │ ├── MSP430ISelDAGToDAG.cpp │ │ ├── MSP430ISelLowering.cpp │ │ ├── MSP430ISelLowering.h │ │ ├── MSP430InstrFormats.td │ │ ├── MSP430InstrInfo.cpp │ │ ├── MSP430InstrInfo.h │ │ ├── MSP430InstrInfo.td │ │ ├── MSP430MCInstLower.cpp │ │ ├── MSP430MCInstLower.h │ │ ├── MSP430MachineFunctionInfo.cpp │ │ ├── MSP430MachineFunctionInfo.h │ │ ├── MSP430RegisterInfo.cpp │ │ ├── MSP430RegisterInfo.h │ │ ├── MSP430RegisterInfo.td │ │ ├── MSP430Subtarget.cpp │ │ ├── MSP430Subtarget.h │ │ ├── MSP430TargetMachine.cpp │ │ ├── MSP430TargetMachine.h │ │ ├── README.txt │ │ └── TargetInfo │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── MSP430TargetInfo.cpp │ ├── Mips │ │ ├── AsmParser │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── MipsAsmParser.cpp │ │ ├── CMakeLists.txt │ │ ├── Disassembler │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── MipsDisassembler.cpp │ │ ├── InstPrinter │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── MipsInstPrinter.cpp │ │ │ └── MipsInstPrinter.h │ │ ├── LLVMBuild.txt │ │ ├── MCTargetDesc │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── MipsABIFlagsSection.cpp │ │ │ ├── MipsABIFlagsSection.h │ │ │ ├── MipsABIInfo.cpp │ │ │ ├── MipsABIInfo.h │ │ │ ├── MipsAsmBackend.cpp │ │ │ ├── MipsAsmBackend.h │ │ │ ├── MipsBaseInfo.h │ │ │ ├── MipsELFObjectWriter.cpp │ │ │ ├── MipsELFStreamer.cpp │ │ │ ├── MipsELFStreamer.h │ │ │ ├── MipsFixupKinds.h │ │ │ ├── MipsMCAsmInfo.cpp │ │ │ ├── MipsMCAsmInfo.h │ │ │ ├── MipsMCCodeEmitter.cpp │ │ │ ├── MipsMCCodeEmitter.h │ │ │ ├── MipsMCExpr.cpp │ │ │ ├── MipsMCExpr.h │ │ │ ├── MipsMCNaCl.h │ │ │ ├── MipsMCTargetDesc.cpp │ │ │ ├── MipsMCTargetDesc.h │ │ │ ├── MipsNaClELFStreamer.cpp │ │ │ ├── MipsOptionRecord.cpp │ │ │ └── MipsTargetStreamer.cpp │ │ ├── MSA.txt │ │ ├── MicroMips32r6InstrFormats.td │ │ ├── MicroMips32r6InstrInfo.td │ │ ├── MicroMipsDSPInstrFormats.td │ │ ├── MicroMipsDSPInstrInfo.td │ │ ├── MicroMipsInstrFPU.td │ │ ├── MicroMipsInstrFormats.td │ │ ├── MicroMipsInstrInfo.td │ │ ├── MicroMipsSizeReduction.cpp │ │ ├── Mips.h │ │ ├── Mips.td │ │ ├── Mips16FrameLowering.cpp │ │ ├── Mips16FrameLowering.h │ │ ├── Mips16HardFloat.cpp │ │ ├── Mips16HardFloatInfo.cpp │ │ ├── Mips16HardFloatInfo.h │ │ ├── Mips16ISelDAGToDAG.cpp │ │ ├── Mips16ISelDAGToDAG.h │ │ ├── Mips16ISelLowering.cpp │ │ ├── Mips16ISelLowering.h │ │ ├── Mips16InstrFormats.td │ │ ├── Mips16InstrInfo.cpp │ │ ├── Mips16InstrInfo.h │ │ ├── Mips16InstrInfo.td │ │ ├── Mips16RegisterInfo.cpp │ │ ├── Mips16RegisterInfo.h │ │ ├── Mips32r6InstrFormats.td │ │ ├── Mips32r6InstrInfo.td │ │ ├── Mips64InstrInfo.td │ │ ├── Mips64r6InstrInfo.td │ │ ├── MipsAnalyzeImmediate.cpp │ │ ├── MipsAnalyzeImmediate.h │ │ ├── MipsAsmPrinter.cpp │ │ ├── MipsAsmPrinter.h │ │ ├── MipsCCState.cpp │ │ ├── MipsCCState.h │ │ ├── MipsCallingConv.td │ │ ├── MipsCondMov.td │ │ ├── MipsConstantIslandPass.cpp │ │ ├── MipsDSPInstrFormats.td │ │ ├── MipsDSPInstrInfo.td │ │ ├── MipsDelaySlotFiller.cpp │ │ ├── MipsEVAInstrFormats.td │ │ ├── MipsEVAInstrInfo.td │ │ ├── MipsFastISel.cpp │ │ ├── MipsFrameLowering.cpp │ │ ├── MipsFrameLowering.h │ │ ├── MipsHazardSchedule.cpp │ │ ├── MipsISelDAGToDAG.cpp │ │ ├── MipsISelDAGToDAG.h │ │ ├── MipsISelLowering.cpp │ │ ├── MipsISelLowering.h │ │ ├── MipsInstrFPU.td │ │ ├── MipsInstrFormats.td │ │ ├── MipsInstrInfo.cpp │ │ ├── MipsInstrInfo.h │ │ ├── MipsInstrInfo.td │ │ ├── MipsLongBranch.cpp │ │ ├── MipsMCInstLower.cpp │ │ ├── MipsMCInstLower.h │ │ ├── MipsMSAInstrFormats.td │ │ ├── MipsMSAInstrInfo.td │ │ ├── MipsMTInstrFormats.td │ │ ├── MipsMTInstrInfo.td │ │ ├── MipsMachineFunction.cpp │ │ ├── MipsMachineFunction.h │ │ ├── MipsModuleISelDAGToDAG.cpp │ │ ├── MipsOptimizePICCall.cpp │ │ ├── MipsOptionRecord.h │ │ ├── MipsOs16.cpp │ │ ├── MipsRegisterInfo.cpp │ │ ├── MipsRegisterInfo.h │ │ ├── MipsRegisterInfo.td │ │ ├── MipsSEFrameLowering.cpp │ │ ├── MipsSEFrameLowering.h │ │ ├── MipsSEISelDAGToDAG.cpp │ │ ├── MipsSEISelDAGToDAG.h │ │ ├── MipsSEISelLowering.cpp │ │ ├── MipsSEISelLowering.h │ │ ├── MipsSEInstrInfo.cpp │ │ ├── MipsSEInstrInfo.h │ │ ├── MipsSERegisterInfo.cpp │ │ ├── MipsSERegisterInfo.h │ │ ├── MipsSchedule.td │ │ ├── MipsScheduleGeneric.td │ │ ├── MipsScheduleP5600.td │ │ ├── MipsSubtarget.cpp │ │ ├── MipsSubtarget.h │ │ ├── MipsTargetMachine.cpp │ │ ├── MipsTargetMachine.h │ │ ├── MipsTargetObjectFile.cpp │ │ ├── MipsTargetObjectFile.h │ │ ├── MipsTargetStreamer.h │ │ ├── Relocation.txt │ │ └── TargetInfo │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── MipsTargetInfo.cpp │ ├── NVPTX │ │ ├── CMakeLists.txt │ │ ├── InstPrinter │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── NVPTXInstPrinter.cpp │ │ │ └── NVPTXInstPrinter.h │ │ ├── LLVMBuild.txt │ │ ├── MCTargetDesc │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── NVPTXBaseInfo.h │ │ │ ├── NVPTXMCAsmInfo.cpp │ │ │ ├── NVPTXMCAsmInfo.h │ │ │ ├── NVPTXMCTargetDesc.cpp │ │ │ └── NVPTXMCTargetDesc.h │ │ ├── ManagedStringPool.h │ │ ├── NVPTX.h │ │ ├── NVPTX.td │ │ ├── NVPTXAllocaHoisting.cpp │ │ ├── NVPTXAllocaHoisting.h │ │ ├── NVPTXAsmPrinter.cpp │ │ ├── NVPTXAsmPrinter.h │ │ ├── NVPTXAssignValidGlobalNames.cpp │ │ ├── NVPTXFrameLowering.cpp │ │ ├── NVPTXFrameLowering.h │ │ ├── NVPTXGenericToNVVM.cpp │ │ ├── NVPTXISelDAGToDAG.cpp │ │ ├── NVPTXISelDAGToDAG.h │ │ ├── NVPTXISelLowering.cpp │ │ ├── NVPTXISelLowering.h │ │ ├── NVPTXImageOptimizer.cpp │ │ ├── NVPTXInstrFormats.td │ │ ├── NVPTXInstrInfo.cpp │ │ ├── NVPTXInstrInfo.h │ │ ├── NVPTXInstrInfo.td │ │ ├── NVPTXIntrinsics.td │ │ ├── NVPTXLowerAggrCopies.cpp │ │ ├── NVPTXLowerAggrCopies.h │ │ ├── NVPTXLowerAlloca.cpp │ │ ├── NVPTXLowerArgs.cpp │ │ ├── NVPTXMCExpr.cpp │ │ ├── NVPTXMCExpr.h │ │ ├── NVPTXMachineFunctionInfo.h │ │ ├── NVPTXPeephole.cpp │ │ ├── NVPTXPrologEpilogPass.cpp │ │ ├── NVPTXRegisterInfo.cpp │ │ ├── NVPTXRegisterInfo.h │ │ ├── NVPTXRegisterInfo.td │ │ ├── NVPTXReplaceImageHandles.cpp │ │ ├── NVPTXSection.h │ │ ├── NVPTXSubtarget.cpp │ │ ├── NVPTXSubtarget.h │ │ ├── NVPTXTargetMachine.cpp │ │ ├── NVPTXTargetMachine.h │ │ ├── NVPTXTargetObjectFile.h │ │ ├── NVPTXTargetTransformInfo.cpp │ │ ├── NVPTXTargetTransformInfo.h │ │ ├── NVPTXUtilities.cpp │ │ ├── NVPTXUtilities.h │ │ ├── NVVMIntrRange.cpp │ │ ├── NVVMReflect.cpp │ │ ├── TargetInfo │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── NVPTXTargetInfo.cpp │ │ └── cl_common_defines.h │ ├── Nios2 │ │ ├── CMakeLists.txt │ │ ├── InstPrinter │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── Nios2InstPrinter.cpp │ │ │ └── Nios2InstPrinter.h │ │ ├── LLVMBuild.txt │ │ ├── MCTargetDesc │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── Nios2AsmBackend.cpp │ │ │ ├── Nios2AsmBackend.h │ │ │ ├── Nios2BaseInfo.h │ │ │ ├── Nios2ELFObjectWriter.cpp │ │ │ ├── Nios2FixupKinds.h │ │ │ ├── Nios2MCAsmInfo.cpp │ │ │ ├── Nios2MCAsmInfo.h │ │ │ ├── Nios2MCExpr.cpp │ │ │ ├── Nios2MCExpr.h │ │ │ ├── Nios2MCTargetDesc.cpp │ │ │ ├── Nios2MCTargetDesc.h │ │ │ └── Nios2TargetStreamer.cpp │ │ ├── Nios2.h │ │ ├── Nios2.td │ │ ├── Nios2AsmPrinter.cpp │ │ ├── Nios2CallingConv.td │ │ ├── Nios2FrameLowering.cpp │ │ ├── Nios2FrameLowering.h │ │ ├── Nios2ISelDAGToDAG.cpp │ │ ├── Nios2ISelLowering.cpp │ │ ├── Nios2ISelLowering.h │ │ ├── Nios2InstrFormats.td │ │ ├── Nios2InstrInfo.cpp │ │ ├── Nios2InstrInfo.h │ │ ├── Nios2InstrInfo.td │ │ ├── Nios2MCInstLower.cpp │ │ ├── Nios2MachineFunction.cpp │ │ ├── Nios2MachineFunction.h │ │ ├── Nios2RegisterInfo.cpp │ │ ├── Nios2RegisterInfo.h │ │ ├── Nios2RegisterInfo.td │ │ ├── Nios2Schedule.td │ │ ├── Nios2Subtarget.cpp │ │ ├── Nios2Subtarget.h │ │ ├── Nios2TargetMachine.cpp │ │ ├── Nios2TargetMachine.h │ │ ├── Nios2TargetObjectFile.cpp │ │ ├── Nios2TargetObjectFile.h │ │ ├── Nios2TargetStreamer.h │ │ └── TargetInfo │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── Nios2TargetInfo.cpp │ ├── PowerPC │ │ ├── AsmParser │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── PPCAsmParser.cpp │ │ ├── CMakeLists.txt │ │ ├── Disassembler │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── PPCDisassembler.cpp │ │ ├── InstPrinter │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── PPCInstPrinter.cpp │ │ │ └── PPCInstPrinter.h │ │ ├── LLVMBuild.txt │ │ ├── MCTargetDesc │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── PPCAsmBackend.cpp │ │ │ ├── PPCELFObjectWriter.cpp │ │ │ ├── PPCFixupKinds.h │ │ │ ├── PPCMCAsmInfo.cpp │ │ │ ├── PPCMCAsmInfo.h │ │ │ ├── PPCMCCodeEmitter.cpp │ │ │ ├── PPCMCExpr.cpp │ │ │ ├── PPCMCExpr.h │ │ │ ├── PPCMCTargetDesc.cpp │ │ │ ├── PPCMCTargetDesc.h │ │ │ ├── PPCMachObjectWriter.cpp │ │ │ ├── PPCPredicates.cpp │ │ │ └── PPCPredicates.h │ │ ├── P9InstrResources.td │ │ ├── PPC.h │ │ ├── PPC.td │ │ ├── PPCAsmPrinter.cpp │ │ ├── PPCBoolRetToInt.cpp │ │ ├── PPCBranchCoalescing.cpp │ │ ├── PPCBranchSelector.cpp │ │ ├── PPCCCState.cpp │ │ ├── PPCCCState.h │ │ ├── PPCCTRLoops.cpp │ │ ├── PPCCallingConv.h │ │ ├── PPCCallingConv.td │ │ ├── PPCEarlyReturn.cpp │ │ ├── PPCExpandISEL.cpp │ │ ├── PPCFastISel.cpp │ │ ├── PPCFrameLowering.cpp │ │ ├── PPCFrameLowering.h │ │ ├── PPCHazardRecognizers.cpp │ │ ├── PPCHazardRecognizers.h │ │ ├── PPCISelDAGToDAG.cpp │ │ ├── PPCISelLowering.cpp │ │ ├── PPCISelLowering.h │ │ ├── PPCInstr64Bit.td │ │ ├── PPCInstrAltivec.td │ │ ├── PPCInstrBuilder.h │ │ ├── PPCInstrFormats.td │ │ ├── PPCInstrHTM.td │ │ ├── PPCInstrInfo.cpp │ │ ├── PPCInstrInfo.h │ │ ├── PPCInstrInfo.td │ │ ├── PPCInstrQPX.td │ │ ├── PPCInstrSPE.td │ │ ├── PPCInstrVSX.td │ │ ├── PPCLoopPreIncPrep.cpp │ │ ├── PPCMCInstLower.cpp │ │ ├── PPCMIPeephole.cpp │ │ ├── PPCMachineBasicBlockUtils.h │ │ ├── PPCMachineFunctionInfo.cpp │ │ ├── PPCMachineFunctionInfo.h │ │ ├── PPCPerfectShuffle.h │ │ ├── PPCPreEmitPeephole.cpp │ │ ├── PPCQPXLoadSplat.cpp │ │ ├── PPCReduceCRLogicals.cpp │ │ ├── PPCRegisterInfo.cpp │ │ ├── PPCRegisterInfo.h │ │ ├── PPCRegisterInfo.td │ │ ├── PPCSchedule.td │ │ ├── PPCSchedule440.td │ │ ├── PPCScheduleA2.td │ │ ├── PPCScheduleE500mc.td │ │ ├── PPCScheduleE5500.td │ │ ├── PPCScheduleG3.td │ │ ├── PPCScheduleG4.td │ │ ├── PPCScheduleG4Plus.td │ │ ├── PPCScheduleG5.td │ │ ├── PPCScheduleP7.td │ │ ├── PPCScheduleP8.td │ │ ├── PPCScheduleP9.td │ │ ├── PPCSubtarget.cpp │ │ ├── PPCSubtarget.h │ │ ├── PPCTLSDynamicCall.cpp │ │ ├── PPCTOCRegDeps.cpp │ │ ├── PPCTargetMachine.cpp │ │ ├── PPCTargetMachine.h │ │ ├── PPCTargetObjectFile.cpp │ │ ├── PPCTargetObjectFile.h │ │ ├── PPCTargetStreamer.h │ │ ├── PPCTargetTransformInfo.cpp │ │ ├── PPCTargetTransformInfo.h │ │ ├── PPCVSXCopy.cpp │ │ ├── PPCVSXFMAMutate.cpp │ │ ├── PPCVSXSwapRemoval.cpp │ │ ├── README.txt │ │ ├── README_ALTIVEC.txt │ │ ├── README_P9.txt │ │ └── TargetInfo │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── PowerPCTargetInfo.cpp │ ├── README.txt │ ├── RISCV │ │ ├── AsmParser │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── RISCVAsmParser.cpp │ │ ├── CMakeLists.txt │ │ ├── Disassembler │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── RISCVDisassembler.cpp │ │ ├── InstPrinter │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── RISCVInstPrinter.cpp │ │ │ └── RISCVInstPrinter.h │ │ ├── LLVMBuild.txt │ │ ├── MCTargetDesc │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── RISCVAsmBackend.cpp │ │ │ ├── RISCVBaseInfo.h │ │ │ ├── RISCVELFObjectWriter.cpp │ │ │ ├── RISCVFixupKinds.h │ │ │ ├── RISCVMCAsmInfo.cpp │ │ │ ├── RISCVMCAsmInfo.h │ │ │ ├── RISCVMCCodeEmitter.cpp │ │ │ ├── RISCVMCExpr.cpp │ │ │ ├── RISCVMCExpr.h │ │ │ ├── RISCVMCTargetDesc.cpp │ │ │ └── RISCVMCTargetDesc.h │ │ ├── RISCV.h │ │ ├── RISCV.td │ │ ├── RISCVAsmPrinter.cpp │ │ ├── RISCVCallingConv.td │ │ ├── RISCVFrameLowering.cpp │ │ ├── RISCVFrameLowering.h │ │ ├── RISCVISelDAGToDAG.cpp │ │ ├── RISCVISelLowering.cpp │ │ ├── RISCVISelLowering.h │ │ ├── RISCVInstrFormats.td │ │ ├── RISCVInstrFormatsC.td │ │ ├── RISCVInstrInfo.cpp │ │ ├── RISCVInstrInfo.h │ │ ├── RISCVInstrInfo.td │ │ ├── RISCVInstrInfoA.td │ │ ├── RISCVInstrInfoC.td │ │ ├── RISCVInstrInfoD.td │ │ ├── RISCVInstrInfoF.td │ │ ├── RISCVInstrInfoM.td │ │ ├── RISCVMCInstLower.cpp │ │ ├── RISCVRegisterInfo.cpp │ │ ├── RISCVRegisterInfo.h │ │ ├── RISCVRegisterInfo.td │ │ ├── RISCVSubtarget.cpp │ │ ├── RISCVSubtarget.h │ │ ├── RISCVTargetMachine.cpp │ │ ├── RISCVTargetMachine.h │ │ └── TargetInfo │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── RISCVTargetInfo.cpp │ ├── Sparc │ │ ├── AsmParser │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── SparcAsmParser.cpp │ │ ├── CMakeLists.txt │ │ ├── DelaySlotFiller.cpp │ │ ├── Disassembler │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── SparcDisassembler.cpp │ │ ├── InstPrinter │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── SparcInstPrinter.cpp │ │ │ └── SparcInstPrinter.h │ │ ├── LLVMBuild.txt │ │ ├── LeonFeatures.td │ │ ├── LeonPasses.cpp │ │ ├── LeonPasses.h │ │ ├── MCTargetDesc │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── SparcAsmBackend.cpp │ │ │ ├── SparcELFObjectWriter.cpp │ │ │ ├── SparcFixupKinds.h │ │ │ ├── SparcMCAsmInfo.cpp │ │ │ ├── SparcMCAsmInfo.h │ │ │ ├── SparcMCCodeEmitter.cpp │ │ │ ├── SparcMCExpr.cpp │ │ │ ├── SparcMCExpr.h │ │ │ ├── SparcMCTargetDesc.cpp │ │ │ ├── SparcMCTargetDesc.h │ │ │ └── SparcTargetStreamer.cpp │ │ ├── README.txt │ │ ├── Sparc.h │ │ ├── Sparc.td │ │ ├── SparcAsmPrinter.cpp │ │ ├── SparcCallingConv.td │ │ ├── SparcFrameLowering.cpp │ │ ├── SparcFrameLowering.h │ │ ├── SparcISelDAGToDAG.cpp │ │ ├── SparcISelLowering.cpp │ │ ├── SparcISelLowering.h │ │ ├── SparcInstr64Bit.td │ │ ├── SparcInstrAliases.td │ │ ├── SparcInstrFormats.td │ │ ├── SparcInstrInfo.cpp │ │ ├── SparcInstrInfo.h │ │ ├── SparcInstrInfo.td │ │ ├── SparcInstrVIS.td │ │ ├── SparcMCInstLower.cpp │ │ ├── SparcMachineFunctionInfo.cpp │ │ ├── SparcMachineFunctionInfo.h │ │ ├── SparcRegisterInfo.cpp │ │ ├── SparcRegisterInfo.h │ │ ├── SparcRegisterInfo.td │ │ ├── SparcSchedule.td │ │ ├── SparcSubtarget.cpp │ │ ├── SparcSubtarget.h │ │ ├── SparcTargetMachine.cpp │ │ ├── SparcTargetMachine.h │ │ ├── SparcTargetObjectFile.cpp │ │ ├── SparcTargetObjectFile.h │ │ ├── SparcTargetStreamer.h │ │ └── TargetInfo │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── SparcTargetInfo.cpp │ ├── SystemZ │ │ ├── AsmParser │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── SystemZAsmParser.cpp │ │ ├── CMakeLists.txt │ │ ├── Disassembler │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── SystemZDisassembler.cpp │ │ ├── InstPrinter │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── SystemZInstPrinter.cpp │ │ │ └── SystemZInstPrinter.h │ │ ├── LLVMBuild.txt │ │ ├── MCTargetDesc │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── SystemZMCAsmBackend.cpp │ │ │ ├── SystemZMCAsmInfo.cpp │ │ │ ├── SystemZMCAsmInfo.h │ │ │ ├── SystemZMCCodeEmitter.cpp │ │ │ ├── SystemZMCFixups.h │ │ │ ├── SystemZMCObjectWriter.cpp │ │ │ ├── SystemZMCTargetDesc.cpp │ │ │ └── SystemZMCTargetDesc.h │ │ ├── README.txt │ │ ├── SystemZ.h │ │ ├── SystemZ.td │ │ ├── SystemZAsmPrinter.cpp │ │ ├── SystemZAsmPrinter.h │ │ ├── SystemZCallingConv.cpp │ │ ├── SystemZCallingConv.h │ │ ├── SystemZCallingConv.td │ │ ├── SystemZConstantPoolValue.cpp │ │ ├── SystemZConstantPoolValue.h │ │ ├── SystemZElimCompare.cpp │ │ ├── SystemZExpandPseudo.cpp │ │ ├── SystemZFeatures.td │ │ ├── SystemZFrameLowering.cpp │ │ ├── SystemZFrameLowering.h │ │ ├── SystemZHazardRecognizer.cpp │ │ ├── SystemZHazardRecognizer.h │ │ ├── SystemZISelDAGToDAG.cpp │ │ ├── SystemZISelLowering.cpp │ │ ├── SystemZISelLowering.h │ │ ├── SystemZInstrBuilder.h │ │ ├── SystemZInstrDFP.td │ │ ├── SystemZInstrFP.td │ │ ├── SystemZInstrFormats.td │ │ ├── SystemZInstrHFP.td │ │ ├── SystemZInstrInfo.cpp │ │ ├── SystemZInstrInfo.h │ │ ├── SystemZInstrInfo.td │ │ ├── SystemZInstrSystem.td │ │ ├── SystemZInstrVector.td │ │ ├── SystemZLDCleanup.cpp │ │ ├── SystemZLongBranch.cpp │ │ ├── SystemZMCInstLower.cpp │ │ ├── SystemZMCInstLower.h │ │ ├── SystemZMachineFunctionInfo.cpp │ │ ├── SystemZMachineFunctionInfo.h │ │ ├── SystemZMachineScheduler.cpp │ │ ├── SystemZMachineScheduler.h │ │ ├── SystemZOperands.td │ │ ├── SystemZOperators.td │ │ ├── SystemZPatterns.td │ │ ├── SystemZProcessors.td │ │ ├── SystemZRegisterInfo.cpp │ │ ├── SystemZRegisterInfo.h │ │ ├── SystemZRegisterInfo.td │ │ ├── SystemZSchedule.td │ │ ├── SystemZScheduleZ13.td │ │ ├── SystemZScheduleZ14.td │ │ ├── SystemZScheduleZ196.td │ │ ├── SystemZScheduleZEC12.td │ │ ├── SystemZSelectionDAGInfo.cpp │ │ ├── SystemZSelectionDAGInfo.h │ │ ├── SystemZShortenInst.cpp │ │ ├── SystemZSubtarget.cpp │ │ ├── SystemZSubtarget.h │ │ ├── SystemZTDC.cpp │ │ ├── SystemZTargetMachine.cpp │ │ ├── SystemZTargetMachine.h │ │ ├── SystemZTargetTransformInfo.cpp │ │ ├── SystemZTargetTransformInfo.h │ │ └── TargetInfo │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── SystemZTargetInfo.cpp │ ├── Target.cpp │ ├── TargetIntrinsicInfo.cpp │ ├── TargetLoweringObjectFile.cpp │ ├── TargetMachine.cpp │ ├── TargetMachineC.cpp │ ├── WebAssembly │ │ ├── CMakeLists.txt │ │ ├── Disassembler │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── WebAssemblyDisassembler.cpp │ │ ├── InstPrinter │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── WebAssemblyInstPrinter.cpp │ │ │ └── WebAssemblyInstPrinter.h │ │ ├── LLVMBuild.txt │ │ ├── MCTargetDesc │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── WebAssemblyAsmBackend.cpp │ │ │ ├── WebAssemblyELFObjectWriter.cpp │ │ │ ├── WebAssemblyFixupKinds.h │ │ │ ├── WebAssemblyMCAsmInfo.cpp │ │ │ ├── WebAssemblyMCAsmInfo.h │ │ │ ├── WebAssemblyMCCodeEmitter.cpp │ │ │ ├── WebAssemblyMCTargetDesc.cpp │ │ │ ├── WebAssemblyMCTargetDesc.h │ │ │ ├── WebAssemblyTargetStreamer.cpp │ │ │ ├── WebAssemblyTargetStreamer.h │ │ │ └── WebAssemblyWasmObjectWriter.cpp │ │ ├── README.txt │ │ ├── TargetInfo │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── WebAssemblyTargetInfo.cpp │ │ ├── WebAssembly.h │ │ ├── WebAssembly.td │ │ ├── WebAssemblyArgumentMove.cpp │ │ ├── WebAssemblyAsmPrinter.cpp │ │ ├── WebAssemblyAsmPrinter.h │ │ ├── WebAssemblyCFGSort.cpp │ │ ├── WebAssemblyCFGStackify.cpp │ │ ├── WebAssemblyCallIndirectFixup.cpp │ │ ├── WebAssemblyExplicitLocals.cpp │ │ ├── WebAssemblyFastISel.cpp │ │ ├── WebAssemblyFixFunctionBitcasts.cpp │ │ ├── WebAssemblyFixIrreducibleControlFlow.cpp │ │ ├── WebAssemblyFrameLowering.cpp │ │ ├── WebAssemblyFrameLowering.h │ │ ├── WebAssemblyISD.def │ │ ├── WebAssemblyISelDAGToDAG.cpp │ │ ├── WebAssemblyISelLowering.cpp │ │ ├── WebAssemblyISelLowering.h │ │ ├── WebAssemblyInstrAtomics.td │ │ ├── WebAssemblyInstrCall.td │ │ ├── WebAssemblyInstrControl.td │ │ ├── WebAssemblyInstrConv.td │ │ ├── WebAssemblyInstrFloat.td │ │ ├── WebAssemblyInstrFormats.td │ │ ├── WebAssemblyInstrInfo.cpp │ │ ├── WebAssemblyInstrInfo.h │ │ ├── WebAssemblyInstrInfo.td │ │ ├── WebAssemblyInstrInteger.td │ │ ├── WebAssemblyInstrMemory.td │ │ ├── WebAssemblyInstrSIMD.td │ │ ├── WebAssemblyLowerBrUnless.cpp │ │ ├── WebAssemblyLowerEmscriptenEHSjLj.cpp │ │ ├── WebAssemblyLowerGlobalDtors.cpp │ │ ├── WebAssemblyMCInstLower.cpp │ │ ├── WebAssemblyMCInstLower.h │ │ ├── WebAssemblyMachineFunctionInfo.cpp │ │ ├── WebAssemblyMachineFunctionInfo.h │ │ ├── WebAssemblyOptimizeLiveIntervals.cpp │ │ ├── WebAssemblyOptimizeReturned.cpp │ │ ├── WebAssemblyPeephole.cpp │ │ ├── WebAssemblyPrepareForLiveIntervals.cpp │ │ ├── WebAssemblyRegColoring.cpp │ │ ├── WebAssemblyRegNumbering.cpp │ │ ├── WebAssemblyRegStackify.cpp │ │ ├── WebAssemblyRegisterInfo.cpp │ │ ├── WebAssemblyRegisterInfo.h │ │ ├── WebAssemblyRegisterInfo.td │ │ ├── WebAssemblyReplacePhysRegs.cpp │ │ ├── WebAssemblyRuntimeLibcallSignatures.cpp │ │ ├── WebAssemblyRuntimeLibcallSignatures.h │ │ ├── WebAssemblySelectionDAGInfo.cpp │ │ ├── WebAssemblySelectionDAGInfo.h │ │ ├── WebAssemblySetP2AlignOperands.cpp │ │ ├── WebAssemblyStoreResults.cpp │ │ ├── WebAssemblySubtarget.cpp │ │ ├── WebAssemblySubtarget.h │ │ ├── WebAssemblyTargetMachine.cpp │ │ ├── WebAssemblyTargetMachine.h │ │ ├── WebAssemblyTargetObjectFile.cpp │ │ ├── WebAssemblyTargetObjectFile.h │ │ ├── WebAssemblyTargetTransformInfo.cpp │ │ ├── WebAssemblyTargetTransformInfo.h │ │ ├── WebAssemblyUtilities.cpp │ │ ├── WebAssemblyUtilities.h │ │ └── known_gcc_test_failures.txt │ ├── X86 │ │ ├── AsmParser │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── X86AsmInstrumentation.cpp │ │ │ ├── X86AsmInstrumentation.h │ │ │ ├── X86AsmParser.cpp │ │ │ ├── X86AsmParserCommon.h │ │ │ └── X86Operand.h │ │ ├── CMakeLists.txt │ │ ├── Disassembler │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── X86Disassembler.cpp │ │ │ ├── X86DisassemblerDecoder.cpp │ │ │ ├── X86DisassemblerDecoder.h │ │ │ └── X86DisassemblerDecoderCommon.h │ │ ├── InstPrinter │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── X86ATTInstPrinter.cpp │ │ │ ├── X86ATTInstPrinter.h │ │ │ ├── X86InstComments.cpp │ │ │ ├── X86InstComments.h │ │ │ ├── X86IntelInstPrinter.cpp │ │ │ └── X86IntelInstPrinter.h │ │ ├── LLVMBuild.txt │ │ ├── MCTargetDesc │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── X86AsmBackend.cpp │ │ │ ├── X86BaseInfo.h │ │ │ ├── X86ELFObjectWriter.cpp │ │ │ ├── X86FixupKinds.h │ │ │ ├── X86MCAsmInfo.cpp │ │ │ ├── X86MCAsmInfo.h │ │ │ ├── X86MCCodeEmitter.cpp │ │ │ ├── X86MCTargetDesc.cpp │ │ │ ├── X86MCTargetDesc.h │ │ │ ├── X86MachObjectWriter.cpp │ │ │ ├── X86TargetStreamer.h │ │ │ ├── X86WinCOFFObjectWriter.cpp │ │ │ ├── X86WinCOFFStreamer.cpp │ │ │ └── X86WinCOFFTargetStreamer.cpp │ │ ├── README-FPStack.txt │ │ ├── README-MMX.txt │ │ ├── README-SSE.txt │ │ ├── README-UNIMPLEMENTED.txt │ │ ├── README-X86-64.txt │ │ ├── README.txt │ │ ├── TargetInfo │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ └── X86TargetInfo.cpp │ │ ├── Utils │ │ │ ├── CMakeLists.txt │ │ │ ├── LLVMBuild.txt │ │ │ ├── X86ShuffleDecode.cpp │ │ │ └── X86ShuffleDecode.h │ │ ├── X86.h │ │ ├── X86.td │ │ ├── X86AsmPrinter.cpp │ │ ├── X86AsmPrinter.h │ │ ├── X86CallFrameOptimization.cpp │ │ ├── X86CallLowering.cpp │ │ ├── X86CallLowering.h │ │ ├── X86CallingConv.cpp │ │ ├── X86CallingConv.h │ │ ├── X86CallingConv.td │ │ ├── X86CmovConversion.cpp │ │ ├── X86DomainReassignment.cpp │ │ ├── X86EvexToVex.cpp │ │ ├── X86ExpandPseudo.cpp │ │ ├── X86FastISel.cpp │ │ ├── X86FixupBWInsts.cpp │ │ ├── X86FixupLEAs.cpp │ │ ├── X86FixupSetCC.cpp │ │ ├── X86FloatingPoint.cpp │ │ ├── X86FrameLowering.cpp │ │ ├── X86FrameLowering.h │ │ ├── X86GenRegisterBankInfo.def │ │ ├── X86ISelDAGToDAG.cpp │ │ ├── X86ISelLowering.cpp │ │ ├── X86ISelLowering.h │ │ ├── X86Instr3DNow.td │ │ ├── X86InstrAVX512.td │ │ ├── X86InstrArithmetic.td │ │ ├── X86InstrBuilder.h │ │ ├── X86InstrCMovSetCC.td │ │ ├── X86InstrCompiler.td │ │ ├── X86InstrControl.td │ │ ├── X86InstrExtension.td │ │ ├── X86InstrFMA.td │ │ ├── X86InstrFMA3Info.cpp │ │ ├── X86InstrFMA3Info.h │ │ ├── X86InstrFPStack.td │ │ ├── X86InstrFormats.td │ │ ├── X86InstrFragmentsSIMD.td │ │ ├── X86InstrInfo.cpp │ │ ├── X86InstrInfo.h │ │ ├── X86InstrInfo.td │ │ ├── X86InstrMMX.td │ │ ├── X86InstrMPX.td │ │ ├── X86InstrSGX.td │ │ ├── X86InstrSSE.td │ │ ├── X86InstrSVM.td │ │ ├── X86InstrShiftRotate.td │ │ ├── X86InstrSystem.td │ │ ├── X86InstrTSX.td │ │ ├── X86InstrVMX.td │ │ ├── X86InstrVecCompiler.td │ │ ├── X86InstrXOP.td │ │ ├── X86InstructionSelector.cpp │ │ ├── X86InterleavedAccess.cpp │ │ ├── X86IntrinsicsInfo.h │ │ ├── X86LegalizerInfo.cpp │ │ ├── X86LegalizerInfo.h │ │ ├── X86MCInstLower.cpp │ │ ├── X86MachineFunctionInfo.cpp │ │ ├── X86MachineFunctionInfo.h │ │ ├── X86MacroFusion.cpp │ │ ├── X86MacroFusion.h │ │ ├── X86OptimizeLEAs.cpp │ │ ├── X86PadShortFunction.cpp │ │ ├── X86RegisterBankInfo.cpp │ │ ├── X86RegisterBankInfo.h │ │ ├── X86RegisterBanks.td │ │ ├── X86RegisterInfo.cpp │ │ ├── X86RegisterInfo.h │ │ ├── X86RegisterInfo.td │ │ ├── X86RetpolineThunks.cpp │ │ ├── X86SchedBroadwell.td │ │ ├── X86SchedHaswell.td │ │ ├── X86SchedSandyBridge.td │ │ ├── X86SchedSkylakeClient.td │ │ ├── X86SchedSkylakeServer.td │ │ ├── X86Schedule.td │ │ ├── X86ScheduleAtom.td │ │ ├── X86ScheduleBtVer2.td │ │ ├── X86ScheduleSLM.td │ │ ├── X86ScheduleZnver1.td │ │ ├── X86SelectionDAGInfo.cpp │ │ ├── X86SelectionDAGInfo.h │ │ ├── X86ShuffleDecodeConstantPool.cpp │ │ ├── X86ShuffleDecodeConstantPool.h │ │ ├── X86Subtarget.cpp │ │ ├── X86Subtarget.h │ │ ├── X86TargetMachine.cpp │ │ ├── X86TargetMachine.h │ │ ├── X86TargetObjectFile.cpp │ │ ├── X86TargetObjectFile.h │ │ ├── X86TargetTransformInfo.cpp │ │ ├── X86TargetTransformInfo.h │ │ ├── X86VZeroUpper.cpp │ │ ├── X86WinAllocaExpander.cpp │ │ └── X86WinEHState.cpp │ └── XCore │ │ ├── CMakeLists.txt │ │ ├── Disassembler │ │ ├── CMakeLists.txt │ │ ├── LLVMBuild.txt │ │ └── XCoreDisassembler.cpp │ │ ├── InstPrinter │ │ ├── CMakeLists.txt │ │ ├── LLVMBuild.txt │ │ ├── XCoreInstPrinter.cpp │ │ └── XCoreInstPrinter.h │ │ ├── LLVMBuild.txt │ │ ├── MCTargetDesc │ │ ├── CMakeLists.txt │ │ ├── LLVMBuild.txt │ │ ├── XCoreMCAsmInfo.cpp │ │ ├── XCoreMCAsmInfo.h │ │ ├── XCoreMCTargetDesc.cpp │ │ └── XCoreMCTargetDesc.h │ │ ├── README.txt │ │ ├── TargetInfo │ │ ├── CMakeLists.txt │ │ ├── LLVMBuild.txt │ │ └── XCoreTargetInfo.cpp │ │ ├── XCore.h │ │ ├── XCore.td │ │ ├── XCoreAsmPrinter.cpp │ │ ├── XCoreCallingConv.td │ │ ├── XCoreFrameLowering.cpp │ │ ├── XCoreFrameLowering.h │ │ ├── XCoreFrameToArgsOffsetElim.cpp │ │ ├── XCoreISelDAGToDAG.cpp │ │ ├── XCoreISelLowering.cpp │ │ ├── XCoreISelLowering.h │ │ ├── XCoreInstrFormats.td │ │ ├── XCoreInstrInfo.cpp │ │ ├── XCoreInstrInfo.h │ │ ├── XCoreInstrInfo.td │ │ ├── XCoreLowerThreadLocal.cpp │ │ ├── XCoreMCInstLower.cpp │ │ ├── XCoreMCInstLower.h │ │ ├── XCoreMachineFunctionInfo.cpp │ │ ├── XCoreMachineFunctionInfo.h │ │ ├── XCoreRegisterInfo.cpp │ │ ├── XCoreRegisterInfo.h │ │ ├── XCoreRegisterInfo.td │ │ ├── XCoreSelectionDAGInfo.cpp │ │ ├── XCoreSelectionDAGInfo.h │ │ ├── XCoreSubtarget.cpp │ │ ├── XCoreSubtarget.h │ │ ├── XCoreTargetMachine.cpp │ │ ├── XCoreTargetMachine.h │ │ ├── XCoreTargetObjectFile.cpp │ │ ├── XCoreTargetObjectFile.h │ │ ├── XCoreTargetStreamer.h │ │ └── XCoreTargetTransformInfo.h ├── Testing │ ├── CMakeLists.txt │ ├── LLVMBuild.txt │ └── Support │ │ ├── CMakeLists.txt │ │ ├── Error.cpp │ │ └── LLVMBuild.txt ├── ToolDrivers │ ├── CMakeLists.txt │ ├── LLVMBuild.txt │ ├── llvm-dlltool │ │ ├── CMakeLists.txt │ │ ├── DlltoolDriver.cpp │ │ ├── LLVMBuild.txt │ │ └── Options.td │ └── llvm-lib │ │ ├── CMakeLists.txt │ │ ├── LLVMBuild.txt │ │ ├── LibDriver.cpp │ │ └── Options.td ├── Transforms │ ├── CMakeLists.txt │ ├── Coroutines │ │ ├── CMakeLists.txt │ │ ├── CoroCleanup.cpp │ │ ├── CoroEarly.cpp │ │ ├── CoroElide.cpp │ │ ├── CoroFrame.cpp │ │ ├── CoroInstr.h │ │ ├── CoroInternal.h │ │ ├── CoroSplit.cpp │ │ ├── Coroutines.cpp │ │ └── LLVMBuild.txt │ ├── Hello │ │ ├── CMakeLists.txt │ │ ├── Hello.cpp │ │ └── Hello.exports │ ├── IPO │ │ ├── AlwaysInliner.cpp │ │ ├── ArgumentPromotion.cpp │ │ ├── BarrierNoopPass.cpp │ │ ├── CMakeLists.txt │ │ ├── CalledValuePropagation.cpp │ │ ├── ConstantMerge.cpp │ │ ├── CrossDSOCFI.cpp │ │ ├── DeadArgumentElimination.cpp │ │ ├── ElimAvailExtern.cpp │ │ ├── ExtractGV.cpp │ │ ├── ForceFunctionAttrs.cpp │ │ ├── FunctionAttrs.cpp │ │ ├── FunctionImport.cpp │ │ ├── GlobalDCE.cpp │ │ ├── GlobalOpt.cpp │ │ ├── GlobalSplit.cpp │ │ ├── IPConstantPropagation.cpp │ │ ├── IPO.cpp │ │ ├── InferFunctionAttrs.cpp │ │ ├── InlineSimple.cpp │ │ ├── Inliner.cpp │ │ ├── Internalize.cpp │ │ ├── LLVMBuild.txt │ │ ├── LoopExtractor.cpp │ │ ├── LowerTypeTests.cpp │ │ ├── MergeFunctions.cpp │ │ ├── PartialInlining.cpp │ │ ├── PassManagerBuilder.cpp │ │ ├── PruneEH.cpp │ │ ├── SampleProfile.cpp │ │ ├── StripDeadPrototypes.cpp │ │ ├── StripSymbols.cpp │ │ ├── ThinLTOBitcodeWriter.cpp │ │ └── WholeProgramDevirt.cpp │ ├── InstCombine │ │ ├── CMakeLists.txt │ │ ├── InstCombineAddSub.cpp │ │ ├── InstCombineAndOrXor.cpp │ │ ├── InstCombineCalls.cpp │ │ ├── InstCombineCasts.cpp │ │ ├── InstCombineCompares.cpp │ │ ├── InstCombineInternal.h │ │ ├── InstCombineLoadStoreAlloca.cpp │ │ ├── InstCombineMulDivRem.cpp │ │ ├── InstCombinePHI.cpp │ │ ├── InstCombineSelect.cpp │ │ ├── InstCombineShifts.cpp │ │ ├── InstCombineSimplifyDemanded.cpp │ │ ├── InstCombineVectorOps.cpp │ │ ├── InstructionCombining.cpp │ │ └── LLVMBuild.txt │ ├── Instrumentation │ │ ├── AddressSanitizer.cpp │ │ ├── BoundsChecking.cpp │ │ ├── CFGMST.h │ │ ├── CMakeLists.txt │ │ ├── DataFlowSanitizer.cpp │ │ ├── EfficiencySanitizer.cpp │ │ ├── GCOVProfiling.cpp │ │ ├── HWAddressSanitizer.cpp │ │ ├── IndirectCallPromotion.cpp │ │ ├── InstrProfiling.cpp │ │ ├── Instrumentation.cpp │ │ ├── LLVMBuild.txt │ │ ├── MaximumSpanningTree.h │ │ ├── MemorySanitizer.cpp │ │ ├── PGOInstrumentation.cpp │ │ ├── PGOMemOPSizeOpt.cpp │ │ ├── SanitizerCoverage.cpp │ │ └── ThreadSanitizer.cpp │ ├── LLVMBuild.txt │ ├── ObjCARC │ │ ├── ARCRuntimeEntryPoints.h │ │ ├── BlotMapVector.h │ │ ├── CMakeLists.txt │ │ ├── DependencyAnalysis.cpp │ │ ├── DependencyAnalysis.h │ │ ├── LLVMBuild.txt │ │ ├── ObjCARC.cpp │ │ ├── ObjCARC.h │ │ ├── ObjCARCAPElim.cpp │ │ ├── ObjCARCContract.cpp │ │ ├── ObjCARCExpand.cpp │ │ ├── ObjCARCOpts.cpp │ │ ├── ProvenanceAnalysis.cpp │ │ ├── ProvenanceAnalysis.h │ │ ├── ProvenanceAnalysisEvaluator.cpp │ │ ├── PtrState.cpp │ │ └── PtrState.h │ ├── Scalar │ │ ├── ADCE.cpp │ │ ├── AlignmentFromAssumptions.cpp │ │ ├── BDCE.cpp │ │ ├── CMakeLists.txt │ │ ├── CallSiteSplitting.cpp │ │ ├── ConstantHoisting.cpp │ │ ├── ConstantProp.cpp │ │ ├── CorrelatedValuePropagation.cpp │ │ ├── DCE.cpp │ │ ├── DeadStoreElimination.cpp │ │ ├── DivRemPairs.cpp │ │ ├── EarlyCSE.cpp │ │ ├── FlattenCFGPass.cpp │ │ ├── Float2Int.cpp │ │ ├── GVN.cpp │ │ ├── GVNHoist.cpp │ │ ├── GVNSink.cpp │ │ ├── GuardWidening.cpp │ │ ├── IVUsersPrinter.cpp │ │ ├── IndVarSimplify.cpp │ │ ├── InductiveRangeCheckElimination.cpp │ │ ├── InferAddressSpaces.cpp │ │ ├── JumpThreading.cpp │ │ ├── LICM.cpp │ │ ├── LLVMBuild.txt │ │ ├── LoopAccessAnalysisPrinter.cpp │ │ ├── LoopDataPrefetch.cpp │ │ ├── LoopDeletion.cpp │ │ ├── LoopDistribute.cpp │ │ ├── LoopIdiomRecognize.cpp │ │ ├── LoopInstSimplify.cpp │ │ ├── LoopInterchange.cpp │ │ ├── LoopLoadElimination.cpp │ │ ├── LoopPassManager.cpp │ │ ├── LoopPredication.cpp │ │ ├── LoopRerollPass.cpp │ │ ├── LoopRotation.cpp │ │ ├── LoopSimplifyCFG.cpp │ │ ├── LoopSink.cpp │ │ ├── LoopStrengthReduce.cpp │ │ ├── LoopUnrollPass.cpp │ │ ├── LoopUnswitch.cpp │ │ ├── LoopVersioningLICM.cpp │ │ ├── LowerAtomic.cpp │ │ ├── LowerExpectIntrinsic.cpp │ │ ├── LowerGuardIntrinsic.cpp │ │ ├── MemCpyOptimizer.cpp │ │ ├── MergeICmps.cpp │ │ ├── MergedLoadStoreMotion.cpp │ │ ├── NaryReassociate.cpp │ │ ├── NewGVN.cpp │ │ ├── PartiallyInlineLibCalls.cpp │ │ ├── PlaceSafepoints.cpp │ │ ├── Reassociate.cpp │ │ ├── Reg2Mem.cpp │ │ ├── RewriteStatepointsForGC.cpp │ │ ├── SCCP.cpp │ │ ├── SROA.cpp │ │ ├── Scalar.cpp │ │ ├── Scalarizer.cpp │ │ ├── SeparateConstOffsetFromGEP.cpp │ │ ├── SimpleLoopUnswitch.cpp │ │ ├── SimplifyCFGPass.cpp │ │ ├── Sink.cpp │ │ ├── SpeculateAroundPHIs.cpp │ │ ├── SpeculativeExecution.cpp │ │ ├── StraightLineStrengthReduce.cpp │ │ ├── StructurizeCFG.cpp │ │ └── TailRecursionElimination.cpp │ ├── Utils │ │ ├── ASanStackFrameLayout.cpp │ │ ├── AddDiscriminators.cpp │ │ ├── BasicBlockUtils.cpp │ │ ├── BreakCriticalEdges.cpp │ │ ├── BuildLibCalls.cpp │ │ ├── BypassSlowDivision.cpp │ │ ├── CMakeLists.txt │ │ ├── CallPromotionUtils.cpp │ │ ├── CloneFunction.cpp │ │ ├── CloneModule.cpp │ │ ├── CodeExtractor.cpp │ │ ├── CtorUtils.cpp │ │ ├── DemoteRegToStack.cpp │ │ ├── EntryExitInstrumenter.cpp │ │ ├── EscapeEnumerator.cpp │ │ ├── Evaluator.cpp │ │ ├── FlattenCFG.cpp │ │ ├── FunctionComparator.cpp │ │ ├── FunctionImportUtils.cpp │ │ ├── GlobalStatus.cpp │ │ ├── ImportedFunctionsInliningStatistics.cpp │ │ ├── InlineFunction.cpp │ │ ├── InstructionNamer.cpp │ │ ├── IntegerDivision.cpp │ │ ├── LCSSA.cpp │ │ ├── LLVMBuild.txt │ │ ├── LibCallsShrinkWrap.cpp │ │ ├── Local.cpp │ │ ├── LoopSimplify.cpp │ │ ├── LoopUnroll.cpp │ │ ├── LoopUnrollPeel.cpp │ │ ├── LoopUnrollRuntime.cpp │ │ ├── LoopUtils.cpp │ │ ├── LoopVersioning.cpp │ │ ├── LowerInvoke.cpp │ │ ├── LowerMemIntrinsics.cpp │ │ ├── LowerSwitch.cpp │ │ ├── Mem2Reg.cpp │ │ ├── MetaRenamer.cpp │ │ ├── ModuleUtils.cpp │ │ ├── NameAnonGlobals.cpp │ │ ├── OrderedInstructions.cpp │ │ ├── PredicateInfo.cpp │ │ ├── PromoteMemoryToRegister.cpp │ │ ├── SSAUpdater.cpp │ │ ├── SanitizerStats.cpp │ │ ├── SimplifyCFG.cpp │ │ ├── SimplifyIndVar.cpp │ │ ├── SimplifyInstructions.cpp │ │ ├── SimplifyLibCalls.cpp │ │ ├── SplitModule.cpp │ │ ├── StripGCRelocates.cpp │ │ ├── StripNonLineTableDebugInfo.cpp │ │ ├── SymbolRewriter.cpp │ │ ├── UnifyFunctionExitNodes.cpp │ │ ├── Utils.cpp │ │ ├── VNCoercion.cpp │ │ └── ValueMapper.cpp │ └── Vectorize │ │ ├── CMakeLists.txt │ │ ├── LLVMBuild.txt │ │ ├── LoadStoreVectorizer.cpp │ │ ├── LoopVectorize.cpp │ │ ├── SLPVectorizer.cpp │ │ ├── VPlan.cpp │ │ ├── VPlan.h │ │ ├── VPlanBuilder.h │ │ ├── VPlanValue.h │ │ └── Vectorize.cpp ├── WindowsManifest │ ├── CMakeLists.txt │ ├── LLVMBuild.txt │ └── WindowsManifestMerger.cpp └── XRay │ ├── CMakeLists.txt │ ├── InstrumentationMap.cpp │ └── Trace.cpp ├── llvm.spec.in ├── projects ├── CMakeLists.txt └── LLVMBuild.txt ├── resources └── windows_version_resource.rc ├── runtimes ├── CMakeLists.txt └── Components.cmake.in ├── test ├── .clang-format ├── Analysis │ ├── AliasSet │ │ ├── intrinsics.ll │ │ ├── memtransfer.ll │ │ ├── saturation.ll │ │ └── unknown-inst-tracking.ll │ ├── AssumptionCache │ │ └── basic.ll │ ├── 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 │ │ ├── 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 │ │ ├── 2010-09-15-GEP-SignedArithmetic.ll │ │ ├── 2014-03-18-Maxlookup-reached.ll │ │ ├── aligned-overread.ll │ │ ├── args-rets-allocas-loads.ll │ │ ├── assume.ll │ │ ├── bug.23540.ll │ │ ├── bug.23626.ll │ │ ├── byval.ll │ │ ├── call-attrs.ll │ │ ├── cas.ll │ │ ├── constant-over-index.ll │ │ ├── cs-cs-arm.ll │ │ ├── cs-cs.ll │ │ ├── dag.ll │ │ ├── empty.ll │ │ ├── fallback-mayalias.ll │ │ ├── featuretest.ll │ │ ├── full-store-partial-alias.ll │ │ ├── gcsetest.ll │ │ ├── gep-alias.ll │ │ ├── gep-and-alias.ll │ │ ├── getmodrefinfo-cs-cs.ll │ │ ├── global-size.ll │ │ ├── guards.ll │ │ ├── intrinsics-arm.ll │ │ ├── intrinsics.ll │ │ ├── invalidation.ll │ │ ├── invariant_load.ll │ │ ├── memset_pattern.ll │ │ ├── modref.ll │ │ ├── must-and-partial.ll │ │ ├── negoffset.ll │ │ ├── no-escape-call.ll │ │ ├── noalias-bugs.ll │ │ ├── noalias-geps.ll │ │ ├── noalias-param.ll │ │ ├── noalias-wraparound-bug.ll │ │ ├── nocapture.ll │ │ ├── phi-aa.ll │ │ ├── phi-and-select.ll │ │ ├── phi-loop.ll │ │ ├── phi-spec-order.ll │ │ ├── phi-speculation.ll │ │ ├── pr18573.ll │ │ ├── pr31761.ll │ │ ├── pure-const-dce.ll │ │ ├── q.bad.ll │ │ ├── returned.ll │ │ ├── sequential-gep.ll │ │ ├── store-promote.ll │ │ ├── struct-geps.ll │ │ ├── tailcall-modref.ll │ │ ├── underlying-value.ll │ │ ├── unreachable-block.ll │ │ └── zext.ll │ ├── BlockFrequencyInfo │ │ ├── bad_input.ll │ │ ├── basic.ll │ │ ├── double_backedge.ll │ │ ├── double_exit.ll │ │ ├── extremely-likely-loop-successor.ll │ │ ├── irreducible.ll │ │ ├── irreducible_loop_crash.ll │ │ ├── irreducible_pgo.ll │ │ ├── loop_with_branch.ll │ │ ├── loops_with_profile_info.ll │ │ ├── nested_loop_with_branches.ll │ │ └── redundant_edges.ll │ ├── BranchProbabilityInfo │ │ ├── basic.ll │ │ ├── deopt-intrinsic.ll │ │ ├── libfunc_call.ll │ │ ├── loop.ll │ │ ├── noreturn.ll │ │ ├── pr18705.ll │ │ └── pr22718.ll │ ├── CFLAliasAnalysis │ │ ├── Andersen │ │ │ ├── assign.ll │ │ │ ├── assign2.ll │ │ │ ├── attrs-below.ll │ │ │ ├── attrs.ll │ │ │ ├── basic-interproc.ll │ │ │ ├── cycle.ll │ │ │ ├── interproc-arg-deref-escape.ll │ │ │ ├── interproc-arg-escape.ll │ │ │ ├── interproc-ret-arg.ll │ │ │ ├── interproc-ret-deref-arg-multilevel.ll │ │ │ ├── interproc-ret-deref-arg.ll │ │ │ ├── interproc-ret-escape.ll │ │ │ ├── interproc-ret-ref-arg-multilevel.ll │ │ │ ├── interproc-ret-ref-arg.ll │ │ │ ├── interproc-ret-unknown.ll │ │ │ ├── interproc-store-arg-multilevel.ll │ │ │ ├── interproc-store-arg-unknown.ll │ │ │ ├── interproc-store-arg.ll │ │ │ ├── memalias.ll │ │ │ └── struct.ll │ │ └── Steensgaard │ │ │ ├── arguments-globals.ll │ │ │ ├── arguments.ll │ │ │ ├── asm-global-bugfix.ll │ │ │ ├── attr-escape.ll │ │ │ ├── basic-interproc.ll │ │ │ ├── branch-alias.ll │ │ │ ├── const-expr-gep.ll │ │ │ ├── constant-over-index.ll │ │ │ ├── empty.ll │ │ │ ├── full-store-partial-alias.ll │ │ │ ├── gep-index-no-alias.ll │ │ │ ├── gep-signed-arithmetic.ll │ │ │ ├── interproc-arg-deref-escape.ll │ │ │ ├── interproc-arg-escape.ll │ │ │ ├── interproc-ret-arg.ll │ │ │ ├── interproc-ret-deref-arg-multilevel.ll │ │ │ ├── interproc-ret-deref-arg.ll │ │ │ ├── interproc-ret-escape.ll │ │ │ ├── interproc-ret-ref-arg-multilevel.ll │ │ │ ├── interproc-ret-ref-arg.ll │ │ │ ├── interproc-ret-unknown.ll │ │ │ ├── interproc-store-arg-multilevel.ll │ │ │ ├── interproc-store-arg-unknown.ll │ │ │ ├── interproc-store-arg.ll │ │ │ ├── malloc-and-free.ll │ │ │ ├── multilevel-combine.ll │ │ │ ├── multilevel.ll │ │ │ ├── must-and-partial.ll │ │ │ ├── opaque-call-alias.ll │ │ │ ├── phi-and-select.ll │ │ │ ├── pr27213.ll │ │ │ ├── simple.ll │ │ │ ├── stratified-attrs-indexing.ll │ │ │ └── va.ll │ ├── CallGraph │ │ ├── 2008-09-09-DirectCall.ll │ │ ├── 2008-09-09-UsedByGlobal.ll │ │ ├── do-nothing-intrinsic.ll │ │ ├── no-intrinsics.ll │ │ └── non-leaf-intrinsics.ll │ ├── ConstantFolding │ │ ├── cast-vector.ll │ │ ├── gep-constanfolding-error.ll │ │ ├── gep.ll │ │ ├── timeout.ll │ │ └── vectorgep-crash.ll │ ├── CostModel │ │ ├── AArch64 │ │ │ ├── bswap.ll │ │ │ ├── free-widening-casts.ll │ │ │ ├── gep.ll │ │ │ ├── kryo.ll │ │ │ ├── lit.local.cfg │ │ │ ├── select.ll │ │ │ └── store.ll │ │ ├── AMDGPU │ │ │ ├── add-sub.ll │ │ │ ├── addrspacecast.ll │ │ │ ├── bit-ops.ll │ │ │ ├── br.ll │ │ │ ├── extractelement.ll │ │ │ ├── fabs.ll │ │ │ ├── fadd.ll │ │ │ ├── fdiv.ll │ │ │ ├── fmul.ll │ │ │ ├── fsub.ll │ │ │ ├── insertelement.ll │ │ │ ├── lit.local.cfg │ │ │ ├── mul.ll │ │ │ ├── shifts.ll │ │ │ └── shufflevector.ll │ │ ├── ARM │ │ │ ├── cast.ll │ │ │ ├── divrem.ll │ │ │ ├── gep.ll │ │ │ ├── insertelement.ll │ │ │ ├── lit.local.cfg │ │ │ ├── select.ll │ │ │ └── shuffle.ll │ │ ├── PowerPC │ │ │ ├── cmp-expanded.ll │ │ │ ├── ext.ll │ │ │ ├── insert_extract.ll │ │ │ ├── lit.local.cfg │ │ │ ├── load_store.ll │ │ │ ├── popcnt.ll │ │ │ ├── unal-vec-ldst.ll │ │ │ ├── unaligned_ld_st.ll │ │ │ └── vsr_load_32_64.ll │ │ ├── SystemZ │ │ │ ├── cmp-ext.ll │ │ │ ├── cmpsel.ll │ │ │ ├── div-pow2.ll │ │ │ ├── ext-load.ll │ │ │ ├── fp-arith.ll │ │ │ ├── fp-cast.ll │ │ │ ├── int-arith.ll │ │ │ ├── int-cast.ll │ │ │ ├── intrinsic-cost-crash.ll │ │ │ ├── lit.local.cfg │ │ │ ├── load_store.ll │ │ │ ├── logical.ll │ │ │ ├── memop-folding-int-arith.ll │ │ │ ├── scalar-cmp-cmp-log-sel.ll │ │ │ ├── shuffle.ll │ │ │ └── vectorinstrs.ll │ │ ├── X86 │ │ │ ├── alternate-shuffle-cost.ll │ │ │ ├── arith-fp.ll │ │ │ ├── arith.ll │ │ │ ├── bitreverse.ll │ │ │ ├── bswap.ll │ │ │ ├── cast.ll │ │ │ ├── cmp.ll │ │ │ ├── costmodel.ll │ │ │ ├── ctlz.ll │ │ │ ├── ctpop.ll │ │ │ ├── cttz.ll │ │ │ ├── div.ll │ │ │ ├── fptosi.ll │ │ │ ├── fptoui.ll │ │ │ ├── gep.ll │ │ │ ├── i32.ll │ │ │ ├── insert-extract-at-zero.ll │ │ │ ├── interleave-load-i32.ll │ │ │ ├── interleave-store-i32.ll │ │ │ ├── interleaved-load-float.ll │ │ │ ├── interleaved-load-i8.ll │ │ │ ├── interleaved-load-store-double.ll │ │ │ ├── interleaved-load-store-i64.ll │ │ │ ├── interleaved-store-i8.ll │ │ │ ├── intrinsic-cost.ll │ │ │ ├── lit.local.cfg │ │ │ ├── load_store.ll │ │ │ ├── loop_v2.ll │ │ │ ├── masked-intrinsic-cost.ll │ │ │ ├── reduction.ll │ │ │ ├── rem.ll │ │ │ ├── scalarize.ll │ │ │ ├── shuffle-broadcast.ll │ │ │ ├── shuffle-reverse.ll │ │ │ ├── shuffle-single-src.ll │ │ │ ├── shuffle-two-src.ll │ │ │ ├── sitofp.ll │ │ │ ├── slm-arith-costs.ll │ │ │ ├── sse-itoi.ll │ │ │ ├── strided-load-i16.ll │ │ │ ├── strided-load-i32.ll │ │ │ ├── strided-load-i64.ll │ │ │ ├── strided-load-i8.ll │ │ │ ├── testshiftashr.ll │ │ │ ├── testshiftlshr.ll │ │ │ ├── testshiftshl.ll │ │ │ ├── tiny.ll │ │ │ ├── trunc.ll │ │ │ ├── uitofp.ll │ │ │ ├── uniformshift.ll │ │ │ ├── vdiv-cost.ll │ │ │ ├── vector_gep.ll │ │ │ ├── vectorized-loop.ll │ │ │ ├── vselect-cost.ll │ │ │ ├── vshift-ashr-cost.ll │ │ │ ├── vshift-lshr-cost.ll │ │ │ └── vshift-shl-cost.ll │ │ └── no_info.ll │ ├── Delinearization │ │ ├── a.ll │ │ ├── constant_functions_multi_dim.ll │ │ ├── divide_by_one.ll │ │ ├── gcd_multiply_expr.ll │ │ ├── himeno_1.ll │ │ ├── himeno_2.ll │ │ ├── iv_times_constant_in_subscript.ll │ │ ├── lit.local.cfg │ │ ├── multidim_ivs_and_integer_offsets_3d.ll │ │ ├── multidim_ivs_and_integer_offsets_nts_3d.ll │ │ ├── multidim_ivs_and_parameteric_offsets_3d.ll │ │ ├── multidim_only_ivs_2d.ll │ │ ├── multidim_only_ivs_2d_nested.ll │ │ ├── multidim_only_ivs_3d.ll │ │ ├── multidim_only_ivs_3d_cast.ll │ │ ├── multidim_two_accesses_different_delinearization.ll │ │ ├── parameter_addrec_product.ll │ │ ├── terms_with_identity_factor.ll │ │ ├── type_mismatch.ll │ │ └── undef.ll │ ├── DemandedBits │ │ ├── basic.ll │ │ └── intrinsics.ll │ ├── DependenceAnalysis │ │ ├── Banerjee.ll │ │ ├── BasePtrBug.ll │ │ ├── Constraints.ll │ │ ├── Coupled.ll │ │ ├── ExactRDIV.ll │ │ ├── ExactSIV.ll │ │ ├── GCD.ll │ │ ├── Invariant.ll │ │ ├── MIVCheckConst.ll │ │ ├── NonAffineExpr.ll │ │ ├── NonCanonicalizedSubscript.ll │ │ ├── PR21585.ll │ │ ├── Preliminary.ll │ │ ├── Propagating.ll │ │ ├── Separability.ll │ │ ├── StrongSIV.ll │ │ ├── SymbolicRDIV.ll │ │ ├── SymbolicSIV.ll │ │ ├── UsefulGEP.ll │ │ ├── WeakCrossingSIV.ll │ │ ├── WeakZeroDstSIV.ll │ │ ├── WeakZeroSrcSIV.ll │ │ └── ZIV.ll │ ├── DivergenceAnalysis │ │ ├── AMDGPU │ │ │ ├── atomics.ll │ │ │ ├── intrinsics.ll │ │ │ ├── kernel-args.ll │ │ │ ├── lit.local.cfg │ │ │ ├── llvm.amdgcn.buffer.atomic.ll │ │ │ ├── llvm.amdgcn.image.atomic.ll │ │ │ ├── no-return-blocks.ll │ │ │ ├── phi-undef.ll │ │ │ ├── unreachable-loop-block.ll │ │ │ └── workitem-intrinsics.ll │ │ └── NVPTX │ │ │ ├── diverge.ll │ │ │ └── lit.local.cfg │ ├── DominanceFrontier │ │ └── new_pm_test.ll │ ├── Dominators │ │ ├── 2006-10-02-BreakCritEdges.ll │ │ ├── 2007-01-14-BreakCritEdges.ll │ │ ├── 2007-07-11-SplitBlock.ll │ │ ├── 2007-07-12-SplitBlock.ll │ │ ├── basic.ll │ │ └── invoke.ll │ ├── GlobalsModRef │ │ ├── 2008-09-03-ReadGlobals.ll │ │ ├── aliastest.ll │ │ ├── atomic-instrs.ll │ │ ├── chaining-analysis.ll │ │ ├── comdat-ipo.ll │ │ ├── dead-uses.ll │ │ ├── func-memattributes.ll │ │ ├── global-used-by-global.ll │ │ ├── inaccessiblememonly.ll │ │ ├── indirect-global.ll │ │ ├── memset-escape.ll │ │ ├── modreftest.ll │ │ ├── no-escape.ll │ │ ├── nonescaping-noalias.ll │ │ ├── pr12351.ll │ │ ├── pr25309.ll │ │ ├── purecse.ll │ │ ├── volatile-instrs.ll │ │ └── weak-interposition.ll │ ├── IVUsers │ │ └── quadradic-exit-value.ll │ ├── LazyCallGraph │ │ ├── basic.ll │ │ └── non-leaf-intrinsics.ll │ ├── LazyValueAnalysis │ │ ├── invalidation.ll │ │ ├── lvi-after-jumpthreading.ll │ │ └── lvi-for-ashr.ll │ ├── Lint │ │ ├── address-spaces.ll │ │ ├── check-zero-divide.ll │ │ ├── cppeh-catch-intrinsics-clean.ll │ │ ├── lit.local.cfg │ │ ├── noalias-byval.ll │ │ ├── noop-cast-expr-no-pointer.ll │ │ └── tail-call-byval.ll │ ├── LoopAccessAnalysis │ │ ├── backward-dep-different-types.ll │ │ ├── forward-loop-carried.ll │ │ ├── forward-loop-independent.ll │ │ ├── independent-interleaved.ll │ │ ├── interleave-innermost.ll │ │ ├── memcheck-for-loop-invariant.ll │ │ ├── memcheck-off-by-one-error.ll │ │ ├── memcheck-wrapping-pointers.ll │ │ ├── multiple-strides-rt-memory-checks.ll │ │ ├── non-wrapping-pointer.ll │ │ ├── nullptr.ll │ │ ├── number-of-memchecks.ll │ │ ├── pointer-with-unknown-bounds.ll │ │ ├── pr31098.ll │ │ ├── resort-to-memchecks-only.ll │ │ ├── reverse-memcheck-bounds.ll │ │ ├── safe-no-checks.ll │ │ ├── safe-with-dep-distance.ll │ │ ├── store-to-invariant-check1.ll │ │ ├── store-to-invariant-check2.ll │ │ ├── store-to-invariant-check3.ll │ │ ├── stride-access-dependence.ll │ │ ├── underlying-objects-1.ll │ │ ├── underlying-objects-2.ll │ │ ├── unsafe-and-rt-checks.ll │ │ └── wrapping-pointer-versioning.ll │ ├── LoopInfo │ │ └── 2003-05-15-NestingProblem.ll │ ├── MemoryDependenceAnalysis │ │ ├── invalidation.ll │ │ ├── memdep-block-scan-limit.ll │ │ └── memdep_requires_dominator_tree.ll │ ├── MemorySSA │ │ ├── assume.ll │ │ ├── atomic-clobber.ll │ │ ├── basicaa-memcpy.ll │ │ ├── constant-memory.ll │ │ ├── cyclicphi.ll │ │ ├── forward-unreachable.ll │ │ ├── function-clobber.ll │ │ ├── function-mem-attrs.ll │ │ ├── invariant-groups.ll │ │ ├── lifetime-simple.ll │ │ ├── load-invariant.ll │ │ ├── many-dom-backedge.ll │ │ ├── many-doms.ll │ │ ├── multi-edges.ll │ │ ├── multiple-backedges-hal.ll │ │ ├── multiple-locations.ll │ │ ├── no-disconnected.ll │ │ ├── optimize-use.ll │ │ ├── phi-translation.ll │ │ ├── pr28880.ll │ │ ├── ptr-const-mem.ll │ │ └── volatile-clobber.ll │ ├── PostDominators │ │ ├── infinite-loop.ll │ │ ├── infinite-loop2.ll │ │ ├── infinite-loop3.ll │ │ ├── pr1098.ll │ │ ├── pr24415.ll │ │ ├── pr6047_a.ll │ │ ├── pr6047_b.ll │ │ ├── pr6047_c.ll │ │ └── pr6047_d.ll │ ├── ProfileSummary │ │ └── basic.ll │ ├── RegionInfo │ │ ├── 20100809_bb_not_in_domtree.ll │ │ ├── bad_node_traversal.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 │ │ ├── exit_in_condition.ll │ │ ├── infinite_loop.ll │ │ ├── infinite_loop_2.ll │ │ ├── infinite_loop_3.ll │ │ ├── infinite_loop_4.ll │ │ ├── infinite_loop_5_a.ll │ │ ├── infinite_loop_5_b.ll │ │ ├── infinite_loop_5_c.ll │ │ ├── loop_with_condition.ll │ │ ├── loops_1.ll │ │ ├── loops_2.ll │ │ ├── mix_1.ll │ │ ├── multiple_exiting_edge.ll │ │ ├── nested_loops.ll │ │ ├── next.ll │ │ ├── outgoing_edge.ll │ │ ├── outgoing_edge_1.ll │ │ ├── paper.ll │ │ ├── two_loops_same_header.ll │ │ └── unreachable_bb.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 │ │ ├── 2010-09-03-RequiredTransitive.ll │ │ ├── 2011-03-09-ExactNoMaxBECount.ll │ │ ├── 2011-04-26-FoldAddRec.ll │ │ ├── 2011-10-04-ConstEvolve.ll │ │ ├── 2012-03-26-LoadConstant.ll │ │ ├── 2012-05-18-LoopPredRecurse.ll │ │ ├── 2012-05-29-MulAddRec.ll │ │ ├── SolveQuadraticEquation.ll │ │ ├── ZeroStep.ll │ │ ├── and-xor.ll │ │ ├── avoid-assume-hang.ll │ │ ├── avoid-infinite-recursion-0.ll │ │ ├── avoid-infinite-recursion-1.ll │ │ ├── avoid-smax-0.ll │ │ ├── avoid-smax-1.ll │ │ ├── cache_loop_exit_limit.ll │ │ ├── constant_condition.ll │ │ ├── different-loops-recs.ll │ │ ├── div-overflow.ll │ │ ├── do-loop.ll │ │ ├── exhaustive-trip-counts.ll │ │ ├── expander-replace-congruent-ivs.ll │ │ ├── exponential-behavior.ll │ │ ├── ext-antecedent.ll │ │ ├── flags-from-poison-dbg.ll │ │ ├── flags-from-poison.ll │ │ ├── flattened-0.ll │ │ ├── fold.ll │ │ ├── guards.ll │ │ ├── how-far-to-zero.ll │ │ ├── implied-via-addition.ll │ │ ├── implied-via-division.ll │ │ ├── incorrect-nsw.ll │ │ ├── increasing-or-decreasing-iv.ll │ │ ├── infer-prestart-no-wrap.ll │ │ ├── infer-via-ranges.ll │ │ ├── invalidation.ll │ │ ├── latch-dominating-conditions.ll │ │ ├── limit-depth.ll │ │ ├── load-with-range-metadata.ll │ │ ├── load.ll │ │ ├── max-addops-inline.ll │ │ ├── max-addrec-size.ll │ │ ├── max-be-count-not-constant.ll │ │ ├── max-mulops-inline.ll │ │ ├── max-trip-count-address-space.ll │ │ ├── max-trip-count.ll │ │ ├── min-max-exprs.ll │ │ ├── no-wrap-add-exprs.ll │ │ ├── no-wrap-unknown-becount.ll │ │ ├── non-IV-phi.ll │ │ ├── nowrap-preinc-limits.ll │ │ ├── nsw-offset-assume.ll │ │ ├── nsw-offset.ll │ │ ├── nsw.ll │ │ ├── nw-sub-is-not-nw-add.ll │ │ ├── overflow-intrinsics.ll │ │ ├── pointer-sign-bits.ll │ │ ├── pr18606-min-zeros.ll │ │ ├── pr18606.ll │ │ ├── pr22179.ll │ │ ├── pr22641.ll │ │ ├── pr22674.ll │ │ ├── pr22856.ll │ │ ├── pr24757.ll │ │ ├── pr25369.ll │ │ ├── pr27315.ll │ │ ├── pr28705.ll │ │ ├── pr34538.ll │ │ ├── pr3909.ll │ │ ├── predicated-trip-count.ll │ │ ├── range-signedness.ll │ │ ├── returned.ll │ │ ├── scev-aa.ll │ │ ├── scev-canonical-mode.ll │ │ ├── scev-dispositions.ll │ │ ├── scev-expander-existing-value-offset.ll │ │ ├── scev-expander-incorrect-nowrap.ll │ │ ├── scev-expander-reuse-gep.ll │ │ ├── scev-expander-reuse-unroll.ll │ │ ├── scev-expander-reuse-vect.ll │ │ ├── scev-invalid.ll │ │ ├── scev-prestart-nowrap.ll │ │ ├── sext-inreg.ll │ │ ├── sext-iv-0.ll │ │ ├── sext-iv-1.ll │ │ ├── sext-iv-2.ll │ │ ├── sext-mul.ll │ │ ├── sext-to-zext.ll │ │ ├── sext-zero.ll │ │ ├── shift-op.ll │ │ ├── sle.ll │ │ ├── smax-br-phi-idioms.ll │ │ ├── smax.ll │ │ ├── trip-count-pow2.ll │ │ ├── trip-count-switch.ll │ │ ├── trip-count-unknown-stride.ll │ │ ├── trip-count.ll │ │ ├── trip-count10.ll │ │ ├── trip-count11.ll │ │ ├── trip-count12.ll │ │ ├── trip-count13.ll │ │ ├── trip-count14.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 │ │ ├── tripmultiple_calculation.ll │ │ ├── truncate.ll │ │ ├── undefined.ll │ │ ├── unreachable-code.ll │ │ ├── unsimplified-loop.ll │ │ ├── urem-0.ll │ │ ├── zext-signed-addrec.ll │ │ └── zext-wrap.ll │ ├── ScopedNoAliasAA │ │ ├── basic-domains.ll │ │ ├── basic.ll │ │ └── basic2.ll │ ├── TypeBasedAliasAnalysis │ │ ├── PR17620.ll │ │ ├── aliastest.ll │ │ ├── argument-promotion.ll │ │ ├── cyclic.ll │ │ ├── dse.ll │ │ ├── dynamic-indices.ll │ │ ├── functionattrs.ll │ │ ├── gvn-nonlocal-type-mismatch.ll │ │ ├── intrinsics.ll │ │ ├── licm.ll │ │ ├── memcpyopt.ll │ │ ├── placement-tbaa.ll │ │ ├── precedence.ll │ │ ├── sink.ll │ │ └── tbaa-path.ll │ ├── ValueTracking │ │ ├── assume.ll │ │ ├── deref-bitcast-of-gep.ll │ │ ├── dereferenceable-and-aligned.ll │ │ ├── get-pointer-base-with-const-off.ll │ │ ├── known-bits-from-range-md.ll │ │ ├── known-non-equal.ll │ │ ├── known-nonnull-at.ll │ │ ├── known-power-of-two.ll │ │ ├── known-signbit-shift.ll │ │ ├── knownnonzero-shift.ll │ │ ├── knownzero-addrspacecast.ll │ │ ├── knownzero-shift.ll │ │ ├── memory-dereferenceable.ll │ │ ├── monotonic-phi.ll │ │ ├── pr23011.ll │ │ ├── select-pattern.ll │ │ └── signbits-extract-elt.ll │ └── alias-analysis-uses.ll ├── Assembler │ ├── 2002-03-08-NameCollision.ll │ ├── 2002-03-08-NameCollision2.ll │ ├── 2002-04-07-HexFloatConstants.ll │ ├── 2002-04-07-InfConstant.ll │ ├── 2002-04-29-NameBinding.ll │ ├── 2002-05-02-InvalidForwardRef.ll │ ├── 2002-07-14-OpaqueType.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-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-08-20-ConstantExprGEP-Fold.ll │ ├── 2003-08-21-ConstantExprCast-Fold.ll │ ├── 2003-11-05-ConstantExprShift.ll │ ├── 2003-11-11-ImplicitRename.ll │ ├── 2003-11-12-ConstantExprCast.ll │ ├── 2003-11-24-SymbolTableCrash.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-05-05-OpaqueUndefValues.ll │ ├── 2005-12-21-ZeroInitVector.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-08-06-AliasInvalid.ll │ ├── 2007-09-10-AliasFwdRef.ll │ ├── 2007-09-29-GC.ll │ ├── 2007-11-26-AttributeOverload.ll │ ├── 2007-12-11-AddressSpaces.ll │ ├── 2008-01-11-VarargAttrs.ll │ ├── 2008-02-18-IntPointerCrash.ll │ ├── 2008-07-10-APInt.ll │ ├── 2008-09-02-FunctionNotes.ll │ ├── 2008-09-02-FunctionNotes2.ll │ ├── 2008-09-29-RetAttr.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-07-24-ZeroArgGEP.ll │ ├── 2010-02-05-FunctionLocalMetadataBecomesNull.ll │ ├── ConstantExprFold.ll │ ├── ConstantExprFoldCast.ll │ ├── ConstantExprFoldSelect.ll │ ├── ConstantExprNoFold.ll │ ├── DIGlobalVariableExpression.ll │ ├── DIMacroFile.ll │ ├── MultipleReturnValueType.ll │ ├── addrspacecast-alias.ll │ ├── aggregate-constant-values.ll │ ├── aggregate-return-single-value.ll │ ├── alias-redefinition.ll │ ├── alias-use-list-order.ll │ ├── align-inst-alloca.ll │ ├── align-inst-load.ll │ ├── align-inst-store.ll │ ├── align-inst.ll │ ├── alignstack.ll │ ├── alloca-addrspace-elems.ll │ ├── alloca-addrspace-parse-error-0.ll │ ├── alloca-addrspace-parse-error-1.ll │ ├── alloca-addrspace0.ll │ ├── alloca-invalid-type-2.ll │ ├── alloca-invalid-type.ll │ ├── alloca-size-one.ll │ ├── anon-functions.ll │ ├── atomic.ll │ ├── attribute-builtin.ll │ ├── auto_upgrade_intrinsics.ll │ ├── auto_upgrade_nvvm_intrinsics.ll │ ├── autoupgrade-thread-pointer.ll │ ├── bcwrap.ll │ ├── call-invalid-1.ll │ ├── comment.ll │ ├── datalayout-alloca-addrspace-mismatch-0.ll │ ├── datalayout-alloca-addrspace-mismatch-1.ll │ ├── datalayout-alloca-addrspace-mismatch-2.ll │ ├── datalayout-alloca-addrspace.ll │ ├── debug-info.ll │ ├── dicompileunit.ll │ ├── dicompositetype-members.ll │ ├── diexpression.ll │ ├── difile-escaped-chars.ll │ ├── diglobalvariable.ll │ ├── diimportedentity.ll │ ├── dilexicalblock.ll │ ├── dilocalvariable-arg-large.ll │ ├── dilocalvariable.ll │ ├── dilocation.ll │ ├── dimodule.ll │ ├── dinamespace.ll │ ├── diobjcproperty.ll │ ├── distinct-mdnode.ll │ ├── disubprogram.ll │ ├── disubrange-empty-array.ll │ ├── disubroutinetype.ll │ ├── ditemplateparameter.ll │ ├── ditype-large-values.ll │ ├── dllimport-dsolocal-diag.ll │ ├── drop-debug-info.ll │ ├── externally-initialized.ll │ ├── extractvalue-invalid-idx.ll │ ├── extractvalue-no-idx.ll │ ├── fast-math-flags.ll │ ├── flags.ll │ ├── generic-debug-node.ll │ ├── getInt.ll │ ├── getelementptr.ll │ ├── getelementptr_invalid_ptr.ll │ ├── getelementptr_struct.ll │ ├── getelementptr_vec_ce.ll │ ├── getelementptr_vec_ce2.ll │ ├── getelementptr_vec_idx1.ll │ ├── getelementptr_vec_idx2.ll │ ├── getelementptr_vec_idx3.ll │ ├── getelementptr_vec_idx4.ll │ ├── getelementptr_vec_struct.ll │ ├── global-addrspace-forwardref.ll │ ├── globalvariable-attributes.ll │ ├── gv-invalid-type.ll │ ├── half-constprop.ll │ ├── half-conv.ll │ ├── half.ll │ ├── huge-array.ll │ ├── ifunc-asm.ll │ ├── ifunc-dsolocal-daig.ll │ ├── ifunc-use-list-order.ll │ ├── inalloca.ll │ ├── incorrect-tdep-attrs-parsing.ll │ ├── inline-asm-clobber.ll │ ├── insertextractvalue.ll │ ├── insertvalue-invalid-idx.ll │ ├── insertvalue-invalid-type-1.ll │ ├── insertvalue-invalid-type.ll │ ├── internal-hidden-alias.ll │ ├── internal-hidden-function.ll │ ├── internal-hidden-variable.ll │ ├── internal-protected-alias.ll │ ├── internal-protected-function.ll │ ├── internal-protected-variable.ll │ ├── invalid-alias-mismatched-explicit-type.ll │ ├── invalid-attrgrp.ll │ ├── invalid-comdat.ll │ ├── invalid-comdat2.ll │ ├── invalid-datalayout-alloca-addrspace.ll │ ├── invalid-datalayout1.ll │ ├── invalid-datalayout10.ll │ ├── invalid-datalayout11.ll │ ├── invalid-datalayout12.ll │ ├── invalid-datalayout13.ll │ ├── invalid-datalayout14.ll │ ├── invalid-datalayout15.ll │ ├── invalid-datalayout16.ll │ ├── invalid-datalayout17.ll │ ├── invalid-datalayout18.ll │ ├── invalid-datalayout19.ll │ ├── invalid-datalayout2.ll │ ├── invalid-datalayout20.ll │ ├── invalid-datalayout21.ll │ ├── invalid-datalayout22.ll │ ├── invalid-datalayout23.ll │ ├── invalid-datalayout24.ll │ ├── invalid-datalayout3.ll │ ├── invalid-datalayout4.ll │ ├── invalid-datalayout5.ll │ ├── invalid-datalayout6.ll │ ├── invalid-datalayout7.ll │ ├── invalid-datalayout8.ll │ ├── invalid-datalayout9.ll │ ├── invalid-debug-info-version.ll │ ├── invalid-dicompileunit-emissionkind-bad.ll │ ├── invalid-dicompileunit-language-bad.ll │ ├── invalid-dicompileunit-language-overflow.ll │ ├── invalid-dicompileunit-missing-language.ll │ ├── invalid-dicompileunit-null-file.ll │ ├── invalid-dicompileunit-uniqued.ll │ ├── invalid-dicompositetype-missing-tag.ll │ ├── invalid-diderivedtype-missing-basetype.ll │ ├── invalid-diderivedtype-missing-tag.ll │ ├── invalid-dienumerator-missing-name.ll │ ├── invalid-dienumerator-missing-value.ll │ ├── invalid-diexpression-large.ll │ ├── invalid-diexpression-verify.ll │ ├── invalid-difile-missing-directory.ll │ ├── invalid-difile-missing-filename.ll │ ├── invalid-diglobalvariable-empty-name.ll │ ├── invalid-diglobalvariable-missing-name.ll │ ├── invalid-diimportedentity-missing-scope.ll │ ├── invalid-diimportedentity-missing-tag.ll │ ├── invalid-dilexicalblock-missing-scope.ll │ ├── invalid-dilexicalblock-null-scope.ll │ ├── invalid-dilexicalblockfile-missing-discriminator.ll │ ├── invalid-dilexicalblockfile-missing-scope.ll │ ├── invalid-dilexicalblockfile-null-scope.ll │ ├── invalid-dilocalvariable-arg-large.ll │ ├── invalid-dilocalvariable-arg-negative.ll │ ├── invalid-dilocalvariable-missing-scope.ll │ ├── invalid-dilocalvariable-null-scope.ll │ ├── invalid-dilocation-field-bad.ll │ ├── invalid-dilocation-field-twice.ll │ ├── invalid-dilocation-missing-scope-2.ll │ ├── invalid-dilocation-missing-scope.ll │ ├── invalid-dilocation-null-scope.ll │ ├── invalid-dilocation-overflow-column.ll │ ├── invalid-dilocation-overflow-line.ll │ ├── invalid-dinamespace-missing-namespace.ll │ ├── invalid-disubprogram-uniqued-definition.ll │ ├── invalid-disubrange-count-large.ll │ ├── invalid-disubrange-count-missing.ll │ ├── invalid-disubrange-count-negative.ll │ ├── invalid-disubrange-lowerBound-max.ll │ ├── invalid-disubrange-lowerBound-min.ll │ ├── invalid-disubroutinetype-missing-types.ll │ ├── invalid-ditemplatetypeparameter-missing-type.ll │ ├── invalid-ditemplatevalueparameter-missing-value.ll │ ├── invalid-fp80hex.ll │ ├── invalid-fwdref1.ll │ ├── invalid-fwdref2.ll │ ├── invalid-generic-debug-node-tag-bad.ll │ ├── invalid-generic-debug-node-tag-missing.ll │ ├── invalid-generic-debug-node-tag-overflow.ll │ ├── invalid-generic-debug-node-tag-wrong-type.ll │ ├── invalid-gep-mismatched-explicit-type.ll │ ├── invalid-gep-missing-explicit-type.ll │ ├── invalid-hexint.ll │ ├── invalid-inline-constraint.ll │ ├── invalid-inttype.ll │ ├── invalid-label.ll │ ├── invalid-landingpad.ll │ ├── invalid-load-mismatched-explicit-type.ll │ ├── invalid-load-missing-explicit-type.ll │ ├── invalid-mdnode-badref.ll │ ├── invalid-mdnode-vector.ll │ ├── invalid-mdnode-vector2.ll │ ├── invalid-metadata-attachment-has-type.ll │ ├── invalid-metadata-function-local-attachments.ll │ ├── invalid-metadata-function-local-complex-1.ll │ ├── invalid-metadata-function-local-complex-2.ll │ ├── invalid-metadata-function-local-complex-3.ll │ ├── invalid-metadata-has-type.ll │ ├── invalid-name.ll │ ├── invalid-name2.ll │ ├── invalid-safestack-param.ll │ ├── invalid-safestack-return.ll │ ├── invalid-specialized-mdnode.ll │ ├── invalid-untyped-metadata.ll │ ├── invalid-uselistorder-function-between-blocks.ll │ ├── invalid-uselistorder-function-missing-named.ll │ ├── invalid-uselistorder-function-missing-numbered.ll │ ├── invalid-uselistorder-global-missing.ll │ ├── invalid-uselistorder-indexes-duplicated.ll │ ├── invalid-uselistorder-indexes-empty.ll │ ├── invalid-uselistorder-indexes-one.ll │ ├── invalid-uselistorder-indexes-ordered.ll │ ├── invalid-uselistorder-indexes-range.ll │ ├── invalid-uselistorder-indexes-toofew.ll │ ├── invalid-uselistorder-indexes-toomany.ll │ ├── invalid-uselistorder-type.ll │ ├── invalid-uselistorder_bb-missing-bb.ll │ ├── invalid-uselistorder_bb-missing-body.ll │ ├── invalid-uselistorder_bb-missing-func.ll │ ├── invalid-uselistorder_bb-not-bb.ll │ ├── invalid-uselistorder_bb-not-func.ll │ ├── invalid-uselistorder_bb-numbered.ll │ ├── invalid_cast.ll │ ├── invalid_cast2.ll │ ├── invalid_cast3.ll │ ├── invalid_cast4.ll │ ├── large-comdat.ll │ ├── local-unnamed-addr.ll │ ├── max-inttype.ll │ ├── metadata-decl.ll │ ├── metadata-function-local.ll │ ├── metadata-null-operands.ll │ ├── metadata.ll │ ├── missing-tbaa.ll │ ├── musttail-invalid-1.ll │ ├── musttail-invalid-2.ll │ ├── musttail.ll │ ├── named-metadata.ll │ ├── no-mdstring-upgrades.ll │ ├── numbered-values.ll │ ├── private-hidden-alias.ll │ ├── private-hidden-function.ll │ ├── private-hidden-variable.ll │ ├── private-protected-alias.ll │ ├── private-protected-function.ll │ ├── private-protected-variable.ll │ ├── return-column.s │ ├── select.ll │ ├── short-hexpair.ll │ ├── source-filename-backslash.ll │ ├── source-filename.ll │ ├── tls-models.ll │ ├── token.ll │ ├── unnamed-addr.ll │ ├── unnamed-alias.ll │ ├── unnamed-comdat.ll │ ├── unnamed.ll │ ├── unsized-recursive-type.ll │ ├── uselistorder.ll │ ├── uselistorder_bb.ll │ ├── vbool-cmp.ll │ ├── vector-cmp.ll │ ├── vector-select.ll │ ├── vector-shift.ll │ └── x86mmx.ll ├── Bindings │ ├── Go │ │ ├── go.test │ │ └── lit.local.cfg │ ├── OCaml │ │ ├── analysis.ml │ │ ├── bitreader.ml │ │ ├── bitwriter.ml │ │ ├── core.ml │ │ ├── diagnostic_handler.ml │ │ ├── executionengine.ml │ │ ├── ext_exc.ml │ │ ├── ipo.ml │ │ ├── irreader.ml │ │ ├── linker.ml │ │ ├── lit.local.cfg │ │ ├── passmgr_builder.ml │ │ ├── scalar_opts.ml │ │ ├── target.ml │ │ ├── transform_utils.ml │ │ └── vectorize.ml │ └── llvm-c │ │ ├── ARM │ │ ├── disassemble.test │ │ └── lit.local.cfg │ │ ├── Inputs │ │ └── invalid.ll.bc │ │ ├── X86 │ │ ├── disassemble.test │ │ └── lit.local.cfg │ │ ├── add_named_metadata_operand.ll │ │ ├── atomics.ll │ │ ├── calc.test │ │ ├── callsite_attributes.ll │ │ ├── debug_info.ll │ │ ├── echo.ll │ │ ├── empty.ll │ │ ├── function_attributes.ll │ │ ├── functions.ll │ │ ├── globals.ll │ │ ├── invalid-bitcode.test │ │ ├── invoke.ll │ │ ├── memops.ll │ │ ├── objectfile.ll │ │ └── set_metadata.ll ├── Bitcode │ ├── 2006-12-11-Cast-ConstExpr.ll │ ├── 2009-06-11-FirstClassAggregateConstant.ll │ ├── DICompileUnit-no-DWOId.ll │ ├── DICompileUnit-no-DWOId.ll.bc │ ├── DIExpression-4.0.ll │ ├── DIExpression-4.0.ll.bc │ ├── DIExpression-aggresult.ll │ ├── DIExpression-aggresult.ll.bc │ ├── DIExpression-deref.ll │ ├── DIExpression-deref.ll.bc │ ├── DIExpression-minus-upgrade.ll │ ├── DIExpression-minus-upgrade.ll.bc │ ├── DIGlobalVariableExpression.ll │ ├── DIGlobalVariableExpression.ll.bc │ ├── DIGlobalVariableExpression2.ll │ ├── DIGlobalVariableExpression2.ll.bc │ ├── DILocalVariable-explicit-tags.ll │ ├── DILocalVariable-explicit-tags.ll.bc │ ├── DINamespace.ll │ ├── DINamespace.ll.bc │ ├── DISubprogram-distinct-definitions.ll │ ├── DISubprogram-distinct-definitions.ll.bc │ ├── Inputs │ │ ├── PR23310.bc │ │ ├── invalid-GCTable-overflow.bc │ │ ├── invalid-abbrev-fixed-size-too-big.bc │ │ ├── invalid-abbrev-no-operands.bc │ │ ├── invalid-abbrev-vbr-size-too-big.bc │ │ ├── invalid-abbrev.bc │ │ ├── invalid-alias-type-mismatch.bc │ │ ├── invalid-align.bc │ │ ├── invalid-array-element-type.bc │ │ ├── invalid-array-op-not-2nd-to-last.bc │ │ ├── invalid-array-operand-encoding.bc │ │ ├── invalid-array-type.bc │ │ ├── invalid-bad-abbrev-number.bc │ │ ├── invalid-bitwidth.bc │ │ ├── invalid-call-mismatched-explicit-type.bc │ │ ├── invalid-call-non-function-explicit-type.bc │ │ ├── invalid-cast.bc │ │ ├── invalid-code-len-width.bc │ │ ├── invalid-empty.bc │ │ ├── invalid-extract-0-indices.bc │ │ ├── invalid-extractval-array-idx.bc │ │ ├── invalid-extractval-struct-idx.bc │ │ ├── invalid-extractval-too-many-idxs.bc │ │ ├── invalid-fp-shift.bc │ │ ├── invalid-function-argument-type.bc │ │ ├── invalid-function-comdat-id.bc │ │ ├── invalid-fwdref-type-mismatch-2.bc │ │ ├── invalid-fwdref-type-mismatch.bc │ │ ├── invalid-gep-mismatched-explicit-type.bc │ │ ├── invalid-gep-no-operands.bc │ │ ├── invalid-gep-operator-mismatched-explicit-type.bc │ │ ├── invalid-global-var-comdat-id.bc │ │ ├── invalid-insert-0-indices.bc │ │ ├── invalid-inserted-value-type-mismatch.bc │ │ ├── invalid-insertval-array-idx.bc │ │ ├── invalid-insertval-struct-idx.bc │ │ ├── invalid-insertval-too-many-idxs.bc │ │ ├── invalid-invoke-mismatched-explicit-type.bc │ │ ├── invalid-invoke-non-function-explicit-type.bc │ │ ├── invalid-load-mismatched-explicit-type.bc │ │ ├── invalid-load-pointer-type.bc │ │ ├── invalid-load-ptr-type.bc │ │ ├── invalid-metadata-not-followed-named-node.bc │ │ ├── invalid-name-with-0-byte.bc │ │ ├── invalid-no-function-block.bc │ │ ├── invalid-no-proper-module.bc │ │ ├── invalid-non-vector-extractelement.bc │ │ ├── invalid-non-vector-insertelement.bc │ │ ├── invalid-non-vector-shufflevector.bc │ │ ├── invalid-nonpointer-atomicrmw.bc │ │ ├── invalid-nonpointer-storeatomic.bc │ │ ├── invalid-pointer-element-type.bc │ │ ├── invalid-pr20485.bc │ │ ├── invalid-too-big-fwdref.bc │ │ ├── invalid-type-table-forward-ref.bc │ │ ├── invalid-unexpected-eof.bc │ │ ├── invalid-vector-element-type.bc │ │ ├── invalid-vector-length.bc │ │ ├── invalid-void-constant.bc │ │ ├── module-hash-strtab1.ll │ │ ├── module-hash-strtab2.ll │ │ ├── module_hash.ll │ │ ├── multi-module.ll │ │ ├── padding-garbage.bc │ │ ├── padding.bc │ │ ├── source-filename.bc │ │ ├── thinlto-alias.ll │ │ ├── thinlto-function-summary-callgraph-combined.1.bc │ │ ├── thinlto-function-summary-callgraph-pgo-combined.1.bc │ │ ├── thinlto-function-summary-callgraph-pgo.1.bc │ │ ├── thinlto-function-summary-callgraph-profile-summary.ll │ │ ├── thinlto-function-summary-callgraph-sample-profile-summary.ll │ │ ├── thinlto-function-summary-callgraph.1.bc │ │ └── thinlto-function-summary-callgraph.ll │ ├── PR23310.test │ ├── aggregateInstructions.3.2.ll │ ├── aggregateInstructions.3.2.ll.bc │ ├── anon-functions.ll │ ├── arm32_neon_vcnt_upgrade.ll │ ├── atomic-no-syncscope.ll │ ├── atomic-no-syncscope.ll.bc │ ├── atomic.ll │ ├── attributes-3.3.ll │ ├── attributes-3.3.ll.bc │ ├── attributes.ll │ ├── auto_upgrade_intrinsics.bc │ ├── avr-calling-conventions.ll │ ├── avr-calling-conventions.ll.bc │ ├── binaryFloatInstructions.3.2.ll │ ├── binaryFloatInstructions.3.2.ll.bc │ ├── binaryIntInstructions.3.2.ll │ ├── binaryIntInstructions.3.2.ll.bc │ ├── bitcode-wrapper-header-armv7m.ll │ ├── bitcode-wrapper-header-x86_64.ll │ ├── bitwiseInstructions.3.2.ll │ ├── bitwiseInstructions.3.2.ll.bc │ ├── blockaddress.ll │ ├── calling-conventions.3.2.ll │ ├── calling-conventions.3.2.ll.bc │ ├── case-ranges-3.3.ll │ ├── case-ranges-3.3.ll.bc │ ├── cmpxchg-upgrade.ll │ ├── cmpxchg-upgrade.ll.bc │ ├── cmpxchg.3.6.ll │ ├── cmpxchg.3.6.ll.bc │ ├── compatibility-3.6.ll │ ├── compatibility-3.6.ll.bc │ ├── compatibility-3.7.ll │ ├── compatibility-3.7.ll.bc │ ├── compatibility-3.8.ll │ ├── compatibility-3.8.ll.bc │ ├── compatibility-3.9.ll │ ├── compatibility-3.9.ll.bc │ ├── compatibility-4.0.ll │ ├── compatibility-4.0.ll.bc │ ├── compatibility-5.0.ll │ ├── compatibility-5.0.ll.bc │ ├── compatibility.ll │ ├── constantsTest.3.2.ll │ ├── constantsTest.3.2.ll.bc │ ├── conversionInstructions.3.2.ll │ ├── conversionInstructions.3.2.ll.bc │ ├── debug-loc-again.ll │ ├── dicompileunit-gnu-pubnames.ll │ ├── diglobalvariable-3.8.ll │ ├── diglobalvariable-3.8.ll.bc │ ├── dilocalvariable-3.9.ll │ ├── dilocalvariable-3.9.ll.bc │ ├── dityperefs-3.8.ll │ ├── dityperefs-3.8.ll.bc │ ├── drop-debug-info.3.5.ll │ ├── drop-debug-info.3.5.ll.bc │ ├── dso_location.ll │ ├── extractelement.ll │ ├── fcmp-fast.ll │ ├── flags.ll │ ├── function-encoding-rel-operands.ll │ ├── function-local-metadata.3.5.ll │ ├── function-local-metadata.3.5.ll.bc │ ├── global-variables.3.2.ll │ ├── global-variables.3.2.ll.bc │ ├── globalvariable-attributes.ll │ ├── highLevelStructure.3.2.ll │ ├── highLevelStructure.3.2.ll.bc │ ├── identification.ll │ ├── inalloca.ll │ ├── invalid-weak-external.ll │ ├── invalid.ll │ ├── invalid.ll.bc │ ├── invalid.test │ ├── linkage-types-3.2.ll │ ├── linkage-types-3.2.ll.bc │ ├── local-linkage-default-visibility.3.4.ll │ ├── local-linkage-default-visibility.3.4.ll.bc │ ├── mdnodes-distinct-in-post-order.ll │ ├── mdnodes-distinct-nodes-break-cycles.ll │ ├── mdnodes-distinct-nodes-first.ll │ ├── mdnodes-in-post-order.ll │ ├── mdstring-high-bits.ll │ ├── memInstructions.3.2.ll │ ├── memInstructions.3.2.ll.bc │ ├── metadata-2.ll │ ├── metadata-function-blocks.ll │ ├── metadata-only-empty-string.ll │ ├── metadata-strings.ll │ ├── metadata.3.5.ll │ ├── metadata.3.5.ll.bc │ ├── metadata.ll │ ├── miscInstructions.3.2.ll │ ├── miscInstructions.3.2.ll.bc │ ├── module-hash-strtab.ll │ ├── module_hash.ll │ ├── multi-module.ll │ ├── null-type.ll │ ├── null-type.ll.bc │ ├── old-aliases.ll │ ├── old-aliases.ll.bc │ ├── operand-bundles-bc-analyzer.ll │ ├── operand-bundles.ll │ ├── padding.test │ ├── pr18704.ll │ ├── pr18704.ll.bc │ ├── ptest-new.ll │ ├── ptest-old.ll │ ├── select.ll │ ├── shuffle.ll │ ├── source-filename.test │ ├── ssse3_palignr.ll │ ├── standardCIntrinsic.3.2.ll │ ├── standardCIntrinsic.3.2.ll.bc │ ├── summary_version.ll │ ├── tailcall.ll │ ├── terminatorInstructions.3.2.ll │ ├── terminatorInstructions.3.2.ll.bc │ ├── thinlto-alias.ll │ ├── thinlto-alias2.ll │ ├── thinlto-asm-noimport.ll │ ├── thinlto-empty-summary-section.ll │ ├── thinlto-function-summary-callgraph-cast.ll │ ├── thinlto-function-summary-callgraph-pgo.ll │ ├── thinlto-function-summary-callgraph-profile-summary.ll │ ├── thinlto-function-summary-callgraph-sample-profile-summary.ll │ ├── thinlto-function-summary-callgraph.ll │ ├── thinlto-function-summary-functionattrs.ll │ ├── thinlto-function-summary-originalnames.ll │ ├── thinlto-function-summary-refgraph.ll │ ├── thinlto-function-summary.ll │ ├── thinlto-summary-globalvar.ll │ ├── thinlto-summary-linkage-types.ll │ ├── thinlto-summary-local-5.0.ll │ ├── thinlto-summary-local-5.0.ll.bc │ ├── thinlto-summary-section.ll │ ├── thinlto-type-tests.ll │ ├── thinlto-type-vcalls.ll │ ├── thinlto-unused-type-tests.ll │ ├── upgrade-dbg-value.ll │ ├── upgrade-dbg-value.ll.bc │ ├── upgrade-debug-info-for-profiling.ll │ ├── upgrade-debug-info-for-profiling.ll.bc │ ├── upgrade-global-ctors.ll │ ├── upgrade-global-ctors.ll.bc │ ├── upgrade-importedentity.ll │ ├── upgrade-importedentity.ll.bc │ ├── upgrade-linker-options.ll │ ├── upgrade-loop-metadata.ll │ ├── upgrade-loop-metadata.ll.bc │ ├── upgrade-module-flag.ll │ ├── upgrade-pointer-address-space.ll │ ├── upgrade-pointer-address-space.ll.bc │ ├── upgrade-section-name.ll │ ├── upgrade-subprogram-this.ll │ ├── upgrade-subprogram-this.ll.bc │ ├── upgrade-subprogram.ll │ ├── upgrade-subprogram.ll.bc │ ├── upgrade-tbaa.ll │ ├── use-list-order.ll │ ├── use-list-order2.ll │ ├── variableArgumentIntrinsic.3.2.ll │ ├── variableArgumentIntrinsic.3.2.ll.bc │ ├── vectorInstructions.3.2.ll │ ├── vectorInstructions.3.2.ll.bc │ ├── visibility-styles.3.2.ll │ ├── visibility-styles.3.2.ll.bc │ ├── vst-forward-declaration.ll │ ├── weak-cmpxchg-upgrade.ll │ ├── weak-cmpxchg-upgrade.ll.bc │ ├── weak-macho-3.5.ll │ └── weak-macho-3.5.ll.bc ├── BugPoint │ ├── compile-custom.ll │ ├── compile-custom.ll.py │ ├── crash-narrowfunctiontest.ll │ ├── invalid-debuginfo.ll │ ├── metadata.ll │ ├── named-md.ll │ ├── remove_arguments_test.ll │ ├── replace-funcs-with-null.ll │ └── unsymbolized.ll ├── CMakeLists.txt ├── CodeGen │ ├── AArch64 │ │ ├── 128bit_load_store.ll │ │ ├── GlobalISel │ │ │ ├── arm64-callingconv-ios.ll │ │ │ ├── arm64-callingconv.ll │ │ │ ├── arm64-fallback.ll │ │ │ ├── arm64-irtranslator-stackprotect.ll │ │ │ ├── arm64-irtranslator.ll │ │ │ ├── arm64-regbankselect.mir │ │ │ ├── call-translator-ios.ll │ │ │ ├── call-translator.ll │ │ │ ├── combine-anyext-crash.mir │ │ │ ├── debug-insts.ll │ │ │ ├── dynamic-alloca.ll │ │ │ ├── fallback-nofastisel.ll │ │ │ ├── fp128-legalize-crash-pr35690.mir │ │ │ ├── fp16-copy-gpr.mir │ │ │ ├── gisel-abort.ll │ │ │ ├── gisel-commandline-option.ll │ │ │ ├── gisel-fail-intermediate-legalizer.ll │ │ │ ├── inline-asm.ll │ │ │ ├── irtranslator-bitcast.ll │ │ │ ├── irtranslator-exceptions.ll │ │ │ ├── irtranslator-volatile-load-pr36018.ll │ │ │ ├── legalize-add.mir │ │ │ ├── legalize-and.mir │ │ │ ├── legalize-atomicrmw.mir │ │ │ ├── legalize-cmp.mir │ │ │ ├── legalize-cmpxchg-with-success.mir │ │ │ ├── legalize-cmpxchg.mir │ │ │ ├── legalize-combines.mir │ │ │ ├── legalize-constant.mir │ │ │ ├── legalize-div.mir │ │ │ ├── legalize-exceptions.ll │ │ │ ├── legalize-ext.mir │ │ │ ├── legalize-extracts.mir │ │ │ ├── legalize-fcmp.mir │ │ │ ├── legalize-fneg.mir │ │ │ ├── legalize-fptoi.mir │ │ │ ├── legalize-gep.mir │ │ │ ├── legalize-ignore-non-generic.mir │ │ │ ├── legalize-inserts.mir │ │ │ ├── legalize-itofp.mir │ │ │ ├── legalize-load-store.mir │ │ │ ├── legalize-merge-values.mir │ │ │ ├── legalize-mul.mir │ │ │ ├── legalize-nonpowerof2eltsvec.mir │ │ │ ├── legalize-or.mir │ │ │ ├── legalize-phi.mir │ │ │ ├── legalize-pow.mir │ │ │ ├── legalize-property.mir │ │ │ ├── legalize-rem.mir │ │ │ ├── legalize-shift.mir │ │ │ ├── legalize-simple.mir │ │ │ ├── legalize-sub.mir │ │ │ ├── legalize-undef.mir │ │ │ ├── legalize-unmerge-values.mir │ │ │ ├── legalize-vaarg.mir │ │ │ ├── legalize-xor.mir │ │ │ ├── lit.local.cfg │ │ │ ├── localizer-in-O0-pipeline.mir │ │ │ ├── localizer.mir │ │ │ ├── no-regclass.mir │ │ │ ├── reg-bank-128bit.mir │ │ │ ├── regbankselect-dbg-value.mir │ │ │ ├── regbankselect-default.mir │ │ │ ├── regbankselect-reg_sequence.mir │ │ │ ├── select-atomicrmw.mir │ │ │ ├── select-binop.mir │ │ │ ├── select-bitcast-bigendian.mir │ │ │ ├── select-bitcast.mir │ │ │ ├── select-br.mir │ │ │ ├── select-bswap.mir │ │ │ ├── select-cbz.mir │ │ │ ├── select-cmpxchg.mir │ │ │ ├── select-constant.mir │ │ │ ├── select-dbg-value.mir │ │ │ ├── select-fma.mir │ │ │ ├── select-fp-casts.mir │ │ │ ├── select-gv-cmodel-large.mir │ │ │ ├── select-imm.mir │ │ │ ├── select-implicit-def.mir │ │ │ ├── select-insert-extract.mir │ │ │ ├── select-int-ext.mir │ │ │ ├── select-int-ptr-casts.mir │ │ │ ├── select-intrinsic-aarch64-hint.mir │ │ │ ├── select-intrinsic-aarch64-sdiv.mir │ │ │ ├── select-intrinsic-crypto-aesmc.mir │ │ │ ├── select-load.mir │ │ │ ├── select-muladd.mir │ │ │ ├── select-neon-vcvtfxu2fp.mir │ │ │ ├── select-phi.mir │ │ │ ├── select-pr32733.mir │ │ │ ├── select-property.mir │ │ │ ├── select-store.mir │ │ │ ├── select-trunc.mir │ │ │ ├── select-xor.mir │ │ │ ├── select.mir │ │ │ ├── translate-gep.ll │ │ │ ├── unknown-intrinsic.ll │ │ │ ├── varargs-ios-translator.ll │ │ │ ├── vastart.ll │ │ │ ├── verify-regbankselected.mir │ │ │ └── verify-selected.mir │ │ ├── PBQP-chain.ll │ │ ├── PBQP-coalesce-benefit.ll │ │ ├── PBQP-csr.ll │ │ ├── PBQP.ll │ │ ├── Redundantstore.ll │ │ ├── a57-csel.ll │ │ ├── aarch-multipart.ll │ │ ├── aarch64-2014-08-11-MachineCombinerCrash.ll │ │ ├── aarch64-2014-12-02-combine-soften.ll │ │ ├── aarch64-DAGCombine-findBetterNeighborChains-crash.ll │ │ ├── aarch64-a57-fp-load-balancing.ll │ │ ├── aarch64-address-type-promotion-assertion.ll │ │ ├── aarch64-address-type-promotion.ll │ │ ├── aarch64-addv.ll │ │ ├── aarch64-be-bv.ll │ │ ├── aarch64-codegen-prepare-atp.ll │ │ ├── aarch64-combine-fmul-fsub.mir │ │ ├── aarch64-dynamic-stack-layout.ll │ │ ├── aarch64-fix-cortex-a53-835769.ll │ │ ├── aarch64-fold-lslfast.ll │ │ ├── aarch64-gep-opt.ll │ │ ├── aarch64-loop-gep-opt.ll │ │ ├── aarch64-minmaxv.ll │ │ ├── aarch64-named-reg-w18.ll │ │ ├── aarch64-named-reg-x18.ll │ │ ├── aarch64-neon-v1i1-setcc.ll │ │ ├── aarch64-smax-constantfold.ll │ │ ├── aarch64-smull.ll │ │ ├── aarch64-stp-cluster.ll │ │ ├── aarch64-tbz.ll │ │ ├── aarch64-tryBitfieldInsertOpFromOr-crash.ll │ │ ├── aarch64-vcvtfp2fxs-combine.ll │ │ ├── aarch64-wide-shuffle.ll │ │ ├── aarch64_f16_be.ll │ │ ├── aarch64_tree_tests.ll │ │ ├── aarch64_win64cc_vararg.ll │ │ ├── adc.ll │ │ ├── addcarry-crash.ll │ │ ├── addsub-shifted.ll │ │ ├── addsub.ll │ │ ├── addsub_ext.ll │ │ ├── alloca.ll │ │ ├── analyze-branch.ll │ │ ├── analyzecmp.ll │ │ ├── and-mask-removal.ll │ │ ├── and-sink.ll │ │ ├── andandshift.ll │ │ ├── argument-blocks.ll │ │ ├── arm64-2011-03-09-CPSRSpill.ll │ │ ├── arm64-2011-03-17-AsmPrinterCrash.ll │ │ ├── arm64-2011-03-21-Unaligned-Frame-Index.ll │ │ ├── arm64-2011-04-21-CPSRBug.ll │ │ ├── arm64-2011-10-18-LdStOptBug.ll │ │ ├── arm64-2012-01-11-ComparisonDAGCrash.ll │ │ ├── arm64-2012-05-07-DAGCombineVectorExtract.ll │ │ ├── arm64-2012-05-07-MemcpyAlignBug.ll │ │ ├── arm64-2012-05-09-LOADgot-bug.ll │ │ ├── arm64-2012-05-22-LdStOptBug.ll │ │ ├── arm64-2012-06-06-FPToUI.ll │ │ ├── arm64-2012-07-11-InstrEmitterBug.ll │ │ ├── arm64-2013-01-13-ffast-fcmp.ll │ │ ├── arm64-2013-01-23-frem-crash.ll │ │ ├── arm64-2013-01-23-sext-crash.ll │ │ ├── arm64-2013-02-12-shufv8i8.ll │ │ ├── arm64-AdvSIMD-Scalar.ll │ │ ├── arm64-AnInfiniteLoopInDAGCombine.ll │ │ ├── arm64-EXT-undef-mask.ll │ │ ├── arm64-aapcs-be.ll │ │ ├── arm64-aapcs.ll │ │ ├── arm64-abi-varargs.ll │ │ ├── arm64-abi.ll │ │ ├── arm64-abi_align.ll │ │ ├── arm64-addp.ll │ │ ├── arm64-addr-mode-folding.ll │ │ ├── arm64-addr-type-promotion.ll │ │ ├── arm64-addrmode.ll │ │ ├── arm64-alloc-no-stack-realign.ll │ │ ├── arm64-alloca-frame-pointer-offset.ll │ │ ├── arm64-andCmpBrToTBZ.ll │ │ ├── arm64-ands-bad-peephole.ll │ │ ├── arm64-anyregcc-crash.ll │ │ ├── arm64-anyregcc.ll │ │ ├── arm64-arith-saturating.ll │ │ ├── arm64-arith.ll │ │ ├── arm64-arm64-dead-def-elimination-flag.ll │ │ ├── arm64-atomic-128.ll │ │ ├── arm64-atomic.ll │ │ ├── arm64-basic-pic.ll │ │ ├── arm64-bcc.ll │ │ ├── arm64-big-endian-bitconverts.ll │ │ ├── arm64-big-endian-eh.ll │ │ ├── arm64-big-endian-varargs.ll │ │ ├── arm64-big-endian-vector-callee.ll │ │ ├── arm64-big-endian-vector-caller.ll │ │ ├── arm64-big-imm-offsets.ll │ │ ├── arm64-big-stack.ll │ │ ├── arm64-bitfield-extract.ll │ │ ├── arm64-blockaddress.ll │ │ ├── arm64-build-vector.ll │ │ ├── arm64-builtins-linux.ll │ │ ├── arm64-call-tailcalls.ll │ │ ├── arm64-cast-opt.ll │ │ ├── arm64-ccmp-heuristics.ll │ │ ├── arm64-ccmp.ll │ │ ├── arm64-clrsb.ll │ │ ├── arm64-coalesce-ext.ll │ │ ├── arm64-coalescing-MOVi32imm.ll │ │ ├── arm64-code-model-large-abs.ll │ │ ├── arm64-codegen-prepare-extload.ll │ │ ├── arm64-collect-loh-garbage-crash.ll │ │ ├── arm64-collect-loh-str.ll │ │ ├── arm64-collect-loh.ll │ │ ├── arm64-complex-copy-noneon.ll │ │ ├── arm64-complex-ret.ll │ │ ├── arm64-const-addr.ll │ │ ├── arm64-convert-v4f64.ll │ │ ├── arm64-copy-tuple.ll │ │ ├── arm64-crc32.ll │ │ ├── arm64-crypto.ll │ │ ├── arm64-cse.ll │ │ ├── arm64-csel.ll │ │ ├── arm64-csldst-mmo.ll │ │ ├── arm64-cvt.ll │ │ ├── arm64-dagcombiner-convergence.ll │ │ ├── arm64-dagcombiner-dead-indexed-load.ll │ │ ├── arm64-dagcombiner-load-slicing.ll │ │ ├── arm64-dead-def-frame-index.ll │ │ ├── arm64-dead-register-def-bug.ll │ │ ├── arm64-detect-vec-redux.ll │ │ ├── arm64-dup.ll │ │ ├── arm64-early-ifcvt.ll │ │ ├── arm64-elf-calls.ll │ │ ├── arm64-elf-constpool.ll │ │ ├── arm64-elf-globals.ll │ │ ├── arm64-ext.ll │ │ ├── arm64-extend-int-to-fp.ll │ │ ├── arm64-extend.ll │ │ ├── arm64-extern-weak.ll │ │ ├── arm64-extload-knownzero.ll │ │ ├── arm64-extract.ll │ │ ├── arm64-extract_subvector.ll │ │ ├── arm64-fast-isel-addr-offset.ll │ │ ├── arm64-fast-isel-alloca.ll │ │ ├── arm64-fast-isel-br.ll │ │ ├── arm64-fast-isel-call.ll │ │ ├── arm64-fast-isel-conversion-fallback.ll │ │ ├── arm64-fast-isel-conversion.ll │ │ ├── arm64-fast-isel-fcmp.ll │ │ ├── arm64-fast-isel-gv.ll │ │ ├── arm64-fast-isel-icmp.ll │ │ ├── arm64-fast-isel-indirectbr.ll │ │ ├── arm64-fast-isel-intrinsic.ll │ │ ├── arm64-fast-isel-materialize.ll │ │ ├── arm64-fast-isel-noconvert.ll │ │ ├── arm64-fast-isel-rem.ll │ │ ├── arm64-fast-isel-ret.ll │ │ ├── arm64-fast-isel-store.ll │ │ ├── arm64-fast-isel.ll │ │ ├── arm64-fastcc-tailcall.ll │ │ ├── arm64-fastisel-gep-promote-before-add.ll │ │ ├── arm64-fcmp-opt.ll │ │ ├── arm64-fcopysign.ll │ │ ├── arm64-fixed-point-scalar-cvt-dagcombine.ll │ │ ├── arm64-fma-combine-with-fpfusion.ll │ │ ├── arm64-fma-combines.ll │ │ ├── arm64-fmadd.ll │ │ ├── arm64-fmax-safe.ll │ │ ├── arm64-fmax.ll │ │ ├── arm64-fminv.ll │ │ ├── arm64-fml-combines.ll │ │ ├── arm64-fmuladd.ll │ │ ├── arm64-fold-address.ll │ │ ├── arm64-fold-lsl.ll │ │ ├── arm64-fp-contract-zero.ll │ │ ├── arm64-fp-imm.ll │ │ ├── arm64-fp.ll │ │ ├── arm64-fp128-folding.ll │ │ ├── arm64-fp128.ll │ │ ├── arm64-frame-index.ll │ │ ├── arm64-global-address.ll │ │ ├── arm64-hello.ll │ │ ├── arm64-i16-subreg-extract.ll │ │ ├── arm64-icmp-opt.ll │ │ ├── arm64-illegal-float-ops.ll │ │ ├── arm64-indexed-memory.ll │ │ ├── arm64-indexed-vector-ldst-2.ll │ │ ├── arm64-indexed-vector-ldst.ll │ │ ├── arm64-inline-asm-error-I.ll │ │ ├── arm64-inline-asm-error-J.ll │ │ ├── arm64-inline-asm-error-K.ll │ │ ├── arm64-inline-asm-error-L.ll │ │ ├── arm64-inline-asm-error-M.ll │ │ ├── arm64-inline-asm-error-N.ll │ │ ├── arm64-inline-asm-zero-reg-error.ll │ │ ├── arm64-inline-asm.ll │ │ ├── arm64-join-reserved.ll │ │ ├── arm64-jumptable.ll │ │ ├── arm64-large-frame.ll │ │ ├── arm64-ld-from-st.ll │ │ ├── arm64-ld1.ll │ │ ├── arm64-ldp-aa.ll │ │ ├── arm64-ldp-cluster.ll │ │ ├── arm64-ldp.ll │ │ ├── arm64-ldst-unscaled-pre-post.mir │ │ ├── arm64-ldur.ll │ │ ├── arm64-ldxr-stxr.ll │ │ ├── arm64-leaf.ll │ │ ├── arm64-long-shift.ll │ │ ├── arm64-memcpy-inline.ll │ │ ├── arm64-memset-inline.ll │ │ ├── arm64-memset-to-bzero.ll │ │ ├── arm64-misaligned-memcpy-inline.ll │ │ ├── arm64-misched-basic-A53.ll │ │ ├── arm64-misched-basic-A57.ll │ │ ├── arm64-misched-forwarding-A53.ll │ │ ├── arm64-misched-memdep-bug.ll │ │ ├── arm64-misched-multimmo.ll │ │ ├── arm64-movi.ll │ │ ├── arm64-mul.ll │ │ ├── arm64-named-reg-alloc.ll │ │ ├── arm64-named-reg-notareg.ll │ │ ├── arm64-narrow-st-merge.ll │ │ ├── arm64-neg.ll │ │ ├── arm64-neon-2velem-high.ll │ │ ├── arm64-neon-2velem.ll │ │ ├── arm64-neon-3vdiff.ll │ │ ├── arm64-neon-aba-abd.ll │ │ ├── arm64-neon-across.ll │ │ ├── arm64-neon-add-pairwise.ll │ │ ├── arm64-neon-add-sub.ll │ │ ├── arm64-neon-compare-instructions.ll │ │ ├── arm64-neon-copy.ll │ │ ├── arm64-neon-copyPhysReg-tuple.ll │ │ ├── arm64-neon-mul-div.ll │ │ ├── arm64-neon-scalar-by-elem-mul.ll │ │ ├── arm64-neon-select_cc.ll │ │ ├── arm64-neon-simd-ldst-one.ll │ │ ├── arm64-neon-simd-shift.ll │ │ ├── arm64-neon-simd-vget.ll │ │ ├── arm64-neon-v1i1-setcc.ll │ │ ├── arm64-neon-v8.1a.ll │ │ ├── arm64-neon-vector-list-spill.ll │ │ ├── arm64-nvcast.ll │ │ ├── arm64-opt-remarks-lazy-bfi.ll │ │ ├── arm64-patchpoint-scratch-regs.ll │ │ ├── arm64-patchpoint-webkit_jscc.ll │ │ ├── arm64-patchpoint.ll │ │ ├── arm64-pic-local-symbol.ll │ │ ├── arm64-platform-reg.ll │ │ ├── arm64-popcnt.ll │ │ ├── arm64-prefetch.ll │ │ ├── arm64-promote-const.ll │ │ ├── arm64-redzone.ll │ │ ├── arm64-reg-copy-noneon.ll │ │ ├── arm64-register-offset-addressing.ll │ │ ├── arm64-register-pairing.ll │ │ ├── arm64-regress-f128csel-flags.ll │ │ ├── arm64-regress-interphase-shift.ll │ │ ├── arm64-regress-opt-cmp.mir │ │ ├── arm64-return-vector.ll │ │ ├── arm64-returnaddr.ll │ │ ├── arm64-rev.ll │ │ ├── arm64-rounding.ll │ │ ├── arm64-scaled_iv.ll │ │ ├── arm64-scvt.ll │ │ ├── arm64-setcc-int-to-fp-combine.ll │ │ ├── arm64-shifted-sext.ll │ │ ├── arm64-shrink-v1i64.ll │ │ ├── arm64-shrink-wrapping.ll │ │ ├── arm64-simd-scalar-to-vector.ll │ │ ├── arm64-simplest-elf.ll │ │ ├── arm64-sincos.ll │ │ ├── arm64-sitofp-combine-chains.ll │ │ ├── arm64-sli-sri-opt.ll │ │ ├── arm64-smaxv.ll │ │ ├── arm64-sminv.ll │ │ ├── arm64-spill-lr.ll │ │ ├── arm64-spill-remarks-treshold-hotness.ll │ │ ├── arm64-spill-remarks.ll │ │ ├── arm64-spill.ll │ │ ├── arm64-sqshl-uqshl-i64Contant.ll │ │ ├── arm64-st1.ll │ │ ├── arm64-stack-no-frame.ll │ │ ├── arm64-stackmap-nops.ll │ │ ├── arm64-stackmap.ll │ │ ├── arm64-stackpointer.ll │ │ ├── arm64-stacksave.ll │ │ ├── arm64-storebytesmerge.ll │ │ ├── arm64-stp-aa.ll │ │ ├── arm64-stp.ll │ │ ├── arm64-strict-align.ll │ │ ├── arm64-stur.ll │ │ ├── arm64-subsections.ll │ │ ├── arm64-subvector-extend.ll │ │ ├── arm64-summary-remarks.ll │ │ ├── arm64-swizzle-tbl-i16-layout.ll │ │ ├── arm64-tbl.ll │ │ ├── arm64-this-return.ll │ │ ├── arm64-tls-darwin.ll │ │ ├── arm64-tls-dynamic-together.ll │ │ ├── arm64-tls-dynamics.ll │ │ ├── arm64-tls-execs.ll │ │ ├── arm64-trap.ll │ │ ├── arm64-triv-disjoint-mem-access.ll │ │ ├── arm64-trn.ll │ │ ├── arm64-trunc-store.ll │ │ ├── arm64-umaxv.ll │ │ ├── arm64-uminv.ll │ │ ├── arm64-umov.ll │ │ ├── arm64-unaligned_ldst.ll │ │ ├── arm64-uzp.ll │ │ ├── arm64-vaargs.ll │ │ ├── arm64-vabs.ll │ │ ├── arm64-vadd.ll │ │ ├── arm64-vaddlv.ll │ │ ├── arm64-vaddv.ll │ │ ├── arm64-variadic-aapcs.ll │ │ ├── arm64-vbitwise.ll │ │ ├── arm64-vclz.ll │ │ ├── arm64-vcmp.ll │ │ ├── arm64-vcnt.ll │ │ ├── arm64-vcombine.ll │ │ ├── arm64-vcvt.ll │ │ ├── arm64-vcvt_f.ll │ │ ├── arm64-vcvt_f32_su32.ll │ │ ├── arm64-vcvt_n.ll │ │ ├── arm64-vcvt_su32_f32.ll │ │ ├── arm64-vcvtxd_f32_f64.ll │ │ ├── arm64-vecCmpBr.ll │ │ ├── arm64-vecFold.ll │ │ ├── arm64-vector-ext.ll │ │ ├── arm64-vector-imm.ll │ │ ├── arm64-vector-insertion.ll │ │ ├── arm64-vector-ldst.ll │ │ ├── arm64-vext.ll │ │ ├── arm64-vext_reverse.ll │ │ ├── arm64-vfloatintrinsics.ll │ │ ├── arm64-vhadd.ll │ │ ├── arm64-vhsub.ll │ │ ├── arm64-virtual_base.ll │ │ ├── arm64-vmax.ll │ │ ├── arm64-vminmaxnm.ll │ │ ├── arm64-vmovn.ll │ │ ├── arm64-vmul.ll │ │ ├── arm64-volatile.ll │ │ ├── arm64-vpopcnt.ll │ │ ├── arm64-vqadd.ll │ │ ├── arm64-vqsub.ll │ │ ├── arm64-vselect.ll │ │ ├── arm64-vsetcc_fp.ll │ │ ├── arm64-vshift.ll │ │ ├── arm64-vshr.ll │ │ ├── arm64-vshuffle.ll │ │ ├── arm64-vsqrt.ll │ │ ├── arm64-vsra.ll │ │ ├── arm64-vsub.ll │ │ ├── arm64-weak-reference.ll │ │ ├── arm64-xaluo.ll │ │ ├── arm64-zero-cycle-regmov.ll │ │ ├── arm64-zero-cycle-zeroing.ll │ │ ├── arm64-zeroreg.ll │ │ ├── arm64-zext.ll │ │ ├── arm64-zextload-unscaled.ll │ │ ├── arm64-zip.ll │ │ ├── asm-large-immediate.ll │ │ ├── asm-print-comments.ll │ │ ├── assertion-rc-mismatch.ll │ │ ├── atomic-ops-lse.ll │ │ ├── atomic-ops-not-barriers.ll │ │ ├── atomic-ops.ll │ │ ├── basic-pic.ll │ │ ├── bics.ll │ │ ├── bitcast-v2i8.ll │ │ ├── bitcast.ll │ │ ├── bitfield-extract.ll │ │ ├── bitfield-insert-0.ll │ │ ├── bitfield-insert.ll │ │ ├── bitfield.ll │ │ ├── bitreverse.ll │ │ ├── blockaddress.ll │ │ ├── bool-loads.ll │ │ ├── br-cond-not-merge.ll │ │ ├── br-to-eh-lpad.ll │ │ ├── br-undef-cond.ll │ │ ├── branch-folder-merge-mmos.ll │ │ ├── branch-relax-alignment.ll │ │ ├── branch-relax-asm.ll │ │ ├── branch-relax-bcc.ll │ │ ├── branch-relax-cbz.ll │ │ ├── breg.ll │ │ ├── bswap-known-bits.ll │ │ ├── callee-save.ll │ │ ├── ccmp-successor-probs.mir │ │ ├── cfi_restore.mir │ │ ├── chkstk.ll │ │ ├── cmp-const-max.ll │ │ ├── cmp-frameindex.ll │ │ ├── cmpwithshort.ll │ │ ├── cmpxchg-O0.ll │ │ ├── cmpxchg-idioms.ll │ │ ├── code-model-large-abs.ll │ │ ├── combine-and-like.ll │ │ ├── combine-comparisons-by-cse.ll │ │ ├── compare-branch.ll │ │ ├── compiler-ident.ll │ │ ├── complex-copy-noneon.ll │ │ ├── complex-fp-to-int.ll │ │ ├── complex-int-to-fp.ll │ │ ├── concat_vector-scalar-combine.ll │ │ ├── concat_vector-truncate-combine.ll │ │ ├── concat_vector-truncated-scalar-combine.ll │ │ ├── cond-br-tuning.ll │ │ ├── cond-sel-value-prop.ll │ │ ├── cond-sel.ll │ │ ├── cpus.ll │ │ ├── csel-zero-float.ll │ │ ├── cxx-tlscc.ll │ │ ├── dag-combine-invaraints.ll │ │ ├── dag-combine-mul-shl.ll │ │ ├── dag-combine-select.ll │ │ ├── dag-numsignbits.ll │ │ ├── directcond.ll │ │ ├── div_minsize.ll │ │ ├── divrem.ll │ │ ├── dllexport.ll │ │ ├── dllimport.ll │ │ ├── dont-take-over-the-world.ll │ │ ├── dp-3source.ll │ │ ├── dp1.ll │ │ ├── dp2.ll │ │ ├── dwarf-cfi.ll │ │ ├── eliminate-trunc.ll │ │ ├── emutls.ll │ │ ├── emutls_generic.ll │ │ ├── eon.ll │ │ ├── extern-weak.ll │ │ ├── extract.ll │ │ ├── f16-convert.ll │ │ ├── f16-imm.ll │ │ ├── f16-instructions.ll │ │ ├── fadd-combines.ll │ │ ├── falkor-hwpf-fix.ll │ │ ├── falkor-hwpf-fix.mir │ │ ├── falkor-hwpf.ll │ │ ├── fast-isel-address-extends.ll │ │ ├── fast-isel-addressing-modes.ll │ │ ├── fast-isel-assume.ll │ │ ├── fast-isel-atomic.ll │ │ ├── fast-isel-branch-cond-mask.ll │ │ ├── fast-isel-branch-cond-split.ll │ │ ├── fast-isel-branch_weights.ll │ │ ├── fast-isel-call-return.ll │ │ ├── fast-isel-cbz.ll │ │ ├── fast-isel-cmp-branch.ll │ │ ├── fast-isel-cmp-vec.ll │ │ ├── fast-isel-cmpxchg.ll │ │ ├── fast-isel-folded-shift.ll │ │ ├── fast-isel-folding.ll │ │ ├── fast-isel-gep.ll │ │ ├── fast-isel-int-ext.ll │ │ ├── fast-isel-int-ext2.ll │ │ ├── fast-isel-int-ext3.ll │ │ ├── fast-isel-int-ext4.ll │ │ ├── fast-isel-int-ext5.ll │ │ ├── fast-isel-intrinsic.ll │ │ ├── fast-isel-logic-op.ll │ │ ├── fast-isel-memcpy.ll │ │ ├── fast-isel-mul.ll │ │ ├── fast-isel-runtime-libcall.ll │ │ ├── fast-isel-sdiv.ll │ │ ├── fast-isel-select.ll │ │ ├── fast-isel-shift.ll │ │ ├── fast-isel-sp-adjust.ll │ │ ├── fast-isel-sqrt.ll │ │ ├── fast-isel-switch-phi.ll │ │ ├── fast-isel-tail-call.ll │ │ ├── fast-isel-tbz.ll │ │ ├── fast-isel-trunc.ll │ │ ├── fast-isel-vector-arithmetic.ll │ │ ├── fast-isel-vret.ll │ │ ├── fast-regalloc-empty-bb-with-liveins.mir │ │ ├── fastcc-reserved.ll │ │ ├── fastcc.ll │ │ ├── fcmp.ll │ │ ├── fcopysign.ll │ │ ├── fcsel-zero.ll │ │ ├── fcvt-fixed.ll │ │ ├── fcvt-int.ll │ │ ├── fcvt_combine.ll │ │ ├── fdiv-combine.ll │ │ ├── fdiv_combine.ll │ │ ├── fence-singlethread.ll │ │ ├── flags-multiuse.ll │ │ ├── floatdp_1source.ll │ │ ├── floatdp_2source.ll │ │ ├── fold-constants.ll │ │ ├── fp-cond-sel.ll │ │ ├── fp-dp3.ll │ │ ├── fp128-folding.ll │ │ ├── fp16-v16-instructions.ll │ │ ├── fp16-v4-instructions.ll │ │ ├── fp16-v8-instructions.ll │ │ ├── fp16-vector-bitcast.ll │ │ ├── fp16-vector-load-store.ll │ │ ├── fp16-vector-nvcast.ll │ │ ├── fp16-vector-shuffle.ll │ │ ├── fpconv-vector-op-scalarize.ll │ │ ├── fpimm.ll │ │ ├── fptouint-i8-zext.ll │ │ ├── frameaddr.ll │ │ ├── free-zext.ll │ │ ├── func-argpassing.ll │ │ ├── func-calls.ll │ │ ├── funcptr_cast.ll │ │ ├── function-subtarget-features.ll │ │ ├── gep-nullptr.ll │ │ ├── ghc-cc.ll │ │ ├── global-alignment.ll │ │ ├── global-merge-1.ll │ │ ├── global-merge-2.ll │ │ ├── global-merge-3.ll │ │ ├── global-merge-4.ll │ │ ├── global-merge-group-by-use.ll │ │ ├── global-merge-ignore-single-use-minsize.ll │ │ ├── global-merge-ignore-single-use.ll │ │ ├── global-merge.ll │ │ ├── got-abuse.ll │ │ ├── half.ll │ │ ├── hints.ll │ │ ├── i1-contents.ll │ │ ├── i128-align.ll │ │ ├── i128-fast-isel-fallback.ll │ │ ├── ifcvt-select.ll │ │ ├── illegal-float-ops.ll │ │ ├── implicit-sret.ll │ │ ├── init-array.ll │ │ ├── inline-asm-constraints-badI.ll │ │ ├── inline-asm-constraints-badK.ll │ │ ├── inline-asm-constraints-badK2.ll │ │ ├── inline-asm-constraints-badL.ll │ │ ├── inline-asm-globaladdress.ll │ │ ├── inlineasm-X-allocation.ll │ │ ├── inlineasm-X-constraint.ll │ │ ├── inlineasm-ldr-pseudo.ll │ │ ├── intrinsics-memory-barrier.ll │ │ ├── jump-table.ll │ │ ├── large-consts.ll │ │ ├── large_shift.ll │ │ ├── ldp-stp-scaled-unscaled-pairs.ll │ │ ├── ldst-opt-aa.mir │ │ ├── ldst-opt-zr-clobber.mir │ │ ├── ldst-opt.ll │ │ ├── ldst-opt.mir │ │ ├── ldst-paired-aliasing.ll │ │ ├── ldst-regoffset.ll │ │ ├── ldst-unscaledimm.ll │ │ ├── ldst-unsignedimm.ll │ │ ├── ldst-zero.ll │ │ ├── legalize-bug-bogus-cpu.ll │ │ ├── lit.local.cfg │ │ ├── literal_pools_float.ll │ │ ├── live-interval-analysis.mir │ │ ├── load-combine-big-endian.ll │ │ ├── load-combine.ll │ │ ├── local_vars.ll │ │ ├── logical-imm.ll │ │ ├── logical_shifted_reg.ll │ │ ├── loh.mir │ │ ├── loop-micro-op-buffer-size-t99.ll │ │ ├── loopvectorize_pr33804_double.ll │ │ ├── lower-range-metadata-func-call.ll │ │ ├── machine-combiner-madd.ll │ │ ├── machine-combiner.ll │ │ ├── machine-combiner.mir │ │ ├── machine-copy-prop.ll │ │ ├── machine-copy-remove.ll │ │ ├── machine-copy-remove.mir │ │ ├── machine-dead-copy.mir │ │ ├── machine-outliner-remarks.ll │ │ ├── machine-outliner.ll │ │ ├── machine-outliner.mir │ │ ├── machine-scheduler.mir │ │ ├── machine-sink-kill-flags.ll │ │ ├── machine-sink-zr.mir │ │ ├── machine-zero-copy-remove.mir │ │ ├── machine_cse.ll │ │ ├── machine_cse_impdef_killflags.ll │ │ ├── macho-global-symbols.ll │ │ ├── madd-combiner.ll │ │ ├── madd-lohi.ll │ │ ├── mature-mc-support.ll │ │ ├── max-jump-table.ll │ │ ├── memcpy-f128.ll │ │ ├── merge-store-dependency.ll │ │ ├── merge-store.ll │ │ ├── mergestores_noimplicitfloat.ll │ │ ├── min-jump-table.ll │ │ ├── minmax-of-minmax.ll │ │ ├── minmax.ll │ │ ├── misched-fusion-aes.ll │ │ ├── misched-fusion-lit.ll │ │ ├── misched-fusion.ll │ │ ├── misched-stp.ll │ │ ├── movimm-wzr.mir │ │ ├── movw-consts.ll │ │ ├── movw-shift-encoding.ll │ │ ├── mul-lohi.ll │ │ ├── mul_pow2.ll │ │ ├── neg-imm.ll │ │ ├── neon-bitcast.ll │ │ ├── neon-bitwise-instructions.ll │ │ ├── neon-compare-instructions.ll │ │ ├── neon-diagnostics.ll │ │ ├── neon-extract.ll │ │ ├── neon-fma-FMF.ll │ │ ├── neon-fma.ll │ │ ├── neon-fpround_f128.ll │ │ ├── neon-idiv.ll │ │ ├── neon-inline-asm-16-bit-fp.ll │ │ ├── neon-mla-mls.ll │ │ ├── neon-mov.ll │ │ ├── neon-or-combine.ll │ │ ├── neon-perm.ll │ │ ├── neon-scalar-by-elem-fma.ll │ │ ├── neon-scalar-copy.ll │ │ ├── neon-shift-left-long.ll │ │ ├── neon-truncStore-extLoad.ll │ │ ├── nest-register.ll │ │ ├── no-fp-asm-clobbers-crash.ll │ │ ├── no-quad-ldp-stp.ll │ │ ├── nonlazybind.ll │ │ ├── nontemporal.ll │ │ ├── nzcv-save.ll │ │ ├── optimize-cond-branch.ll │ │ ├── optimize-imm.ll │ │ ├── or-combine.ll │ │ ├── paired-load.ll │ │ ├── phi-dbg.ll │ │ ├── pic-eh-stubs.ll │ │ ├── pie.ll │ │ ├── postra-mi-sched.ll │ │ ├── pr27816.ll │ │ ├── pr33172.ll │ │ ├── preferred-alignment.ll │ │ ├── preferred-function-alignment.ll │ │ ├── prefixdata.ll │ │ ├── preserve_mostcc.ll │ │ ├── print-mrs-system-register.ll │ │ ├── prologue-epilogue-remarks.mir │ │ ├── ragreedy-csr.ll │ │ ├── rbit.ll │ │ ├── readcyclecounter.ll │ │ ├── recp-fastmath.ll │ │ ├── redundant-copy-elim-empty-mbb.ll │ │ ├── reg-scavenge-frame.mir │ │ ├── regcoal-physreg.mir │ │ ├── regress-bitcast-formals.ll │ │ ├── regress-f128csel-flags.ll │ │ ├── regress-fp128-livein.ll │ │ ├── regress-tail-livereg.ll │ │ ├── regress-tblgen-chains.ll │ │ ├── regress-w29-reserved-with-fp.ll │ │ ├── rem_crash.ll │ │ ├── remat-float0.ll │ │ ├── remat.ll │ │ ├── returnaddr.ll │ │ ├── rm_redundant_cmp.ll │ │ ├── rotate.ll │ │ ├── round-conv.ll │ │ ├── sched-past-vector-ldst.ll │ │ ├── scheduledag-constreg.mir │ │ ├── sdivpow2.ll │ │ ├── selectcc-to-shiftand.ll │ │ ├── selectiondag-order.ll │ │ ├── setcc-takes-i32.ll │ │ ├── setcc-type-mismatch.ll │ │ ├── shrink-wrap.ll │ │ ├── sibling-call.ll │ │ ├── simple-macho.ll │ │ ├── sincos-expansion.ll │ │ ├── sincospow-vector-expansion.ll │ │ ├── sitofp-fixed-legal.ll │ │ ├── special-reg.ll │ │ ├── spill-fold.ll │ │ ├── spill-undef.mir │ │ ├── sqrt-fastmath.ll │ │ ├── stack-guard-remat-bitcast.ll │ │ ├── stack-protector-target.ll │ │ ├── stack_guard_remat.ll │ │ ├── stackmap-frame-setup.ll │ │ ├── stackmap-liveness.ll │ │ ├── store_merge_pair_offset.ll │ │ ├── strqro.ll │ │ ├── subs-to-sub-opt.ll │ │ ├── swift-error.ll │ │ ├── swift-return.ll │ │ ├── swiftcc.ll │ │ ├── swifterror.ll │ │ ├── swiftself-scavenger.ll │ │ ├── swiftself.ll │ │ ├── tail-call.ll │ │ ├── tailcall-ccmismatch.ll │ │ ├── tailcall-explicit-sret.ll │ │ ├── tailcall-fastisel.ll │ │ ├── tailcall-implicit-sret.ll │ │ ├── tailcall-mem-intrinsics.ll │ │ ├── tailcall-string-rvo.ll │ │ ├── tailcall_misched_graph.ll │ │ ├── tailmerging_in_mbp.ll │ │ ├── tbi.ll │ │ ├── tbz-tbnz.ll │ │ ├── trunc-v1i64.ll │ │ ├── tst-br.ll │ │ ├── vcvt-oversize.ll │ │ ├── vector-fcopysign.ll │ │ ├── vector_merge_dep_check.ll │ │ ├── win64_vararg.ll │ │ ├── xbfiz.ll │ │ ├── xray-attribute-instrumentation.ll │ │ ├── xray-tail-call-sled.ll │ │ └── zero-reg.ll │ ├── AMDGPU │ │ ├── 32-bit-local-address-space.ll │ │ ├── GlobalISel │ │ │ ├── amdgpu-irtranslator.ll │ │ │ ├── inst-select-load-flat.mir │ │ │ ├── inst-select-load-smrd.mir │ │ │ ├── inst-select-store-flat.mir │ │ │ ├── irtranslator-amdgpu_vs.ll │ │ │ ├── legalize-add.mir │ │ │ ├── legalize-and.mir │ │ │ ├── legalize-bitcast.mir │ │ │ ├── legalize-constant.mir │ │ │ ├── legalize-fadd.mir │ │ │ ├── legalize-fmul.mir │ │ │ ├── legalize-icmp.mir │ │ │ ├── legalize-or.mir │ │ │ ├── legalize-select.mir │ │ │ ├── legalize-shl.mir │ │ │ ├── lit.local.cfg │ │ │ ├── regbankselect.mir │ │ │ ├── shader-epilogs.ll │ │ │ └── smrd.ll │ │ ├── InlineAsmCrash.ll │ │ ├── README │ │ ├── add-debug.ll │ │ ├── add.i16.ll │ │ ├── add.ll │ │ ├── add.v2i16.ll │ │ ├── add_i128.ll │ │ ├── add_i64.ll │ │ ├── addrspacecast-captured.ll │ │ ├── addrspacecast-constantexpr.ll │ │ ├── addrspacecast.ll │ │ ├── adjust-writemask-invalid-copy.ll │ │ ├── alignbit-pat.ll │ │ ├── always-uniform.ll │ │ ├── amdgcn.bitcast.ll │ │ ├── amdgcn.private-memory.ll │ │ ├── amdgpu-alias-analysis.ll │ │ ├── amdgpu-codegenprepare-fdiv.ll │ │ ├── amdgpu-codegenprepare-i16-to-i32.ll │ │ ├── amdgpu-inline.ll │ │ ├── amdgpu-shader-calling-convention.ll │ │ ├── amdgpu.private-memory.ll │ │ ├── amdgpu.work-item-intrinsics.deprecated.ll │ │ ├── amdpal-cs.ll │ │ ├── amdpal-es.ll │ │ ├── amdpal-gs.ll │ │ ├── amdpal-hs.ll │ │ ├── amdpal-ls.ll │ │ ├── amdpal-ps.ll │ │ ├── amdpal-psenable.ll │ │ ├── amdpal-vs.ll │ │ ├── amdpal.ll │ │ ├── and-gcn.ll │ │ ├── and.ll │ │ ├── annotate-kernel-features-hsa-call.ll │ │ ├── annotate-kernel-features-hsa.ll │ │ ├── annotate-kernel-features.ll │ │ ├── anonymous-gv.ll │ │ ├── any_extend_vector_inreg.ll │ │ ├── anyext.ll │ │ ├── array-ptr-calc-i32.ll │ │ ├── array-ptr-calc-i64.ll │ │ ├── ashr.v2i16.ll │ │ ├── atomic_cmp_swap_local.ll │ │ ├── atomic_load_add.ll │ │ ├── atomic_load_sub.ll │ │ ├── attr-amdgpu-flat-work-group-size.ll │ │ ├── attr-amdgpu-num-sgpr.ll │ │ ├── attr-amdgpu-num-vgpr.ll │ │ ├── attr-amdgpu-waves-per-eu.ll │ │ ├── attr-unparseable.ll │ │ ├── barrier-elimination.ll │ │ ├── basic-branch.ll │ │ ├── basic-call-return.ll │ │ ├── basic-loop.ll │ │ ├── bfe-combine.ll │ │ ├── bfe-patterns.ll │ │ ├── bfe_uint.ll │ │ ├── bfi_int.ll │ │ ├── bfm.ll │ │ ├── big_alu.ll │ │ ├── bitcast-vector-extract.ll │ │ ├── bitreverse-inline-immediates.ll │ │ ├── bitreverse.ll │ │ ├── br_cc.f16.ll │ │ ├── branch-condition-and.ll │ │ ├── branch-relax-bundle.ll │ │ ├── branch-relax-spill.ll │ │ ├── branch-relaxation.ll │ │ ├── branch-uniformity.ll │ │ ├── break-smem-soft-clauses.mir │ │ ├── break-vmem-soft-clauses.mir │ │ ├── bswap.ll │ │ ├── bug-vopc-commute.ll │ │ ├── build_vector.ll │ │ ├── byval-frame-setup.ll │ │ ├── call-argument-types.ll │ │ ├── call-encoding.ll │ │ ├── call-graph-register-usage.ll │ │ ├── call-preserved-registers.ll │ │ ├── call-return-types.ll │ │ ├── call_fs.ll │ │ ├── callee-frame-setup.ll │ │ ├── callee-special-input-sgprs.ll │ │ ├── callee-special-input-vgprs.ll │ │ ├── calling-conventions.ll │ │ ├── captured-frame-index.ll │ │ ├── cayman-loop-bug.ll │ │ ├── cf-loop-on-constant.ll │ │ ├── cf-stack-bug.ll │ │ ├── cf_end.ll │ │ ├── cgp-addressing-modes-flat.ll │ │ ├── cgp-addressing-modes.ll │ │ ├── cgp-bitfield-extract.ll │ │ ├── clamp-modifier.ll │ │ ├── clamp-omod-special-case.mir │ │ ├── clamp.ll │ │ ├── cluster-flat-loads-postra.mir │ │ ├── cluster-flat-loads.mir │ │ ├── cndmask-no-def-vcc.ll │ │ ├── coalescer-subrange-crash.ll │ │ ├── coalescer-subreg-join.mir │ │ ├── coalescer_distribute.ll │ │ ├── coalescer_remat.ll │ │ ├── codegen-prepare-addrmode-sext.ll │ │ ├── collapse-endcf.ll │ │ ├── combine-and-sext-bool.ll │ │ ├── combine-cond-add-sub.ll │ │ ├── combine-ftrunc.ll │ │ ├── combine_vloads.ll │ │ ├── commute-compares.ll │ │ ├── commute-shifts.ll │ │ ├── commute_modifiers.ll │ │ ├── complex-folding.ll │ │ ├── concat_vectors.ll │ │ ├── constant-fold-imm-immreg.mir │ │ ├── constant-fold-mi-operands.ll │ │ ├── control-flow-fastregalloc.ll │ │ ├── control-flow-optnone.ll │ │ ├── convergent-inlineasm.ll │ │ ├── copy-illegal-type.ll │ │ ├── copy-to-reg.ll │ │ ├── ctlz.ll │ │ ├── ctlz_zero_undef.ll │ │ ├── ctpop.ll │ │ ├── ctpop64.ll │ │ ├── cttz_zero_undef.ll │ │ ├── cube.ll │ │ ├── cvt_f32_ubyte.ll │ │ ├── cvt_flr_i32_f32.ll │ │ ├── cvt_rpi_i32_f32.ll │ │ ├── dagcomb-shuffle-vecextend-non2.ll │ │ ├── dagcombine-reassociate-bug.ll │ │ ├── dagcombiner-bug-illegal-vec4-int-to-fp.ll │ │ ├── dead_copy.mir │ │ ├── debug-value.ll │ │ ├── debug.ll │ │ ├── debugger-emit-prologue.ll │ │ ├── debugger-insert-nops.ll │ │ ├── debugger-reserve-regs.ll │ │ ├── default-fp-mode.ll │ │ ├── detect-dead-lanes.mir │ │ ├── disconnected-predset-break-bug.ll │ │ ├── drop-mem-operand-move-smrd.ll │ │ ├── ds-combine-large-stride.ll │ │ ├── ds-negative-offset-addressing-mode-loop.ll │ │ ├── ds-sub-offset.ll │ │ ├── ds_read2.ll │ │ ├── ds_read2_offset_order.ll │ │ ├── ds_read2_superreg.ll │ │ ├── ds_read2st64.ll │ │ ├── ds_write2.ll │ │ ├── ds_write2st64.ll │ │ ├── dynamic_stackalloc.ll │ │ ├── early-if-convert-cost.ll │ │ ├── early-if-convert.ll │ │ ├── early-inline-alias.ll │ │ ├── early-inline.ll │ │ ├── elf-header.ll │ │ ├── elf-notes.ll │ │ ├── elf.ll │ │ ├── elf.r600.ll │ │ ├── else.ll │ │ ├── empty-function.ll │ │ ├── enable-no-signed-zeros-fp-math.ll │ │ ├── endcf-loop-header.ll │ │ ├── endpgm-dce.mir │ │ ├── enqueue-kernel.ll │ │ ├── env-amdgiz.ll │ │ ├── env-amdgizcl.ll │ │ ├── exceed-max-sgprs.ll │ │ ├── extend-bit-ops-i16.ll │ │ ├── extload-align.ll │ │ ├── extload-private.ll │ │ ├── extload.ll │ │ ├── extract-vector-elt-build-vector-combine.ll │ │ ├── extract_vector_elt-f16.ll │ │ ├── extract_vector_elt-f64.ll │ │ ├── extract_vector_elt-i16.ll │ │ ├── extract_vector_elt-i64.ll │ │ ├── extract_vector_elt-i8.ll │ │ ├── extractelt-to-trunc.ll │ │ ├── fabs.f16.ll │ │ ├── fabs.f64.ll │ │ ├── fabs.ll │ │ ├── fadd-fma-fmul-combine.ll │ │ ├── fadd.f16.ll │ │ ├── fadd.ll │ │ ├── fadd64.ll │ │ ├── fcanonicalize-elimination.ll │ │ ├── fcanonicalize.f16.ll │ │ ├── fcanonicalize.ll │ │ ├── fceil.ll │ │ ├── fceil64.ll │ │ ├── fcmp-cnd.ll │ │ ├── fcmp-cnde-int-args.ll │ │ ├── fcmp.f16.ll │ │ ├── fcmp.ll │ │ ├── fcmp64.ll │ │ ├── fconst64.ll │ │ ├── fcopysign.f16.ll │ │ ├── fcopysign.f32.ll │ │ ├── fcopysign.f64.ll │ │ ├── fdiv.f16.ll │ │ ├── fdiv.f64.ll │ │ ├── fdiv.ll │ │ ├── fence-amdgiz.ll │ │ ├── fence-barrier.ll │ │ ├── fetch-limits.r600.ll │ │ ├── fetch-limits.r700+.ll │ │ ├── ffloor.f64.ll │ │ ├── ffloor.ll │ │ ├── fix-vgpr-copies.mir │ │ ├── fix-wwm-liveness.mir │ │ ├── flat-address-space.ll │ │ ├── flat-for-global-subtarget-feature.ll │ │ ├── flat-load-clustering.mir │ │ ├── flat-scratch-reg.ll │ │ ├── flat_atomics.ll │ │ ├── flat_atomics_i64.ll │ │ ├── floor.ll │ │ ├── fma-combine.ll │ │ ├── fma.f64.ll │ │ ├── fma.ll │ │ ├── fmad.ll │ │ ├── fmax.ll │ │ ├── fmax3.f64.ll │ │ ├── fmax3.ll │ │ ├── fmax_legacy.f64.ll │ │ ├── fmax_legacy.ll │ │ ├── fmaxnum.f64.ll │ │ ├── fmaxnum.ll │ │ ├── fmed3.ll │ │ ├── fmin.ll │ │ ├── fmin3.ll │ │ ├── fmin_fmax_legacy.amdgcn.ll │ │ ├── fmin_legacy.f64.ll │ │ ├── fmin_legacy.ll │ │ ├── fminnum.f64.ll │ │ ├── fminnum.ll │ │ ├── fmul-2-combine-multi-use.ll │ │ ├── fmul.f16.ll │ │ ├── fmul.ll │ │ ├── fmul64.ll │ │ ├── fmuladd.f16.ll │ │ ├── fmuladd.f32.ll │ │ ├── fmuladd.f64.ll │ │ ├── fmuladd.v2f16.ll │ │ ├── fnearbyint.ll │ │ ├── fneg-combines.ll │ │ ├── fneg-fabs.f16.ll │ │ ├── fneg-fabs.f64.ll │ │ ├── fneg-fabs.ll │ │ ├── fneg.f16.ll │ │ ├── fneg.f64.ll │ │ ├── fneg.ll │ │ ├── fold-cndmask.mir │ │ ├── fold-fmul-to-neg-abs.ll │ │ ├── fold-immediate-output-mods.mir │ │ ├── fold-operands-order.mir │ │ ├── fp-classify.ll │ │ ├── fp16_to_fp32.ll │ │ ├── fp16_to_fp64.ll │ │ ├── fp32_to_fp16.ll │ │ ├── fp_to_sint.f64.ll │ │ ├── fp_to_sint.ll │ │ ├── fp_to_uint.f64.ll │ │ ├── fp_to_uint.ll │ │ ├── fpext-free.ll │ │ ├── fpext.f16.ll │ │ ├── fpext.ll │ │ ├── fptosi.f16.ll │ │ ├── fptoui.f16.ll │ │ ├── fptrunc.f16.ll │ │ ├── fptrunc.ll │ │ ├── fract.f64.ll │ │ ├── fract.ll │ │ ├── frame-index-amdgiz.ll │ │ ├── frame-index-elimination.ll │ │ ├── frem.ll │ │ ├── fsqrt.f64.ll │ │ ├── fsqrt.ll │ │ ├── fsub.f16.ll │ │ ├── fsub.ll │ │ ├── fsub64.ll │ │ ├── ftrunc.f64.ll │ │ ├── ftrunc.ll │ │ ├── function-args.ll │ │ ├── function-returns.ll │ │ ├── gep-address-space.ll │ │ ├── global-constant.ll │ │ ├── global-directive.ll │ │ ├── global-extload-i16.ll │ │ ├── global-smrd-unknown.ll │ │ ├── global-variable-relocs.ll │ │ ├── global_atomics.ll │ │ ├── global_atomics_i64.ll │ │ ├── global_smrd.ll │ │ ├── global_smrd_cfg.ll │ │ ├── gv-const-addrspace.ll │ │ ├── gv-offset-folding.ll │ │ ├── half.ll │ │ ├── hazard-inlineasm.mir │ │ ├── hazard.mir │ │ ├── hoist-cond.ll │ │ ├── hsa-default-device.ll │ │ ├── hsa-fp-mode.ll │ │ ├── hsa-func-align.ll │ │ ├── hsa-func.ll │ │ ├── hsa-globals.ll │ │ ├── hsa-group-segment.ll │ │ ├── hsa-metadata-deduce-ro-arg.ll │ │ ├── hsa-metadata-enqueu-kernel.ll │ │ ├── hsa-metadata-from-llvm-ir-full.ll │ │ ├── hsa-metadata-images.ll │ │ ├── hsa-metadata-invalid-ocl-version-1.ll │ │ ├── hsa-metadata-invalid-ocl-version-2.ll │ │ ├── hsa-metadata-invalid-ocl-version-3.ll │ │ ├── hsa-metadata-kernel-code-props.ll │ │ ├── hsa-metadata-kernel-debug-props.ll │ │ ├── hsa-note-no-func.ll │ │ ├── hsa.ll │ │ ├── huge-private-buffer.ll │ │ ├── i1-copy-implicit-def.ll │ │ ├── i1-copy-phi.ll │ │ ├── i8-to-double-to-float.ll │ │ ├── icmp-select-sete-reverse-args.ll │ │ ├── icmp.i16.ll │ │ ├── icmp64.ll │ │ ├── illegal-sgpr-to-vgpr-copy.ll │ │ ├── image-attributes.ll │ │ ├── image-resource-id.ll │ │ ├── imm.ll │ │ ├── imm16.ll │ │ ├── immv216.ll │ │ ├── indirect-addressing-si-noopt.ll │ │ ├── indirect-addressing-si.ll │ │ ├── indirect-private-64.ll │ │ ├── infer-addrpace-pipeline.ll │ │ ├── infinite-loop-evergreen.ll │ │ ├── infinite-loop.ll │ │ ├── inline-asm.ll │ │ ├── inline-attr.ll │ │ ├── inline-calls.ll │ │ ├── inline-constraints.ll │ │ ├── inlineasm-16.ll │ │ ├── inlineasm-illegal-type.ll │ │ ├── inlineasm-packed.ll │ │ ├── input-mods.ll │ │ ├── insert-skips-kill-uncond.mir │ │ ├── insert-waits-callee.mir │ │ ├── insert-waits-exp.mir │ │ ├── insert_subreg.ll │ │ ├── insert_vector_elt.ll │ │ ├── insert_vector_elt.v2i16.ll │ │ ├── inserted-wait-states.mir │ │ ├── internalize.ll │ │ ├── invalid-addrspacecast.ll │ │ ├── invariant-load-no-alias-store.ll │ │ ├── invert-br-undef-vcc.mir │ │ ├── ipra.ll │ │ ├── jump-address.ll │ │ ├── kcache-fold.ll │ │ ├── kernarg-stack-alignment.ll │ │ ├── kernel-args.ll │ │ ├── knownbits-recursion.ll │ │ ├── large-alloca-compute.ll │ │ ├── large-alloca-graphics.ll │ │ ├── large-constant-initializer.ll │ │ ├── large-work-group-promote-alloca.ll │ │ ├── lds-alignment.ll │ │ ├── lds-initializer.ll │ │ ├── lds-m0-init-in-loop.ll │ │ ├── lds-oqap-crash.ll │ │ ├── lds-output-queue.ll │ │ ├── lds-size.ll │ │ ├── lds-zero-initializer.ll │ │ ├── legalizedag-bug-expand-setcc.ll │ │ ├── limit-coalesce.mir │ │ ├── lit.local.cfg │ │ ├── literals.ll │ │ ├── liveness.mir │ │ ├── llvm.AMDGPU.kill.ll │ │ ├── llvm.SI.load.dword.ll │ │ ├── llvm.SI.tbuffer.store.ll │ │ ├── llvm.amdgcn.alignb.ll │ │ ├── llvm.amdgcn.atomic.dec.ll │ │ ├── llvm.amdgcn.atomic.inc.ll │ │ ├── llvm.amdgcn.buffer.atomic.ll │ │ ├── llvm.amdgcn.buffer.load.format.ll │ │ ├── llvm.amdgcn.buffer.load.ll │ │ ├── llvm.amdgcn.buffer.store.format.ll │ │ ├── llvm.amdgcn.buffer.store.ll │ │ ├── llvm.amdgcn.buffer.wbinvl1.ll │ │ ├── llvm.amdgcn.buffer.wbinvl1.sc.ll │ │ ├── llvm.amdgcn.buffer.wbinvl1.vol.ll │ │ ├── llvm.amdgcn.class.f16.ll │ │ ├── llvm.amdgcn.class.ll │ │ ├── llvm.amdgcn.cos.f16.ll │ │ ├── llvm.amdgcn.cos.ll │ │ ├── llvm.amdgcn.cubeid.ll │ │ ├── llvm.amdgcn.cubema.ll │ │ ├── llvm.amdgcn.cubesc.ll │ │ ├── llvm.amdgcn.cubetc.ll │ │ ├── llvm.amdgcn.cvt.pk.i16.ll │ │ ├── llvm.amdgcn.cvt.pk.u16.ll │ │ ├── llvm.amdgcn.cvt.pknorm.i16.ll │ │ ├── llvm.amdgcn.cvt.pknorm.u16.ll │ │ ├── llvm.amdgcn.cvt.pkrtz.ll │ │ ├── llvm.amdgcn.dispatch.id.ll │ │ ├── llvm.amdgcn.dispatch.ptr.ll │ │ ├── llvm.amdgcn.div.fixup.f16.ll │ │ ├── llvm.amdgcn.div.fixup.ll │ │ ├── llvm.amdgcn.div.fmas.ll │ │ ├── llvm.amdgcn.div.scale.ll │ │ ├── llvm.amdgcn.ds.bpermute.ll │ │ ├── llvm.amdgcn.ds.permute.ll │ │ ├── llvm.amdgcn.ds.swizzle.ll │ │ ├── llvm.amdgcn.exp.compr.ll │ │ ├── llvm.amdgcn.exp.ll │ │ ├── llvm.amdgcn.fcmp.ll │ │ ├── llvm.amdgcn.fdiv.fast.ll │ │ ├── llvm.amdgcn.fmed3.f16.ll │ │ ├── llvm.amdgcn.fmed3.ll │ │ ├── llvm.amdgcn.fmul.legacy.ll │ │ ├── llvm.amdgcn.fract.f16.ll │ │ ├── llvm.amdgcn.fract.ll │ │ ├── llvm.amdgcn.frexp.exp.f16.ll │ │ ├── llvm.amdgcn.frexp.exp.ll │ │ ├── llvm.amdgcn.frexp.mant.f16.ll │ │ ├── llvm.amdgcn.frexp.mant.ll │ │ ├── llvm.amdgcn.groupstaticsize.ll │ │ ├── llvm.amdgcn.icmp.ll │ │ ├── llvm.amdgcn.image.atomic.ll │ │ ├── llvm.amdgcn.image.gather4.ll │ │ ├── llvm.amdgcn.image.getlod.ll │ │ ├── llvm.amdgcn.image.ll │ │ ├── llvm.amdgcn.image.sample.ll │ │ ├── llvm.amdgcn.image.sample.o.ll │ │ ├── llvm.amdgcn.implicit.buffer.ptr.hsa.ll │ │ ├── llvm.amdgcn.implicit.buffer.ptr.ll │ │ ├── llvm.amdgcn.implicitarg.ptr.ll │ │ ├── llvm.amdgcn.init.exec.ll │ │ ├── llvm.amdgcn.interp.ll │ │ ├── llvm.amdgcn.kernarg.segment.ptr.ll │ │ ├── llvm.amdgcn.kill.ll │ │ ├── llvm.amdgcn.ldexp.f16.ll │ │ ├── llvm.amdgcn.ldexp.ll │ │ ├── llvm.amdgcn.lerp.ll │ │ ├── llvm.amdgcn.log.clamp.ll │ │ ├── llvm.amdgcn.mbcnt.ll │ │ ├── llvm.amdgcn.mov.dpp.ll │ │ ├── llvm.amdgcn.mqsad.pk.u16.u8.ll │ │ ├── llvm.amdgcn.mqsad.u32.u8.ll │ │ ├── llvm.amdgcn.msad.u8.ll │ │ ├── llvm.amdgcn.ps.live.ll │ │ ├── llvm.amdgcn.qsad.pk.u16.u8.ll │ │ ├── llvm.amdgcn.queue.ptr.ll │ │ ├── llvm.amdgcn.rcp.f16.ll │ │ ├── llvm.amdgcn.rcp.legacy.ll │ │ ├── llvm.amdgcn.rcp.ll │ │ ├── llvm.amdgcn.readfirstlane.ll │ │ ├── llvm.amdgcn.readlane.ll │ │ ├── llvm.amdgcn.rsq.clamp.ll │ │ ├── llvm.amdgcn.rsq.f16.ll │ │ ├── llvm.amdgcn.rsq.legacy.ll │ │ ├── llvm.amdgcn.rsq.ll │ │ ├── llvm.amdgcn.s.barrier.ll │ │ ├── llvm.amdgcn.s.dcache.inv.ll │ │ ├── llvm.amdgcn.s.dcache.inv.vol.ll │ │ ├── llvm.amdgcn.s.dcache.wb.ll │ │ ├── llvm.amdgcn.s.dcache.wb.vol.ll │ │ ├── llvm.amdgcn.s.decperflevel.ll │ │ ├── llvm.amdgcn.s.getpc.ll │ │ ├── llvm.amdgcn.s.getreg.ll │ │ ├── llvm.amdgcn.s.incperflevel.ll │ │ ├── llvm.amdgcn.s.memrealtime.ll │ │ ├── llvm.amdgcn.s.memtime.ll │ │ ├── llvm.amdgcn.s.sleep.ll │ │ ├── llvm.amdgcn.s.waitcnt.ll │ │ ├── llvm.amdgcn.sad.hi.u8.ll │ │ ├── llvm.amdgcn.sad.u16.ll │ │ ├── llvm.amdgcn.sad.u8.ll │ │ ├── llvm.amdgcn.sbfe.ll │ │ ├── llvm.amdgcn.sendmsg.ll │ │ ├── llvm.amdgcn.set.inactive.ll │ │ ├── llvm.amdgcn.sffbh.ll │ │ ├── llvm.amdgcn.sin.f16.ll │ │ ├── llvm.amdgcn.sin.ll │ │ ├── llvm.amdgcn.tbuffer.load.ll │ │ ├── llvm.amdgcn.tbuffer.store.ll │ │ ├── llvm.amdgcn.trig.preop.ll │ │ ├── llvm.amdgcn.ubfe.ll │ │ ├── llvm.amdgcn.unreachable.ll │ │ ├── llvm.amdgcn.update.dpp.ll │ │ ├── llvm.amdgcn.wave.barrier.ll │ │ ├── llvm.amdgcn.workgroup.id.ll │ │ ├── llvm.amdgcn.workitem.id.ll │ │ ├── llvm.amdgcn.wqm.vote.ll │ │ ├── llvm.amdgpu.kilp.ll │ │ ├── llvm.ceil.f16.ll │ │ ├── llvm.cos.f16.ll │ │ ├── llvm.cos.ll │ │ ├── llvm.dbg.value.ll │ │ ├── llvm.exp2.f16.ll │ │ ├── llvm.exp2.ll │ │ ├── llvm.floor.f16.ll │ │ ├── llvm.fma.f16.ll │ │ ├── llvm.fmuladd.f16.ll │ │ ├── llvm.log.f16.ll │ │ ├── llvm.log.ll │ │ ├── llvm.log10.f16.ll │ │ ├── llvm.log10.ll │ │ ├── llvm.log2.f16.ll │ │ ├── llvm.log2.ll │ │ ├── llvm.maxnum.f16.ll │ │ ├── llvm.memcpy.ll │ │ ├── llvm.minnum.f16.ll │ │ ├── llvm.pow.ll │ │ ├── llvm.r600.cube.ll │ │ ├── llvm.r600.dot4.ll │ │ ├── llvm.r600.group.barrier.ll │ │ ├── llvm.r600.read.local.size.ll │ │ ├── llvm.r600.recipsqrt.clamped.ll │ │ ├── llvm.r600.recipsqrt.ieee.ll │ │ ├── llvm.r600.tex.ll │ │ ├── llvm.rint.f16.ll │ │ ├── llvm.rint.f64.ll │ │ ├── llvm.rint.ll │ │ ├── llvm.round.f64.ll │ │ ├── llvm.round.ll │ │ ├── llvm.sin.f16.ll │ │ ├── llvm.sin.ll │ │ ├── llvm.sqrt.f16.ll │ │ ├── llvm.trunc.f16.ll │ │ ├── load-constant-f64.ll │ │ ├── load-constant-i1.ll │ │ ├── load-constant-i16.ll │ │ ├── load-constant-i32.ll │ │ ├── load-constant-i64.ll │ │ ├── load-constant-i8.ll │ │ ├── load-global-f32.ll │ │ ├── load-global-f64.ll │ │ ├── load-global-i1.ll │ │ ├── load-global-i16.ll │ │ ├── load-global-i32.ll │ │ ├── load-global-i64.ll │ │ ├── load-global-i8.ll │ │ ├── load-hi16.ll │ │ ├── load-input-fold.ll │ │ ├── load-lo16.ll │ │ ├── load-local-f32.ll │ │ ├── load-local-f64.ll │ │ ├── load-local-i1.ll │ │ ├── load-local-i16.ll │ │ ├── load-local-i32.ll │ │ ├── load-local-i64.ll │ │ ├── load-local-i8.ll │ │ ├── load-private-double16-amdgiz.ll │ │ ├── load-weird-sizes.ll │ │ ├── local-64.ll │ │ ├── local-atomics.ll │ │ ├── local-atomics64.ll │ │ ├── local-memory.amdgcn.ll │ │ ├── local-memory.ll │ │ ├── local-memory.r600.ll │ │ ├── local-stack-slot-offset.ll │ │ ├── loop-address.ll │ │ ├── loop-idiom.ll │ │ ├── loop_break.ll │ │ ├── lower-mem-intrinsics.ll │ │ ├── lower-range-metadata-intrinsic-call.ll │ │ ├── lshl64-to-32.ll │ │ ├── lshr.v2i16.ll │ │ ├── macro-fusion-cluster-vcc-uses.mir │ │ ├── mad-combine.ll │ │ ├── mad-mix-hi.ll │ │ ├── mad-mix-lo.ll │ │ ├── mad-mix.ll │ │ ├── mad24-get-global-id.ll │ │ ├── mad_64_32.ll │ │ ├── mad_int24.ll │ │ ├── mad_uint24.ll │ │ ├── madak.ll │ │ ├── madmk.ll │ │ ├── max-literals.ll │ │ ├── max.i16.ll │ │ ├── max.ll │ │ ├── max3.ll │ │ ├── mem-builtins.ll │ │ ├── memory-legalizer-atomic-cmpxchg.ll │ │ ├── memory-legalizer-atomic-fence.ll │ │ ├── memory-legalizer-atomic-rmw.ll │ │ ├── memory-legalizer-invalid-syncscope.ll │ │ ├── memory-legalizer-load.ll │ │ ├── memory-legalizer-store-infinite-loop.ll │ │ ├── memory-legalizer-store.ll │ │ ├── merge-load-store.mir │ │ ├── merge-m0.mir │ │ ├── merge-store-crash.ll │ │ ├── merge-store-usedef.ll │ │ ├── merge-stores.ll │ │ ├── mesa_regression.ll │ │ ├── min.ll │ │ ├── min3.ll │ │ ├── misched-killflags.mir │ │ ├── missing-store.ll │ │ ├── move-addr64-rsrc-dead-subreg-writes.ll │ │ ├── move-to-valu-atomicrmw.ll │ │ ├── move-to-valu-worklist.ll │ │ ├── movreld-bug.ll │ │ ├── movrels-bug.mir │ │ ├── mubuf-offset-private.ll │ │ ├── mubuf-shader-vgpr.ll │ │ ├── mubuf.ll │ │ ├── mul.ll │ │ ├── mul_int24.ll │ │ ├── mul_uint24-amdgcn.ll │ │ ├── mul_uint24-r600.ll │ │ ├── multi-divergent-exit-region.ll │ │ ├── multilevel-break.ll │ │ ├── nested-calls.ll │ │ ├── nested-loop-conditions.ll │ │ ├── no-hsa-graphics-shaders.ll │ │ ├── no-initializer-constant-addrspace.ll │ │ ├── no-shrink-extloads.ll │ │ ├── nop-data.ll │ │ ├── not-scalarize-volatile-load.ll │ │ ├── nullptr.ll │ │ ├── omod.ll │ │ ├── opencl-image-metadata.ll │ │ ├── operand-folding.ll │ │ ├── operand-spacing.ll │ │ ├── opt-sgpr-to-vgpr-copy.mir │ │ ├── optimize-if-exec-masking.mir │ │ ├── or.ll │ │ ├── over-max-lds-size.ll │ │ ├── pack.v2f16.ll │ │ ├── pack.v2i16.ll │ │ ├── packed-op-sel.ll │ │ ├── packetizer.ll │ │ ├── parallelandifcollapse.ll │ │ ├── parallelorifcollapse.ll │ │ ├── partial-sgpr-to-vgpr-spills.ll │ │ ├── partially-dead-super-register-immediate.ll │ │ ├── predicate-dp4.ll │ │ ├── predicates.ll │ │ ├── private-access-no-objects.ll │ │ ├── private-element-size.ll │ │ ├── private-memory-atomics.ll │ │ ├── private-memory-r600.ll │ │ ├── promote-alloca-addrspacecast.ll │ │ ├── promote-alloca-array-aggregate.ll │ │ ├── promote-alloca-array-allocation.ll │ │ ├── promote-alloca-bitcast-function.ll │ │ ├── promote-alloca-calling-conv.ll │ │ ├── promote-alloca-globals.ll │ │ ├── promote-alloca-invariant-markers.ll │ │ ├── promote-alloca-lifetime.ll │ │ ├── promote-alloca-mem-intrinsics.ll │ │ ├── promote-alloca-no-opts.ll │ │ ├── promote-alloca-padding-size-estimate.ll │ │ ├── promote-alloca-stored-pointer-value.ll │ │ ├── promote-alloca-to-lds-icmp.ll │ │ ├── promote-alloca-to-lds-phi.ll │ │ ├── promote-alloca-to-lds-select.ll │ │ ├── promote-alloca-unhandled-intrinsic.ll │ │ ├── promote-alloca-volatile.ll │ │ ├── pv-packing.ll │ │ ├── pv.ll │ │ ├── r600-constant-array-fixup.ll │ │ ├── r600-encoding.ll │ │ ├── r600-export-fix.ll │ │ ├── r600-infinite-loop-bug-while-reorganizing-vector.ll │ │ ├── r600-legalize-umax-bug.ll │ │ ├── r600.alu-limits.ll │ │ ├── r600.amdgpu-alias-analysis.ll │ │ ├── r600.bitcast.ll │ │ ├── r600.global_atomics.ll │ │ ├── r600.private-memory.ll │ │ ├── r600.work-item-intrinsics.ll │ │ ├── r600cfg.ll │ │ ├── rcp-pattern.ll │ │ ├── read-register-invalid-subtarget.ll │ │ ├── read-register-invalid-type-i32.ll │ │ ├── read-register-invalid-type-i64.ll │ │ ├── read_register.ll │ │ ├── readcyclecounter.ll │ │ ├── readlane_exec0.mir │ │ ├── reduce-load-width-alignment.ll │ │ ├── reduce-saveexec.mir │ │ ├── reduce-store-width-alignment.ll │ │ ├── reg-coalescer-sched-crash.ll │ │ ├── regcoal-subrange-join.mir │ │ ├── regcoalesce-dbg.mir │ │ ├── regcoalesce-prune.mir │ │ ├── register-count-comments.ll │ │ ├── rename-disconnected-bug.ll │ │ ├── rename-independent-subregs-mac-operands.mir │ │ ├── rename-independent-subregs.mir │ │ ├── reorder-stores.ll │ │ ├── ret.ll │ │ ├── ret_jump.ll │ │ ├── rewrite-out-arguments-address-space.ll │ │ ├── rewrite-out-arguments.ll │ │ ├── rotl.i64.ll │ │ ├── rotl.ll │ │ ├── rotr.i64.ll │ │ ├── rotr.ll │ │ ├── rsq.ll │ │ ├── rv7x0_count3.ll │ │ ├── s_addk_i32.ll │ │ ├── s_movk_i32.ll │ │ ├── s_mulk_i32.ll │ │ ├── sad.ll │ │ ├── saddo.ll │ │ ├── salu-to-valu.ll │ │ ├── sampler-resource-id.ll │ │ ├── scalar-store-cache-flush.mir │ │ ├── scalar_to_vector.ll │ │ ├── sched-crash-dbg-value.mir │ │ ├── schedule-fs-loop-nested-if.ll │ │ ├── schedule-fs-loop-nested.ll │ │ ├── schedule-fs-loop.ll │ │ ├── schedule-global-loads.ll │ │ ├── schedule-if-2.ll │ │ ├── schedule-if.ll │ │ ├── schedule-ilp.ll │ │ ├── schedule-kernel-arg-loads.ll │ │ ├── schedule-regpressure-limit.ll │ │ ├── schedule-regpressure-limit2.ll │ │ ├── schedule-regpressure.mir │ │ ├── schedule-vs-if-nested-loop-failure.ll │ │ ├── schedule-vs-if-nested-loop.ll │ │ ├── scheduler-subrange-crash.ll │ │ ├── scratch-buffer.ll │ │ ├── scratch-simple.ll │ │ ├── sdiv.ll │ │ ├── sdivrem24.ll │ │ ├── sdivrem64.ll │ │ ├── sdwa-gfx9.mir │ │ ├── sdwa-peephole-instr.mir │ │ ├── sdwa-peephole.ll │ │ ├── sdwa-preserve.mir │ │ ├── sdwa-scalar-ops.mir │ │ ├── sdwa-vop2-64bit.mir │ │ ├── select-fabs-fneg-extract-legacy.ll │ │ ├── select-fabs-fneg-extract.ll │ │ ├── select-i1.ll │ │ ├── select-opt.ll │ │ ├── select-vectors.ll │ │ ├── select.f16.ll │ │ ├── select.ll │ │ ├── select64.ll │ │ ├── selectcc-cnd.ll │ │ ├── selectcc-cnde-int.ll │ │ ├── selectcc-icmp-select-float.ll │ │ ├── selectcc-opt.ll │ │ ├── selectcc.ll │ │ ├── selected-stack-object.ll │ │ ├── sendmsg-m0-hazard.mir │ │ ├── set-dx10.ll │ │ ├── setcc-equivalent.ll │ │ ├── setcc-fneg-constant.ll │ │ ├── setcc-opt.ll │ │ ├── setcc-sext.ll │ │ ├── setcc.ll │ │ ├── setcc64.ll │ │ ├── seto.ll │ │ ├── setuo.ll │ │ ├── sext-eliminate.ll │ │ ├── sext-in-reg-failure-r600.ll │ │ ├── sext-in-reg.ll │ │ ├── sgpr-control-flow.ll │ │ ├── sgpr-copy-duplicate-operand.ll │ │ ├── sgpr-copy.ll │ │ ├── sgprcopies.ll │ │ ├── shared-op-cycle.ll │ │ ├── shift-and-i128-ubfe.ll │ │ ├── shift-and-i64-ubfe.ll │ │ ├── shift-i64-opts.ll │ │ ├── shl-add-to-add-shl.ll │ │ ├── shl.ll │ │ ├── shl.v2i16.ll │ │ ├── shl_add_constant.ll │ │ ├── shl_add_ptr.ll │ │ ├── shrink-add-sub-constant.ll │ │ ├── shrink-carry.mir │ │ ├── shrink-vop3-carry-out.mir │ │ ├── si-annotate-cf-noloop.ll │ │ ├── si-annotate-cf-unreachable.ll │ │ ├── si-annotate-cf.ll │ │ ├── si-annotate-cfg-loop-assert.ll │ │ ├── si-fix-sgpr-copies.mir │ │ ├── si-instr-info-correct-implicit-operands.ll │ │ ├── si-lod-bias.ll │ │ ├── si-lower-control-flow-kill.ll │ │ ├── si-lower-control-flow-unreachable-block.ll │ │ ├── si-scheduler.ll │ │ ├── si-sgpr-spill.ll │ │ ├── si-spill-cf.ll │ │ ├── si-spill-sgpr-stack.ll │ │ ├── si-triv-disjoint-mem-access.ll │ │ ├── si-vector-hang.ll │ │ ├── sibling-call.ll │ │ ├── sign_extend.ll │ │ ├── simplify-libcalls.ll │ │ ├── simplifydemandedbits-recursion.ll │ │ ├── sint_to_fp.f64.ll │ │ ├── sint_to_fp.i64.ll │ │ ├── sint_to_fp.ll │ │ ├── sitofp.f16.ll │ │ ├── skip-if-dead.ll │ │ ├── smed3.ll │ │ ├── sminmax.ll │ │ ├── sminmax.v2i16.ll │ │ ├── smrd-vccz-bug.ll │ │ ├── smrd.ll │ │ ├── sopk-compares.ll │ │ ├── spill-alloc-sgpr-init-bug.ll │ │ ├── spill-cfg-position.ll │ │ ├── spill-empty-live-interval.mir │ │ ├── spill-m0.ll │ │ ├── spill-scavenge-offset.ll │ │ ├── spill-to-smem-m0.ll │ │ ├── spill-wide-sgpr.ll │ │ ├── split-scalar-i64-add.ll │ │ ├── split-smrd.ll │ │ ├── split-vector-memoperand-offsets.ll │ │ ├── splitkit.mir │ │ ├── sra.ll │ │ ├── srem.ll │ │ ├── srl.ll │ │ ├── ssubo.ll │ │ ├── stack-size-overflow.ll │ │ ├── stack-slot-color-sgpr-vgpr-spills.mir │ │ ├── store-barrier.ll │ │ ├── store-global.ll │ │ ├── store-hi16.ll │ │ ├── store-local.ll │ │ ├── store-private.ll │ │ ├── store-v3i64.ll │ │ ├── store-vector-ptrs.ll │ │ ├── store-weird-sizes.ll │ │ ├── store_typed.ll │ │ ├── stress-calls.ll │ │ ├── structurize.ll │ │ ├── structurize1.ll │ │ ├── sub.i16.ll │ │ ├── sub.ll │ │ ├── sub.v2i16.ll │ │ ├── subreg-coalescer-crash.ll │ │ ├── subreg-coalescer-undef-use.ll │ │ ├── subreg-eliminate-dead.ll │ │ ├── subreg-intervals.mir │ │ ├── subreg_interference.mir │ │ ├── swizzle-export.ll │ │ ├── syncscopes.ll │ │ ├── tail-call-cgp.ll │ │ ├── target-cpu.ll │ │ ├── tex-clause-antidep.ll │ │ ├── texture-input-merge.ll │ │ ├── trap.ll │ │ ├── trunc-bitcast-vector.ll │ │ ├── trunc-cmp-constant.ll │ │ ├── trunc-store-f64-to-f16.ll │ │ ├── trunc-store-i1.ll │ │ ├── trunc-store.ll │ │ ├── trunc-vector-store-assertion-failure.ll │ │ ├── trunc.ll │ │ ├── tti-unroll-prefs.ll │ │ ├── twoaddr-mad.mir │ │ ├── uaddo.ll │ │ ├── udiv.ll │ │ ├── udivrem.ll │ │ ├── udivrem24.ll │ │ ├── udivrem64.ll │ │ ├── uint_to_fp.f64.ll │ │ ├── uint_to_fp.i64.ll │ │ ├── uint_to_fp.ll │ │ ├── uitofp.f16.ll │ │ ├── umed3.ll │ │ ├── unaligned-load-store.ll │ │ ├── undefined-physreg-sgpr-spill.mir │ │ ├── undefined-subreg-liverange.ll │ │ ├── unhandled-loop-condition-assertion.ll │ │ ├── uniform-PHI.ll │ │ ├── uniform-branch-intrinsic-cond.ll │ │ ├── uniform-cfg.ll │ │ ├── uniform-crash.ll │ │ ├── uniform-loop-inside-nonuniform.ll │ │ ├── unify-metadata.ll │ │ ├── unigine-liveness-crash.ll │ │ ├── unknown-processor.ll │ │ ├── unroll.ll │ │ ├── unsupported-calls.ll │ │ ├── unsupported-cc.ll │ │ ├── urem.ll │ │ ├── use-sgpr-multiple-times.ll │ │ ├── usubo.ll │ │ ├── v1i64-kernel-arg.ll │ │ ├── v_cndmask.ll │ │ ├── v_cvt_pk_u8_f32.ll │ │ ├── v_mac.ll │ │ ├── v_mac_f16.ll │ │ ├── v_madak_f16.ll │ │ ├── valu-i1.ll │ │ ├── vccz-corrupt-bug-workaround.mir │ │ ├── vector-alloca.ll │ │ ├── vector-extract-insert.ll │ │ ├── vectorize-global-local.ll │ │ ├── vertex-fetch-encoding.ll │ │ ├── vgpr-spill-emergency-stack-slot-compute.ll │ │ ├── vgpr-spill-emergency-stack-slot.ll │ │ ├── vi-removed-intrinsics.ll │ │ ├── vop-shrink-frame-index.mir │ │ ├── vop-shrink-non-ssa.mir │ │ ├── vop-shrink.ll │ │ ├── vselect.ll │ │ ├── vselect64.ll │ │ ├── vtx-fetch-branch.ll │ │ ├── vtx-schedule.ll │ │ ├── wait.ll │ │ ├── waitcnt-flat.ll │ │ ├── waitcnt-looptest.ll │ │ ├── waitcnt-permute.mir │ │ ├── waitcnt.mir │ │ ├── widen-vselect-and-mask.ll │ │ ├── widen_extending_scalar_loads.ll │ │ ├── wqm.ll │ │ ├── wqm.mir │ │ ├── write-register-vgpr-into-sgpr.ll │ │ ├── write_register.ll │ │ ├── wrong-transalu-pos-fix.ll │ │ ├── xfail.r600.bitcast.ll │ │ ├── xnor.ll │ │ ├── xor.ll │ │ ├── zero_extend.ll │ │ ├── zext-i64-bit-operand.ll │ │ └── zext-lid.ll │ ├── ARC │ │ ├── alu.ll │ │ ├── brcc.ll │ │ ├── call.ll │ │ ├── ldst.ll │ │ └── lit.local.cfg │ ├── 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-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-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-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-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-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-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-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-16-Scope.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-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-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-29-PartialRedefFastAlloc.ll │ │ ├── 2010-06-29-SubregImpDefs.ll │ │ ├── 2010-07-26-GlobalMerge.ll │ │ ├── 2010-08-04-EHCrash.ll │ │ ├── 2010-08-04-StackVariable.ll │ │ ├── 2010-09-21-OptCmpBug.ll │ │ ├── 2010-10-25-ifcvt-ldm.ll │ │ ├── 2010-11-15-SpillEarlyClobber.ll │ │ ├── 2010-11-29-PrologueBug.ll │ │ ├── 2010-12-07-PEIBug.ll │ │ ├── 2010-12-08-tpsoft.ll │ │ ├── 2010-12-15-elf-lcomm.ll │ │ ├── 2010-12-17-LocalStackSlotCrash.ll │ │ ├── 2011-01-19-MergedGlobalDbg.ll │ │ ├── 2011-02-04-AntidepMultidef.ll │ │ ├── 2011-02-07-AntidepClobber.ll │ │ ├── 2011-03-10-DAGCombineCrash.ll │ │ ├── 2011-03-15-LdStMultipleBug.ll │ │ ├── 2011-03-23-PeepholeBug.ll │ │ ├── 2011-04-07-schediv.ll │ │ ├── 2011-04-11-MachineLICMBug.ll │ │ ├── 2011-04-12-AlignBug.ll │ │ ├── 2011-04-12-FastRegAlloc.ll │ │ ├── 2011-04-15-AndVFlagPeepholeBug.ll │ │ ├── 2011-04-15-RegisterCmpPeephole.ll │ │ ├── 2011-04-26-SchedTweak.ll │ │ ├── 2011-04-27-IfCvtBug.ll │ │ ├── 2011-05-04-MultipleLandingPadSuccs.ll │ │ ├── 2011-06-09-TailCallByVal.ll │ │ ├── 2011-06-16-TailCallByVal.ll │ │ ├── 2011-06-29-MergeGlobalsAlign.ll │ │ ├── 2011-07-10-GlobalMergeBug.ll │ │ ├── 2011-08-02-MergedGlobalDbg.ll │ │ ├── 2011-08-12-vmovqqqq-pseudo.ll │ │ ├── 2011-08-25-ldmia_ret.ll │ │ ├── 2011-08-29-SchedCycle.ll │ │ ├── 2011-08-29-ldr_pre_imm.ll │ │ ├── 2011-09-09-OddVectorDivision.ll │ │ ├── 2011-09-19-cpsr.ll │ │ ├── 2011-09-28-CMovCombineBug.ll │ │ ├── 2011-10-26-ExpandUnalignedLoadCrash.ll │ │ ├── 2011-10-26-memset-inline.ll │ │ ├── 2011-10-26-memset-with-neon.ll │ │ ├── 2011-11-07-PromoteVectorLoadStore.ll │ │ ├── 2011-11-09-BitcastVectorDouble.ll │ │ ├── 2011-11-09-IllegalVectorFPIntConvert.ll │ │ ├── 2011-11-14-EarlyClobber.ll │ │ ├── 2011-11-28-DAGCombineBug.ll │ │ ├── 2011-11-29-128bitArithmetics.ll │ │ ├── 2011-11-30-MergeAlignment.ll │ │ ├── 2011-12-14-machine-sink.ll │ │ ├── 2011-12-19-sjlj-clobber.ll │ │ ├── 2012-01-23-PostRA-LICM.ll │ │ ├── 2012-01-24-RegSequenceLiveRange.ll │ │ ├── 2012-01-26-CoalescerBug.ll │ │ ├── 2012-01-26-CopyPropKills.ll │ │ ├── 2012-02-01-CoalescerBug.ll │ │ ├── 2012-03-05-FPSCR-bug.ll │ │ ├── 2012-03-13-DAGCombineBug.ll │ │ ├── 2012-03-26-FoldImmBug.ll │ │ ├── 2012-04-02-TwoAddrInstrCrash.ll │ │ ├── 2012-04-10-DAGCombine.ll │ │ ├── 2012-04-24-SplitEHCriticalEdge.ll │ │ ├── 2012-05-04-vmov.ll │ │ ├── 2012-05-10-PreferVMOVtoVDUP32.ll │ │ ├── 2012-05-29-TailDupBug.ll │ │ ├── 2012-06-12-SchedMemLatency.ll │ │ ├── 2012-08-04-DtripleSpillReload.ll │ │ ├── 2012-08-08-legalize-unaligned.ll │ │ ├── 2012-08-09-neon-extload.ll │ │ ├── 2012-08-13-bfi.ll │ │ ├── 2012-08-23-legalize-vmull.ll │ │ ├── 2012-08-27-CopyPhysRegCrash.ll │ │ ├── 2012-08-30-select.ll │ │ ├── 2012-09-18-ARMv4ISelBug.ll │ │ ├── 2012-09-25-InlineAsmScalarToVectorConv.ll │ │ ├── 2012-09-25-InlineAsmScalarToVectorConv2.ll │ │ ├── 2012-10-04-AAPCS-byval-align8.ll │ │ ├── 2012-10-04-FixedFrame-vs-byval.ll │ │ ├── 2012-10-04-LDRB_POST_IMM-Crash.ll │ │ ├── 2012-10-18-PR14099-ByvalFrameAddress.ll │ │ ├── 2012-11-14-subs_carry.ll │ │ ├── 2013-01-21-PR14992.ll │ │ ├── 2013-02-27-expand-vfma.ll │ │ ├── 2013-04-05-Small-ByVal-Structs-PR15293.ll │ │ ├── 2013-04-16-AAPCS-C4-vs-VFP.ll │ │ ├── 2013-04-16-AAPCS-C5-vs-VFP.ll │ │ ├── 2013-04-18-load-overlap-PR14824.ll │ │ ├── 2013-04-21-AAPCS-VA-C.1.cp.ll │ │ ├── 2013-05-02-AAPCS-ByVal-Structs-C4-C5-VFP.ll │ │ ├── 2013-05-02-AAPCS-ByVal-Structs-C4-C5-VFP2.ll │ │ ├── 2013-05-05-IfConvertBug.ll │ │ ├── 2013-05-07-ByteLoadSameAddress.ll │ │ ├── 2013-05-13-AAPCS-byval-padding.ll │ │ ├── 2013-05-13-AAPCS-byval-padding2.ll │ │ ├── 2013-05-13-DAGCombiner-undef-mask.ll │ │ ├── 2013-05-31-char-shift-crash.ll │ │ ├── 2013-06-03-ByVal-2Kbytes.ll │ │ ├── 2013-07-29-vector-or-combine.ll │ │ ├── 2013-10-11-select-stalls.ll │ │ ├── 2013-11-08-inline-asm-neon-array.ll │ │ ├── 2014-01-09-pseudo_expand_implicit_reg.ll │ │ ├── 2014-02-05-vfp-regs-after-stack.ll │ │ ├── 2014-02-21-byval-reg-split-alignment.ll │ │ ├── 2014-05-14-DwarfEHCrash.ll │ │ ├── 2014-07-18-earlyclobber-str-post.ll │ │ ├── 2014-08-04-muls-it.ll │ │ ├── 2015-01-21-thumbv4t-ldstr-opt.ll │ │ ├── 2016-05-01-RegScavengerAssert.ll │ │ ├── 2016-08-24-ARM-LDST-dbginfo-bug.ll │ │ ├── ARMLoadStoreDBG.mir │ │ ├── DbgValueOtherTargets.test │ │ ├── GlobalISel │ │ │ ├── arm-call-lowering.ll │ │ │ ├── arm-instruction-select-cmp.mir │ │ │ ├── arm-instruction-select-combos.mir │ │ │ ├── arm-instruction-select.mir │ │ │ ├── arm-irtranslator.ll │ │ │ ├── arm-isel-divmod.ll │ │ │ ├── arm-isel-fp.ll │ │ │ ├── arm-isel-globals-pic.ll │ │ │ ├── arm-isel-globals-ropi-rwpi.ll │ │ │ ├── arm-isel-globals-static.ll │ │ │ ├── arm-isel.ll │ │ │ ├── arm-legalize-divmod.mir │ │ │ ├── arm-legalize-fp.mir │ │ │ ├── arm-legalizer.mir │ │ │ ├── arm-param-lowering.ll │ │ │ ├── arm-regbankselect.mir │ │ │ ├── arm-select-globals-pic.mir │ │ │ ├── arm-select-globals-ropi-rwpi.mir │ │ │ ├── arm-select-globals-static.mir │ │ │ ├── arm-unsupported.ll │ │ │ ├── lit.local.cfg │ │ │ └── pr35375.ll │ │ ├── MachO-subtypes.ll │ │ ├── MergeConsecutiveStores.ll │ │ ├── PR15053.ll │ │ ├── Windows │ │ │ ├── aapcs.ll │ │ │ ├── alloca.ll │ │ │ ├── builtin_longjmp.ll │ │ │ ├── chkstk-movw-movt-isel.ll │ │ │ ├── chkstk.ll │ │ │ ├── dbzchk.ll │ │ │ ├── division-range.ll │ │ │ ├── division.ll │ │ │ ├── dllexport.ll │ │ │ ├── dllimport.ll │ │ │ ├── frame-register.ll │ │ │ ├── global-minsize.ll │ │ │ ├── hard-float.ll │ │ │ ├── if-cvt-bundle.ll │ │ │ ├── libcalls.ll │ │ │ ├── long-calls.ll │ │ │ ├── mangling.ll │ │ │ ├── memset.ll │ │ │ ├── mov32t-bundling.ll │ │ │ ├── movw-movt-relocations.ll │ │ │ ├── no-aeabi.ll │ │ │ ├── no-eabi.ll │ │ │ ├── no-ehabi.ll │ │ │ ├── no-frame-register.ll │ │ │ ├── pic.ll │ │ │ ├── powi.ll │ │ │ ├── read-only-data.ll │ │ │ ├── stack-probe-non-default.ll │ │ │ ├── structors.ll │ │ │ ├── tls.ll │ │ │ ├── trivial-gnu-object.ll │ │ │ ├── vla-cpsr.ll │ │ │ ├── vla.ll │ │ │ └── wineh-basic.ll │ │ ├── a15-SD-dep.ll │ │ ├── a15-mla.ll │ │ ├── a15-partial-update.ll │ │ ├── a15.ll │ │ ├── aapcs-hfa-code.ll │ │ ├── aapcs-hfa.ll │ │ ├── acle-intrinsics-v5.ll │ │ ├── acle-intrinsics.ll │ │ ├── addrmode.ll │ │ ├── addrspacecast.ll │ │ ├── addsubcarry-promotion.ll │ │ ├── adv-copy-opt.ll │ │ ├── aeabi-read-tp.ll │ │ ├── aggregate-padding.ll │ │ ├── alias_store.ll │ │ ├── aliases.ll │ │ ├── align-sp-adjustment.ll │ │ ├── align.ll │ │ ├── alloc-no-stack-realign.ll │ │ ├── alloca-align.ll │ │ ├── alloca.ll │ │ ├── and-cmpz.ll │ │ ├── and-load-combine.ll │ │ ├── apcs-vfp.ll │ │ ├── arg-copy-elide.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-abi-attr.ll │ │ ├── arm-and-tst-peephole.ll │ │ ├── arm-asm.ll │ │ ├── arm-eabi.ll │ │ ├── arm-frame-lowering-no-terminator.ll │ │ ├── arm-frameaddr.ll │ │ ├── arm-insert-subvector.ll │ │ ├── arm-macho-tail.ll │ │ ├── arm-modifier.ll │ │ ├── arm-negative-stride.ll │ │ ├── arm-position-independence-jump-table.ll │ │ ├── arm-position-independence.ll │ │ ├── arm-returnaddr.ll │ │ ├── arm-shrink-wrapping-linux.ll │ │ ├── arm-shrink-wrapping.ll │ │ ├── arm-storebytesmerge.ll │ │ ├── arm-ttype-target2.ll │ │ ├── arm32-round-conv.ll │ │ ├── arm32-rounding.ll │ │ ├── armv4.ll │ │ ├── atomic-64bit.ll │ │ ├── atomic-cmp.ll │ │ ├── atomic-cmpxchg.ll │ │ ├── atomic-load-store.ll │ │ ├── atomic-op.ll │ │ ├── atomic-ops-v8.ll │ │ ├── atomicrmw_minmax.ll │ │ ├── available_externally.ll │ │ ├── avoid-cpsr-rmw.ll │ │ ├── bfc.ll │ │ ├── bfi.ll │ │ ├── bfx.ll │ │ ├── bic.ll │ │ ├── bicZext.ll │ │ ├── big-endian-eh-unwind.ll │ │ ├── big-endian-neon-bitconv.ll │ │ ├── big-endian-neon-extend.ll │ │ ├── big-endian-neon-trunc-store.ll │ │ ├── big-endian-ret-f64.ll │ │ ├── big-endian-vector-callee.ll │ │ ├── big-endian-vector-caller.ll │ │ ├── bit-reverse-to-rbit.ll │ │ ├── bits.ll │ │ ├── bool-ext-inc.ll │ │ ├── bswap-inline-asm.ll │ │ ├── bswap16.ll │ │ ├── build-attributes-encoding.s │ │ ├── build-attributes-fn-attr0.ll │ │ ├── build-attributes-fn-attr1.ll │ │ ├── build-attributes-fn-attr2.ll │ │ ├── build-attributes-fn-attr3.ll │ │ ├── build-attributes-fn-attr4.ll │ │ ├── build-attributes-fn-attr5.ll │ │ ├── build-attributes-fn-attr6.ll │ │ ├── build-attributes-optimization-minsize.ll │ │ ├── build-attributes-optimization-mixed.ll │ │ ├── build-attributes-optimization-optnone.ll │ │ ├── build-attributes-optimization-optsize.ll │ │ ├── build-attributes-optimization.ll │ │ ├── build-attributes.ll │ │ ├── bx_fold.ll │ │ ├── byval-align.ll │ │ ├── byval_load_align.ll │ │ ├── cache-intrinsic.ll │ │ ├── call-noret-minsize.ll │ │ ├── call-noret.ll │ │ ├── call-tc.ll │ │ ├── call.ll │ │ ├── call_nolink.ll │ │ ├── carry.ll │ │ ├── cdp.ll │ │ ├── cdp2.ll │ │ ├── cfi-alignment.ll │ │ ├── clang-section.ll │ │ ├── clz.ll │ │ ├── cmn.ll │ │ ├── cmp.ll │ │ ├── cmp1-peephole-thumb.mir │ │ ├── cmp2-peephole-thumb.mir │ │ ├── cmpxchg-O0-be.ll │ │ ├── cmpxchg-O0.ll │ │ ├── cmpxchg-idioms.ll │ │ ├── cmpxchg-weak.ll │ │ ├── coalesce-dbgvalue.ll │ │ ├── coalesce-subregs.ll │ │ ├── code-placement.ll │ │ ├── combine-movc-sub.ll │ │ ├── combine-vmovdrr.ll │ │ ├── commute-movcc.ll │ │ ├── compare-call.ll │ │ ├── constant-island-crash.ll │ │ ├── constant-islands-cfg.mir │ │ ├── constant-islands.ll │ │ ├── constantfp.ll │ │ ├── constantpool-align.ll │ │ ├── constantpool-promote-dbg.ll │ │ ├── constantpool-promote-duplicate.ll │ │ ├── constantpool-promote-ldrh.ll │ │ ├── constantpool-promote.ll │ │ ├── constants.ll │ │ ├── copy-cpsr.ll │ │ ├── copy-paired-reg.ll │ │ ├── cortex-a57-misched-alu.ll │ │ ├── cortex-a57-misched-basic.ll │ │ ├── cortex-a57-misched-ldm-wrback.ll │ │ ├── cortex-a57-misched-ldm.ll │ │ ├── cortex-a57-misched-stm-wrback.ll │ │ ├── cortex-a57-misched-stm.ll │ │ ├── cortex-a57-misched-vadd.ll │ │ ├── cortex-a57-misched-vfma.ll │ │ ├── cortex-a57-misched-vldm-wrback.ll │ │ ├── cortex-a57-misched-vldm.ll │ │ ├── cortex-a57-misched-vstm-wrback.ll │ │ ├── cortex-a57-misched-vstm.ll │ │ ├── cortex-a57-misched-vsub.ll │ │ ├── cortexr52-misched-basic.ll │ │ ├── crash-O0.ll │ │ ├── crash-greedy-v6.ll │ │ ├── crash-greedy.ll │ │ ├── crash-on-pow2-shufflevector.ll │ │ ├── crash-shufflevector.ll │ │ ├── crash.ll │ │ ├── crc32.ll │ │ ├── cse-call.ll │ │ ├── cse-flags.ll │ │ ├── cse-ldrlit.ll │ │ ├── cse-libcalls.ll │ │ ├── ctor_order.ll │ │ ├── ctors_dtors.ll │ │ ├── cttz.ll │ │ ├── cttz_vector.ll │ │ ├── cxx-tlscc.ll │ │ ├── dag-combine-ldst.ll │ │ ├── dagcombine-anyexttozeroext.ll │ │ ├── dagcombine-concatvector.ll │ │ ├── darwin-eabi.ll │ │ ├── darwin-tls-preserved.ll │ │ ├── darwin-tls.ll │ │ ├── data-in-code-annotations.ll │ │ ├── dbg-range-extension.mir │ │ ├── dbg.ll │ │ ├── debug-frame-large-stack.ll │ │ ├── debug-frame-no-debug.ll │ │ ├── debug-frame-vararg.ll │ │ ├── debug-frame.ll │ │ ├── debug-info-arg.ll │ │ ├── debug-info-blocks.ll │ │ ├── debug-info-branch-folding.ll │ │ ├── debug-info-d16-reg.ll │ │ ├── debug-info-no-frame.ll │ │ ├── debug-info-qreg.ll │ │ ├── debug-info-s16-reg.ll │ │ ├── debug-info-sreg2.ll │ │ ├── debug-segmented-stacks.ll │ │ ├── debugtrap.ll │ │ ├── default-float-abi.ll │ │ ├── default-reloc.ll │ │ ├── deprecated-asm.s │ │ ├── deps-fix.ll │ │ ├── disable-fp-elim.ll │ │ ├── disable-tail-calls.ll │ │ ├── div.ll │ │ ├── divmod-eabi.ll │ │ ├── divmod-hwdiv.ll │ │ ├── divmod.ll │ │ ├── domain-conv-vmovs.ll │ │ ├── dwarf-eh.ll │ │ ├── dwarf-unwind.ll │ │ ├── dyn-stackalloc.ll │ │ ├── early-cfi-sections.ll │ │ ├── eh-dispcont.ll │ │ ├── eh-resume-darwin.ll │ │ ├── ehabi-filters.ll │ │ ├── ehabi-handlerdata-nounwind.ll │ │ ├── ehabi-handlerdata.ll │ │ ├── ehabi-no-landingpad.ll │ │ ├── ehabi-unwind.ll │ │ ├── ehabi.ll │ │ ├── elf-lcomm-align.ll │ │ ├── emit-big-cst.ll │ │ ├── emutls.ll │ │ ├── emutls1.ll │ │ ├── emutls_generic.ll │ │ ├── execute-only-big-stack-frame.ll │ │ ├── execute-only-section.ll │ │ ├── execute-only.ll │ │ ├── expand-pseudos.mir │ │ ├── extload-knownzero.ll │ │ ├── extloadi1.ll │ │ ├── fabs-neon.ll │ │ ├── fabs-to-bfc.ll │ │ ├── fabss.ll │ │ ├── fadds.ll │ │ ├── fast-isel-GEP-coalesce.ll │ │ ├── fast-isel-align.ll │ │ ├── fast-isel-binary.ll │ │ ├── fast-isel-br-const.ll │ │ ├── fast-isel-br-phi.ll │ │ ├── fast-isel-call-multi-reg-return.ll │ │ ├── fast-isel-call.ll │ │ ├── fast-isel-cmp-imm.ll │ │ ├── fast-isel-conversion.ll │ │ ├── fast-isel-crash.ll │ │ ├── fast-isel-crash2.ll │ │ ├── fast-isel-deadcode.ll │ │ ├── fast-isel-ext.ll │ │ ├── fast-isel-fold.ll │ │ ├── fast-isel-frameaddr.ll │ │ ├── fast-isel-icmp.ll │ │ ├── fast-isel-indirectbr.ll │ │ ├── fast-isel-inline-asm.ll │ │ ├── fast-isel-intrinsic.ll │ │ ├── fast-isel-ldr-str-arm.ll │ │ ├── fast-isel-ldr-str-thumb-neg-index.ll │ │ ├── fast-isel-ldrh-strh-arm.ll │ │ ├── fast-isel-load-store-verify.ll │ │ ├── fast-isel-mvn.ll │ │ ├── fast-isel-pic.ll │ │ ├── fast-isel-pie.ll │ │ ├── fast-isel-pred.ll │ │ ├── fast-isel-redefinition.ll │ │ ├── fast-isel-remat-same-constant.ll │ │ ├── fast-isel-ret.ll │ │ ├── fast-isel-select.ll │ │ ├── fast-isel-shift-materialize.ll │ │ ├── fast-isel-shifter.ll │ │ ├── fast-isel-static.ll │ │ ├── fast-isel-update-valuemap-for-extract.ll │ │ ├── fast-isel-vaddd.ll │ │ ├── fast-isel-vararg.ll │ │ ├── fast-isel.ll │ │ ├── fast-tail-call.ll │ │ ├── fastcc-vfp.ll │ │ ├── fastisel-gep-promote-before-add.ll │ │ ├── fastisel-thumb-litpool.ll │ │ ├── fcopysign.ll │ │ ├── fdivs.ll │ │ ├── fence-singlethread.ll │ │ ├── fixunsdfdi.ll │ │ ├── flag-crash.ll │ │ ├── float-helpers.s │ │ ├── floorf.ll │ │ ├── fmacs.ll │ │ ├── fmdrr-fmrrd.ll │ │ ├── fmscs.ll │ │ ├── fmuls.ll │ │ ├── fnattr-trap.ll │ │ ├── fnegs.ll │ │ ├── fnmacs.ll │ │ ├── fnmscs.ll │ │ ├── fnmul.ll │ │ ├── fnmuls.ll │ │ ├── fold-const.ll │ │ ├── fold-stack-adjust.ll │ │ ├── formal.ll │ │ ├── fp-arg-shuffle.ll │ │ ├── fp-fast.ll │ │ ├── fp-only-sp.ll │ │ ├── fp.ll │ │ ├── fp16-args.ll │ │ ├── fp16-promote.ll │ │ ├── fp16-v3.ll │ │ ├── fp16.ll │ │ ├── fp_convert.ll │ │ ├── fparith.ll │ │ ├── fpcmp-f64-neon-opt.ll │ │ ├── fpcmp-opt.ll │ │ ├── fpcmp.ll │ │ ├── fpcmp_ueq.ll │ │ ├── fpconsts.ll │ │ ├── fpconv.ll │ │ ├── fpmem.ll │ │ ├── fpoffset_overflow.mir │ │ ├── fpow.ll │ │ ├── fpowi.ll │ │ ├── fpscr-intrinsics.ll │ │ ├── fptoint.ll │ │ ├── frame-register.ll │ │ ├── fsubs.ll │ │ ├── func-argpassing-endian.ll │ │ ├── fusedMAC.ll │ │ ├── gep-optimization.ll │ │ ├── ghc-tcreturn-lowered.ll │ │ ├── global-merge-1.ll │ │ ├── global-merge-addrspace.ll │ │ ├── global-merge-dllexport.ll │ │ ├── global-merge-external.ll │ │ ├── global-merge.ll │ │ ├── globals.ll │ │ ├── gpr-paired-spill-thumbinst.ll │ │ ├── gpr-paired-spill.ll │ │ ├── gv-stubs-crash.ll │ │ ├── half.ll │ │ ├── hardfloat_neon.ll │ │ ├── hello.ll │ │ ├── hfa-in-contiguous-registers.ll │ │ ├── hidden-vis-2.ll │ │ ├── hidden-vis-3.ll │ │ ├── hidden-vis.ll │ │ ├── hints.ll │ │ ├── i1.ll │ │ ├── iabs.ll │ │ ├── ifconv-kills.ll │ │ ├── ifconv-regmask.ll │ │ ├── ifcvt-branch-weight-bug.ll │ │ ├── ifcvt-branch-weight.ll │ │ ├── ifcvt-callback.ll │ │ ├── ifcvt-dead-def.ll │ │ ├── ifcvt-iter-indbr.ll │ │ ├── ifcvt-regmask-noreturn.ll │ │ ├── ifcvt1.ll │ │ ├── ifcvt10.ll │ │ ├── ifcvt11.ll │ │ ├── ifcvt12.ll │ │ ├── ifcvt2.ll │ │ ├── ifcvt3.ll │ │ ├── ifcvt4.ll │ │ ├── ifcvt5.ll │ │ ├── ifcvt6.ll │ │ ├── ifcvt7.ll │ │ ├── ifcvt8.ll │ │ ├── ifcvt9.ll │ │ ├── illegal-bitfield-loadstore.ll │ │ ├── illegal-vector-bitcast.ll │ │ ├── imm-peephole-arm.mir │ │ ├── imm-peephole-thumb.mir │ │ ├── imm.ll │ │ ├── immcost.ll │ │ ├── indirect-hidden.ll │ │ ├── indirect-reg-input.ll │ │ ├── indirectbr-2.ll │ │ ├── indirectbr-3.ll │ │ ├── indirectbr.ll │ │ ├── inline-diagnostics.ll │ │ ├── inlineasm-64bit.ll │ │ ├── inlineasm-X-allocation.ll │ │ ├── inlineasm-X-constraint.ll │ │ ├── inlineasm-global.ll │ │ ├── inlineasm-imm-arm.ll │ │ ├── inlineasm-imm-thumb.ll │ │ ├── inlineasm-imm-thumb2.ll │ │ ├── inlineasm-ldr-pseudo.ll │ │ ├── inlineasm-switch-mode-oneway-from-arm.ll │ │ ├── inlineasm-switch-mode-oneway-from-thumb.ll │ │ ├── inlineasm-switch-mode.ll │ │ ├── inlineasm.ll │ │ ├── inlineasm2.ll │ │ ├── inlineasm3.ll │ │ ├── inlineasm4.ll │ │ ├── insn-sched1.ll │ │ ├── int-to-fp.ll │ │ ├── integer_insertelement.ll │ │ ├── interrupt-attr.ll │ │ ├── interval-update-remat.ll │ │ ├── interwork.ll │ │ ├── intrinsics-coprocessor.ll │ │ ├── intrinsics-crypto.ll │ │ ├── intrinsics-memory-barrier.ll │ │ ├── intrinsics-overflow.ll │ │ ├── intrinsics-v8.ll │ │ ├── invalid-target.ll │ │ ├── invalidated-save-point.ll │ │ ├── invoke-donothing-assert.ll │ │ ├── isel-v8i32-crash.ll │ │ ├── ispositive.ll │ │ ├── jump-table-islands-split.ll │ │ ├── jump-table-islands.ll │ │ ├── jump-table-tbh.ll │ │ ├── jumptable-label.ll │ │ ├── krait-cpu-div-attribute.ll │ │ ├── large-stack.ll │ │ ├── ldaex-stlex.ll │ │ ├── ldc2l.ll │ │ ├── ldm-base-writeback.ll │ │ ├── ldm-stm-base-materialization.ll │ │ ├── ldm-stm-i256.ll │ │ ├── ldm.ll │ │ ├── ldr.ll │ │ ├── ldr_ext.ll │ │ ├── ldr_frame.ll │ │ ├── ldr_post.ll │ │ ├── ldr_pre.ll │ │ ├── ldrd-memoper.ll │ │ ├── ldrd.ll │ │ ├── ldst-f32-2-i32.ll │ │ ├── ldstrex-m.ll │ │ ├── ldstrex.ll │ │ ├── legalize-unaligned-load.ll │ │ ├── lit.local.cfg │ │ ├── litpool-licm.ll │ │ ├── load-address-masked.ll │ │ ├── load-arm.ll │ │ ├── load-combine-big-endian.ll │ │ ├── load-combine.ll │ │ ├── load-global.ll │ │ ├── load-global2.ll │ │ ├── load-store-flags.ll │ │ ├── load.ll │ │ ├── load_i1_select.ll │ │ ├── load_store_multiple.ll │ │ ├── load_store_opt_kill.mir │ │ ├── local-call.ll │ │ ├── log2_not_readnone.ll │ │ ├── long-setcc.ll │ │ ├── long.ll │ │ ├── longMAC.ll │ │ ├── long_shift.ll │ │ ├── loopvectorize_pr33804.ll │ │ ├── lowerMUL-newload.ll │ │ ├── lsr-code-insertion.ll │ │ ├── lsr-icmp-imm.ll │ │ ├── lsr-scale-addr-mode.ll │ │ ├── lsr-unfolded-offset.ll │ │ ├── machine-copyprop.mir │ │ ├── machine-cse-cmp.ll │ │ ├── machine-licm.ll │ │ ├── macho-extern-hidden.ll │ │ ├── macho-frame-offset.ll │ │ ├── mature-mc-support.ll │ │ ├── mem.ll │ │ ├── memcpy-inline.ll │ │ ├── memcpy-ldm-stm.ll │ │ ├── memcpy-no-inline.ll │ │ ├── memfunc.ll │ │ ├── memset-inline.ll │ │ ├── metadata-default.ll │ │ ├── metadata-short-enums.ll │ │ ├── metadata-short-wchar.ll │ │ ├── minmax.ll │ │ ├── minsize-call-cse.ll │ │ ├── minsize-imms.ll │ │ ├── minsize-litpools.ll │ │ ├── misched-copy-arm.ll │ │ ├── misched-fp-basic.ll │ │ ├── misched-fusion-aes.ll │ │ ├── misched-int-basic-thumb2.mir │ │ ├── misched-int-basic.mir │ │ ├── mls.ll │ │ ├── movcc-double.ll │ │ ├── movt-movw-global.ll │ │ ├── movt.ll │ │ ├── msr-it-block.ll │ │ ├── mul.ll │ │ ├── mul_const.ll │ │ ├── mulhi.ll │ │ ├── mult-alt-generic-arm.ll │ │ ├── mvn.ll │ │ ├── named-reg-alloc.ll │ │ ├── named-reg-notareg.ll │ │ ├── negate-i1.ll │ │ ├── negative-offset.ll │ │ ├── neon-fma.ll │ │ ├── neon-spfp.ll │ │ ├── neon-v8.1a.ll │ │ ├── neon_arith1.ll │ │ ├── neon_cmp.ll │ │ ├── neon_div.ll │ │ ├── neon_fpconv.ll │ │ ├── neon_ld1.ll │ │ ├── neon_ld2.ll │ │ ├── neon_minmax.ll │ │ ├── neon_shift.ll │ │ ├── neon_spill.ll │ │ ├── neon_vabs.ll │ │ ├── neon_vshl_minint.ll │ │ ├── nest-register.ll │ │ ├── no-arm-mode.ll │ │ ├── no-cfi.ll │ │ ├── no-cmov2bfi.ll │ │ ├── no-fpscr-liveness.ll │ │ ├── no-fpu.ll │ │ ├── no-tail-call.ll │ │ ├── no_redundant_trunc_for_cmp.ll │ │ ├── none-macho-v4t.ll │ │ ├── none-macho.ll │ │ ├── noopt-dmb-v7.ll │ │ ├── nop_concat_vectors.ll │ │ ├── noreturn.ll │ │ ├── null-streamer.ll │ │ ├── opt-shuff-tstore.ll │ │ ├── optimize-dmbs-v7.ll │ │ ├── optselect-regclass.ll │ │ ├── out-of-registers.ll │ │ ├── pack.ll │ │ ├── peephole-bitcast.ll │ │ ├── peephole-phi.mir │ │ ├── pei-swiftself.mir │ │ ├── phi.ll │ │ ├── pic.ll │ │ ├── pie.ll │ │ ├── plt-relative-reloc.ll │ │ ├── popcnt.ll │ │ ├── pr13249.ll │ │ ├── pr18364-movw.ll │ │ ├── pr25317.ll │ │ ├── pr25838.ll │ │ ├── pr26669.ll │ │ ├── pr32545.ll │ │ ├── pr32578.ll │ │ ├── pr34045-2.ll │ │ ├── pr34045.ll │ │ ├── pr3502.ll │ │ ├── pr35103.ll │ │ ├── preferred-align.ll │ │ ├── prefetch.ll │ │ ├── prera-ldst-aliasing.mir │ │ ├── prera-ldst-insertpt.mir │ │ ├── print-memb-operand.ll │ │ ├── private.ll │ │ ├── rbit.ll │ │ ├── readcyclecounter.ll │ │ ├── readtp.ll │ │ ├── reg_sequence.ll │ │ ├── regpair_hint_phys.ll │ │ ├── rem_crash.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_sret_vector.ll │ │ ├── ret_void.ll │ │ ├── returned-ext.ll │ │ ├── returned-trunc-tail-calls.ll │ │ ├── rev.ll │ │ ├── ror.ll │ │ ├── rotate.ll │ │ ├── saxpy10-a9.ll │ │ ├── sbfx.ll │ │ ├── scavenging.mir │ │ ├── sched-it-debug-nodes.mir │ │ ├── section-name.ll │ │ ├── section.ll │ │ ├── segmented-stacks-dynamic.ll │ │ ├── segmented-stacks.ll │ │ ├── select-imm.ll │ │ ├── select-undef.ll │ │ ├── select.ll │ │ ├── select_const.ll │ │ ├── select_xform.ll │ │ ├── setcc-logic.ll │ │ ├── setcc-type-mismatch.ll │ │ ├── setjmp_longjmp.ll │ │ ├── shift-combine.ll │ │ ├── shift-i64.ll │ │ ├── shifter_operand.ll │ │ ├── shuffle.ll │ │ ├── sincos.ll │ │ ├── single-issue-r52.mir │ │ ├── sjlj-prepare-critical-edge.ll │ │ ├── sjljeh-swifterror.ll │ │ ├── sjljehprepare-lower-empty-struct.ll │ │ ├── smml.ll │ │ ├── smul.ll │ │ ├── softfp-fabs-fneg.ll │ │ ├── space-directive.ll │ │ ├── special-reg-acore.ll │ │ ├── special-reg-mcore.ll │ │ ├── special-reg-v8m-base.ll │ │ ├── special-reg-v8m-main.ll │ │ ├── special-reg.ll │ │ ├── spill-q.ll │ │ ├── splitkit.ll │ │ ├── ssat-lower.ll │ │ ├── ssat-upper.ll │ │ ├── ssat-v4t.ll │ │ ├── ssat.ll │ │ ├── ssp-data-layout.ll │ │ ├── stack-alignment.ll │ │ ├── stack-frame.ll │ │ ├── stack-protector-bmovpcb_call.ll │ │ ├── stack_guard_remat.ll │ │ ├── stackpointer.ll │ │ ├── static-addr-hoisting.ll │ │ ├── stc2.ll │ │ ├── stm.ll │ │ ├── str_post.ll │ │ ├── str_pre-2.ll │ │ ├── str_pre.ll │ │ ├── str_trunc.ll │ │ ├── struct-byval-frame-index.ll │ │ ├── struct_byval.ll │ │ ├── struct_byval_arm_t1_t2.ll │ │ ├── su-addsub-overflow.ll │ │ ├── sub-cmp-peephole.ll │ │ ├── sub.ll │ │ ├── subreg-remat.ll │ │ ├── subtarget-features-long-calls.ll │ │ ├── subtarget-no-movt.ll │ │ ├── swift-atomics.ll │ │ ├── swift-ios.ll │ │ ├── swift-return.ll │ │ ├── swift-vldm.ll │ │ ├── swifterror.ll │ │ ├── swiftself.ll │ │ ├── switch-minsize.ll │ │ ├── sxt_rot.ll │ │ ├── t2-imm.ll │ │ ├── t2-shrink-ldrpost.ll │ │ ├── t2abs-killflags.ll │ │ ├── tail-call-builtin.ll │ │ ├── tail-call-float.ll │ │ ├── tail-call-weak.ll │ │ ├── tail-call.ll │ │ ├── tail-dup-bundle.mir │ │ ├── tail-dup-kill-flags.ll │ │ ├── tail-dup.ll │ │ ├── tail-merge-branch-weight.ll │ │ ├── tail-opts.ll │ │ ├── tailcall-mem-intrinsics.ll │ │ ├── taildup-branch-weight.ll │ │ ├── test-sharedidx.ll │ │ ├── this-return.ll │ │ ├── thread_pointer.ll │ │ ├── thumb-alignment.ll │ │ ├── thumb-big-stack.ll │ │ ├── thumb-litpool.ll │ │ ├── thumb-stub.ll │ │ ├── thumb1-div.ll │ │ ├── thumb1-ldst-opt.ll │ │ ├── thumb1-varalloc.ll │ │ ├── thumb1_return_sequence.ll │ │ ├── thumb2-it-block.ll │ │ ├── thumb2-size-opt.ll │ │ ├── thumb2-size-reduction-internal-flags.ll │ │ ├── thumb_indirect_calls.ll │ │ ├── tls-models.ll │ │ ├── tls1.ll │ │ ├── tls2.ll │ │ ├── tls3.ll │ │ ├── trap.ll │ │ ├── trunc_ldr.ll │ │ ├── truncstore-dag-combine.ll │ │ ├── tst_teq.ll │ │ ├── twoaddrinstr.ll │ │ ├── uint64tof64.ll │ │ ├── umulo-32.ll │ │ ├── unaligned_load_store.ll │ │ ├── unaligned_load_store_vector.ll │ │ ├── unaligned_load_store_vfp.ll │ │ ├── undef-sext.ll │ │ ├── undefined.ll │ │ ├── unfold-shifts.ll │ │ ├── unord.ll │ │ ├── unsafe-fsub.ll │ │ ├── unschedule-first-call.ll │ │ ├── unwind-init.ll │ │ ├── urem-opt-size.ll │ │ ├── usat-lower.ll │ │ ├── usat-upper.ll │ │ ├── usat-v4t.ll │ │ ├── usat.ll │ │ ├── uxt_rot.ll │ │ ├── uxtb.ll │ │ ├── v1-constant-fold.ll │ │ ├── v6-jumptable-clobber.mir │ │ ├── v6m-smul-with-overflow.ll │ │ ├── v6m-umul-with-overflow.ll │ │ ├── v7k-abi-align.ll │ │ ├── v7k-libcalls.ll │ │ ├── v7k-sincos.ll │ │ ├── v8m-tail-call.ll │ │ ├── v8m.base-jumptable_alignment.ll │ │ ├── va_arg.ll │ │ ├── vaba.ll │ │ ├── vabd.ll │ │ ├── vabs.ll │ │ ├── vadd.ll │ │ ├── vararg_no_start.ll │ │ ├── varargs-spill-stack-align-nacl.ll │ │ ├── vargs.ll │ │ ├── vargs_align.ll │ │ ├── vbits.ll │ │ ├── vbsl-constant.ll │ │ ├── vbsl.ll │ │ ├── vceq.ll │ │ ├── vcge.ll │ │ ├── vcgt.ll │ │ ├── vcmp-crash.ll │ │ ├── vcnt.ll │ │ ├── vcombine.ll │ │ ├── vcvt-cost.ll │ │ ├── vcvt-v8.ll │ │ ├── vcvt.ll │ │ ├── vcvt_combine.ll │ │ ├── vdiv_combine.ll │ │ ├── vdup.ll │ │ ├── vector-DAGCombine.ll │ │ ├── vector-extend-narrow.ll │ │ ├── vector-load.ll │ │ ├── vector-promotion.ll │ │ ├── vector-spilling.ll │ │ ├── vector-store.ll │ │ ├── vext.ll │ │ ├── vfcmp.ll │ │ ├── vfloatintrinsics.ll │ │ ├── vfp-libcalls.ll │ │ ├── vfp-reg-stride.ll │ │ ├── vfp-regs-dwarf.ll │ │ ├── vfp.ll │ │ ├── vget_lane.ll │ │ ├── vhadd.ll │ │ ├── vhsub.ll │ │ ├── vicmp-64.ll │ │ ├── vicmp.ll │ │ ├── virtregrewriter-subregliveness.mir │ │ ├── vld-vst-upgrade.ll │ │ ├── vld1.ll │ │ ├── vld2.ll │ │ ├── vld3.ll │ │ ├── vld4.ll │ │ ├── vlddup.ll │ │ ├── vldlane.ll │ │ ├── vldm-liveness.ll │ │ ├── vldm-liveness.mir │ │ ├── vldm-sched-a9.ll │ │ ├── vminmax.ll │ │ ├── vminmaxnm-safe.ll │ │ ├── vminmaxnm.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 │ │ ├── vsel.ll │ │ ├── vselect_imax.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 │ │ ├── warn-stack.ll │ │ ├── weak.ll │ │ ├── weak2.ll │ │ ├── wide-compares.ll │ │ ├── widen-vmovs.ll │ │ ├── wrong-t2stmia-size-opt.ll │ │ ├── xray-armv6-attribute-instrumentation.ll │ │ ├── xray-armv7-attribute-instrumentation.ll │ │ ├── xray-tail-call-sled.ll │ │ ├── zero-cycle-zero.ll │ │ └── zextload_demandedbits.ll │ ├── AVR │ │ ├── PR31344.ll │ │ ├── PR31345.ll │ │ ├── add.ll │ │ ├── alloca.ll │ │ ├── and.ll │ │ ├── atomics │ │ │ ├── fence.ll │ │ │ ├── load-store-16-unexpected-register-bug.ll │ │ │ ├── load16.ll │ │ │ ├── load32.ll │ │ │ ├── load64.ll │ │ │ ├── load8.ll │ │ │ ├── store.ll │ │ │ ├── store16.ll │ │ │ └── swap.ll │ │ ├── branch-relaxation-long.ll │ │ ├── branch-relaxation.ll │ │ ├── brind.ll │ │ ├── call.ll │ │ ├── calling-conv │ │ │ └── c │ │ │ │ ├── basic.ll │ │ │ │ ├── return.ll │ │ │ │ └── stack.ll │ │ ├── clear-bss.ll │ │ ├── cmp.ll │ │ ├── com.ll │ │ ├── copy-data-to-ram.ll │ │ ├── ctlz.ll │ │ ├── ctpop.ll │ │ ├── cttz.ll │ │ ├── directmem.ll │ │ ├── div.ll │ │ ├── dynalloca.ll │ │ ├── eor.ll │ │ ├── expand-integer-failure.ll │ │ ├── features │ │ │ ├── avr-tiny.ll │ │ │ └── avr25.ll │ │ ├── frame.ll │ │ ├── frmidx-iterator-bug.ll │ │ ├── high-pressure-on-ptrregs.ll │ │ ├── icall-func-pointer-correct-addr-space.ll │ │ ├── impossible-reg-to-reg-copy.ll │ │ ├── inline-asm │ │ │ ├── inline-asm.ll │ │ │ └── inline-asm2.ll │ │ ├── integration │ │ │ └── blink.ll │ │ ├── interrupts.ll │ │ ├── intrinsics │ │ │ ├── read_register.ll │ │ │ └── stacksave-restore.ll │ │ ├── io.ll │ │ ├── issue-cannot-select-bswap.ll │ │ ├── large-return-size.ll │ │ ├── lit.local.cfg │ │ ├── load.ll │ │ ├── lower-formal-arguments-assertion.ll │ │ ├── mul.ll │ │ ├── neg.ll │ │ ├── no-print-operand-twice.ll │ │ ├── or.ll │ │ ├── progmem-extended.ll │ │ ├── progmem.ll │ │ ├── pseudo │ │ │ ├── ADCWRdRr.mir │ │ │ ├── ADDWRdRr.mir │ │ │ ├── ANDIWRdK.mir │ │ │ ├── ANDWRdRr.mir │ │ │ ├── ASRWRd.mir │ │ │ ├── COMWRd.mir │ │ │ ├── CPCWRdRr.mir │ │ │ ├── CPWRdRr.mir │ │ │ ├── EORWRdRr.mir │ │ │ ├── FRMIDX.mir │ │ │ ├── INWRdA.mir │ │ │ ├── LDDWRdPtrQ-same-src-dst.mir │ │ │ ├── LDDWRdPtrQ.mir │ │ │ ├── LDDWRdYQ.mir │ │ │ ├── LDIWRdK.mir │ │ │ ├── LDSWRdK.mir │ │ │ ├── LDWRdPtr-same-src-dst.mir │ │ │ ├── LDWRdPtr.mir │ │ │ ├── LDWRdPtrPd.mir │ │ │ ├── LDWRdPtrPi.mir │ │ │ ├── LSLWRd.mir │ │ │ ├── LSRWRd.mir │ │ │ ├── ORIWRdK.mir │ │ │ ├── ORWRdRr.mir │ │ │ ├── OUTWARr.mir │ │ │ ├── POPWRd.mir │ │ │ ├── PUSHWRr.mir │ │ │ ├── SBCIWRdK.mir │ │ │ ├── SBCWRdRr.mir │ │ │ ├── SEXT.mir │ │ │ ├── STDWPtrQRr.mir │ │ │ ├── STSWKRr.mir │ │ │ ├── STWPtrPdRr.mir │ │ │ ├── STWPtrPiRr.mir │ │ │ ├── STWPtrRr.mir │ │ │ ├── SUBIWRdK.mir │ │ │ ├── SUBWRdRr.mir │ │ │ └── ZEXT.mir │ │ ├── relax-mem │ │ │ └── STDWPtrQRr.mir │ │ ├── rem.ll │ │ ├── return.ll │ │ ├── rot.ll │ │ ├── runtime-trig.ll │ │ ├── select-must-add-unconditional-jump.ll │ │ ├── sext.ll │ │ ├── shift.ll │ │ ├── sign-extension.ll │ │ ├── smul-with-overflow.ll │ │ ├── std-ldd-immediate-overflow.ll │ │ ├── store-undef.ll │ │ ├── store.ll │ │ ├── sub.ll │ │ ├── trunc.ll │ │ ├── umul-with-overflow.ll │ │ ├── unaligned-atomic-loads.ll │ │ ├── varargs.ll │ │ ├── xor.ll │ │ └── zext.ll │ ├── BPF │ │ ├── alu8.ll │ │ ├── atomics.ll │ │ ├── basictest.ll │ │ ├── byval.ll │ │ ├── cc_args.ll │ │ ├── cc_args_be.ll │ │ ├── cc_ret.ll │ │ ├── cmp.ll │ │ ├── dwarfdump.ll │ │ ├── ex1.ll │ │ ├── fi_ri.ll │ │ ├── inline_asm.ll │ │ ├── intrinsics.ll │ │ ├── lit.local.cfg │ │ ├── load.ll │ │ ├── loops.ll │ │ ├── many_args1.ll │ │ ├── many_args2.ll │ │ ├── mem_offset.ll │ │ ├── mem_offset_be.ll │ │ ├── objdump_atomics.ll │ │ ├── objdump_cond_op.ll │ │ ├── objdump_cond_op_2.ll │ │ ├── objdump_imm_hex.ll │ │ ├── objdump_intrinsics.ll │ │ ├── objdump_trivial.ll │ │ ├── reloc.ll │ │ ├── remove_truncate_1.ll │ │ ├── remove_truncate_2.ll │ │ ├── remove_truncate_3.ll │ │ ├── rodata_1.ll │ │ ├── rodata_2.ll │ │ ├── rodata_3.ll │ │ ├── rodata_4.ll │ │ ├── sanity.ll │ │ ├── sdiv_error.ll │ │ ├── select_ri.ll │ │ ├── setcc.ll │ │ ├── shifts.ll │ │ ├── sockex2.ll │ │ ├── struct_ret1.ll │ │ ├── struct_ret2.ll │ │ ├── undef.ll │ │ ├── vararg1.ll │ │ ├── warn-call.ll │ │ └── warn-stack.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-05-09-LiveVarPartialRegister.ll │ │ ├── 2005-01-18-SetUO-InfLoop.ll │ │ ├── 2005-04-09-GlobalInPHI.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-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-11-16-BadKillsCrash.ll │ │ ├── 2010-07-27-DAGCombineCrash.ll │ │ ├── 2010-11-04-BigByval.ll │ │ ├── 2010-ZeroSizedArg.ll │ │ ├── 2011-01-06-BigNumberCrash.ll │ │ ├── 2011-07-07-ScheduleDAGCrash.ll │ │ ├── 2012-06-08-APIntCrash.ll │ │ ├── 2013-03-20-APFloatCrash.ll │ │ ├── 2014-02-05-OpaqueConstants.ll │ │ ├── APIntLoadStore.ll │ │ ├── APIntParam.ll │ │ ├── APIntSextParam.ll │ │ ├── APIntZextParam.ll │ │ ├── BasicInstrs.ll │ │ ├── ConstantExprLowering.ll │ │ ├── ForceStackAlign.ll │ │ ├── MachineBranchProb.ll │ │ ├── PBQP.ll │ │ ├── add-with-overflow-128.ll │ │ ├── add-with-overflow-24.ll │ │ ├── add-with-overflow.ll │ │ ├── addr-label.ll │ │ ├── annotate.ll │ │ ├── asm-large-immediate.ll │ │ ├── assume.ll │ │ ├── badCallArgLRLLVM.ll │ │ ├── badFoldGEP.ll │ │ ├── badarg6.ll │ │ ├── bool-to-double.ll │ │ ├── bswap.ll │ │ ├── builtin-expect.ll │ │ ├── call-ret0.ll │ │ ├── call-ret42.ll │ │ ├── call-void.ll │ │ ├── call2-ret0.ll │ │ ├── cast-fp.ll │ │ ├── cfi-sections.ll │ │ ├── constindices.ll │ │ ├── crash.ll │ │ ├── dag-combine-crash.ll │ │ ├── dbg_value.ll │ │ ├── div-neg-power-2.ll │ │ ├── donothing.ll │ │ ├── dont-remove-empty-preheader.ll │ │ ├── edge-bundles-blockIDs.ll │ │ ├── empty-insertvalue.ll │ │ ├── empty-load-store.ll │ │ ├── empty-phi.ll │ │ ├── exception-handling.ll │ │ ├── expand-experimental-reductions.ll │ │ ├── externally_available.ll │ │ ├── fastcall.ll │ │ ├── fneg-fabs.ll │ │ ├── fp-to-int-invalid.ll │ │ ├── fp_to_int.ll │ │ ├── fpowi-promote.ll │ │ ├── fwdtwice.ll │ │ ├── global-ret0.ll │ │ ├── hello.ll │ │ ├── i128-addsub.ll │ │ ├── i128-arith.ll │ │ ├── icmp-illegal.ll │ │ ├── inline-asm-mem-clobber.ll │ │ ├── inline-asm-special-strings.ll │ │ ├── intrinsics.ll │ │ ├── invalid-memcpy.ll │ │ ├── isunord.ll │ │ ├── lit.local.cfg │ │ ├── llc-start-stop.ll │ │ ├── llvm-ct-intrinsics.ll │ │ ├── multiple-return-values-cross-block-with-invoke.ll │ │ ├── negintconst.ll │ │ ├── nested-select.ll │ │ ├── no-target.ll │ │ ├── opt-codegen-no-target-machine.ll │ │ ├── overflow.ll │ │ ├── overloaded-intrinsic-name.ll │ │ ├── pr12507.ll │ │ ├── pr24662.ll │ │ ├── pr2625.ll │ │ ├── pr3288.ll │ │ ├── pr33094.ll │ │ ├── print-add.ll │ │ ├── print-after.ll │ │ ├── print-arith-fp.ll │ │ ├── print-arith-int.ll │ │ ├── print-int.ll │ │ ├── print-machineinstrs.ll │ │ ├── print-mul-exp.ll │ │ ├── print-mul.ll │ │ ├── print-shift.ll │ │ ├── ptr-annotate.ll │ │ ├── ret0.ll │ │ ├── ret42.ll │ │ ├── select-cc.ll │ │ ├── select.ll │ │ ├── shift-int64.ll │ │ ├── stacksave-restore.ll │ │ ├── storetrunc-fp.ll │ │ ├── switch-lower-feature.ll │ │ ├── switch-lower.ll │ │ ├── trap.ll │ │ ├── undef-phi.ll │ │ ├── v-split.ll │ │ ├── vector-casts.ll │ │ ├── vector-constantexpr.ll │ │ ├── vector-identity-shuffle.ll │ │ ├── vector-redux.ll │ │ ├── vector.ll │ │ ├── zero-probability.mir │ │ └── zero-sized-array.ll │ ├── Hexagon │ │ ├── Atomics.ll │ │ ├── BranchPredict.ll │ │ ├── NVJumpCmp.ll │ │ ├── PR33749.ll │ │ ├── SUnit-boundary-prob.ll │ │ ├── absaddr-store.ll │ │ ├── absimm.ll │ │ ├── addaddi.ll │ │ ├── adde.ll │ │ ├── addh-sext-trunc.ll │ │ ├── addh-shifted.ll │ │ ├── addh.ll │ │ ├── addr-calc-opt.ll │ │ ├── addrmode-globoff.mir │ │ ├── addrmode-indoff.ll │ │ ├── addrmode-keepdeadphis.mir │ │ ├── addrmode-rr-to-io.mir │ │ ├── adjust-latency-stackST.ll │ │ ├── alu64.ll │ │ ├── always-ext.ll │ │ ├── anti-dep-partial.mir │ │ ├── args.ll │ │ ├── ashift-left-right.ll │ │ ├── autohvx │ │ │ ├── align-128b.ll │ │ │ ├── align-64b.ll │ │ │ ├── arith.ll │ │ │ ├── build-vector-i32-type.ll │ │ │ ├── concat-vectors-128b.ll │ │ │ ├── concat-vectors-64b.ll │ │ │ ├── contract-128b.ll │ │ │ ├── contract-64b.ll │ │ │ ├── deal-128b.ll │ │ │ ├── deal-64b.ll │ │ │ ├── delta-128b.ll │ │ │ ├── delta-64b.ll │ │ │ ├── delta2-64b.ll │ │ │ ├── extract-element.ll │ │ │ ├── isel-bool-vector.ll │ │ │ ├── isel-concat-vectors.ll │ │ │ ├── isel-select-const.ll │ │ │ ├── isel-vec-ext.ll │ │ │ ├── lower-insert-elt.ll │ │ │ ├── perfect-single.ll │ │ │ ├── reg-sequence.ll │ │ │ ├── shuff-128b.ll │ │ │ ├── shuff-64b.ll │ │ │ ├── shuff-combos-128b.ll │ │ │ ├── shuff-combos-64b.ll │ │ │ ├── shuff-single.ll │ │ │ ├── vector-compare-128b.ll │ │ │ ├── vector-compare-64b.ll │ │ │ ├── vext-128b.ll │ │ │ ├── vext-64b.ll │ │ │ └── vmux-order.ll │ │ ├── avoid-predspill-calleesaved.ll │ │ ├── avoid-predspill.ll │ │ ├── bank-conflict-load.mir │ │ ├── barrier-flag.ll │ │ ├── base-offset-addr.ll │ │ ├── base-offset-post.ll │ │ ├── bit-bitsplit-at.ll │ │ ├── bit-bitsplit-src.ll │ │ ├── bit-bitsplit.ll │ │ ├── bit-eval.ll │ │ ├── bit-ext-sat.ll │ │ ├── bit-extract-off.ll │ │ ├── bit-extract.ll │ │ ├── bit-extractu-half.ll │ │ ├── bit-gen-rseq.ll │ │ ├── bit-has.ll │ │ ├── bit-loop-rc-mismatch.ll │ │ ├── bit-loop.ll │ │ ├── bit-phi.ll │ │ ├── bit-rie.ll │ │ ├── bit-skip-byval.ll │ │ ├── bit-validate-reg.ll │ │ ├── bit-visit-flowq.ll │ │ ├── bitconvert-vector.ll │ │ ├── bitmanip.ll │ │ ├── block-addr.ll │ │ ├── block-ranges-nodef.ll │ │ ├── branch-folder-hoist-kills.mir │ │ ├── branch-non-mbb.ll │ │ ├── branchfolder-insert-impdef.mir │ │ ├── branchfolder-keep-impdef.ll │ │ ├── brev_ld.ll │ │ ├── brev_st.ll │ │ ├── bugAsmHWloop.ll │ │ ├── build-vector-shuffle.ll │ │ ├── build-vector-v4i8-zext.ll │ │ ├── builtin-expect.ll │ │ ├── builtin-prefetch-offset.ll │ │ ├── builtin-prefetch.ll │ │ ├── call-ret-i1.ll │ │ ├── calling-conv-2.ll │ │ ├── callr-dep-edge.ll │ │ ├── cext-check.ll │ │ ├── cext-opt-basic.mir │ │ ├── cext-opt-numops.mir │ │ ├── cext-opt-range-offset.mir │ │ ├── cext-valid-packet1.ll │ │ ├── cext-valid-packet2.ll │ │ ├── cext.ll │ │ ├── cexti16.ll │ │ ├── cfgopt-fall-through.ll │ │ ├── cfi-late.ll │ │ ├── cfi-offset.ll │ │ ├── checktabs.ll │ │ ├── circ-load-isel.ll │ │ ├── circ_ld.ll │ │ ├── circ_ldd_bug.ll │ │ ├── circ_ldw.ll │ │ ├── circ_st.ll │ │ ├── clr_set_toggle.ll │ │ ├── cmp-extend.ll │ │ ├── cmp-promote.ll │ │ ├── cmp-to-genreg.ll │ │ ├── cmp-to-predreg.ll │ │ ├── cmp.ll │ │ ├── cmp_pred.ll │ │ ├── cmp_pred2.ll │ │ ├── cmp_pred_reg.ll │ │ ├── cmpb-dec-imm.ll │ │ ├── cmpb-eq.ll │ │ ├── cmpb_pred.ll │ │ ├── cmph-gtu.ll │ │ ├── combine.ll │ │ ├── combine_ir.ll │ │ ├── common-gep-basic.ll │ │ ├── common-gep-icm.ll │ │ ├── common-gep-inbounds.ll │ │ ├── compound.ll │ │ ├── const-pool-tf.ll │ │ ├── const64.ll │ │ ├── constp-clb.ll │ │ ├── constp-combine-neg.ll │ │ ├── constp-ctb.ll │ │ ├── constp-extract.ll │ │ ├── constp-physreg.ll │ │ ├── constp-rewrite-branches.ll │ │ ├── constp-rseq.ll │ │ ├── constp-vsplat.ll │ │ ├── convert-to-dot-old.ll │ │ ├── convert_const_i1_to_i8.ll │ │ ├── convertdptoint.ll │ │ ├── convertdptoll.ll │ │ ├── convertsptoint.ll │ │ ├── convertsptoll.ll │ │ ├── copy-to-combine-dbg.ll │ │ ├── csr-func-usedef.ll │ │ ├── ctor.ll │ │ ├── dadd.ll │ │ ├── dead-store-stack.ll │ │ ├── dmul.ll │ │ ├── double.ll │ │ ├── doubleconvert-ieee-rnd-near.ll │ │ ├── dsub.ll │ │ ├── dualstore.ll │ │ ├── duplex-addi-global-imm.mir │ │ ├── duplex.ll │ │ ├── early-if-conversion-bug1.ll │ │ ├── early-if-debug.mir │ │ ├── early-if-merge-loop.ll │ │ ├── early-if-phi-i1.ll │ │ ├── early-if-spare.ll │ │ ├── early-if-vecpi.ll │ │ ├── early-if-vecpred.ll │ │ ├── early-if.ll │ │ ├── eh_return.ll │ │ ├── eliminate-pred-spill.ll │ │ ├── expand-condsets-basic.ll │ │ ├── expand-condsets-dead-bad.ll │ │ ├── expand-condsets-dead-pred.ll │ │ ├── expand-condsets-def-undef.mir │ │ ├── expand-condsets-extend.ll │ │ ├── expand-condsets-imm.mir │ │ ├── expand-condsets-impuse.mir │ │ ├── expand-condsets-pred-undef.ll │ │ ├── expand-condsets-rm-reg.mir │ │ ├── expand-condsets-rm-segment.ll │ │ ├── expand-condsets-same-inputs.mir │ │ ├── expand-condsets-undef.ll │ │ ├── expand-condsets-undef2.ll │ │ ├── expand-condsets-undefvni.ll │ │ ├── expand-vselect-kill.ll │ │ ├── expand-vstorerw-undef.ll │ │ ├── expand-vstorerw-undef2.ll │ │ ├── extload-combine.ll │ │ ├── extract-basic.ll │ │ ├── fadd.ll │ │ ├── fcmp.ll │ │ ├── find-loop-instr.ll │ │ ├── fixed-spill-mutable.ll │ │ ├── float-amode.ll │ │ ├── float.ll │ │ ├── floatconvert-ieee-rnd-near.ll │ │ ├── fminmax.ll │ │ ├── fmul.ll │ │ ├── fpelim-basic.ll │ │ ├── frame-offset-overflow.ll │ │ ├── fsel.ll │ │ ├── fsub.ll │ │ ├── fusedandshift.ll │ │ ├── gp-plus-offset-load.ll │ │ ├── gp-plus-offset-store.ll │ │ ├── gp-rel.ll │ │ ├── hasfp-crash1.ll │ │ ├── hasfp-crash2.ll │ │ ├── hexagon_vector_loop_carried_reuse.ll │ │ ├── hexagon_vector_loop_carried_reuse_constant.ll │ │ ├── hvx-nontemporal.ll │ │ ├── hwloop-cleanup.ll │ │ ├── hwloop-const.ll │ │ ├── hwloop-crit-edge.ll │ │ ├── hwloop-dbg.ll │ │ ├── hwloop-le.ll │ │ ├── hwloop-loop1.ll │ │ ├── hwloop-lt.ll │ │ ├── hwloop-lt1.ll │ │ ├── hwloop-missed.ll │ │ ├── hwloop-ne.ll │ │ ├── hwloop-noreturn-call.ll │ │ ├── hwloop-ph-deadcode.ll │ │ ├── hwloop-pos-ivbump1.ll │ │ ├── hwloop-preh.ll │ │ ├── hwloop-preheader.ll │ │ ├── hwloop-range.ll │ │ ├── hwloop-recursion.ll │ │ ├── hwloop-redef-imm.mir │ │ ├── hwloop-wrap.ll │ │ ├── hwloop-wrap2.ll │ │ ├── hwloop1.ll │ │ ├── hwloop2.ll │ │ ├── hwloop3.ll │ │ ├── hwloop4.ll │ │ ├── hwloop5.ll │ │ ├── i16_VarArg.ll │ │ ├── i1_VarArg.ll │ │ ├── i8_VarArg.ll │ │ ├── idxload-with-zero-offset.ll │ │ ├── ifcvt-common-kill.mir │ │ ├── ifcvt-diamond-bad.ll │ │ ├── ifcvt-diamond-bug-2016-08-26.ll │ │ ├── ifcvt-edge-weight.ll │ │ ├── ifcvt-impuse-livein.mir │ │ ├── ifcvt-live-subreg.mir │ │ ├── ifcvt-simple-bprob.ll │ │ ├── indirect-br.ll │ │ ├── inline-asm-a.ll │ │ ├── inline-asm-bad-constraint.ll │ │ ├── inline-asm-hexagon.ll │ │ ├── inline-asm-i1.ll │ │ ├── inline-asm-qv.ll │ │ ├── inline-asm-vecpred128.ll │ │ ├── insert-basic.ll │ │ ├── insert4.ll │ │ ├── intrinsics │ │ │ ├── alu32_alu.ll │ │ │ ├── alu32_perm.ll │ │ │ ├── atomic_store.ll │ │ │ ├── byte-store-double.ll │ │ │ ├── byte-store.ll │ │ │ ├── cr.ll │ │ │ ├── llsc_bundling.ll │ │ │ ├── system_user.ll │ │ │ ├── v65-gather-double.ll │ │ │ ├── v65-gather.ll │ │ │ ├── v65-scatter-double.ll │ │ │ ├── v65-scatter-gather.ll │ │ │ ├── v65-scatter.ll │ │ │ ├── v65.ll │ │ │ ├── xtype_alu.ll │ │ │ ├── xtype_bit.ll │ │ │ ├── xtype_complex.ll │ │ │ ├── xtype_fp.ll │ │ │ ├── xtype_mpy.ll │ │ │ ├── xtype_perm.ll │ │ │ ├── xtype_pred.ll │ │ │ └── xtype_shift.ll │ │ ├── invalid-dotnew-attempt.mir │ │ ├── is-legal-void.ll │ │ ├── isel-combine-half.ll │ │ ├── isel-exti1.ll │ │ ├── isel-i1arg-crash.ll │ │ ├── isel-op-zext-i1.ll │ │ ├── isel-prefer.ll │ │ ├── jt-in-text.ll │ │ ├── lit.local.cfg │ │ ├── livephysregs-add-pristines.mir │ │ ├── livephysregs-lane-masks.mir │ │ ├── livephysregs-lane-masks2.mir │ │ ├── loadi1-G0.ll │ │ ├── loadi1-v4-G0.ll │ │ ├── loadi1-v4.ll │ │ ├── loadi1.ll │ │ ├── long-calls.ll │ │ ├── loop-idiom │ │ │ ├── hexagon-memmove1.ll │ │ │ ├── hexagon-memmove2.ll │ │ │ ├── lcssa.ll │ │ │ ├── memmove-rt-check.ll │ │ │ ├── nullptr-crash.ll │ │ │ ├── pmpy-infinite-loop.ll │ │ │ ├── pmpy-long-loop.ll │ │ │ ├── pmpy-mod.ll │ │ │ ├── pmpy-shiftconv-fail.ll │ │ │ └── pmpy.ll │ │ ├── loop-prefetch.ll │ │ ├── lower-extract-subvector.ll │ │ ├── macint.ll │ │ ├── maxd.ll │ │ ├── maxh.ll │ │ ├── maxud.ll │ │ ├── maxuw.ll │ │ ├── maxw.ll │ │ ├── mem-fi-add.ll │ │ ├── memcpy-likely-aligned.ll │ │ ├── memops-stack.ll │ │ ├── memops.ll │ │ ├── memops1.ll │ │ ├── memops2.ll │ │ ├── memops3.ll │ │ ├── mind.ll │ │ ├── minu-zext-16.ll │ │ ├── minu-zext-8.ll │ │ ├── minud.ll │ │ ├── minuw.ll │ │ ├── minw.ll │ │ ├── misaligned-access.ll │ │ ├── misaligned_double_vector_store_not_fast.ll │ │ ├── misched-top-rptracker-sync.ll │ │ ├── mpy.ll │ │ ├── mul64-sext.ll │ │ ├── mulh.ll │ │ ├── mulhs.ll │ │ ├── multi-cycle.ll │ │ ├── mux-basic.ll │ │ ├── mux-kill1.mir │ │ ├── mux-kill2.mir │ │ ├── mux-kill3.mir │ │ ├── mux-undef.ll │ │ ├── newify-crash.ll │ │ ├── newvalueSameReg.ll │ │ ├── newvaluejump-c4.mir │ │ ├── newvaluejump-kill.ll │ │ ├── newvaluejump-kill2.mir │ │ ├── newvaluejump-solo.mir │ │ ├── newvaluejump.ll │ │ ├── newvaluejump2.ll │ │ ├── newvaluejump3.ll │ │ ├── newvaluestore.ll │ │ ├── opt-addr-mode.ll │ │ ├── opt-fabs.ll │ │ ├── opt-fneg.ll │ │ ├── opt-spill-volatile.ll │ │ ├── packetize-cfi-location.ll │ │ ├── packetize-load-store-aliasing.mir │ │ ├── packetize-nvj-no-prune.mir │ │ ├── packetize-return-arg.ll │ │ ├── packetize-tailcall-arg.ll │ │ ├── packetize_cond_inst.ll │ │ ├── peephole-kill-flags.ll │ │ ├── peephole-op-swap.ll │ │ ├── pic-jumptables.ll │ │ ├── pic-local.ll │ │ ├── pic-regusage.ll │ │ ├── pic-simple.ll │ │ ├── pic-static.ll │ │ ├── plt-rel.ll │ │ ├── post-inc-aa-metadata.ll │ │ ├── post-ra-kill-update.mir │ │ ├── postinc-baseoffset.mir │ │ ├── postinc-load.ll │ │ ├── postinc-offset.ll │ │ ├── postinc-store.ll │ │ ├── pred-absolute-store.ll │ │ ├── pred-gp.ll │ │ ├── pred-instrs.ll │ │ ├── predicate-copy.ll │ │ ├── predicate-logical.ll │ │ ├── predicate-rcmp.ll │ │ ├── propagate-vcombine.ll │ │ ├── rdf-copy-undef2.ll │ │ ├── rdf-copy.ll │ │ ├── rdf-cover-use.ll │ │ ├── rdf-dead-loop.ll │ │ ├── rdf-def-mask.ll │ │ ├── rdf-ehlabel-live.mir │ │ ├── rdf-extra-livein.ll │ │ ├── rdf-filter-defs.ll │ │ ├── rdf-ignore-undef.ll │ │ ├── rdf-inline-asm-fixed.ll │ │ ├── rdf-inline-asm.ll │ │ ├── rdf-multiple-phis-up.ll │ │ ├── rdf-phi-shadows.ll │ │ ├── rdf-phi-up.ll │ │ ├── rdf-reset-kills.ll │ │ ├── readcyclecounter.ll │ │ ├── reg-scavengebug-3.ll │ │ ├── reg-scavenger-valid-slot.ll │ │ ├── regalloc-bad-undef.mir │ │ ├── regalloc-block-overlap.ll │ │ ├── regalloc-liveout-undef.mir │ │ ├── relax.ll │ │ ├── remove-endloop.ll │ │ ├── remove_lsr.ll │ │ ├── restore-single-reg.ll │ │ ├── ret-struct-by-val.ll │ │ ├── runtime-stkchk.ll │ │ ├── sdata-array.ll │ │ ├── sdata-basic.ll │ │ ├── sdr-basic.ll │ │ ├── sdr-shr32.ll │ │ ├── section_7275.ll │ │ ├── select-instr-align.ll │ │ ├── sf-min-max.ll │ │ ├── sffms.ll │ │ ├── shrink-frame-basic.ll │ │ ├── signed_immediates.ll │ │ ├── simple_addend.ll │ │ ├── simpletailcall.ll │ │ ├── split-const32-const64.ll │ │ ├── stack-align-reset.ll │ │ ├── stack-align1.ll │ │ ├── stack-align2.ll │ │ ├── stack-alloca1.ll │ │ ├── stack-alloca2.ll │ │ ├── static.ll │ │ ├── store-imm-amode.ll │ │ ├── store-imm-large-stack.ll │ │ ├── store-imm-stack-object.ll │ │ ├── store-shift.ll │ │ ├── store-widen-aliased-load.ll │ │ ├── store-widen-negv.ll │ │ ├── store-widen-negv2.ll │ │ ├── store-widen.ll │ │ ├── storerd-io-over-rr.ll │ │ ├── storerinewabs.ll │ │ ├── struct_args.ll │ │ ├── struct_args_large.ll │ │ ├── sube.ll │ │ ├── subi-asl.ll │ │ ├── switch-lut-explicit-section.ll │ │ ├── switch-lut-function-section.ll │ │ ├── switch-lut-multiple-functions.ll │ │ ├── switch-lut-text-section.ll │ │ ├── swp-const-tc.ll │ │ ├── swp-dag-phi.ll │ │ ├── swp-epilog-phi10.ll │ │ ├── swp-epilog-reuse-1.ll │ │ ├── swp-epilog-reuse.ll │ │ ├── swp-matmul-bitext.ll │ │ ├── swp-max.ll │ │ ├── swp-multi-loops.ll │ │ ├── swp-order-copies.ll │ │ ├── swp-prolog-phi4.ll │ │ ├── swp-stages4.ll │ │ ├── swp-stages5.ll │ │ ├── swp-vect-dotprod.ll │ │ ├── swp-vmult.ll │ │ ├── swp-vsum.ll │ │ ├── tail-call-mem-intrinsics.ll │ │ ├── tail-call-trunc.ll │ │ ├── tail-dup-subreg-abort.ll │ │ ├── tail-dup-subreg-map.ll │ │ ├── tailcall_fastcc_ccc.ll │ │ ├── target-flag-ext.mir │ │ ├── tfr-to-combine.ll │ │ ├── tls_pic.ll │ │ ├── tls_static.ll │ │ ├── trap-unreachable.ll │ │ ├── two-crash.ll │ │ ├── undo-dag-shift.ll │ │ ├── union-1.ll │ │ ├── unreachable-mbb-phi-subreg.mir │ │ ├── usr-ovf-dep.ll │ │ ├── v60-cur.ll │ │ ├── v60-vsel1.ll │ │ ├── v60Intrins.ll │ │ ├── v60Vasr.ll │ │ ├── v60small.ll │ │ ├── v6vec-vprint.ll │ │ ├── vaddh.ll │ │ ├── validate-offset.ll │ │ ├── vassign-to-combine.ll │ │ ├── vdmpy-halide-test.ll │ │ ├── vec-pred-spill1.ll │ │ ├── vec-vararg-align.ll │ │ ├── vect │ │ │ ├── vect-anyextend.ll │ │ │ ├── vect-apint-truncate.ll │ │ │ ├── vect-bad-bitcast.ll │ │ │ ├── vect-bitcast-1.ll │ │ │ ├── vect-bitcast.ll │ │ │ ├── vect-cst-v4i32.ll │ │ │ ├── vect-cst-v4i8.ll │ │ │ ├── vect-cst.ll │ │ │ ├── vect-extract-i1-debug.ll │ │ │ ├── vect-extract-i1.ll │ │ │ ├── vect-extract.ll │ │ │ ├── vect-fma.ll │ │ │ ├── vect-illegal-type.ll │ │ │ ├── vect-infloop.ll │ │ │ ├── vect-insert-extract-elt.ll │ │ │ ├── vect-load-1.ll │ │ │ ├── vect-load-v4i16.ll │ │ │ ├── vect-load.ll │ │ │ ├── vect-mul-v2i16.ll │ │ │ ├── vect-mul-v2i32.ll │ │ │ ├── vect-mul-v4i16.ll │ │ │ ├── vect-mul-v4i8.ll │ │ │ ├── vect-mul-v8i8.ll │ │ │ ├── vect-no-tfrs-1.ll │ │ │ ├── vect-no-tfrs.ll │ │ │ ├── vect-shift-imm.ll │ │ │ ├── vect-shuffle.ll │ │ │ ├── vect-splat.ll │ │ │ ├── vect-store-v2i16.ll │ │ │ ├── vect-truncate.ll │ │ │ ├── vect-v4i16.ll │ │ │ ├── vect-vaddb-1.ll │ │ │ ├── vect-vaddb.ll │ │ │ ├── vect-vaddh-1.ll │ │ │ ├── vect-vaddh.ll │ │ │ ├── vect-vaddw.ll │ │ │ ├── vect-vaslw.ll │ │ │ ├── vect-vshifts.ll │ │ │ ├── vect-vsplatb.ll │ │ │ ├── vect-vsplath.ll │ │ │ ├── vect-vsubb-1.ll │ │ │ ├── vect-vsubb.ll │ │ │ ├── vect-vsubh-1.ll │ │ │ ├── vect-vsubh.ll │ │ │ ├── vect-vsubw.ll │ │ │ ├── vect-xor.ll │ │ │ └── vect-zeroextend.ll │ │ ├── vector-align.ll │ │ ├── vector-ext-load.ll │ │ ├── vload-postinc-sel.ll │ │ ├── vmpa-halide-test.ll │ │ ├── vpack_eo.ll │ │ ├── vselect-pseudo.ll │ │ ├── vsplat-isel.ll │ │ └── zextloadi1.ll │ ├── Inputs │ │ └── DbgValueOtherTargets.ll │ ├── Lanai │ │ ├── codemodel.ll │ │ ├── comparisons_i32.ll │ │ ├── comparisons_i64.ll │ │ ├── constant_multiply.ll │ │ ├── delay_filler.ll │ │ ├── i32.ll │ │ ├── lanai-misched-trivial-disjoint.ll │ │ ├── lit.local.cfg │ │ ├── lshift64.ll │ │ ├── masking_setccs.ll │ │ ├── mem_alu_combiner.ll │ │ ├── multiply.ll │ │ ├── peephole-compare.mir │ │ ├── rshift64.ll │ │ ├── select.ll │ │ ├── set_and_hi.ll │ │ ├── shift.ll │ │ ├── stack-frame.ll │ │ ├── sub-cmp-peephole.ll │ │ └── subword.ll │ ├── MIR │ │ ├── AArch64 │ │ │ ├── atomic-memoperands.mir │ │ │ ├── cfi.mir │ │ │ ├── expected-target-flag-name.mir │ │ │ ├── generic-virtual-registers-error.mir │ │ │ ├── generic-virtual-registers-with-regbank-error.mir │ │ │ ├── intrinsics.mir │ │ │ ├── invalid-target-flag-name.mir │ │ │ ├── invalid-target-memoperands.mir │ │ │ ├── lit.local.cfg │ │ │ ├── multiple-lhs-operands.mir │ │ │ ├── register-operand-bank.mir │ │ │ ├── spill-fold.mir │ │ │ ├── stack-object-local-offset.mir │ │ │ ├── swp.mir │ │ │ ├── target-flags.mir │ │ │ └── target-memoperands.mir │ │ ├── AMDGPU │ │ │ ├── expected-target-index-name.mir │ │ │ ├── fold-imm-f16-f32.mir │ │ │ ├── fold-multiple.mir │ │ │ ├── intrinsics.mir │ │ │ ├── invalid-target-index-operand.mir │ │ │ ├── lit.local.cfg │ │ │ ├── memory-legalizer-atomic-insert-end.mir │ │ │ ├── memory-legalizer-multiple-mem-operands-atomics.mir │ │ │ ├── memory-legalizer-multiple-mem-operands-nontemporal-1.mir │ │ │ ├── memory-legalizer-multiple-mem-operands-nontemporal-2.mir │ │ │ ├── stack-id.mir │ │ │ ├── syncscopes.mir │ │ │ ├── target-flags.mir │ │ │ └── target-index-operands.mir │ │ ├── ARM │ │ │ ├── PR32721_ifcvt_triangle_unanalyzable.mir │ │ │ ├── bundled-instructions.mir │ │ │ ├── cfi-same-value.mir │ │ │ ├── expected-closing-brace.mir │ │ │ ├── extraneous-closing-brace-error.mir │ │ │ ├── ifcvt_canFallThroughTo.mir │ │ │ ├── ifcvt_diamond_unanalyzable.mir │ │ │ ├── ifcvt_forked_diamond_unanalyzable.mir │ │ │ ├── ifcvt_simple_bad_zero_prob_succ.mir │ │ │ ├── ifcvt_simple_unanalyzable.mir │ │ │ ├── ifcvt_triangleWoCvtToNextEdge.mir │ │ │ ├── lit.local.cfg │ │ │ ├── nested-instruction-bundle-error.mir │ │ │ └── target-constant-pools-error.mir │ │ ├── Generic │ │ │ ├── basic-blocks.mir │ │ │ ├── expected-colon-after-basic-block.mir │ │ │ ├── expected-mbb-reference-for-successor-mbb.mir │ │ │ ├── frame-info.mir │ │ │ ├── global-isel-properties.mir │ │ │ ├── invalid-jump-table-kind.mir │ │ │ ├── lit.local.cfg │ │ │ ├── llvm-ir-error-reported.mir │ │ │ ├── llvmIR.mir │ │ │ ├── llvmIRMissing.mir │ │ │ ├── machine-basic-block-ir-block-reference.mir │ │ │ ├── machine-basic-block-redefinition-error.mir │ │ │ ├── machine-basic-block-undefined-ir-block.mir │ │ │ ├── machine-basic-block-unknown-name.mir │ │ │ ├── machine-function-missing-body.mir │ │ │ ├── machine-function-missing-function.mir │ │ │ ├── machine-function-missing-name.mir │ │ │ ├── machine-function-redefinition-error.mir │ │ │ ├── machine-function.mir │ │ │ ├── multiRunPass.mir │ │ │ ├── register-info.mir │ │ │ └── runPass.mir │ │ ├── Hexagon │ │ │ ├── lit.local.cfg │ │ │ ├── parse-lane-masks.mir │ │ │ └── target-flags.mir │ │ ├── Mips │ │ │ ├── expected-global-value-or-symbol-after-call-entry.mir │ │ │ ├── lit.local.cfg │ │ │ └── memory-operands.mir │ │ ├── NVPTX │ │ │ ├── expected-floating-point-literal.mir │ │ │ ├── floating-point-immediate-operands.mir │ │ │ ├── floating-point-invalid-type-error.mir │ │ │ └── lit.local.cfg │ │ ├── PowerPC │ │ │ ├── lit.local.cfg │ │ │ └── unordered-implicit-registers.mir │ │ ├── README │ │ └── X86 │ │ │ ├── auto-successor.mir │ │ │ ├── basic-block-liveins.mir │ │ │ ├── basic-block-not-at-start-of-line-error.mir │ │ │ ├── block-address-operands.mir │ │ │ ├── branch-probabilities.mir │ │ │ ├── callee-saved-info.mir │ │ │ ├── cfi-def-cfa-offset.mir │ │ │ ├── cfi-def-cfa-register.mir │ │ │ ├── cfi-offset.mir │ │ │ ├── constant-pool-item-redefinition-error.mir │ │ │ ├── constant-pool.mir │ │ │ ├── constant-value-error.mir │ │ │ ├── dead-register-flag.mir │ │ │ ├── def-register-already-tied-error.mir │ │ │ ├── diexpr-win32.mir │ │ │ ├── duplicate-memory-operand-flag.mir │ │ │ ├── duplicate-register-flag-error.mir │ │ │ ├── dynamic-regmask.ll │ │ │ ├── early-clobber-register-flag.mir │ │ │ ├── empty0.mir │ │ │ ├── empty1.mir │ │ │ ├── empty2.mir │ │ │ ├── escape-function-name.ll │ │ │ ├── expected-align-in-memory-operand.mir │ │ │ ├── expected-alignment-after-align-in-memory-operand.mir │ │ │ ├── expected-basic-block-at-start-of-body.mir │ │ │ ├── expected-block-reference-in-blockaddress.mir │ │ │ ├── expected-comma-after-cfi-register.mir │ │ │ ├── expected-comma-after-memory-operand.mir │ │ │ ├── expected-different-implicit-operand.mir │ │ │ ├── expected-different-implicit-register-flag.mir │ │ │ ├── expected-function-reference-after-blockaddress.mir │ │ │ ├── expected-global-value-after-blockaddress.mir │ │ │ ├── expected-integer-after-offset-sign.mir │ │ │ ├── expected-integer-after-tied-def.mir │ │ │ ├── expected-integer-in-successor-weight.mir │ │ │ ├── expected-load-or-store-in-memory-operand.mir │ │ │ ├── expected-machine-operand.mir │ │ │ ├── expected-metadata-node-after-debug-location.mir │ │ │ ├── expected-metadata-node-after-exclaim.mir │ │ │ ├── expected-metadata-node-in-stack-object.mir │ │ │ ├── expected-named-register-in-allocation-hint.mir │ │ │ ├── expected-named-register-in-callee-saved-register.mir │ │ │ ├── expected-named-register-in-functions-livein.mir │ │ │ ├── expected-named-register-livein.mir │ │ │ ├── expected-newline-at-end-of-list.mir │ │ │ ├── expected-number-after-bb.mir │ │ │ ├── expected-offset-after-cfi-operand.mir │ │ │ ├── expected-pointer-value-in-memory-operand.mir │ │ │ ├── expected-positive-alignment-after-align.mir │ │ │ ├── expected-register-after-cfi-operand.mir │ │ │ ├── expected-register-after-flags.mir │ │ │ ├── expected-size-integer-after-memory-operation.mir │ │ │ ├── expected-stack-object.mir │ │ │ ├── expected-subregister-after-colon.mir │ │ │ ├── expected-target-flag-name.mir │ │ │ ├── expected-tied-def-after-lparen.mir │ │ │ ├── expected-value-in-memory-operand.mir │ │ │ ├── expected-virtual-register-in-functions-livein.mir │ │ │ ├── external-symbol-operands.mir │ │ │ ├── fixed-stack-memory-operands.mir │ │ │ ├── fixed-stack-object-redefinition-error.mir │ │ │ ├── fixed-stack-objects.mir │ │ │ ├── frame-info-save-restore-points.mir │ │ │ ├── frame-info-stack-references.mir │ │ │ ├── frame-setup-instruction-flag.mir │ │ │ ├── function-liveins.mir │ │ │ ├── generic-instr-type.mir │ │ │ ├── global-value-operands.mir │ │ │ ├── immediate-operands.mir │ │ │ ├── implicit-register-flag.mir │ │ │ ├── inline-asm-registers.mir │ │ │ ├── inline-asm.mir │ │ │ ├── instructions-debug-location.mir │ │ │ ├── invalid-constant-pool-item.mir │ │ │ ├── invalid-metadata-node-type.mir │ │ │ ├── invalid-target-flag-name.mir │ │ │ ├── invalid-tied-def-index-error.mir │ │ │ ├── jump-table-info.mir │ │ │ ├── jump-table-redefinition-error.mir │ │ │ ├── killed-register-flag.mir │ │ │ ├── large-cfi-offset-number-error.mir │ │ │ ├── large-immediate-operand-error.mir │ │ │ ├── large-index-number-error.mir │ │ │ ├── large-offset-number-error.mir │ │ │ ├── large-size-in-memory-operand-error.mir │ │ │ ├── lit.local.cfg │ │ │ ├── liveout-register-mask.mir │ │ │ ├── machine-basic-block-operands.mir │ │ │ ├── machine-instructions.mir │ │ │ ├── machine-verifier.mir │ │ │ ├── memory-operands.mir │ │ │ ├── metadata-operands.mir │ │ │ ├── missing-closing-quote.mir │ │ │ ├── missing-comma.mir │ │ │ ├── missing-implicit-operand.mir │ │ │ ├── named-registers.mir │ │ │ ├── newline-handling.mir │ │ │ ├── null-register-operands.mir │ │ │ ├── opt_phis.mir │ │ │ ├── register-mask-operands.mir │ │ │ ├── register-operand-class-invalid0.mir │ │ │ ├── register-operand-class-invalid1.mir │ │ │ ├── register-operand-class.mir │ │ │ ├── register-operands-target-flag-error.mir │ │ │ ├── renamable-register-flag.mir │ │ │ ├── roundtrip.mir │ │ │ ├── shrink_wrap_dbg_value.mir │ │ │ ├── simple-register-allocation-hints.mir │ │ │ ├── simple-register-allocation-read-undef.mir │ │ │ ├── spill-slot-fixed-stack-object-aliased.mir │ │ │ ├── spill-slot-fixed-stack-object-immutable.mir │ │ │ ├── spill-slot-fixed-stack-objects.mir │ │ │ ├── stack-object-debug-info.mir │ │ │ ├── stack-object-invalid-name.mir │ │ │ ├── stack-object-operand-name-mismatch-error.mir │ │ │ ├── stack-object-operands.mir │ │ │ ├── stack-object-redefinition-error.mir │ │ │ ├── stack-objects.mir │ │ │ ├── standalone-register-error.mir │ │ │ ├── subreg-on-physreg.mir │ │ │ ├── subregister-index-operands.mir │ │ │ ├── subregister-operands.mir │ │ │ ├── successor-basic-blocks-weights.mir │ │ │ ├── successor-basic-blocks.mir │ │ │ ├── tied-def-operand-invalid.mir │ │ │ ├── tied-physical-regs-match.mir │ │ │ ├── undef-register-flag.mir │ │ │ ├── undefined-fixed-stack-object.mir │ │ │ ├── undefined-global-value.mir │ │ │ ├── undefined-ir-block-in-blockaddress.mir │ │ │ ├── undefined-ir-block-slot-in-blockaddress.mir │ │ │ ├── undefined-jump-table-id.mir │ │ │ ├── undefined-named-global-value.mir │ │ │ ├── undefined-register-class.mir │ │ │ ├── undefined-stack-object.mir │ │ │ ├── undefined-value-in-memory-operand.mir │ │ │ ├── undefined-virtual-register.mir │ │ │ ├── unexpected-type-phys.mir │ │ │ ├── unknown-instruction.mir │ │ │ ├── unknown-machine-basic-block.mir │ │ │ ├── unknown-metadata-keyword.mir │ │ │ ├── unknown-metadata-node.mir │ │ │ ├── unknown-named-machine-basic-block.mir │ │ │ ├── unknown-register.mir │ │ │ ├── unknown-subregister-index-op.mir │ │ │ ├── unknown-subregister-index.mir │ │ │ ├── unreachable-mbb-undef-phi.mir │ │ │ ├── unreachable_block.ll │ │ │ ├── unrecognized-character.mir │ │ │ ├── variable-sized-stack-object-size-error.mir │ │ │ ├── variable-sized-stack-objects.mir │ │ │ ├── virtual-register-redefinition-error.mir │ │ │ └── virtual-registers.mir │ ├── 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-08-InvalidResNo.ll │ │ ├── 2009-11-20-NewNode.ll │ │ ├── 2009-12-21-FrameAddr.ll │ │ ├── 2009-12-22-InlineAsm.ll │ │ ├── 2010-05-01-CombinerAnd.ll │ │ ├── AddrMode-bis-rx.ll │ │ ├── AddrMode-bis-xr.ll │ │ ├── AddrMode-mov-rx.ll │ │ ├── AddrMode-mov-xr.ll │ │ ├── BranchSelector.ll │ │ ├── DbgValueOtherTargets.test │ │ ├── Inst16mi.ll │ │ ├── Inst16mm.ll │ │ ├── Inst16mr.ll │ │ ├── Inst16ri.ll │ │ ├── Inst16rm.ll │ │ ├── Inst16rr.ll │ │ ├── Inst8mi.ll │ │ ├── Inst8mm.ll │ │ ├── Inst8mr.ll │ │ ├── Inst8ri.ll │ │ ├── Inst8rm.ll │ │ ├── Inst8rr.ll │ │ ├── asm-clobbers.ll │ │ ├── bit.ll │ │ ├── byval.ll │ │ ├── cc_args.ll │ │ ├── cc_ret.ll │ │ ├── flt_rounds.ll │ │ ├── fp.ll │ │ ├── hwmult16.ll │ │ ├── hwmult32.ll │ │ ├── hwmultf5.ll │ │ ├── indirectbr.ll │ │ ├── indirectbr2.ll │ │ ├── inline-asm.ll │ │ ├── jumptable.ll │ │ ├── libcalls.ll │ │ ├── lit.local.cfg │ │ ├── memset.ll │ │ ├── misched-msp430.ll │ │ ├── mult-alt-generic-msp430.ll │ │ ├── postinc.ll │ │ ├── promote-i8-mul.ll │ │ ├── select-use-sr.ll │ │ ├── setcc.ll │ │ ├── shifts.ll │ │ ├── spill-to-stack.ll │ │ ├── struct-return.ll │ │ ├── struct_layout.ll │ │ ├── transient-stack-alignment.ll │ │ ├── umulo-16.ll │ │ └── vararg.ll │ ├── Mips │ │ ├── 2008-06-05-Carry.ll │ │ ├── 2008-07-03-SRet.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-07-20-Switch.ll │ │ ├── 2010-11-09-CountLeading.ll │ │ ├── 2010-11-09-Mul.ll │ │ ├── 2011-05-26-BranchKillsVreg.ll │ │ ├── 2012-12-12-ExpandMemcpy.ll │ │ ├── 2013-11-18-fp64-const0.ll │ │ ├── DbgValueOtherTargets.test │ │ ├── Fast-ISel │ │ │ ├── br1.ll │ │ │ ├── bswap1.ll │ │ │ ├── callabi.ll │ │ │ ├── check-disabled-mcpus.ll │ │ │ ├── constexpr-address.ll │ │ │ ├── div1.ll │ │ │ ├── double-arg.ll │ │ │ ├── fast-isel-softfloat-lower-args.ll │ │ │ ├── fastalloca.ll │ │ │ ├── fastcc-miss.ll │ │ │ ├── fpcmpa.ll │ │ │ ├── fpext.ll │ │ │ ├── fpintconv.ll │ │ │ ├── fptrunc.ll │ │ │ ├── icmpa.ll │ │ │ ├── loadstore2.ll │ │ │ ├── loadstoreconv.ll │ │ │ ├── loadstrconst.ll │ │ │ ├── logopm.ll │ │ │ ├── memtest1.ll │ │ │ ├── mul1.ll │ │ │ ├── nullvoid.ll │ │ │ ├── overflt.ll │ │ │ ├── rem1.ll │ │ │ ├── retabi.ll │ │ │ ├── sel1.ll │ │ │ ├── shftopm.ll │ │ │ ├── shift.ll │ │ │ ├── simplestore.ll │ │ │ ├── simplestorefp1.ll │ │ │ ├── simplestorei.ll │ │ │ └── stackloadstore.ll │ │ ├── abicalls.ll │ │ ├── abiflags-xx.ll │ │ ├── abiflags32.ll │ │ ├── addc.ll │ │ ├── addi.ll │ │ ├── addressing-mode.ll │ │ ├── adjust-callstack-sp.ll │ │ ├── align16.ll │ │ ├── alloca.ll │ │ ├── alloca16.ll │ │ ├── analyzebranch.ll │ │ ├── and1.ll │ │ ├── asm-large-immediate.ll │ │ ├── assertzext-trunc.ll │ │ ├── atomic.ll │ │ ├── atomicCmpSwapPW.ll │ │ ├── atomicops.ll │ │ ├── beqzc.ll │ │ ├── beqzc1.ll │ │ ├── biggot.ll │ │ ├── blez_bgez.ll │ │ ├── blockaddr.ll │ │ ├── br-jmp.ll │ │ ├── brconeq.ll │ │ ├── brconeqk.ll │ │ ├── brconeqz.ll │ │ ├── brconge.ll │ │ ├── brcongt.ll │ │ ├── brconle.ll │ │ ├── brconlt.ll │ │ ├── brconne.ll │ │ ├── brconnek.ll │ │ ├── brconnez.ll │ │ ├── brdelayslot.ll │ │ ├── brind-tailcall.ll │ │ ├── brind.ll │ │ ├── brsize3.ll │ │ ├── brsize3a.ll │ │ ├── brundef.ll │ │ ├── bswap.ll │ │ ├── buildpairextractelementf64.ll │ │ ├── cache-intrinsic.ll │ │ ├── call-optimization.ll │ │ ├── cconv │ │ │ ├── arguments-float.ll │ │ │ ├── arguments-fp128.ll │ │ │ ├── arguments-hard-float-varargs.ll │ │ │ ├── arguments-hard-float.ll │ │ │ ├── arguments-hard-fp128.ll │ │ │ ├── arguments-small-structures-bigger-than-32bits.ll │ │ │ ├── arguments-struct.ll │ │ │ ├── arguments-varargs-small-structs-byte.ll │ │ │ ├── arguments-varargs-small-structs-combinations.ll │ │ │ ├── arguments-varargs-small-structs-multiple-args.ll │ │ │ ├── arguments-varargs.ll │ │ │ ├── arguments.ll │ │ │ ├── callee-saved-float.ll │ │ │ ├── callee-saved-fpxx.ll │ │ │ ├── callee-saved-fpxx1.ll │ │ │ ├── callee-saved.ll │ │ │ ├── memory-layout.ll │ │ │ ├── pr33883.ll │ │ │ ├── reserved-space.ll │ │ │ ├── return-float.ll │ │ │ ├── return-hard-float.ll │ │ │ ├── return-hard-fp128.ll │ │ │ ├── return-hard-struct-f128.ll │ │ │ ├── return-struct.ll │ │ │ ├── return.ll │ │ │ ├── roundl-call.ll │ │ │ ├── stack-alignment.ll │ │ │ └── vector.ll │ │ ├── cfi_offset.ll │ │ ├── check-adde-redundant-moves.ll │ │ ├── check-noat.ll │ │ ├── ci2.ll │ │ ├── cins.ll │ │ ├── cmov.ll │ │ ├── cmplarge.ll │ │ ├── compactbranches │ │ │ ├── beqc-bnec-register-constraint.ll │ │ │ ├── compact-branch-implicit-def.mir │ │ │ ├── compact-branch-policy.ll │ │ │ ├── compact-branches-64.ll │ │ │ ├── compact-branches.ll │ │ │ ├── empty-block.mir │ │ │ ├── no-beqzc-bnezc.ll │ │ │ └── unsafe-in-forbidden-slot.ll │ │ ├── const-mult.ll │ │ ├── const1.ll │ │ ├── const4a.ll │ │ ├── const6.ll │ │ ├── const6a.ll │ │ ├── constantfp0.ll │ │ ├── constraint-c-err.ll │ │ ├── constraint-c.ll │ │ ├── countleading.ll │ │ ├── cprestore.ll │ │ ├── cstmaterialization │ │ │ ├── constMaterialization.ll │ │ │ └── stack.ll │ │ ├── ctlz-v.ll │ │ ├── ctlz.ll │ │ ├── cttz-v.ll │ │ ├── dagcombine-store-gep-chain-slow.ll │ │ ├── dagcombine_crash.ll │ │ ├── delay-slot-fill-forward.ll │ │ ├── delay-slot-kill.ll │ │ ├── dext.ll │ │ ├── dins.ll │ │ ├── disable-tail-merge.ll │ │ ├── div.ll │ │ ├── div_rem.ll │ │ ├── divrem.ll │ │ ├── divu.ll │ │ ├── divu_remu.ll │ │ ├── double2int.ll │ │ ├── dsp-patterns-cmp-vselect.ll │ │ ├── dsp-patterns.ll │ │ ├── dsp-r1.ll │ │ ├── dsp-r2.ll │ │ ├── dsp-spill-reload.ll │ │ ├── dsp-vec-load-store.ll │ │ ├── dynamic-stack-realignment.ll │ │ ├── eh-dwarf-cfa.ll │ │ ├── eh-return32.ll │ │ ├── eh-return64.ll │ │ ├── eh.ll │ │ ├── ehframe-indirect.ll │ │ ├── elf_eflags.ll │ │ ├── emergency-spill-slot-near-fp.ll │ │ ├── emit-big-cst.ll │ │ ├── emutls_generic.ll │ │ ├── ex2.ll │ │ ├── extins.ll │ │ ├── f16abs.ll │ │ ├── fabs.ll │ │ ├── fastcc.ll │ │ ├── fcmp.ll │ │ ├── fcopysign-f32-f64.ll │ │ ├── fcopysign.ll │ │ ├── fixdfsf.ll │ │ ├── fmadd1.ll │ │ ├── fneg.ll │ │ ├── fp-indexed-ls.ll │ │ ├── fp-spill-reload.ll │ │ ├── fp16-promote.ll │ │ ├── fp16instrinsmc.ll │ │ ├── fp16mix.ll │ │ ├── fp16static.ll │ │ ├── fp64a.ll │ │ ├── fpbr.ll │ │ ├── fpneeded.ll │ │ ├── fpnotneeded.ll │ │ ├── fpxx.ll │ │ ├── frame-address.ll │ │ ├── frem.ll │ │ ├── global-address.ll │ │ ├── global-pointer-reg.ll │ │ ├── gpopt-explict-section.ll │ │ ├── gpreg-lazy-binding.ll │ │ ├── gprestore.ll │ │ ├── helloworld.ll │ │ ├── hf16_1.ll │ │ ├── hf16call32.ll │ │ ├── hf16call32_body.ll │ │ ├── hf1_body.ll │ │ ├── hfptrcall.ll │ │ ├── i32k.ll │ │ ├── i64arg.ll │ │ ├── imm.ll │ │ ├── indirectcall.ll │ │ ├── init-array.ll │ │ ├── inlineasm-assembler-directives.ll │ │ ├── inlineasm-cnstrnt-bad-I-1.ll │ │ ├── inlineasm-cnstrnt-bad-J.ll │ │ ├── inlineasm-cnstrnt-bad-K.ll │ │ ├── inlineasm-cnstrnt-bad-L.ll │ │ ├── inlineasm-cnstrnt-bad-N.ll │ │ ├── inlineasm-cnstrnt-bad-O.ll │ │ ├── inlineasm-cnstrnt-bad-P.ll │ │ ├── inlineasm-cnstrnt-reg.ll │ │ ├── inlineasm-cnstrnt-reg64.ll │ │ ├── inlineasm-constraint_ZC_2.ll │ │ ├── inlineasm-operand-code.ll │ │ ├── inlineasm64.ll │ │ ├── inlineasm_constraint.ll │ │ ├── inlineasm_constraint_R.ll │ │ ├── inlineasm_constraint_ZC.ll │ │ ├── inlineasm_constraint_m.ll │ │ ├── inlineasmmemop.ll │ │ ├── insn-zero-size-bb.ll │ │ ├── instverify │ │ │ ├── dext-pos.mir │ │ │ ├── dext-size.mir │ │ │ ├── dextm-pos-size.mir │ │ │ ├── dextm-pos.mir │ │ │ ├── dextm-size.mir │ │ │ ├── dextu-pos-size.mir │ │ │ ├── dextu-pos.mir │ │ │ ├── dextu-size-valid.mir │ │ │ ├── dextu-size.mir │ │ │ ├── dins-pos-size.mir │ │ │ ├── dins-pos.mir │ │ │ ├── dins-size.mir │ │ │ ├── dinsm-pos-size.mir │ │ │ ├── dinsm-pos.mir │ │ │ ├── dinsm-size.mir │ │ │ ├── dinsu-pos-size.mir │ │ │ ├── dinsu-pos.mir │ │ │ ├── dinsu-size.mir │ │ │ ├── ext-pos-size.mir │ │ │ ├── ext-pos.mir │ │ │ ├── ext-size.mir │ │ │ ├── ins-pos-size.mir │ │ │ ├── ins-pos.mir │ │ │ └── ins-size.mir │ │ ├── int-to-float-conversion.ll │ │ ├── internalfunc.ll │ │ ├── interrupt-attr-64-error.ll │ │ ├── interrupt-attr-args-error.ll │ │ ├── interrupt-attr-error.ll │ │ ├── interrupt-attr.ll │ │ ├── jtstat.ll │ │ ├── jumptable_labels.ll │ │ ├── l3mc.ll │ │ ├── largeimm1.ll │ │ ├── largeimmprinting.ll │ │ ├── lazy-binding.ll │ │ ├── lb1.ll │ │ ├── lbu1.ll │ │ ├── lcb2.ll │ │ ├── lcb3c.ll │ │ ├── lcb4a.ll │ │ ├── lcb5.ll │ │ ├── lh1.ll │ │ ├── lhu1.ll │ │ ├── lit.local.cfg │ │ ├── llcarry.ll │ │ ├── llvm-ir │ │ │ ├── add.ll │ │ │ ├── addrspacecast.ll │ │ │ ├── and.ll │ │ │ ├── ashr.ll │ │ │ ├── atomicrmx.ll │ │ │ ├── call.ll │ │ │ ├── extractelement.ll │ │ │ ├── indirectbr.ll │ │ │ ├── lh_lhu.ll │ │ │ ├── load-atomic.ll │ │ │ ├── lshr.ll │ │ │ ├── mul.ll │ │ │ ├── not.ll │ │ │ ├── or.ll │ │ │ ├── ret.ll │ │ │ ├── sdiv.ll │ │ │ ├── select-dbl.ll │ │ │ ├── select-flt.ll │ │ │ ├── select-int.ll │ │ │ ├── shl.ll │ │ │ ├── sqrt.ll │ │ │ ├── srem.ll │ │ │ ├── store-atomic.ll │ │ │ ├── sub.ll │ │ │ ├── udiv.ll │ │ │ ├── urem.ll │ │ │ └── xor.ll │ │ ├── load-store-left-right.ll │ │ ├── long-call-attr.ll │ │ ├── long-call-mcount.ll │ │ ├── long-calls.ll │ │ ├── longbranch.ll │ │ ├── longbranch │ │ │ └── compact-branches-long-branch.ll │ │ ├── lw16-base-reg.ll │ │ ├── machineverifier.ll │ │ ├── madd-msub.ll │ │ ├── mature-mc-support.ll │ │ ├── mbrsize4a.ll │ │ ├── memcpy.ll │ │ ├── micromips-addiu.ll │ │ ├── micromips-addu16.ll │ │ ├── micromips-and16.ll │ │ ├── micromips-andi.ll │ │ ├── micromips-ase-function-attribute.ll │ │ ├── micromips-atomic.ll │ │ ├── micromips-atomic1.ll │ │ ├── micromips-attr.ll │ │ ├── micromips-compact-branches.ll │ │ ├── micromips-compact-jump.ll │ │ ├── micromips-delay-slot-jr.ll │ │ ├── micromips-delay-slot.ll │ │ ├── micromips-directives.ll │ │ ├── micromips-gp-rc.ll │ │ ├── micromips-jal.ll │ │ ├── micromips-li.ll │ │ ├── micromips-load-effective-address.ll │ │ ├── micromips-lwc1-swc1.ll │ │ ├── micromips-not16.ll │ │ ├── micromips-or16.ll │ │ ├── micromips-rdhwr-directives.ll │ │ ├── micromips-shift.ll │ │ ├── micromips-sizereduction │ │ │ ├── micromips-addiur1sp-addiusp.ll │ │ │ ├── micromips-lbu16-lhu16-sb16-sh16.ll │ │ │ ├── micromips-lwsp-swsp.ll │ │ │ └── micromips-xor16.ll │ │ ├── micromips-subu16.ll │ │ ├── micromips-sw-lw-16.ll │ │ ├── micromips-xor16.ll │ │ ├── micromips64r6-unsupported.ll │ │ ├── mips-shf-gprel.s │ │ ├── mips16-hf-attr-2.ll │ │ ├── mips16-hf-attr.ll │ │ ├── mips16_32_1.ll │ │ ├── mips16_32_10.ll │ │ ├── mips16_32_3.ll │ │ ├── mips16_32_4.ll │ │ ├── mips16_32_5.ll │ │ ├── mips16_32_6.ll │ │ ├── mips16_32_7.ll │ │ ├── mips16_32_8.ll │ │ ├── mips16_32_9.ll │ │ ├── mips16_fpret.ll │ │ ├── mips16ex.ll │ │ ├── mips16fpe.ll │ │ ├── mips32r6 │ │ │ └── compatibility.ll │ │ ├── mips64-f128-call.ll │ │ ├── mips64-f128.ll │ │ ├── mips64-libcall.ll │ │ ├── mips64-sret.ll │ │ ├── mips64directive.ll │ │ ├── mips64ext.ll │ │ ├── mips64extins.ll │ │ ├── mips64fpimm0.ll │ │ ├── mips64fpldst.ll │ │ ├── mips64imm.ll │ │ ├── mips64instrs.ll │ │ ├── mips64intldst.ll │ │ ├── mips64lea.ll │ │ ├── mips64muldiv.ll │ │ ├── mips64r6 │ │ │ └── compatibility.ll │ │ ├── mips64shift.ll │ │ ├── mips64signextendsesf.ll │ │ ├── mips64sinttofpsf.ll │ │ ├── mipslopat.ll │ │ ├── mirparser │ │ │ ├── target-flags-pic-mxgot-tls.mir │ │ │ ├── target-flags-pic-o32.mir │ │ │ ├── target-flags-pic.mir │ │ │ └── target-flags-static-tls.mir │ │ ├── misha.ll │ │ ├── mno-ldc1-sdc1.ll │ │ ├── msa │ │ │ ├── 2r.ll │ │ │ ├── 2r_vector_scalar.ll │ │ │ ├── 2rf.ll │ │ │ ├── 2rf_exup.ll │ │ │ ├── 2rf_float_int.ll │ │ │ ├── 2rf_fq.ll │ │ │ ├── 2rf_int_float.ll │ │ │ ├── 2rf_tq.ll │ │ │ ├── 3r-a.ll │ │ │ ├── 3r-b.ll │ │ │ ├── 3r-c.ll │ │ │ ├── 3r-d.ll │ │ │ ├── 3r-i.ll │ │ │ ├── 3r-m.ll │ │ │ ├── 3r-p.ll │ │ │ ├── 3r-s.ll │ │ │ ├── 3r-v.ll │ │ │ ├── 3r_4r.ll │ │ │ ├── 3r_4r_widen.ll │ │ │ ├── 3r_splat.ll │ │ │ ├── 3rf.ll │ │ │ ├── 3rf_4rf.ll │ │ │ ├── 3rf_4rf_q.ll │ │ │ ├── 3rf_exdo.ll │ │ │ ├── 3rf_float_int.ll │ │ │ ├── 3rf_int_float.ll │ │ │ ├── 3rf_q.ll │ │ │ ├── arithmetic.ll │ │ │ ├── arithmetic_float.ll │ │ │ ├── basic_operations.ll │ │ │ ├── basic_operations_float.ll │ │ │ ├── bit.ll │ │ │ ├── bitcast.ll │ │ │ ├── bitwise.ll │ │ │ ├── bmzi_bmnzi.ll │ │ │ ├── compare.ll │ │ │ ├── compare_float.ll │ │ │ ├── elm_copy.ll │ │ │ ├── elm_cxcmsa.ll │ │ │ ├── elm_insv.ll │ │ │ ├── elm_move.ll │ │ │ ├── elm_shift_slide.ll │ │ │ ├── emergency-spill.mir │ │ │ ├── endian.ll │ │ │ ├── f16-llvm-ir.ll │ │ │ ├── fexuprl.ll │ │ │ ├── frameindex.ll │ │ │ ├── i10.ll │ │ │ ├── i5-a.ll │ │ │ ├── i5-b.ll │ │ │ ├── i5-c.ll │ │ │ ├── i5-m.ll │ │ │ ├── i5-s.ll │ │ │ ├── i5_ld_st.ll │ │ │ ├── i8.ll │ │ │ ├── immediates-bad.ll │ │ │ ├── immediates.ll │ │ │ ├── inline-asm.ll │ │ │ ├── llvm-stress-s1704963983.ll │ │ │ ├── llvm-stress-s1935737938.ll │ │ │ ├── llvm-stress-s2090927243-simplified.ll │ │ │ ├── llvm-stress-s2501752154-simplified.ll │ │ │ ├── llvm-stress-s2704903805.ll │ │ │ ├── llvm-stress-s3861334421.ll │ │ │ ├── llvm-stress-s3926023935.ll │ │ │ ├── llvm-stress-s3997499501.ll │ │ │ ├── llvm-stress-s449609655-simplified.ll │ │ │ ├── llvm-stress-s525530439.ll │ │ │ ├── llvm-stress-s997348632.ll │ │ │ ├── llvm-stress-sz1-s742806235.ll │ │ │ ├── msa-nooddspreg.ll │ │ │ ├── shift-dagcombine.ll │ │ │ ├── shift_constant_pool.ll │ │ │ ├── shift_no_and.ll │ │ │ ├── shuffle.ll │ │ │ ├── special.ll │ │ │ ├── spill.ll │ │ │ ├── vec.ll │ │ │ └── vecs10.ll │ │ ├── mul.ll │ │ ├── mulll.ll │ │ ├── mulull.ll │ │ ├── nacl-align.ll │ │ ├── nacl-branch-delay.ll │ │ ├── nacl-reserved-regs.ll │ │ ├── named-register-n32.ll │ │ ├── named-register-n64.ll │ │ ├── named-register-o32.ll │ │ ├── neg1.ll │ │ ├── nmadd.ll │ │ ├── no-odd-spreg-msa.ll │ │ ├── no-odd-spreg.ll │ │ ├── nomips16.ll │ │ ├── not1.ll │ │ ├── null-streamer.ll │ │ ├── null.ll │ │ ├── o32_cc.ll │ │ ├── o32_cc_byval.ll │ │ ├── o32_cc_vararg.ll │ │ ├── octeon.ll │ │ ├── octeon_popcnt.ll │ │ ├── optimize-fp-math.ll │ │ ├── optimize-pic-o0.ll │ │ ├── or1.ll │ │ ├── pbqp-reserved-physreg.ll │ │ ├── powif64_16.ll │ │ ├── pr33682.ll │ │ ├── pr33978.ll │ │ ├── pr34975.ll │ │ ├── pr35071.ll │ │ ├── pr36061.ll │ │ ├── prevent-hoisting.ll │ │ ├── private-addr.ll │ │ ├── private.ll │ │ ├── ra-allocatable.ll │ │ ├── rdhwr-directives.ll │ │ ├── rem.ll │ │ ├── remat-immed-load.ll │ │ ├── remu.ll │ │ ├── return-vector.ll │ │ ├── return_address.ll │ │ ├── rotate.ll │ │ ├── s2rem.ll │ │ ├── sb1.ll │ │ ├── sel1c.ll │ │ ├── sel2c.ll │ │ ├── selTBteqzCmpi.ll │ │ ├── selTBtnezCmpi.ll │ │ ├── selTBtnezSlti.ll │ │ ├── select.ll │ │ ├── selectcc.ll │ │ ├── selectiondag-optlevel.ll │ │ ├── seleq.ll │ │ ├── seleqk.ll │ │ ├── selgek.ll │ │ ├── selgt.ll │ │ ├── selle.ll │ │ ├── selltk.ll │ │ ├── selne.ll │ │ ├── selnek.ll │ │ ├── selpat.ll │ │ ├── setcc-se.ll │ │ ├── seteq.ll │ │ ├── seteqz.ll │ │ ├── setge.ll │ │ ├── setgek.ll │ │ ├── setle.ll │ │ ├── setlt.ll │ │ ├── setltk.ll │ │ ├── setne.ll │ │ ├── setuge.ll │ │ ├── setugt.ll │ │ ├── setule.ll │ │ ├── setult.ll │ │ ├── setultk.ll │ │ ├── sh1.ll │ │ ├── shift-parts.ll │ │ ├── simplebr.ll │ │ ├── sint-fp-store_pattern.ll │ │ ├── sitofp-selectcc-opt.ll │ │ ├── sll-micromips-r6-encoding.mir │ │ ├── sll1.ll │ │ ├── sll2.ll │ │ ├── slt.ll │ │ ├── small-section-reserve-gp.ll │ │ ├── spill-copy-acreg.ll │ │ ├── sr1.ll │ │ ├── sra1.ll │ │ ├── sra2.ll │ │ ├── srl1.ll │ │ ├── srl2.ll │ │ ├── stack-alignment.ll │ │ ├── stackcoloring.ll │ │ ├── stacksize.ll │ │ ├── start-asm-file.ll │ │ ├── stchar.ll │ │ ├── stldst.ll │ │ ├── sub1.ll │ │ ├── sub2.ll │ │ ├── swzero.ll │ │ ├── tail16.ll │ │ ├── tailcall │ │ │ ├── tail-call-arguments-clobber.ll │ │ │ ├── tailcall-wrong-isa.ll │ │ │ └── tailcall.ll │ │ ├── thread-pointer.ll │ │ ├── tls-alias.ll │ │ ├── tls-models.ll │ │ ├── tls.ll │ │ ├── tls16.ll │ │ ├── tls16_2.ll │ │ ├── tnaked.ll │ │ ├── trap.ll │ │ ├── trap1.ll │ │ ├── uitofp.ll │ │ ├── ul1.ll │ │ ├── unalignedload.ll │ │ ├── unsized-global.ll │ │ ├── v2i16tof32.ll │ │ ├── vector-load-store.ll │ │ ├── vector-setcc.ll │ │ ├── weak.ll │ │ ├── whitespace.ll │ │ ├── xor1.ll │ │ ├── xray-mips-attribute-instrumentation.ll │ │ ├── xray-section-group.ll │ │ └── zeroreg.ll │ ├── NVPTX │ │ ├── LoadStoreVectorizer.ll │ │ ├── MachineSink-call.ll │ │ ├── MachineSink-convergent.ll │ │ ├── TailDuplication-convergent.ll │ │ ├── access-non-generic.ll │ │ ├── add-128bit.ll │ │ ├── addrspacecast-gvar.ll │ │ ├── addrspacecast.ll │ │ ├── aggr-param.ll │ │ ├── aggregate-return.ll │ │ ├── alias.ll │ │ ├── annotations.ll │ │ ├── arg-lowering.ll │ │ ├── arithmetic-fp-sm20.ll │ │ ├── arithmetic-int.ll │ │ ├── atomics-sm60.ll │ │ ├── atomics-with-scope.ll │ │ ├── atomics.ll │ │ ├── barrier.ll │ │ ├── bfe.ll │ │ ├── branch-fold.ll │ │ ├── bug17709.ll │ │ ├── bug21465.ll │ │ ├── bug22246.ll │ │ ├── bug22322.ll │ │ ├── bug26185-2.ll │ │ ├── bug26185.ll │ │ ├── bypass-div.ll │ │ ├── call-with-alloca-buffer.ll │ │ ├── callchain.ll │ │ ├── calling-conv.ll │ │ ├── combine-min-max.ll │ │ ├── compare-int.ll │ │ ├── constant-vectors.ll │ │ ├── convergent-mir-call.ll │ │ ├── convert-fp.ll │ │ ├── convert-int-sm20.ll │ │ ├── ctlz.ll │ │ ├── ctpop.ll │ │ ├── cttz.ll │ │ ├── debug-file-loc.ll │ │ ├── disable-opt.ll │ │ ├── div-ri.ll │ │ ├── divrem-combine.ll │ │ ├── envreg.ll │ │ ├── extloadv.ll │ │ ├── f16-instructions.ll │ │ ├── f16x2-instructions.ll │ │ ├── fast-math.ll │ │ ├── fcos-no-fast-math.ll │ │ ├── fma-assoc.ll │ │ ├── fma-disable.ll │ │ ├── fma.ll │ │ ├── fns.ll │ │ ├── fp-contract.ll │ │ ├── fp-literals.ll │ │ ├── fp16.ll │ │ ├── fsin-no-fast-math.ll │ │ ├── function-align.ll │ │ ├── generic-to-nvvm-ir.ll │ │ ├── generic-to-nvvm.ll │ │ ├── global-addrspace.ll │ │ ├── global-ctor-empty.ll │ │ ├── global-ctor.ll │ │ ├── global-dtor.ll │ │ ├── global-ordering.ll │ │ ├── global-variable-big.ll │ │ ├── global-visibility.ll │ │ ├── globals_init.ll │ │ ├── globals_lowering.ll │ │ ├── gvar-init.ll │ │ ├── half.ll │ │ ├── i1-global.ll │ │ ├── i1-int-to-fp.ll │ │ ├── i1-param.ll │ │ ├── i128-global.ll │ │ ├── i128-param.ll │ │ ├── i128-retval.ll │ │ ├── i8-param.ll │ │ ├── idioms.ll │ │ ├── imad.ll │ │ ├── implicit-def.ll │ │ ├── inline-asm.ll │ │ ├── intrin-nocapture.ll │ │ ├── intrinsic-old.ll │ │ ├── intrinsics.ll │ │ ├── isspacep.ll │ │ ├── ld-addrspace.ll │ │ ├── ld-generic.ll │ │ ├── ld-st-addrrspace.py │ │ ├── ldg-invariant.ll │ │ ├── ldparam-v4.ll │ │ ├── ldu-i8.ll │ │ ├── ldu-ldg.ll │ │ ├── ldu-reg-plus-offset.ll │ │ ├── lit.local.cfg │ │ ├── load-sext-i1.ll │ │ ├── load-with-non-coherent-cache.ll │ │ ├── local-stack-frame.ll │ │ ├── loop-vectorize.ll │ │ ├── lower-aggr-copies.ll │ │ ├── lower-alloca.ll │ │ ├── lower-kernel-ptr-arg.ll │ │ ├── machine-sink.ll │ │ ├── managed.ll │ │ ├── match.ll │ │ ├── math-intrins.ll │ │ ├── minmax-negative.ll │ │ ├── misaligned-vector-ldst.ll │ │ ├── module-inline-asm.ll │ │ ├── mulwide.ll │ │ ├── named-barriers.ll │ │ ├── noduplicate-syncthreads.ll │ │ ├── nounroll.ll │ │ ├── nvcl-param-align.ll │ │ ├── nvvm-reflect-module-flag.ll │ │ ├── nvvm-reflect.ll │ │ ├── param-align.ll │ │ ├── param-load-store.ll │ │ ├── pr13291-i1-store.ll │ │ ├── pr16278.ll │ │ ├── pr17529.ll │ │ ├── refl1.ll │ │ ├── reg-copy.ll │ │ ├── reg-types.ll │ │ ├── rotate.ll │ │ ├── sched1.ll │ │ ├── sched2.ll │ │ ├── sext-in-reg.ll │ │ ├── sext-params.ll │ │ ├── shfl-sync.ll │ │ ├── shfl.ll │ │ ├── shift-parts.ll │ │ ├── simple-call.ll │ │ ├── sm-version-20.ll │ │ ├── sm-version-21.ll │ │ ├── sm-version-30.ll │ │ ├── sm-version-32.ll │ │ ├── sm-version-35.ll │ │ ├── sm-version-37.ll │ │ ├── sm-version-50.ll │ │ ├── sm-version-52.ll │ │ ├── sm-version-53.ll │ │ ├── sm-version-60.ll │ │ ├── sm-version-61.ll │ │ ├── sm-version-62.ll │ │ ├── sm-version-70.ll │ │ ├── speculative-execution-divergent-target.ll │ │ ├── sqrt-approx.ll │ │ ├── st-addrspace.ll │ │ ├── st-generic.ll │ │ ├── surf-read-cuda.ll │ │ ├── surf-read.ll │ │ ├── surf-write-cuda.ll │ │ ├── surf-write.ll │ │ ├── symbol-naming.ll │ │ ├── tex-read-cuda.ll │ │ ├── tex-read.ll │ │ ├── texsurf-queries.ll │ │ ├── tid-range.ll │ │ ├── tuple-literal.ll │ │ ├── vec-param-load.ll │ │ ├── vec8.ll │ │ ├── vector-args.ll │ │ ├── vector-call.ll │ │ ├── vector-compare.ll │ │ ├── vector-global.ll │ │ ├── vector-loads.ll │ │ ├── vector-select.ll │ │ ├── vector-stores.ll │ │ ├── vote.ll │ │ ├── weak-global.ll │ │ ├── weak-linkage.ll │ │ ├── wmma.py │ │ ├── zero-cs.ll │ │ └── zeroext-32bit.ll │ ├── Nios2 │ │ ├── lit.local.cfg │ │ ├── proc_support.ll │ │ ├── ret_generated.ll │ │ └── target_support.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-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-31-PPCF128Libcalls.ll │ │ ├── 2008-12-02-LegalizeTypeAssert.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-09-18-carrybit.ll │ │ ├── 2009-11-15-ProcImpDefsBug.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-05-03-retaddr1.ll │ │ ├── 2010-10-11-Fast-Varargs.ll │ │ ├── 2010-12-18-PPCStackRefs.ll │ │ ├── 2011-12-05-NoSpillDupCR.ll │ │ ├── 2011-12-06-SpillAndRestoreCR.ll │ │ ├── 2011-12-08-DemandedBitsMiscompile.ll │ │ ├── 2012-09-16-TOC-entry-check.ll │ │ ├── 2012-10-11-dynalloc.ll │ │ ├── 2012-10-12-bitcast.ll │ │ ├── 2012-11-16-mischedcall.ll │ │ ├── 2013-05-15-preinc-fold.ll │ │ ├── 2013-07-01-PHIElimBug.ll │ │ ├── 2016-01-07-BranchWeightCrash.ll │ │ ├── 2016-04-16-ADD8TLS.ll │ │ ├── 2016-04-17-combine.ll │ │ ├── 2016-04-28-setjmp.ll │ │ ├── Atomics-64.ll │ │ ├── BoolRetToIntTest-2.ll │ │ ├── BoolRetToIntTest.ll │ │ ├── BreakableToken-reduced.ll │ │ ├── CompareEliminationSpillIssue.ll │ │ ├── DbgValueOtherTargets.test │ │ ├── Frames-alloca.ll │ │ ├── Frames-large.ll │ │ ├── Frames-leaf.ll │ │ ├── Frames-small.ll │ │ ├── LargeAbsoluteAddr.ll │ │ ├── MCSE-caller-preserved-reg.ll │ │ ├── MMO-flags-assertion.ll │ │ ├── MergeConsecutiveStores.ll │ │ ├── PR33636.ll │ │ ├── PR33671.ll │ │ ├── PR3488.ll │ │ ├── PR35812-neg-cmpxchg.ll │ │ ├── VSX-DForm-Scalars.ll │ │ ├── VSX-XForm-Scalars.ll │ │ ├── a2-fp-basic.ll │ │ ├── a2q-stackalign.ll │ │ ├── a2q.ll │ │ ├── aa-tbaa.ll │ │ ├── aantidep-def-ec.mir │ │ ├── aantidep-inline-asm-use.ll │ │ ├── add-fi.ll │ │ ├── addc.ll │ │ ├── addegluecrash.ll │ │ ├── addi-licm.ll │ │ ├── addi-offset-fold.ll │ │ ├── addi-reassoc.ll │ │ ├── addisdtprelha-nonr3.mir │ │ ├── addrfuncstr.ll │ │ ├── aggressive-anti-dep-breaker-subreg.ll │ │ ├── alias.ll │ │ ├── align.ll │ │ ├── allocate-r0.ll │ │ ├── altivec-ord.ll │ │ ├── and-branch.ll │ │ ├── and-elim.ll │ │ ├── and-imm.ll │ │ ├── and_add.ll │ │ ├── and_sext.ll │ │ ├── and_sra.ll │ │ ├── andc.ll │ │ ├── anon_aggr.ll │ │ ├── anyext_srl.ll │ │ ├── arr-fp-arg-no-copy.ll │ │ ├── ashr-neg1.ll │ │ ├── asm-Zy.ll │ │ ├── asm-constraints.ll │ │ ├── asm-dialect.ll │ │ ├── asm-printer-topological-order.ll │ │ ├── asym-regclass-copy.ll │ │ ├── atomic-1.ll │ │ ├── atomic-2.ll │ │ ├── atomic-minmax.ll │ │ ├── atomics-constant.ll │ │ ├── atomics-fences.ll │ │ ├── atomics-indexed.ll │ │ ├── atomics-regression.ll │ │ ├── atomics.ll │ │ ├── available-externally.ll │ │ ├── bdzlr.ll │ │ ├── big-endian-actual-args.ll │ │ ├── big-endian-call-result.ll │ │ ├── big-endian-formal-args.ll │ │ ├── bitcasts-direct-move.ll │ │ ├── blockaddress.ll │ │ ├── bperm.ll │ │ ├── branch-hint.ll │ │ ├── branch-opt.ll │ │ ├── branch_coalesce.ll │ │ ├── bswap-load-store.ll │ │ ├── bswap64.ll │ │ ├── build-vector-tests.ll │ │ ├── buildvec_canonicalize.ll │ │ ├── builtins-ppc-elf2-abi.ll │ │ ├── builtins-ppc-p8vector.ll │ │ ├── bv-pres-v8i1.ll │ │ ├── bv-widen-undef.ll │ │ ├── byval-agg-info.ll │ │ ├── byval-aliased.ll │ │ ├── calls.ll │ │ ├── can-lower-ret.ll │ │ ├── cannonicalize-vector-shifts.ll │ │ ├── cc.ll │ │ ├── change-no-infs.ll │ │ ├── cmp-cmp.ll │ │ ├── cmp_elimination.ll │ │ ├── cmpb-ppc32.ll │ │ ├── cmpb.ll │ │ ├── coal-sections.ll │ │ ├── coalesce-ext.ll │ │ ├── code-align.ll │ │ ├── combine-to-pre-index-store-crash.ll │ │ ├── combine_loads_from_build_pair.ll │ │ ├── compare-duplicate.ll │ │ ├── compare-simm.ll │ │ ├── complex-return.ll │ │ ├── constants-i64.ll │ │ ├── constants.ll │ │ ├── convert-rr-to-ri-instrs-R0-special-handling.mir │ │ ├── convert-rr-to-ri-instrs-out-of-range.mir │ │ ├── convert-rr-to-ri-instrs.mir │ │ ├── copysignl.ll │ │ ├── cr-spills.ll │ │ ├── cr1eq-no-extra-moves.ll │ │ ├── cr1eq.ll │ │ ├── cr_spilling.ll │ │ ├── crash.ll │ │ ├── crbit-asm-disabled.ll │ │ ├── crbit-asm.ll │ │ ├── crbits.ll │ │ ├── crsave.ll │ │ ├── crypto_bifs.ll │ │ ├── ctr-cleanup.ll │ │ ├── ctr-loop-tls-const.ll │ │ ├── ctr-minmaxnum.ll │ │ ├── ctrloop-asm.ll │ │ ├── ctrloop-cpsgn.ll │ │ ├── ctrloop-fp64.ll │ │ ├── ctrloop-i128.ll │ │ ├── ctrloop-i64.ll │ │ ├── ctrloop-intrin.ll │ │ ├── ctrloop-large-ec.ll │ │ ├── ctrloop-le.ll │ │ ├── ctrloop-lt.ll │ │ ├── ctrloop-ne.ll │ │ ├── ctrloop-reg.ll │ │ ├── ctrloop-s000.ll │ │ ├── ctrloop-sh.ll │ │ ├── ctrloop-shortLoops.ll │ │ ├── ctrloop-sums.ll │ │ ├── ctrloop-udivti3.ll │ │ ├── ctrloops-softfloat.ll │ │ ├── ctrloops.ll │ │ ├── cttz.ll │ │ ├── cxx_tlscc64.ll │ │ ├── darwin-labels.ll │ │ ├── dbg.ll │ │ ├── dcbt-sched.ll │ │ ├── debuginfo-split-int.ll │ │ ├── debuginfo-stackarg.ll │ │ ├── delete-node.ll │ │ ├── direct-move-profit.ll │ │ ├── div-2.ll │ │ ├── div-e-32.ll │ │ ├── div-e-all.ll │ │ ├── duplicate-returns-for-tailcall.ll │ │ ├── dyn-alloca-aligned.ll │ │ ├── dyn-alloca-offset.ll │ │ ├── e500-1.ll │ │ ├── early-ret.ll │ │ ├── early-ret2.ll │ │ ├── ec-input.ll │ │ ├── eh-dwarf-cfa.ll │ │ ├── empty-functions.ll │ │ ├── emptystruct.ll │ │ ├── emutls_generic.ll │ │ ├── eqv-andc-orc-nor.ll │ │ ├── expand-contiguous-isel.ll │ │ ├── expand-foldable-isel.ll │ │ ├── expand-isel-1.mir │ │ ├── expand-isel-10.mir │ │ ├── expand-isel-2.mir │ │ ├── expand-isel-3.mir │ │ ├── expand-isel-4.mir │ │ ├── expand-isel-5.mir │ │ ├── expand-isel-6.mir │ │ ├── expand-isel-7.mir │ │ ├── expand-isel-8.mir │ │ ├── expand-isel-9.mir │ │ ├── expand-isel.ll │ │ ├── ext-bool-trunc-repl.ll │ │ ├── extra-toc-reg-deps.ll │ │ ├── extsh.ll │ │ ├── f32-to-i64.ll │ │ ├── fabs.ll │ │ ├── fast-isel-GEP-coalesce.ll │ │ ├── fast-isel-binary.ll │ │ ├── fast-isel-br-const.ll │ │ ├── fast-isel-call.ll │ │ ├── fast-isel-cmp-imm.ll │ │ ├── fast-isel-const.ll │ │ ├── fast-isel-conversion-p5.ll │ │ ├── fast-isel-conversion.ll │ │ ├── fast-isel-crash.ll │ │ ├── fast-isel-ext.ll │ │ ├── fast-isel-fcmp-nan.ll │ │ ├── fast-isel-fold.ll │ │ ├── fast-isel-fpconv.ll │ │ ├── fast-isel-i64offset.ll │ │ ├── fast-isel-icmp-split.ll │ │ ├── fast-isel-indirectbr.ll │ │ ├── fast-isel-load-store-vsx.ll │ │ ├── fast-isel-load-store.ll │ │ ├── fast-isel-redefinition.ll │ │ ├── fast-isel-ret.ll │ │ ├── fast-isel-shifter.ll │ │ ├── fastisel-gep-promote-before-add.ll │ │ ├── fcpsgn.ll │ │ ├── fdiv-combine.ll │ │ ├── float-asmprint.ll │ │ ├── float-to-int.ll │ │ ├── floatPSA.ll │ │ ├── flt-preinc.ll │ │ ├── fma-aggr-FMF.ll │ │ ├── fma-assoc.ll │ │ ├── fma-ext.ll │ │ ├── fma-mutate-duplicate-vreg.ll │ │ ├── fma-mutate-register-constraint.ll │ │ ├── fma-mutate.ll │ │ ├── fma.ll │ │ ├── fmaxnum.ll │ │ ├── fminnum.ll │ │ ├── fnabs.ll │ │ ├── fneg.ll │ │ ├── fold-li.ll │ │ ├── fold-zero.ll │ │ ├── fp-branch.ll │ │ ├── fp-int-conversions-direct-moves.ll │ │ ├── fp-int-fp.ll │ │ ├── fp-splat.ll │ │ ├── fp-to-int-ext.ll │ │ ├── fp-to-int-to-fp.ll │ │ ├── fp128-bitcast-after-operation.ll │ │ ├── fp2int2fp-ppcfp128.ll │ │ ├── fp64-to-int16.ll │ │ ├── fp_to_uint.ll │ │ ├── fpcopy.ll │ │ ├── frame-size.ll │ │ ├── frameaddr.ll │ │ ├── frounds.ll │ │ ├── fsel.ll │ │ ├── fsl-e500mc.ll │ │ ├── fsl-e5500.ll │ │ ├── fsqrt.ll │ │ ├── func-addr-consts.ll │ │ ├── func-addr.ll │ │ ├── glob-comp-aa-crash.ll │ │ ├── gpr-vsr-spill.ll │ │ ├── hello-reloc.s │ │ ├── hello.ll │ │ ├── hidden-vis-2.ll │ │ ├── hidden-vis.ll │ │ ├── htm.ll │ │ ├── i1-ext-fold.ll │ │ ├── i1-to-double.ll │ │ ├── i128-and-beyond.ll │ │ ├── i32-to-float.ll │ │ ├── i64-to-float.ll │ │ ├── i64_fp.ll │ │ ├── i64_fp_round.ll │ │ ├── ia-mem-r0.ll │ │ ├── ia-neg-const.ll │ │ ├── iabs.ll │ │ ├── ifcvt-forked-bug-2016-08-08.ll │ │ ├── ifcvt.ll │ │ ├── illegal-element-type.ll │ │ ├── in-asm-f64-reg.ll │ │ ├── indexed-load.ll │ │ ├── indirect-hidden.ll │ │ ├── indirectbr.ll │ │ ├── inline-asm-s-modifier.ll │ │ ├── inline-asm-scalar-to-vector-error.ll │ │ ├── inlineasm-copy.ll │ │ ├── inlineasm-i64-reg.ll │ │ ├── int-fp-conv-0.ll │ │ ├── int-fp-conv-1.ll │ │ ├── inverted-bool-compares.ll │ │ ├── isel-rc-nox0.ll │ │ ├── isel.ll │ │ ├── ispositive.ll │ │ ├── itofp128.ll │ │ ├── jaggedstructs.ll │ │ ├── lbz-from-ld-shift.ll │ │ ├── lbzux.ll │ │ ├── ld-st-upd.ll │ │ ├── ldtoc-inv.ll │ │ ├── lha.ll │ │ ├── licm-remat.ll │ │ ├── licm-tocReg.ll │ │ ├── lit.local.cfg │ │ ├── livephysregs.mir │ │ ├── load-constant-addr.ll │ │ ├── load-shift-combine.ll │ │ ├── load-two-flts.ll │ │ ├── load-v4i8-improved.ll │ │ ├── logic-ops-on-compares.ll │ │ ├── long-compare.ll │ │ ├── longcall.ll │ │ ├── longdbl-truncate.ll │ │ ├── loop-data-prefetch-inner.ll │ │ ├── loop-data-prefetch.ll │ │ ├── loop-prep-all.ll │ │ ├── lsa.ll │ │ ├── lsr-postinc-pos.ll │ │ ├── lxv-aligned-stack-slots.ll │ │ ├── lxvw4x-bug.ll │ │ ├── machine-combiner.ll │ │ ├── mask64.ll │ │ ├── mature-mc-support.ll │ │ ├── mc-instrlat.ll │ │ ├── mcm-1.ll │ │ ├── mcm-10.ll │ │ ├── mcm-11.ll │ │ ├── mcm-12.ll │ │ ├── mcm-13.ll │ │ ├── mcm-2.ll │ │ ├── mcm-3.ll │ │ ├── mcm-4.ll │ │ ├── mcm-5.ll │ │ ├── mcm-6.ll │ │ ├── mcm-7.ll │ │ ├── mcm-8.ll │ │ ├── mcm-9.ll │ │ ├── mcm-default.ll │ │ ├── mcm-obj-2.ll │ │ ├── mcm-obj.ll │ │ ├── mcount-insertion.ll │ │ ├── mem-rr-addr-mode.ll │ │ ├── memCmpUsedInZeroEqualityComparison.ll │ │ ├── mem_update.ll │ │ ├── memcmp.ll │ │ ├── memcmpIR.ll │ │ ├── memcpy-vec.ll │ │ ├── memcpy_dereferenceable.ll │ │ ├── memset-nc-le.ll │ │ ├── memset-nc.ll │ │ ├── merge-st-chain-op.ll │ │ ├── merge_stores_dereferenceable.ll │ │ ├── mftb.ll │ │ ├── misched-inorder-latency.ll │ │ ├── misched.ll │ │ ├── mtvsrdd.ll │ │ ├── mul-neg-power-2.ll │ │ ├── mul-with-overflow.ll │ │ ├── mulhs.ll │ │ ├── mulli64.ll │ │ ├── mult-alt-generic-powerpc.ll │ │ ├── mult-alt-generic-powerpc64.ll │ │ ├── multi-return.ll │ │ ├── named-reg-alloc-r0.ll │ │ ├── named-reg-alloc-r1-64.ll │ │ ├── named-reg-alloc-r1.ll │ │ ├── named-reg-alloc-r13-64.ll │ │ ├── named-reg-alloc-r13.ll │ │ ├── named-reg-alloc-r2-64.ll │ │ ├── named-reg-alloc-r2.ll │ │ ├── neg.ll │ │ ├── negate-i1.ll │ │ ├── negctr.ll │ │ ├── no-dead-strip.ll │ │ ├── no-dup-spill-fp.ll │ │ ├── no-ext-with-count-zeros.ll │ │ ├── no-extra-fp-conv-ldst.ll │ │ ├── no-pref-jumps.ll │ │ ├── no-rlwimi-trivial-commute.mir │ │ ├── novrsave.ll │ │ ├── opt-cmp-inst-cr0-live.ll │ │ ├── opt-li-add-to-addi.ll │ │ ├── opt-sub-inst-cr0-live.mir │ │ ├── optcmp.ll │ │ ├── optnone-crbits-i1-ret.ll │ │ ├── or-addressing-mode.ll │ │ ├── ori_imm32.ll │ │ ├── p8-isel-sched.ll │ │ ├── p8-scalar_vector_conversions.ll │ │ ├── p8altivec-shuffles-pred.ll │ │ ├── p9-vector-compares-and-counts.ll │ │ ├── p9-vinsert-vextract.ll │ │ ├── p9-xxinsertw-xxextractuw.ll │ │ ├── peephole-align.ll │ │ ├── pie.ll │ │ ├── pip-inner.ll │ │ ├── popcnt.ll │ │ ├── post-ra-ec.ll │ │ ├── power9-moves-and-splats.ll │ │ ├── ppc-crbits-onoff.ll │ │ ├── ppc-ctr-dead-code.ll │ │ ├── ppc-empty-fs.ll │ │ ├── ppc-prologue.ll │ │ ├── ppc-redzone-alignment-bug.ll │ │ ├── ppc-shrink-wrapping.ll │ │ ├── ppc-vaarg-agg.ll │ │ ├── ppc32-align-long-double-sf.ll │ │ ├── ppc32-constant-BE-ppcf128.ll │ │ ├── ppc32-cyclecounter.ll │ │ ├── ppc32-i1-vaarg.ll │ │ ├── ppc32-lshrti3.ll │ │ ├── ppc32-nest.ll │ │ ├── ppc32-pic-large.ll │ │ ├── ppc32-pic.ll │ │ ├── ppc32-skip-regs.ll │ │ ├── ppc32-vacopy.ll │ │ ├── ppc440-fp-basic.ll │ │ ├── ppc440-msync.ll │ │ ├── ppc64-32bit-addic.ll │ │ ├── ppc64-P9-mod.ll │ │ ├── ppc64-P9-vabsd.ll │ │ ├── ppc64-abi-extend.ll │ │ ├── ppc64-align-long-double.ll │ │ ├── ppc64-altivec-abi.ll │ │ ├── ppc64-anyregcc-crash.ll │ │ ├── ppc64-anyregcc.ll │ │ ├── ppc64-blnop.ll │ │ ├── ppc64-byval-align.ll │ │ ├── ppc64-calls.ll │ │ ├── ppc64-crash.ll │ │ ├── ppc64-cyclecounter.ll │ │ ├── ppc64-elf-abi.ll │ │ ├── ppc64-fastcc-fast-isel.ll │ │ ├── ppc64-fastcc.ll │ │ ├── ppc64-func-desc-hoist.ll │ │ ├── ppc64-gep-opt.ll │ │ ├── ppc64-get-cache-line-size.ll │ │ ├── ppc64-i128-abi.ll │ │ ├── ppc64-icbt-pwr7.ll │ │ ├── ppc64-icbt-pwr8.ll │ │ ├── ppc64-linux-func-size.ll │ │ ├── ppc64-nest.ll │ │ ├── ppc64-nonfunc-calls.ll │ │ ├── ppc64-patchpoint.ll │ │ ├── ppc64-pre-inc-no-extra-phi.ll │ │ ├── ppc64-prefetch.ll │ │ ├── ppc64-r2-alloc.ll │ │ ├── ppc64-sibcall-shrinkwrap.ll │ │ ├── ppc64-sibcall.ll │ │ ├── ppc64-smallarg.ll │ │ ├── ppc64-stackmap-nops.ll │ │ ├── ppc64-stackmap.ll │ │ ├── ppc64-toc.ll │ │ ├── ppc64-vaarg-int.ll │ │ ├── ppc64-zext.ll │ │ ├── ppc64le-aggregates.ll │ │ ├── ppc64le-calls.ll │ │ ├── ppc64le-crsave.ll │ │ ├── ppc64le-localentry-large.ll │ │ ├── ppc64le-localentry.ll │ │ ├── ppc64le-smallarg.ll │ │ ├── ppcf128-1-opt.ll │ │ ├── ppcf128-1.ll │ │ ├── ppcf128-2.ll │ │ ├── ppcf128-3.ll │ │ ├── ppcf128-4.ll │ │ ├── ppcf128-endian.ll │ │ ├── ppcf128sf.ll │ │ ├── ppcsoftops.ll │ │ ├── pr12757.ll │ │ ├── pr13641.ll │ │ ├── pr13891.ll │ │ ├── pr15031.ll │ │ ├── pr15359.ll │ │ ├── pr15630.ll │ │ ├── pr15632.ll │ │ ├── pr16556-2.ll │ │ ├── pr16556.ll │ │ ├── pr16573.ll │ │ ├── pr17168.ll │ │ ├── pr17354.ll │ │ ├── pr18663-2.ll │ │ ├── pr18663.ll │ │ ├── pr20442.ll │ │ ├── pr22711.ll │ │ ├── pr24216.ll │ │ ├── pr24546.ll │ │ ├── pr24636.ll │ │ ├── pr25157-peephole.ll │ │ ├── pr25157.ll │ │ ├── pr26180.ll │ │ ├── pr26193.ll │ │ ├── pr26356.ll │ │ ├── pr26378.ll │ │ ├── pr26381.ll │ │ ├── pr26617.ll │ │ ├── pr26690.ll │ │ ├── pr27078.ll │ │ ├── pr27350.ll │ │ ├── pr28130.ll │ │ ├── pr28630.ll │ │ ├── pr30451.ll │ │ ├── pr30640.ll │ │ ├── pr30663.ll │ │ ├── pr30715.ll │ │ ├── pr31144.ll │ │ ├── pr32063.ll │ │ ├── pr32140.ll │ │ ├── pr33093.ll │ │ ├── pr35688.ll │ │ ├── pr36292.ll │ │ ├── pr3711_widen_bit.ll │ │ ├── preemption.ll │ │ ├── preinc-ld-sel-crash.ll │ │ ├── preincprep-invoke.ll │ │ ├── preincprep-nontrans-crash.ll │ │ ├── private.ll │ │ ├── pwr3-6x.ll │ │ ├── pwr7-gt-nop.ll │ │ ├── pzero-fp-xored.ll │ │ ├── qpx-bv-sint.ll │ │ ├── qpx-bv.ll │ │ ├── qpx-func-clobber.ll │ │ ├── qpx-load-splat.ll │ │ ├── qpx-load.ll │ │ ├── qpx-recipest.ll │ │ ├── qpx-rounding-ops.ll │ │ ├── qpx-s-load.ll │ │ ├── qpx-s-sel.ll │ │ ├── qpx-s-store.ll │ │ ├── qpx-sel.ll │ │ ├── qpx-split-vsetcc.ll │ │ ├── qpx-store.ll │ │ ├── qpx-unal-cons-lds.ll │ │ ├── qpx-unalperm.ll │ │ ├── quadint-return.ll │ │ ├── r31.ll │ │ ├── recipest.ll │ │ ├── reg-coalesce-simple.ll │ │ ├── reg-names.ll │ │ ├── reloc-align.ll │ │ ├── remap-crash.ll │ │ ├── remat-imm.ll │ │ ├── remove-redundant-moves.ll │ │ ├── remove-redundant-toc-saves.ll │ │ ├── resolvefi-basereg.ll │ │ ├── resolvefi-disp.ll │ │ ├── restore-r30.ll │ │ ├── retaddr.ll │ │ ├── retaddr2.ll │ │ ├── return-val-i128.ll │ │ ├── rlwimi-and-or-bits.ll │ │ ├── rlwimi-and.ll │ │ ├── rlwimi-commute.ll │ │ ├── rlwimi-dyn-and.ll │ │ ├── rlwimi-keep-rsh.ll │ │ ├── rlwimi.ll │ │ ├── rlwimi2.ll │ │ ├── rlwimi3.ll │ │ ├── rlwinm-zero-ext.ll │ │ ├── rlwinm.ll │ │ ├── rlwinm2.ll │ │ ├── rm-zext.ll │ │ ├── rotl-2.ll │ │ ├── rotl-64.ll │ │ ├── rotl-rotr-crash.ll │ │ ├── rotl.ll │ │ ├── rounding-ops.ll │ │ ├── rs-undef-use.ll │ │ ├── s000-alias-misched.ll │ │ ├── save-bp.ll │ │ ├── save-cr-ppc32svr4.ll │ │ ├── save-crbp-ppc32svr4.ll │ │ ├── scavenging.mir │ │ ├── sdag-ppcf128.ll │ │ ├── sdiv-pow2.ll │ │ ├── sections.ll │ │ ├── select-addrRegRegOnly.ll │ │ ├── select-cc.ll │ │ ├── select-i1-vs-i1.ll │ │ ├── select_const.ll │ │ ├── select_lt0.ll │ │ ├── selectiondag-extload-computeknownbits.ll │ │ ├── selectiondag-sextload.ll │ │ ├── set0-v8i16.ll │ │ ├── setcc-logic.ll │ │ ├── setcc-to-sub.ll │ │ ├── setcc_no_zext.ll │ │ ├── setcclike-or-comb.ll │ │ ├── seteq-0.ll │ │ ├── shift-cmp.ll │ │ ├── shift128.ll │ │ ├── shift_mask.ll │ │ ├── shl_elim.ll │ │ ├── shl_sext.ll │ │ ├── sign_ext_inreg1.ll │ │ ├── simplifyConstCmpToISEL.ll │ │ ├── sj-ctr-loop.ll │ │ ├── sjlj.ll │ │ ├── sjlj_no0x.ll │ │ ├── small-arguments.ll │ │ ├── spill-nor0.ll │ │ ├── splat-bug.ll │ │ ├── splat-larger-types-as-v16i8.ll │ │ ├── split-index-tc.ll │ │ ├── srl-mask.ll │ │ ├── stack-no-redzone.ll │ │ ├── stack-protector.ll │ │ ├── stack-realign.ll │ │ ├── stackmap-frame-setup.ll │ │ ├── stacksize.ll │ │ ├── std-unal-fi.ll │ │ ├── stdux-constuse.ll │ │ ├── stfiwx-2.ll │ │ ├── stfiwx.ll │ │ ├── store-constant.ll │ │ ├── store-load-fwd.ll │ │ ├── store-update.ll │ │ ├── structsinmem.ll │ │ ├── structsinregs.ll │ │ ├── stubs.ll │ │ ├── stwu-gta.ll │ │ ├── stwu8.ll │ │ ├── stwux.ll │ │ ├── sub-bv-types.ll │ │ ├── subc.ll │ │ ├── subreg-postra-2.ll │ │ ├── subreg-postra.ll │ │ ├── subtract_from_imm.ll │ │ ├── svr4-redzone.ll │ │ ├── swaps-le-1.ll │ │ ├── swaps-le-2.ll │ │ ├── swaps-le-3.ll │ │ ├── swaps-le-4.ll │ │ ├── swaps-le-5.ll │ │ ├── swaps-le-6.ll │ │ ├── swaps-le-7.ll │ │ ├── tail-dup-analyzable-fallthrough.ll │ │ ├── tail-dup-branch-to-fallthrough.ll │ │ ├── tail-dup-break-cfg.ll │ │ ├── tail-dup-layout.ll │ │ ├── tailcall-string-rvo.ll │ │ ├── tailcall1-64.ll │ │ ├── tailcall1.ll │ │ ├── tailcallpic1.ll │ │ ├── testBitReverse.ll │ │ ├── testComparesi32gtu.ll │ │ ├── testComparesi32leu.ll │ │ ├── testComparesi32ltu.ll │ │ ├── testComparesieqsc.ll │ │ ├── testComparesieqsi.ll │ │ ├── testComparesieqsll.ll │ │ ├── testComparesieqss.ll │ │ ├── testComparesiequc.ll │ │ ├── testComparesiequi.ll │ │ ├── testComparesiequll.ll │ │ ├── testComparesiequs.ll │ │ ├── testComparesigesc.ll │ │ ├── testComparesigesi.ll │ │ ├── testComparesigesll.ll │ │ ├── testComparesigess.ll │ │ ├── testComparesigeuc.ll │ │ ├── testComparesigeui.ll │ │ ├── testComparesigeull.ll │ │ ├── testComparesigeus.ll │ │ ├── testComparesigtsc.ll │ │ ├── testComparesigtsi.ll │ │ ├── testComparesigtsll.ll │ │ ├── testComparesigtss.ll │ │ ├── testComparesigtuc.ll │ │ ├── testComparesigtui.ll │ │ ├── testComparesigtus.ll │ │ ├── testComparesilesc.ll │ │ ├── testComparesilesi.ll │ │ ├── testComparesilesll.ll │ │ ├── testComparesiless.ll │ │ ├── testComparesileuc.ll │ │ ├── testComparesileui.ll │ │ ├── testComparesileull.ll │ │ ├── testComparesileus.ll │ │ ├── testComparesiltsc.ll │ │ ├── testComparesiltsi.ll │ │ ├── testComparesiltsll.ll │ │ ├── testComparesiltss.ll │ │ ├── testComparesiltuc.ll │ │ ├── testComparesiltui.ll │ │ ├── testComparesiltus.ll │ │ ├── testComparesinesc.ll │ │ ├── testComparesinesi.ll │ │ ├── testComparesinesll.ll │ │ ├── testComparesiness.ll │ │ ├── testComparesineuc.ll │ │ ├── testComparesineui.ll │ │ ├── testComparesineull.ll │ │ ├── testComparesineus.ll │ │ ├── testCompareslleqsc.ll │ │ ├── testCompareslleqsi.ll │ │ ├── testCompareslleqsll.ll │ │ ├── testCompareslleqss.ll │ │ ├── testComparesllequc.ll │ │ ├── testComparesllequi.ll │ │ ├── testComparesllequll.ll │ │ ├── testComparesllequs.ll │ │ ├── testComparesllgesc.ll │ │ ├── testComparesllgesi.ll │ │ ├── testComparesllgesll.ll │ │ ├── testComparesllgess.ll │ │ ├── testComparesllgeuc.ll │ │ ├── testComparesllgeui.ll │ │ ├── testComparesllgeull.ll │ │ ├── testComparesllgeus.ll │ │ ├── testComparesllgtsll.ll │ │ ├── testComparesllgtuc.ll │ │ ├── testComparesllgtui.ll │ │ ├── testComparesllgtus.ll │ │ ├── testCompareslllesc.ll │ │ ├── testCompareslllesi.ll │ │ ├── testCompareslllesll.ll │ │ ├── testComparesllless.ll │ │ ├── testComparesllleuc.ll │ │ ├── testComparesllleui.ll │ │ ├── testComparesllleull.ll │ │ ├── testComparesllleus.ll │ │ ├── testComparesllltsll.ll │ │ ├── testComparesllltuc.ll │ │ ├── testComparesllltui.ll │ │ ├── testComparesllltus.ll │ │ ├── testComparesllnesll.ll │ │ ├── testComparesllneull.ll │ │ ├── thread-pointer.ll │ │ ├── tls-cse.ll │ │ ├── tls-pic.ll │ │ ├── tls-store2.ll │ │ ├── tls.ll │ │ ├── tls_get_addr_clobbers.ll │ │ ├── tls_get_addr_fence1.mir │ │ ├── tls_get_addr_fence2.mir │ │ ├── tls_get_addr_stackframe.ll │ │ ├── toc-load-sched-bug.ll │ │ ├── trampoline.ll │ │ ├── uint-to-ppcfp128-crash.ll │ │ ├── unal-altivec-wint.ll │ │ ├── unal-altivec.ll │ │ ├── unal-altivec2.ll │ │ ├── unal-vec-ldst.ll │ │ ├── unal-vec-negarith.ll │ │ ├── unal4-std.ll │ │ ├── unaligned.ll │ │ ├── unsafe-math.ll │ │ ├── unwind-dw2-g.ll │ │ ├── unwind-dw2.ll │ │ ├── vaddsplat.ll │ │ ├── varargs-struct-float.ll │ │ ├── varargs.ll │ │ ├── variable_elem_vec_extracts.ll │ │ ├── vcmp-fold.ll │ │ ├── vec-abi-align.ll │ │ ├── vec-asm-disabled.ll │ │ ├── vec_abs.ll │ │ ├── vec_absd.ll │ │ ├── vec_add_sub_doubleword.ll │ │ ├── vec_add_sub_quadword.ll │ │ ├── vec_auto_constant.ll │ │ ├── vec_br_cmp.ll │ │ ├── vec_buildvector_loadstore.ll │ │ ├── vec_call.ll │ │ ├── vec_clz.ll │ │ ├── vec_cmp.ll │ │ ├── vec_cmpd.ll │ │ ├── vec_constants.ll │ │ ├── vec_conv.ll │ │ ├── vec_extload.ll │ │ ├── vec_extract_p9.ll │ │ ├── vec_extract_p9_2.ll │ │ ├── vec_fmuladd.ll │ │ ├── vec_fneg.ll │ │ ├── vec_insert.ll │ │ ├── vec_int_ext.ll │ │ ├── vec_mergeow.ll │ │ ├── vec_minmax.ll │ │ ├── vec_misaligned.ll │ │ ├── vec_mul.ll │ │ ├── vec_mul_even_odd.ll │ │ ├── vec_perf_shuffle.ll │ │ ├── vec_popcnt.ll │ │ ├── vec_revb.ll │ │ ├── vec_rotate_shift.ll │ │ ├── vec_rounding.ll │ │ ├── vec_select.ll │ │ ├── vec_shift.ll │ │ ├── vec_shuffle.ll │ │ ├── vec_shuffle_le.ll │ │ ├── vec_shuffle_p8vector.ll │ │ ├── vec_shuffle_p8vector_le.ll │ │ ├── vec_sldwi.ll │ │ ├── vec_splat.ll │ │ ├── vec_splat_constant.ll │ │ ├── vec_sqrt.ll │ │ ├── vec_urem_const.ll │ │ ├── vec_veqv_vnand_vorc.ll │ │ ├── vec_vrsave.ll │ │ ├── vec_xxpermdi.ll │ │ ├── vec_zero.ll │ │ ├── vector-identity-shuffle.ll │ │ ├── vector-merge-store-fp-constants.ll │ │ ├── vector.ll │ │ ├── vperm-instcombine.ll │ │ ├── vperm-lowering.ll │ │ ├── vrsave-spill.ll │ │ ├── vrspill.ll │ │ ├── vsel-prom.ll │ │ ├── vselect-constants.ll │ │ ├── vsx-args.ll │ │ ├── vsx-div.ll │ │ ├── vsx-elementary-arith.ll │ │ ├── vsx-fma-m.ll │ │ ├── vsx-fma-mutate-trivial-copy.ll │ │ ├── vsx-fma-mutate-undef.ll │ │ ├── vsx-fma-sp.ll │ │ ├── vsx-infl-copy1.ll │ │ ├── vsx-infl-copy2.ll │ │ ├── vsx-ldst-builtin-le.ll │ │ ├── vsx-ldst.ll │ │ ├── vsx-minmax.ll │ │ ├── vsx-p8.ll │ │ ├── vsx-p9.ll │ │ ├── vsx-partword-int-loads-and-stores.ll │ │ ├── vsx-recip-est.ll │ │ ├── vsx-self-copy.ll │ │ ├── vsx-spill-norwstore.ll │ │ ├── vsx-spill.ll │ │ ├── vsx-vec-spill.ll │ │ ├── vsx-word-splats.ll │ │ ├── vsx.ll │ │ ├── vsxD-Form-spills.ll │ │ ├── vsx_insert_extract_le.ll │ │ ├── vsx_scalar_ld_st.ll │ │ ├── vsx_shuffle_le.ll │ │ ├── vtable-reloc.ll │ │ ├── weak_def_can_be_hidden.ll │ │ ├── xray-attribute-instrumentation.ll │ │ ├── xray-conditional-return.ll │ │ ├── xray-ret-is-terminator.ll │ │ ├── xray-tail-call-hidden.ll │ │ ├── xray-tail-call-sled.ll │ │ ├── xvcmpeqdp-v2f64.ll │ │ ├── xxleqv_xxlnand_xxlorc.ll │ │ ├── zero-not-run.ll │ │ ├── zext-and-cmp.ll │ │ ├── zext-bitperm.ll │ │ └── zext-free.ll │ ├── RISCV │ │ ├── addc-adde-sube-subc.ll │ │ ├── alloca.ll │ │ ├── alu32.ll │ │ ├── bare-select.ll │ │ ├── blockaddress.ll │ │ ├── branch.ll │ │ ├── bswap-ctlz-cttz-ctpop.ll │ │ ├── byval.ll │ │ ├── calling-conv-sext-zext.ll │ │ ├── calling-conv.ll │ │ ├── calls.ll │ │ ├── div.ll │ │ ├── fp128.ll │ │ ├── frame.ll │ │ ├── i32-icmp.ll │ │ ├── imm.ll │ │ ├── indirectbr.ll │ │ ├── jumptable.ll │ │ ├── lit.local.cfg │ │ ├── mem.ll │ │ ├── mul.ll │ │ ├── rem.ll │ │ ├── rotl-rotr.ll │ │ ├── select-cc.ll │ │ ├── sext-zext-trunc.ll │ │ ├── shifts.ll │ │ └── wide-mem.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 │ │ ├── 2011-01-11-CC.ll │ │ ├── 2011-01-11-Call.ll │ │ ├── 2011-01-11-FrameAddr.ll │ │ ├── 2011-01-19-DelaySlot.ll │ │ ├── 2011-01-21-ByValArgs.ll │ │ ├── 2011-01-22-SRet.ll │ │ ├── 2011-12-03-TailDuplication.ll │ │ ├── 2012-05-01-LowerArguments.ll │ │ ├── 2013-05-17-CallFrame.ll │ │ ├── 32abi.ll │ │ ├── 64abi.ll │ │ ├── 64bit.ll │ │ ├── 64cond.ll │ │ ├── 64spill.ll │ │ ├── DbgValueOtherTargets.test │ │ ├── LeonCASAInstructionUT.ll │ │ ├── LeonDetectRoundChangePassUT.ll │ │ ├── LeonFixAllFDIVSQRTPassUT.ll │ │ ├── LeonInsertNOPLoadPassUT.ll │ │ ├── LeonItinerariesUT.ll │ │ ├── LeonReplaceSDIVPassUT.ll │ │ ├── LeonSMACUMACInstructionUT.ll │ │ ├── analyze-branch.ll │ │ ├── atomics.ll │ │ ├── basictest.ll │ │ ├── blockaddr.ll │ │ ├── constpool.ll │ │ ├── constructor.ll │ │ ├── ctpop.ll │ │ ├── disable-fsmuld-fmuls.ll │ │ ├── empty-functions.ll │ │ ├── exception.ll │ │ ├── fail-alloca-align.ll │ │ ├── float-constants.ll │ │ ├── float.ll │ │ ├── fp128.ll │ │ ├── func-addr.ll │ │ ├── globals.ll │ │ ├── inlineasm-v9.ll │ │ ├── inlineasm.ll │ │ ├── leafproc.ll │ │ ├── lit.local.cfg │ │ ├── mature-mc-support.ll │ │ ├── missing-sret.ll │ │ ├── missinglabel.ll │ │ ├── mult-alt-generic-sparc.ll │ │ ├── multiple-div.ll │ │ ├── obj-relocs.ll │ │ ├── parts.ll │ │ ├── private.ll │ │ ├── register-clobber.ll │ │ ├── rem.ll │ │ ├── reserved-regs.ll │ │ ├── select-mask.ll │ │ ├── setjmp.ll │ │ ├── sjlj.ll │ │ ├── soft-float.ll │ │ ├── soft-mul-div.ll │ │ ├── spill.ll │ │ ├── spillsize.ll │ │ ├── sret-secondary.ll │ │ ├── stack-align.ll │ │ ├── stack-protector.ll │ │ ├── thread-pointer.ll │ │ ├── tls.ll │ │ ├── trap.ll │ │ ├── varargs.ll │ │ ├── vector-call.ll │ │ ├── vector-extract-elt.ll │ │ └── zerostructcall.ll │ ├── SystemZ │ │ ├── DAGCombine_trunc_extract.ll │ │ ├── DAGCombiner_illegal_BUILD_VECTOR.ll │ │ ├── DAGCombiner_isAlias.ll │ │ ├── Large │ │ │ ├── branch-range-01.py │ │ │ ├── branch-range-02.py │ │ │ ├── branch-range-03.py │ │ │ ├── branch-range-04.py │ │ │ ├── branch-range-05.py │ │ │ ├── branch-range-06.py │ │ │ ├── branch-range-07.py │ │ │ ├── branch-range-08.py │ │ │ ├── branch-range-09.py │ │ │ ├── branch-range-10.py │ │ │ ├── branch-range-11.py │ │ │ ├── branch-range-12.py │ │ │ ├── lit.local.cfg │ │ │ ├── spill-01.py │ │ │ └── spill-02.py │ │ ├── RAbasic-invalid-LR-update.mir │ │ ├── addr-01.ll │ │ ├── addr-02.ll │ │ ├── addr-03.ll │ │ ├── alias-01.ll │ │ ├── alloca-01.ll │ │ ├── alloca-02.ll │ │ ├── alloca-03.ll │ │ ├── alloca-04.ll │ │ ├── and-01.ll │ │ ├── and-02.ll │ │ ├── and-03.ll │ │ ├── and-04.ll │ │ ├── and-05.ll │ │ ├── and-06.ll │ │ ├── and-07.ll │ │ ├── and-08.ll │ │ ├── and-xor-01.ll │ │ ├── args-01.ll │ │ ├── args-02.ll │ │ ├── args-03.ll │ │ ├── args-04.ll │ │ ├── args-05.ll │ │ ├── args-06.ll │ │ ├── args-07.ll │ │ ├── args-08.ll │ │ ├── args-09.ll │ │ ├── args-10.ll │ │ ├── asm-01.ll │ │ ├── asm-02.ll │ │ ├── asm-03.ll │ │ ├── asm-04.ll │ │ ├── asm-05.ll │ │ ├── asm-06.ll │ │ ├── asm-07.ll │ │ ├── asm-08.ll │ │ ├── asm-09.ll │ │ ├── asm-10.ll │ │ ├── asm-11.ll │ │ ├── asm-12.ll │ │ ├── asm-13.ll │ │ ├── asm-14.ll │ │ ├── asm-15.ll │ │ ├── asm-16.ll │ │ ├── asm-17.ll │ │ ├── asm-18.ll │ │ ├── atomic-fence-01.ll │ │ ├── atomic-fence-02.ll │ │ ├── atomic-load-01.ll │ │ ├── atomic-load-02.ll │ │ ├── atomic-load-03.ll │ │ ├── atomic-load-04.ll │ │ ├── atomic-load-05.ll │ │ ├── atomic-store-01.ll │ │ ├── atomic-store-02.ll │ │ ├── atomic-store-03.ll │ │ ├── atomic-store-04.ll │ │ ├── atomic-store-05.ll │ │ ├── atomicrmw-add-01.ll │ │ ├── atomicrmw-add-02.ll │ │ ├── atomicrmw-add-03.ll │ │ ├── atomicrmw-add-04.ll │ │ ├── atomicrmw-add-05.ll │ │ ├── atomicrmw-add-06.ll │ │ ├── atomicrmw-and-01.ll │ │ ├── atomicrmw-and-02.ll │ │ ├── atomicrmw-and-03.ll │ │ ├── atomicrmw-and-04.ll │ │ ├── atomicrmw-and-05.ll │ │ ├── atomicrmw-and-06.ll │ │ ├── atomicrmw-minmax-01.ll │ │ ├── atomicrmw-minmax-02.ll │ │ ├── atomicrmw-minmax-03.ll │ │ ├── atomicrmw-minmax-04.ll │ │ ├── atomicrmw-nand-01.ll │ │ ├── atomicrmw-nand-02.ll │ │ ├── atomicrmw-nand-03.ll │ │ ├── atomicrmw-nand-04.ll │ │ ├── atomicrmw-or-01.ll │ │ ├── atomicrmw-or-02.ll │ │ ├── atomicrmw-or-03.ll │ │ ├── atomicrmw-or-04.ll │ │ ├── atomicrmw-or-05.ll │ │ ├── atomicrmw-or-06.ll │ │ ├── atomicrmw-sub-01.ll │ │ ├── atomicrmw-sub-02.ll │ │ ├── atomicrmw-sub-03.ll │ │ ├── atomicrmw-sub-04.ll │ │ ├── atomicrmw-sub-05.ll │ │ ├── atomicrmw-sub-06.ll │ │ ├── atomicrmw-xchg-01.ll │ │ ├── atomicrmw-xchg-02.ll │ │ ├── atomicrmw-xchg-03.ll │ │ ├── atomicrmw-xchg-04.ll │ │ ├── atomicrmw-xor-01.ll │ │ ├── atomicrmw-xor-02.ll │ │ ├── atomicrmw-xor-03.ll │ │ ├── atomicrmw-xor-04.ll │ │ ├── atomicrmw-xor-05.ll │ │ ├── atomicrmw-xor-06.ll │ │ ├── backchain.ll │ │ ├── branch-01.ll │ │ ├── branch-02.ll │ │ ├── branch-03.ll │ │ ├── branch-04.ll │ │ ├── branch-05.ll │ │ ├── branch-06.ll │ │ ├── branch-07.ll │ │ ├── branch-08.ll │ │ ├── branch-09.ll │ │ ├── branch-10.ll │ │ ├── branch-11.ll │ │ ├── bswap-01.ll │ │ ├── bswap-02.ll │ │ ├── bswap-03.ll │ │ ├── bswap-04.ll │ │ ├── bswap-05.ll │ │ ├── bswap-06.ll │ │ ├── bswap-07.ll │ │ ├── bswap-08.ll │ │ ├── builtins.ll │ │ ├── call-01.ll │ │ ├── call-02.ll │ │ ├── call-03.ll │ │ ├── call-04.ll │ │ ├── call-05.ll │ │ ├── clear-liverange-spillreg.mir │ │ ├── cmpxchg-01.ll │ │ ├── cmpxchg-02.ll │ │ ├── cmpxchg-03.ll │ │ ├── cmpxchg-04.ll │ │ ├── cmpxchg-05.ll │ │ ├── cmpxchg-06.ll │ │ ├── cond-load-01.ll │ │ ├── cond-load-02.ll │ │ ├── cond-load-03.ll │ │ ├── cond-move-01.ll │ │ ├── cond-move-02.ll │ │ ├── cond-move-03.ll │ │ ├── cond-move-04.mir │ │ ├── cond-move-05.mir │ │ ├── cond-store-01.ll │ │ ├── cond-store-02.ll │ │ ├── cond-store-03.ll │ │ ├── cond-store-04.ll │ │ ├── cond-store-05.ll │ │ ├── cond-store-06.ll │ │ ├── cond-store-07.ll │ │ ├── cond-store-08.ll │ │ ├── cond-store-09.ll │ │ ├── copy-physreg-128.ll │ │ ├── ctpop-01.ll │ │ ├── dag-combine-01.ll │ │ ├── dag-combine-02.ll │ │ ├── dyn-alloca-offset.ll │ │ ├── expand-zext-pseudo.ll │ │ ├── extract-vector-elt-zEC12.ll │ │ ├── fold-memory-op-impl.ll │ │ ├── fp-abs-01.ll │ │ ├── fp-abs-02.ll │ │ ├── fp-abs-03.ll │ │ ├── fp-abs-04.ll │ │ ├── fp-add-01.ll │ │ ├── fp-add-02.ll │ │ ├── fp-add-03.ll │ │ ├── fp-add-04.ll │ │ ├── fp-cmp-01.ll │ │ ├── fp-cmp-02.ll │ │ ├── fp-cmp-03.ll │ │ ├── fp-cmp-04.ll │ │ ├── fp-cmp-05.ll │ │ ├── fp-cmp-06.ll │ │ ├── fp-cmp-07.mir │ │ ├── fp-const-01.ll │ │ ├── fp-const-02.ll │ │ ├── fp-const-03.ll │ │ ├── fp-const-04.ll │ │ ├── fp-const-05.ll │ │ ├── fp-const-06.ll │ │ ├── fp-const-07.ll │ │ ├── fp-const-08.ll │ │ ├── fp-const-09.ll │ │ ├── fp-const-10.ll │ │ ├── fp-const-11.ll │ │ ├── fp-conv-01.ll │ │ ├── fp-conv-02.ll │ │ ├── fp-conv-03.ll │ │ ├── fp-conv-04.ll │ │ ├── fp-conv-05.ll │ │ ├── fp-conv-06.ll │ │ ├── fp-conv-07.ll │ │ ├── fp-conv-08.ll │ │ ├── fp-conv-09.ll │ │ ├── fp-conv-10.ll │ │ ├── fp-conv-11.ll │ │ ├── fp-conv-12.ll │ │ ├── fp-conv-13.ll │ │ ├── fp-conv-14.ll │ │ ├── fp-conv-15.ll │ │ ├── fp-conv-16.ll │ │ ├── fp-conv-17.mir │ │ ├── fp-copysign-01.ll │ │ ├── fp-copysign-02.ll │ │ ├── fp-div-01.ll │ │ ├── fp-div-02.ll │ │ ├── fp-div-03.ll │ │ ├── fp-div-04.ll │ │ ├── fp-libcall.ll │ │ ├── fp-move-01.ll │ │ ├── fp-move-02.ll │ │ ├── fp-move-03.ll │ │ ├── fp-move-04.ll │ │ ├── fp-move-05.ll │ │ ├── fp-move-06.ll │ │ ├── fp-move-07.ll │ │ ├── fp-move-08.ll │ │ ├── fp-move-09.ll │ │ ├── fp-move-10.ll │ │ ├── fp-move-11.ll │ │ ├── fp-move-12.ll │ │ ├── fp-move-13.ll │ │ ├── fp-mul-01.ll │ │ ├── fp-mul-02.ll │ │ ├── fp-mul-03.ll │ │ ├── fp-mul-04.ll │ │ ├── fp-mul-05.ll │ │ ├── fp-mul-06.ll │ │ ├── fp-mul-07.ll │ │ ├── fp-mul-08.ll │ │ ├── fp-mul-09.ll │ │ ├── fp-mul-10.ll │ │ ├── fp-mul-11.ll │ │ ├── fp-mul-12.ll │ │ ├── fp-neg-01.ll │ │ ├── fp-neg-02.ll │ │ ├── fp-round-01.ll │ │ ├── fp-round-02.ll │ │ ├── fp-round-03.ll │ │ ├── fp-sincos-01.ll │ │ ├── fp-sqrt-01.ll │ │ ├── fp-sqrt-02.ll │ │ ├── fp-sqrt-03.ll │ │ ├── fp-sqrt-04.ll │ │ ├── fp-sub-01.ll │ │ ├── fp-sub-02.ll │ │ ├── fp-sub-03.ll │ │ ├── fp-sub-04.ll │ │ ├── fpc-intrinsics.ll │ │ ├── frame-01.ll │ │ ├── frame-02.ll │ │ ├── frame-03.ll │ │ ├── frame-04.ll │ │ ├── frame-05.ll │ │ ├── frame-06.ll │ │ ├── frame-07.ll │ │ ├── frame-08.ll │ │ ├── frame-09.ll │ │ ├── frame-10.ll │ │ ├── frame-11.ll │ │ ├── frame-13.ll │ │ ├── frame-14.ll │ │ ├── frame-15.ll │ │ ├── frame-16.ll │ │ ├── frame-17.ll │ │ ├── frame-18.ll │ │ ├── frame-19.ll │ │ ├── frame-20.ll │ │ ├── frame-21.ll │ │ ├── frameaddr-01.ll │ │ ├── htm-intrinsics.ll │ │ ├── insert-01.ll │ │ ├── insert-02.ll │ │ ├── insert-03.ll │ │ ├── insert-04.ll │ │ ├── insert-05.ll │ │ ├── insert-06.ll │ │ ├── int-abs-01.ll │ │ ├── int-add-01.ll │ │ ├── int-add-02.ll │ │ ├── int-add-03.ll │ │ ├── int-add-04.ll │ │ ├── int-add-05.ll │ │ ├── int-add-06.ll │ │ ├── int-add-07.ll │ │ ├── int-add-08.ll │ │ ├── int-add-09.ll │ │ ├── int-add-10.ll │ │ ├── int-add-11.ll │ │ ├── int-add-12.ll │ │ ├── int-add-13.ll │ │ ├── int-add-14.ll │ │ ├── int-add-15.ll │ │ ├── int-add-16.ll │ │ ├── int-add-17.ll │ │ ├── int-cmp-01.ll │ │ ├── int-cmp-02.ll │ │ ├── int-cmp-03.ll │ │ ├── int-cmp-04.ll │ │ ├── int-cmp-05.ll │ │ ├── int-cmp-06.ll │ │ ├── int-cmp-07.ll │ │ ├── int-cmp-08.ll │ │ ├── int-cmp-09.ll │ │ ├── int-cmp-10.ll │ │ ├── int-cmp-11.ll │ │ ├── int-cmp-12.ll │ │ ├── int-cmp-13.ll │ │ ├── int-cmp-14.ll │ │ ├── int-cmp-15.ll │ │ ├── int-cmp-16.ll │ │ ├── int-cmp-17.ll │ │ ├── int-cmp-18.ll │ │ ├── int-cmp-19.ll │ │ ├── int-cmp-20.ll │ │ ├── int-cmp-21.ll │ │ ├── int-cmp-22.ll │ │ ├── int-cmp-23.ll │ │ ├── int-cmp-24.ll │ │ ├── int-cmp-25.ll │ │ ├── int-cmp-26.ll │ │ ├── int-cmp-27.ll │ │ ├── int-cmp-28.ll │ │ ├── int-cmp-29.ll │ │ ├── int-cmp-30.ll │ │ ├── int-cmp-31.ll │ │ ├── int-cmp-32.ll │ │ ├── int-cmp-33.ll │ │ ├── int-cmp-34.ll │ │ ├── int-cmp-35.ll │ │ ├── int-cmp-36.ll │ │ ├── int-cmp-37.ll │ │ ├── int-cmp-38.ll │ │ ├── int-cmp-39.ll │ │ ├── int-cmp-40.ll │ │ ├── int-cmp-41.ll │ │ ├── int-cmp-42.ll │ │ ├── int-cmp-43.ll │ │ ├── int-cmp-44.ll │ │ ├── int-cmp-45.ll │ │ ├── int-cmp-46.ll │ │ ├── int-cmp-47.ll │ │ ├── int-cmp-48.ll │ │ ├── int-cmp-49.ll │ │ ├── int-cmp-50.ll │ │ ├── int-cmp-51.ll │ │ ├── int-cmp-52.ll │ │ ├── int-cmp-53.ll │ │ ├── int-cmp-54.ll │ │ ├── int-const-01.ll │ │ ├── int-const-02.ll │ │ ├── int-const-03.ll │ │ ├── int-const-04.ll │ │ ├── int-const-05.ll │ │ ├── int-const-06.ll │ │ ├── int-conv-01.ll │ │ ├── int-conv-02.ll │ │ ├── int-conv-03.ll │ │ ├── int-conv-04.ll │ │ ├── int-conv-05.ll │ │ ├── int-conv-06.ll │ │ ├── int-conv-07.ll │ │ ├── int-conv-08.ll │ │ ├── int-conv-09.ll │ │ ├── int-conv-10.ll │ │ ├── int-conv-11.ll │ │ ├── int-conv-12.ll │ │ ├── int-conv-13.ll │ │ ├── int-div-01.ll │ │ ├── int-div-02.ll │ │ ├── int-div-03.ll │ │ ├── int-div-04.ll │ │ ├── int-div-05.ll │ │ ├── int-div-06.ll │ │ ├── int-move-01.ll │ │ ├── int-move-02.ll │ │ ├── int-move-03.ll │ │ ├── int-move-04.ll │ │ ├── int-move-05.ll │ │ ├── int-move-06.ll │ │ ├── int-move-07.ll │ │ ├── int-move-08.ll │ │ ├── int-move-09.ll │ │ ├── int-mul-01.ll │ │ ├── int-mul-02.ll │ │ ├── int-mul-03.ll │ │ ├── int-mul-04.ll │ │ ├── int-mul-05.ll │ │ ├── int-mul-06.ll │ │ ├── int-mul-07.ll │ │ ├── int-mul-08.ll │ │ ├── int-mul-09.ll │ │ ├── int-mul-10.ll │ │ ├── int-mul-11.ll │ │ ├── int-neg-01.ll │ │ ├── int-neg-02.ll │ │ ├── int-sub-01.ll │ │ ├── int-sub-02.ll │ │ ├── int-sub-03.ll │ │ ├── int-sub-04.ll │ │ ├── int-sub-05.ll │ │ ├── int-sub-06.ll │ │ ├── int-sub-07.ll │ │ ├── int-sub-08.ll │ │ ├── int-sub-09.ll │ │ ├── int-sub-10.ll │ │ ├── la-01.ll │ │ ├── la-02.ll │ │ ├── la-03.ll │ │ ├── la-04.ll │ │ ├── list-ilp-crash.ll │ │ ├── lit.local.cfg │ │ ├── locr-legal-regclass.ll │ │ ├── loop-01.ll │ │ ├── loop-02.ll │ │ ├── loop-03.ll │ │ ├── lower-copy-undef-src.mir │ │ ├── mature-mc-support.ll │ │ ├── memchr-01.ll │ │ ├── memchr-nobuiltin.ll │ │ ├── memcmp-01.ll │ │ ├── memcmp-nobuiltin.ll │ │ ├── memcpy-01.ll │ │ ├── memcpy-02.ll │ │ ├── memset-01.ll │ │ ├── memset-02.ll │ │ ├── memset-03.ll │ │ ├── memset-04.ll │ │ ├── or-01.ll │ │ ├── or-02.ll │ │ ├── or-03.ll │ │ ├── or-04.ll │ │ ├── or-05.ll │ │ ├── or-06.ll │ │ ├── or-07.ll │ │ ├── or-08.ll │ │ ├── pie.ll │ │ ├── pr31710.ll │ │ ├── pr32372.ll │ │ ├── pr32505.ll │ │ ├── prefetch-01.ll │ │ ├── regalloc-GR128.ll │ │ ├── regalloc-fast-invalid-kill-flag.mir │ │ ├── ret-addr-01.ll │ │ ├── risbg-01.ll │ │ ├── risbg-02.ll │ │ ├── risbg-03.ll │ │ ├── risbg-04.ll │ │ ├── rnsbg-01.ll │ │ ├── rosbg-01.ll │ │ ├── rosbg-02.ll │ │ ├── rot-01.ll │ │ ├── rot-02.ll │ │ ├── rxsbg-01.ll │ │ ├── selectcc-01.ll │ │ ├── selectcc-02.ll │ │ ├── selectcc-03.ll │ │ ├── setcc-01.ll │ │ ├── setcc-02.ll │ │ ├── shift-01.ll │ │ ├── shift-02.ll │ │ ├── shift-03.ll │ │ ├── shift-04.ll │ │ ├── shift-05.ll │ │ ├── shift-06.ll │ │ ├── shift-07.ll │ │ ├── shift-08.ll │ │ ├── shift-09.ll │ │ ├── shift-10.ll │ │ ├── shift-11.ll │ │ ├── shift-12.ll │ │ ├── spill-01.ll │ │ ├── splitMove_undefReg_mverifier.ll │ │ ├── splitMove_undefReg_mverifier_2.ll │ │ ├── stack-guard.ll │ │ ├── strcmp-01.ll │ │ ├── strcmp-nobuiltin.ll │ │ ├── strcpy-01.ll │ │ ├── strcpy-nobuiltin.ll │ │ ├── strlen-01.ll │ │ ├── strlen-nobuiltin.ll │ │ ├── swift-return.ll │ │ ├── swifterror.ll │ │ ├── swiftself.ll │ │ ├── tail-call-mem-intrinsics.ll │ │ ├── tdc-01.ll │ │ ├── tdc-02.ll │ │ ├── tdc-03.ll │ │ ├── tdc-04.ll │ │ ├── tdc-05.ll │ │ ├── tdc-06.ll │ │ ├── tdc-07.ll │ │ ├── tls-01.ll │ │ ├── tls-02.ll │ │ ├── tls-03.ll │ │ ├── tls-04.ll │ │ ├── tls-05.ll │ │ ├── tls-06.ll │ │ ├── tls-07.ll │ │ ├── trap-01.ll │ │ ├── trap-02.ll │ │ ├── trap-03.ll │ │ ├── trap-04.ll │ │ ├── trap-05.ll │ │ ├── twoaddr-sink.ll │ │ ├── unaligned-01.ll │ │ ├── undef-flag.ll │ │ ├── vec-abi-align.ll │ │ ├── vec-abs-01.ll │ │ ├── vec-abs-02.ll │ │ ├── vec-abs-03.ll │ │ ├── vec-abs-04.ll │ │ ├── vec-abs-05.ll │ │ ├── vec-abs-06.ll │ │ ├── vec-add-01.ll │ │ ├── vec-add-02.ll │ │ ├── vec-and-01.ll │ │ ├── vec-and-02.ll │ │ ├── vec-and-03.ll │ │ ├── vec-and-04.ll │ │ ├── vec-args-01.ll │ │ ├── vec-args-02.ll │ │ ├── vec-args-03.ll │ │ ├── vec-args-04.ll │ │ ├── vec-args-05.ll │ │ ├── vec-args-06.ll │ │ ├── vec-args-07.ll │ │ ├── vec-args-error-01.ll │ │ ├── vec-args-error-02.ll │ │ ├── vec-args-error-03.ll │ │ ├── vec-args-error-04.ll │ │ ├── vec-args-error-05.ll │ │ ├── vec-args-error-06.ll │ │ ├── vec-args-error-07.ll │ │ ├── vec-args-error-08.ll │ │ ├── vec-cmp-01.ll │ │ ├── vec-cmp-02.ll │ │ ├── vec-cmp-03.ll │ │ ├── vec-cmp-04.ll │ │ ├── vec-cmp-05.ll │ │ ├── vec-cmp-06.ll │ │ ├── vec-cmp-07.ll │ │ ├── vec-cmp-cmp-logic-select.ll │ │ ├── vec-cmpsel.ll │ │ ├── vec-combine-01.ll │ │ ├── vec-combine-02.ll │ │ ├── vec-const-01.ll │ │ ├── vec-const-02.ll │ │ ├── vec-const-03.ll │ │ ├── vec-const-04.ll │ │ ├── vec-const-05.ll │ │ ├── vec-const-06.ll │ │ ├── vec-const-07.ll │ │ ├── vec-const-08.ll │ │ ├── vec-const-09.ll │ │ ├── vec-const-10.ll │ │ ├── vec-const-11.ll │ │ ├── vec-const-12.ll │ │ ├── vec-const-13.ll │ │ ├── vec-const-14.ll │ │ ├── vec-const-15.ll │ │ ├── vec-const-16.ll │ │ ├── vec-const-17.ll │ │ ├── vec-const-18.ll │ │ ├── vec-conv-01.ll │ │ ├── vec-conv-02.ll │ │ ├── vec-ctlz-01.ll │ │ ├── vec-ctpop-01.ll │ │ ├── vec-ctpop-02.ll │ │ ├── vec-cttz-01.ll │ │ ├── vec-div-01.ll │ │ ├── vec-div-02.ll │ │ ├── vec-extract-01.ll │ │ ├── vec-extract-02.ll │ │ ├── vec-intrinsics-01.ll │ │ ├── vec-intrinsics-02.ll │ │ ├── vec-log-01.ll │ │ ├── vec-max-01.ll │ │ ├── vec-max-02.ll │ │ ├── vec-max-03.ll │ │ ├── vec-max-04.ll │ │ ├── vec-max-05.ll │ │ ├── vec-min-01.ll │ │ ├── vec-min-02.ll │ │ ├── vec-min-03.ll │ │ ├── vec-min-04.ll │ │ ├── vec-min-05.ll │ │ ├── vec-move-01.ll │ │ ├── vec-move-02.ll │ │ ├── vec-move-03.ll │ │ ├── vec-move-04.ll │ │ ├── vec-move-05.ll │ │ ├── vec-move-06.ll │ │ ├── vec-move-07.ll │ │ ├── vec-move-08.ll │ │ ├── vec-move-09.ll │ │ ├── vec-move-10.ll │ │ ├── vec-move-11.ll │ │ ├── vec-move-12.ll │ │ ├── vec-move-13.ll │ │ ├── vec-move-14.ll │ │ ├── vec-move-15.ll │ │ ├── vec-move-16.ll │ │ ├── vec-move-17.ll │ │ ├── vec-move-18.ll │ │ ├── vec-mul-01.ll │ │ ├── vec-mul-02.ll │ │ ├── vec-mul-03.ll │ │ ├── vec-mul-04.ll │ │ ├── vec-mul-05.ll │ │ ├── vec-neg-01.ll │ │ ├── vec-neg-02.ll │ │ ├── vec-or-01.ll │ │ ├── vec-or-02.ll │ │ ├── vec-or-03.ll │ │ ├── vec-perm-01.ll │ │ ├── vec-perm-02.ll │ │ ├── vec-perm-03.ll │ │ ├── vec-perm-04.ll │ │ ├── vec-perm-05.ll │ │ ├── vec-perm-06.ll │ │ ├── vec-perm-07.ll │ │ ├── vec-perm-08.ll │ │ ├── vec-perm-09.ll │ │ ├── vec-perm-10.ll │ │ ├── vec-perm-11.ll │ │ ├── vec-perm-12.ll │ │ ├── vec-perm-13.ll │ │ ├── vec-round-01.ll │ │ ├── vec-round-02.ll │ │ ├── vec-sext.ll │ │ ├── vec-shift-01.ll │ │ ├── vec-shift-02.ll │ │ ├── vec-shift-03.ll │ │ ├── vec-shift-04.ll │ │ ├── vec-shift-05.ll │ │ ├── vec-shift-06.ll │ │ ├── vec-shift-07.ll │ │ ├── vec-sqrt-01.ll │ │ ├── vec-sqrt-02.ll │ │ ├── vec-sub-01.ll │ │ ├── vec-sub-02.ll │ │ ├── vec-trunc-to-i1.ll │ │ ├── vec-xor-01.ll │ │ ├── vec-xor-02.ll │ │ ├── vec-zext.ll │ │ ├── vectorizer-output-3xi32.ll │ │ ├── xor-01.ll │ │ ├── xor-02.ll │ │ ├── xor-03.ll │ │ ├── xor-04.ll │ │ ├── xor-05.ll │ │ ├── xor-06.ll │ │ ├── xor-07.ll │ │ └── xor-08.ll │ ├── Thumb │ │ ├── 2007-01-31-RegInfoAssert.ll │ │ ├── 2007-02-02-JoinIntervalsCrash.ll │ │ ├── 2007-05-05-InvalidPushPop.ll │ │ ├── 2009-06-18-ThumbCommuteMul.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-06-18-SibCallCrash.ll │ │ ├── 2010-07-01-FuncAlign.ll │ │ ├── 2010-07-15-debugOrdering.ll │ │ ├── 2011-05-11-DAGLegalizer.ll │ │ ├── 2011-06-16-NoGPRs.ll │ │ ├── 2011-EpilogueBug.ll │ │ ├── 2012-04-26-M0ISelBug.ll │ │ ├── 2014-06-10-thumb1-ldst-opt-bug.ll │ │ ├── DbgValueOtherTargets.test │ │ ├── PR17309.ll │ │ ├── PR36658.mir │ │ ├── addr-modes.ll │ │ ├── and_neg.ll │ │ ├── asmprinter-bug.ll │ │ ├── barrier.ll │ │ ├── bic_imm.ll │ │ ├── branchless-cmp.ll │ │ ├── callee_save.ll │ │ ├── cmp-add-fold.ll │ │ ├── cmp-fold.ll │ │ ├── constants.ll │ │ ├── copy_thumb.ll │ │ ├── cortex-m0-unaligned-access.ll │ │ ├── dyn-stackalloc.ll │ │ ├── fastcc.ll │ │ ├── fpconv.ll │ │ ├── fpow.ll │ │ ├── frame_thumb.ll │ │ ├── iabs.ll │ │ ├── inlineasm-imm-thumb.ll │ │ ├── inlineasm-thumb.ll │ │ ├── ispositive.ll │ │ ├── large-stack.ll │ │ ├── ldm-merge-call.ll │ │ ├── ldm-merge-struct.ll │ │ ├── ldm-stm-base-materialization-thumb2.ll │ │ ├── ldm-stm-base-materialization.ll │ │ ├── ldm-stm-postinc.ll │ │ ├── ldr_ext.ll │ │ ├── ldr_frame.ll │ │ ├── lit.local.cfg │ │ ├── litpoolremat.ll │ │ ├── long-setcc.ll │ │ ├── long.ll │ │ ├── long_shift.ll │ │ ├── machine-cse-physreg.mir │ │ ├── mature-mc-support.ll │ │ ├── mul.ll │ │ ├── optionaldef-scheduling.ll │ │ ├── pop.ll │ │ ├── pr35836.ll │ │ ├── pr35836_2.ll │ │ ├── push.ll │ │ ├── remove-unneeded-push-pop.ll │ │ ├── rev.ll │ │ ├── segmented-stacks-dynamic.ll │ │ ├── segmented-stacks.ll │ │ ├── select.ll │ │ ├── sjljehprepare-lower-vector.ll │ │ ├── stack-access.ll │ │ ├── stack-coloring-without-frame-ptr.ll │ │ ├── stack-frame.ll │ │ ├── stack_guard_remat.ll │ │ ├── stm-deprecated.ll │ │ ├── stm-merge.ll │ │ ├── stm-scavenging.ll │ │ ├── tbb-reuse.mir │ │ ├── thumb-imm.ll │ │ ├── thumb-ldm.ll │ │ ├── thumb-shrink-wrapping.ll │ │ ├── trap.ll │ │ ├── triple.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-08-21-PostRAKill4.ll │ │ ├── 2009-09-01-PostRAProlog.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 │ │ ├── 2010-11-22-EpilogueBug.ll │ │ ├── 2010-12-03-AddSPNarrowing.ll │ │ ├── 2011-04-21-FILoweringBug.ll │ │ ├── 2011-06-07-TwoAddrEarlyClobber.ll │ │ ├── 2011-12-16-T2SizeReduceAssert.ll │ │ ├── 2012-01-13-CBNZBug.ll │ │ ├── 2013-02-19-tail-call-register-hint.ll │ │ ├── 2013-03-02-vduplane-nonconstant-source-index.ll │ │ ├── 2013-03-06-vector-sext-operand-scalarize.ll │ │ ├── aapcs.ll │ │ ├── aligned-constants.ll │ │ ├── aligned-spill.ll │ │ ├── bfi.ll │ │ ├── bfx.ll │ │ ├── bicbfi.ll │ │ ├── buildvector-crash.ll │ │ ├── carry.ll │ │ ├── cbnz.ll │ │ ├── constant-islands-jump-table.ll │ │ ├── constant-islands-new-island-padding.ll │ │ ├── constant-islands-new-island.ll │ │ ├── constant-islands.ll │ │ ├── cortex-fp.ll │ │ ├── crash.ll │ │ ├── cross-rc-coalescing-1.ll │ │ ├── cross-rc-coalescing-2.ll │ │ ├── div.ll │ │ ├── emit-unwinding.ll │ │ ├── float-cmp.ll │ │ ├── float-intrinsics-double.ll │ │ ├── float-intrinsics-float.ll │ │ ├── float-ops.ll │ │ ├── frame-pointer.ll │ │ ├── frameless.ll │ │ ├── frameless2.ll │ │ ├── ifcvt-compare.ll │ │ ├── ifcvt-neon-deprecated.mir │ │ ├── ifcvt-no-branch-predictor.ll │ │ ├── ifcvt-rescan-bug-2016-08-22.ll │ │ ├── ifcvt-rescan-diamonds.ll │ │ ├── inflate-regs.ll │ │ ├── inlineasm.ll │ │ ├── intrinsics-cc.ll │ │ ├── intrinsics-coprocessor.ll │ │ ├── large-call.ll │ │ ├── large-stack.ll │ │ ├── ldr-str-imm12.ll │ │ ├── lit.local.cfg │ │ ├── longMACt.ll │ │ ├── lsr-deficiency.ll │ │ ├── machine-licm.ll │ │ ├── mul_const.ll │ │ ├── pic-load.ll │ │ ├── segmented-stacks.ll │ │ ├── setjmp_longjmp.ll │ │ ├── stack_guard_remat.ll │ │ ├── t2sizereduction.mir │ │ ├── tail-call-r9.ll │ │ ├── tbb-removeadd.mir │ │ ├── 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-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-cpsr-liveness.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-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-uxt.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 │ │ ├── tpsoft.ll │ │ ├── v8_IT_1.ll │ │ ├── v8_IT_2.ll │ │ ├── v8_IT_3.ll │ │ ├── v8_IT_4.ll │ │ ├── v8_IT_5.ll │ │ └── v8_IT_6.ll │ ├── WebAssembly │ │ ├── address-offsets.ll │ │ ├── byval.ll │ │ ├── call.ll │ │ ├── cfg-stackify.ll │ │ ├── cfi.ll │ │ ├── comdat.ll │ │ ├── comparisons_f32.ll │ │ ├── comparisons_f64.ll │ │ ├── comparisons_i32.ll │ │ ├── comparisons_i64.ll │ │ ├── conv-trap.ll │ │ ├── conv.ll │ │ ├── copysign-casts.ll │ │ ├── cpus.ll │ │ ├── dbgvalue.ll │ │ ├── dead-vreg.ll │ │ ├── divrem-constant.ll │ │ ├── exception.ll │ │ ├── f16.ll │ │ ├── f32.ll │ │ ├── f64.ll │ │ ├── fast-isel-noreg.ll │ │ ├── fast-isel.ll │ │ ├── frem.ll │ │ ├── func.ll │ │ ├── function-bitcasts-varargs.ll │ │ ├── function-bitcasts.ll │ │ ├── global.ll │ │ ├── globl.ll │ │ ├── i128.ll │ │ ├── i32-load-store-alignment.ll │ │ ├── i32.ll │ │ ├── i64-load-store-alignment.ll │ │ ├── i64.ll │ │ ├── ident.ll │ │ ├── immediates.ll │ │ ├── implicit-def.ll │ │ ├── indirect-import.ll │ │ ├── inline-asm-m.ll │ │ ├── inline-asm.ll │ │ ├── irreducible-cfg.ll │ │ ├── legalize.ll │ │ ├── lit.local.cfg │ │ ├── load-ext-atomic.ll │ │ ├── load-ext.ll │ │ ├── load-store-i1.ll │ │ ├── load.ll │ │ ├── lower-em-ehsjlj-options.ll │ │ ├── lower-em-exceptions-whitelist.ll │ │ ├── lower-em-exceptions.ll │ │ ├── lower-em-sjlj.ll │ │ ├── lower-global-dtors.ll │ │ ├── main-declaration.ll │ │ ├── main.ll │ │ ├── mem-intrinsics.ll │ │ ├── memory-addr32.ll │ │ ├── negative-base-reg.ll │ │ ├── non-executable-stack.ll │ │ ├── offset-atomics.ll │ │ ├── offset-fastisel.ll │ │ ├── offset-folding.ll │ │ ├── offset.ll │ │ ├── phi.ll │ │ ├── reg-stackify.ll │ │ ├── return-int32.ll │ │ ├── return-void.ll │ │ ├── returned.ll │ │ ├── select.ll │ │ ├── signext-arg.ll │ │ ├── signext-inreg.ll │ │ ├── signext-zeroext.ll │ │ ├── simd-arith.ll │ │ ├── stack-alignment.ll │ │ ├── store-trunc.ll │ │ ├── store.ll │ │ ├── switch.ll │ │ ├── umulo-i64.ll │ │ ├── unreachable.ll │ │ ├── unsupported-function-bitcasts.ll │ │ ├── unused-argument.ll │ │ ├── userstack.ll │ │ ├── varargs.ll │ │ └── vtable.ll │ ├── WinEH │ │ ├── lit.local.cfg │ │ ├── wineh-asm.ll │ │ ├── wineh-cloning.ll │ │ ├── wineh-comdat.ll │ │ ├── wineh-demotion.ll │ │ ├── wineh-intrinsics-invalid.ll │ │ ├── wineh-intrinsics.ll │ │ ├── wineh-nested-unwind.ll │ │ ├── wineh-no-demotion.ll │ │ ├── wineh-noret-cleanup.ll │ │ ├── wineh-setjmp.ll │ │ ├── wineh-statenumbering-cleanups.ll │ │ └── wineh-statenumbering.ll │ ├── X86 │ │ ├── 2003-08-03-CallArgLiveRanges.ll │ │ ├── 2003-08-23-DeadBlockTest.ll │ │ ├── 2003-11-03-GlobalBool.ll │ │ ├── 2004-02-13-FrameReturnAddress.ll │ │ ├── 2004-02-14-InefficientStackPointer.ll │ │ ├── 2004-02-22-Casts.ll │ │ ├── 2004-03-30-Select-Max.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-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-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-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-27-InlineAsm-IntMemInput.ll │ │ ├── 2007-05-05-Personality.ll │ │ ├── 2007-05-05-VecCastExpand.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-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-09-05-InvalidAsm.ll │ │ ├── 2007-09-06-ExtWeakAliasee.ll │ │ ├── 2007-09-27-LDIntrinsics.ll │ │ ├── 2007-10-04-AvoidEFLAGSCopy.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-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-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-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-02-05-ISelCrash.ll │ │ ├── 2008-02-06-LoadFoldingBug.ll │ │ ├── 2008-02-14-BitMiscompile.ll │ │ ├── 2008-02-18-TailMergingBug.ll │ │ ├── 2008-02-20-InlineAsmClobber.ll │ │ ├── 2008-02-22-LocalRegAllocBug.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-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-13-NotVolatileLoadStore.ll │ │ ├── 2008-06-13-VolatileLoadStore.ll │ │ ├── 2008-06-16-SubregsBug.ll │ │ ├── 2008-06-25-VecISelBug.ll │ │ ├── 2008-07-07-DanglingDeadInsts.ll │ │ ├── 2008-07-09-ELFSectionAttributes.ll │ │ ├── 2008-07-11-SHLBy1.ll │ │ ├── 2008-07-16-CoalescerCrash.ll │ │ ├── 2008-07-19-movups-spills.ll │ │ ├── 2008-07-22-CombinerCrash.ll │ │ ├── 2008-07-23-VSetCC.ll │ │ ├── 2008-08-06-CmpStride.ll │ │ ├── 2008-08-06-RewriterBug.ll │ │ ├── 2008-08-17-UComiCodeGenBug.ll │ │ ├── 2008-08-23-64Bit-maskmovq.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-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-29-ExpandVAARG.ll │ │ ├── 2008-11-03-F80VAARG.ll │ │ ├── 2008-11-06-testb.ll │ │ ├── 2008-11-13-inlineasm-3.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-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-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-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-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-12-CPAlignBug.ll │ │ ├── 2009-03-13-PHIElimBug.ll │ │ ├── 2009-03-16-PHIElimInLPad.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-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-24.ll │ │ ├── 2009-04-25-CoalescerBug.ll │ │ ├── 2009-04-27-CoalescerAssert.ll │ │ ├── 2009-04-27-LiveIntervalsAssert.ll │ │ ├── 2009-04-27-LiveIntervalsAssert2.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-VZextByteShort.ll │ │ ├── 2009-06-05-VariableIndexInsert.ll │ │ ├── 2009-06-05-sitofpCrash.ll │ │ ├── 2009-06-06-ConcatVectors.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-19-AsmExtraOperands.ll │ │ ├── 2009-07-20-CoalescerBug.ll │ │ ├── 2009-07-20-DAGCombineBug.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-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-14-LiveVariablesBug.ll │ │ ├── 2009-10-16-Scope.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-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-08-CoalescerBug.ll │ │ ├── 2010-04-13-AnalyzeBranchCrash.ll │ │ ├── 2010-04-21-CoalescerBug.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-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-04-StackVariable.ll │ │ ├── 2010-09-01-RemoveCopyByCommutingDef.ll │ │ ├── 2010-09-16-EmptyFilename.ll │ │ ├── 2010-09-16-asmcrash.ll │ │ ├── 2010-09-17-SideEffectsInChain.ll │ │ ├── 2010-09-30-CMOV-JumpTable-PHI.ll │ │ ├── 2010-10-08-cmpxchg8b.ll │ │ ├── 2010-11-02-DbgParameter.ll │ │ ├── 2010-11-09-MOVLPS.ll │ │ ├── 2010-11-18-SelectOfExtload.ll │ │ ├── 2011-01-07-LegalizeTypesCrash.ll │ │ ├── 2011-01-10-DagCombineHang.ll │ │ ├── 2011-01-24-DbgValue-Before-Use.ll │ │ ├── 2011-02-04-FastRegallocNoFP.ll │ │ ├── 2011-02-12-shuffle.ll │ │ ├── 2011-02-21-VirtRegRewriter-KillSubReg.ll │ │ ├── 2011-02-23-UnfoldBug.ll │ │ ├── 2011-02-27-Fpextend.ll │ │ ├── 2011-03-02-DAGCombiner.ll │ │ ├── 2011-03-08-Sched-crash.ll │ │ ├── 2011-03-09-Physreg-Coalescing.ll │ │ ├── 2011-03-30-CreateFixedObjCrash.ll │ │ ├── 2011-04-13-SchedCmpJmp.ll │ │ ├── 2011-04-19-sclr-bb.ll │ │ ├── 2011-05-09-loaduse.ll │ │ ├── 2011-05-26-UnreachableBlockElim.ll │ │ ├── 2011-05-27-CrossClassCoalescing.ll │ │ ├── 2011-06-01-fildll.ll │ │ ├── 2011-06-03-x87chain.ll │ │ ├── 2011-06-06-fgetsign80bit.ll │ │ ├── 2011-06-12-FastAllocSpill.ll │ │ ├── 2011-06-14-PreschedRegalias.ll │ │ ├── 2011-06-14-mmx-inlineasm.ll │ │ ├── 2011-06-19-QuicksortCoalescerBug.ll │ │ ├── 2011-07-13-BadFrameIndexDisplacement.ll │ │ ├── 2011-08-23-PerformSubCombine128.ll │ │ ├── 2011-08-23-Trampoline.ll │ │ ├── 2011-08-29-BlockConstant.ll │ │ ├── 2011-08-29-InitOrder.ll │ │ ├── 2011-09-14-valcoalesce.ll │ │ ├── 2011-09-18-sse2cmp.ll │ │ ├── 2011-09-21-setcc-bug.ll │ │ ├── 2011-10-11-SpillDead.ll │ │ ├── 2011-10-11-srl.ll │ │ ├── 2011-10-12-MachineCSE.ll │ │ ├── 2011-10-18-FastISel-VectorParams.ll │ │ ├── 2011-10-19-LegelizeLoad.ll │ │ ├── 2011-10-19-widen_vselect.ll │ │ ├── 2011-10-21-widen-cmp.ll │ │ ├── 2011-10-27-tstore.ll │ │ ├── 2011-10-30-padd.ll │ │ ├── 2011-11-07-LegalizeBuildVector.ll │ │ ├── 2011-11-22-AVX2-Domains.ll │ │ ├── 2011-11-30-or.ll │ │ ├── 2011-12-06-AVXVectorExtractCombine.ll │ │ ├── 2011-12-06-BitcastVectorGlobal.ll │ │ ├── 2011-12-08-AVXISelBugs.ll │ │ ├── 2011-12-15-vec_shift.ll │ │ ├── 2011-12-26-extractelement-duplicate-load.ll │ │ ├── 2011-12-28-vselecti8.ll │ │ ├── 2011-12-8-bitcastintprom.ll │ │ ├── 2011-20-21-zext-ui2fp.ll │ │ ├── 2012-01-10-UndefExceptionEdge.ll │ │ ├── 2012-01-11-split-cv.ll │ │ ├── 2012-01-12-extract-sv.ll │ │ ├── 2012-01-16-mfence-nosse-flags.ll │ │ ├── 2012-01-18-vbitcast.ll │ │ ├── 2012-02-12-dagco.ll │ │ ├── 2012-02-14-scalar.ll │ │ ├── 2012-02-23-mmx-inlineasm.ll │ │ ├── 2012-02-29-CoalescerBug.ll │ │ ├── 2012-03-15-build_vector_wl.ll │ │ ├── 2012-03-20-LargeConstantExpr.ll │ │ ├── 2012-03-26-PostRALICMBug.ll │ │ ├── 2012-04-09-TwoAddrPassBug.ll │ │ ├── 2012-04-26-sdglue.ll │ │ ├── 2012-05-17-TwoAddressBug.ll │ │ ├── 2012-05-19-CoalescerCrash.ll │ │ ├── 2012-07-10-extload64.ll │ │ ├── 2012-07-10-shufnorm.ll │ │ ├── 2012-07-15-BuildVectorPromote.ll │ │ ├── 2012-07-15-broadcastfold.ll │ │ ├── 2012-07-15-tconst_shl.ll │ │ ├── 2012-07-15-vshl.ll │ │ ├── 2012-07-16-LeaUndef.ll │ │ ├── 2012-07-16-fp2ui-i1.ll │ │ ├── 2012-07-17-vtrunc.ll │ │ ├── 2012-07-23-select_cc.ll │ │ ├── 2012-08-07-CmpISelBug.ll │ │ ├── 2012-08-16-setcc.ll │ │ ├── 2012-08-17-legalizer-crash.ll │ │ ├── 2012-08-28-UnsafeMathCrash.ll │ │ ├── 2012-09-13-dagco-fneg.ll │ │ ├── 2012-09-28-CGPBug.ll │ │ ├── 2012-1-10-buildvector.ll │ │ ├── 2012-10-02-DAGCycle.ll │ │ ├── 2012-10-03-DAGCycle.ll │ │ ├── 2012-10-18-crash-dagco.ll │ │ ├── 2012-11-28-merge-store-alias.ll │ │ ├── 2012-12-1-merge-multiple.ll │ │ ├── 2012-12-12-DAGCombineCrash.ll │ │ ├── 2012-12-14-v8fp80-crash.ll │ │ ├── 2012-12-19-NoImplicitFloat.ll │ │ ├── 2013-01-09-DAGCombineBug.ll │ │ ├── 2013-03-13-VEX-DestReg.ll │ │ ├── 2013-05-06-ConactVectorCrash.ll │ │ ├── 2013-10-14-FastISel-incorrect-vreg.ll │ │ ├── 2014-05-29-factorial.ll │ │ ├── 2014-08-29-CompactUnwind.ll │ │ ├── 3addr-16bit.ll │ │ ├── 3addr-or.ll │ │ ├── 3dnow-intrinsics.ll │ │ ├── 3dnow-schedule.ll │ │ ├── 4char-promote.ll │ │ ├── 9601.ll │ │ ├── AppendingLinkage.ll │ │ ├── Atomics-64.ll │ │ ├── DbgValueOtherTargets.test │ │ ├── DynamicCalleeSavedRegisters.ll │ │ ├── GC │ │ │ ├── alloc_loop.ll │ │ │ ├── argpromotion.ll │ │ │ ├── badreadproto.ll │ │ │ ├── badrootproto.ll │ │ │ ├── badwriteproto.ll │ │ │ ├── cg-O0.ll │ │ │ ├── deadargelim.ll │ │ │ ├── dynamic-frame-size.ll │ │ │ ├── erlang-gc.ll │ │ │ ├── fat.ll │ │ │ ├── inline.ll │ │ │ ├── inline2.ll │ │ │ ├── lit.local.cfg │ │ │ ├── lower_gcroot.ll │ │ │ ├── ocaml-gc-assert.ll │ │ │ ├── ocaml-gc.ll │ │ │ └── outside.ll │ │ ├── GlobalISel │ │ │ ├── GV.ll │ │ │ ├── add-scalar.ll │ │ │ ├── add-vec.ll │ │ │ ├── and-scalar.ll │ │ │ ├── binop.ll │ │ │ ├── br.ll │ │ │ ├── brcond.ll │ │ │ ├── callingconv.ll │ │ │ ├── cmp.ll │ │ │ ├── constant.ll │ │ │ ├── ext-x86-64.ll │ │ │ ├── ext.ll │ │ │ ├── fadd-scalar.ll │ │ │ ├── fconstant.ll │ │ │ ├── fdiv-scalar.ll │ │ │ ├── fmul-scalar.ll │ │ │ ├── fpext-scalar.ll │ │ │ ├── frameIndex.ll │ │ │ ├── fsub-scalar.ll │ │ │ ├── gep.ll │ │ │ ├── irtranslator-callingconv.ll │ │ │ ├── legalize-GV.mir │ │ │ ├── legalize-add-v128.mir │ │ │ ├── legalize-add-v256.mir │ │ │ ├── legalize-add-v512.mir │ │ │ ├── legalize-add.mir │ │ │ ├── legalize-and-scalar.mir │ │ │ ├── legalize-brcond.mir │ │ │ ├── legalize-cmp.mir │ │ │ ├── legalize-constant.mir │ │ │ ├── legalize-ext-x86-64.mir │ │ │ ├── legalize-ext.mir │ │ │ ├── legalize-fadd-scalar.mir │ │ │ ├── legalize-fdiv-scalar.mir │ │ │ ├── legalize-fmul-scalar.mir │ │ │ ├── legalize-fpext-scalar.mir │ │ │ ├── legalize-fsub-scalar.mir │ │ │ ├── legalize-gep.mir │ │ │ ├── legalize-insert-vec256.mir │ │ │ ├── legalize-insert-vec512.mir │ │ │ ├── legalize-memop-scalar.mir │ │ │ ├── legalize-mul-scalar.mir │ │ │ ├── legalize-mul-v128.mir │ │ │ ├── legalize-mul-v256.mir │ │ │ ├── legalize-mul-v512.mir │ │ │ ├── legalize-or-scalar.mir │ │ │ ├── legalize-phi.mir │ │ │ ├── legalize-sub-v128.mir │ │ │ ├── legalize-sub-v256.mir │ │ │ ├── legalize-sub-v512.mir │ │ │ ├── legalize-sub.mir │ │ │ ├── legalize-trunc.mir │ │ │ ├── legalize-undef.mir │ │ │ ├── legalize-xor-scalar.mir │ │ │ ├── lit.local.cfg │ │ │ ├── memop-scalar-x32.ll │ │ │ ├── memop-scalar.ll │ │ │ ├── memop-vec.ll │ │ │ ├── mul-scalar.ll │ │ │ ├── mul-vec.ll │ │ │ ├── or-scalar.ll │ │ │ ├── phi.ll │ │ │ ├── regbankselect-AVX2.mir │ │ │ ├── regbankselect-AVX512.mir │ │ │ ├── regbankselect-X32.mir │ │ │ ├── regbankselect-X86_64.mir │ │ │ ├── select-GV.mir │ │ │ ├── select-add-v128.mir │ │ │ ├── select-add-v256.mir │ │ │ ├── select-add-v512.mir │ │ │ ├── select-add-x32.mir │ │ │ ├── select-add.mir │ │ │ ├── select-and-scalar.mir │ │ │ ├── select-blsi.mir │ │ │ ├── select-blsr.mir │ │ │ ├── select-br.mir │ │ │ ├── select-brcond.mir │ │ │ ├── select-cmp.mir │ │ │ ├── select-constant.mir │ │ │ ├── select-copy.mir │ │ │ ├── select-ext-x86-64.mir │ │ │ ├── select-ext.mir │ │ │ ├── select-extract-vec256.mir │ │ │ ├── select-extract-vec512.mir │ │ │ ├── select-fadd-scalar.mir │ │ │ ├── select-fconstant.mir │ │ │ ├── select-fdiv-scalar.mir │ │ │ ├── select-fmul-scalar.mir │ │ │ ├── select-fpext-scalar.mir │ │ │ ├── select-frameIndex.mir │ │ │ ├── select-fsub-scalar.mir │ │ │ ├── select-gep.mir │ │ │ ├── select-inc.mir │ │ │ ├── select-insert-vec256.mir │ │ │ ├── select-insert-vec512.mir │ │ │ ├── select-intrinsic-x86-flags-read-u32.mir │ │ │ ├── select-leaf-constant.mir │ │ │ ├── select-memop-scalar-x32.mir │ │ │ ├── select-memop-scalar.mir │ │ │ ├── select-memop-v128.mir │ │ │ ├── select-memop-v256.mir │ │ │ ├── select-memop-v512.mir │ │ │ ├── select-merge-vec256.mir │ │ │ ├── select-merge-vec512.mir │ │ │ ├── select-mul-scalar.mir │ │ │ ├── select-mul-vec.mir │ │ │ ├── select-or-scalar.mir │ │ │ ├── select-phi.mir │ │ │ ├── select-sub-v128.mir │ │ │ ├── select-sub-v256.mir │ │ │ ├── select-sub-v512.mir │ │ │ ├── select-sub.mir │ │ │ ├── select-trunc.mir │ │ │ ├── select-undef.mir │ │ │ ├── select-unmerge-vec256.mir │ │ │ ├── select-unmerge-vec512.mir │ │ │ ├── select-xor-scalar.mir │ │ │ ├── sub-scalar.ll │ │ │ ├── sub-vec.ll │ │ │ ├── trunc.ll │ │ │ ├── undef.ll │ │ │ ├── x86_64-fallback.ll │ │ │ └── xor-scalar.ll │ │ ├── MachineBranchProb.ll │ │ ├── MachineSink-CritEdge.ll │ │ ├── MachineSink-DbgValue.ll │ │ ├── MachineSink-PHIUse.ll │ │ ├── MachineSink-SubReg.ll │ │ ├── MachineSink-eflags.ll │ │ ├── MergeConsecutiveStores.ll │ │ ├── O0-pipeline.ll │ │ ├── PR34565.ll │ │ ├── StackColoring-dbg.ll │ │ ├── StackColoring.ll │ │ ├── SwitchLowering.ll │ │ ├── SwizzleShuff.ll │ │ ├── TruncAssertSext.ll │ │ ├── TruncAssertZext.ll │ │ ├── WidenArith.ll │ │ ├── abi-isel.ll │ │ ├── absolute-bit-mask.ll │ │ ├── absolute-bt.ll │ │ ├── absolute-cmp.ll │ │ ├── absolute-constant.ll │ │ ├── absolute-rotate.ll │ │ ├── add-ext.ll │ │ ├── add-of-carry.ll │ │ ├── add-sub-nsw-nuw.ll │ │ ├── add.ll │ │ ├── add32ri8.ll │ │ ├── add_shl_constant.ll │ │ ├── addcarry.ll │ │ ├── addr-label-difference.ll │ │ ├── addr-mode-matcher.ll │ │ ├── addr-of-ret-addr.ll │ │ ├── address-type-promotion-constantexpr.ll │ │ ├── adx-intrinsics.ll │ │ ├── adx-schedule.ll │ │ ├── aes-schedule.ll │ │ ├── aes_intrinsics.ll │ │ ├── alias-gep.ll │ │ ├── alias-static-alloca.ll │ │ ├── aliases.ll │ │ ├── aligned-comm.ll │ │ ├── aligned-variadic.ll │ │ ├── alignment-2.ll │ │ ├── alignment.ll │ │ ├── all-ones-vector.ll │ │ ├── alldiv-divdi3.ll │ │ ├── alloca-align-rounding-32.ll │ │ ├── alloca-align-rounding.ll │ │ ├── allrem-moddi3.ll │ │ ├── and-encoding.ll │ │ ├── and-load-fold.ll │ │ ├── and-or-fold.ll │ │ ├── and-sink.ll │ │ ├── and-su.ll │ │ ├── andimm8.ll │ │ ├── anyext.ll │ │ ├── anyregcc-crash.ll │ │ ├── anyregcc.ll │ │ ├── apm.ll │ │ ├── arg-cast.ll │ │ ├── arg-copy-elide.ll │ │ ├── asm-block-labels.ll │ │ ├── asm-global-imm.ll │ │ ├── asm-indirect-mem.ll │ │ ├── asm-invalid-register-class-crasher.ll │ │ ├── asm-label.ll │ │ ├── asm-label2.ll │ │ ├── asm-mismatched-types.ll │ │ ├── asm-modifier-P.ll │ │ ├── asm-modifier.ll │ │ ├── asm-reg-type-mismatch.ll │ │ ├── asm-reject-reg-type-mismatch.ll │ │ ├── atom-call-reg-indirect-foldedreload32.ll │ │ ├── atom-call-reg-indirect-foldedreload64.ll │ │ ├── atom-call-reg-indirect.ll │ │ ├── atom-cmpb.ll │ │ ├── atom-fixup-lea1.ll │ │ ├── atom-fixup-lea2.ll │ │ ├── atom-fixup-lea3.ll │ │ ├── atom-fixup-lea4.ll │ │ ├── atom-lea-addw-bug.ll │ │ ├── atom-lea-sp.ll │ │ ├── atom-pad-short-functions.ll │ │ ├── atom-sched.ll │ │ ├── atom-shuf.ll │ │ ├── atomic-dagsched.ll │ │ ├── atomic-eflags-reuse.ll │ │ ├── atomic-flags.ll │ │ ├── atomic-load-store-wide.ll │ │ ├── atomic-load-store.ll │ │ ├── atomic-minmax-i6432.ll │ │ ├── atomic-non-integer.ll │ │ ├── atomic-ops-ancient-64.ll │ │ ├── atomic-or.ll │ │ ├── atomic-pointer.ll │ │ ├── atomic128.ll │ │ ├── atomic16.ll │ │ ├── atomic32.ll │ │ ├── atomic64.ll │ │ ├── atomic6432.ll │ │ ├── atomic8.ll │ │ ├── atomic_add.ll │ │ ├── atomic_idempotent.ll │ │ ├── atomic_mi.ll │ │ ├── atomic_op.ll │ │ ├── attribute-sections.ll │ │ ├── avg-mask.ll │ │ ├── avg.ll │ │ ├── avoid-lea-scale2.ll │ │ ├── avoid-loop-align-2.ll │ │ ├── avoid-loop-align.ll │ │ ├── avoid_complex_am.ll │ │ ├── avx-arith.ll │ │ ├── avx-basic.ll │ │ ├── avx-bitcast.ll │ │ ├── avx-brcond.ll │ │ ├── avx-cast.ll │ │ ├── avx-cmp.ll │ │ ├── avx-cvt-2.ll │ │ ├── avx-cvt-3.ll │ │ ├── avx-cvt.ll │ │ ├── avx-fp2int.ll │ │ ├── avx-gfni-intrinsics.ll │ │ ├── avx-insertelt.ll │ │ ├── avx-intel-ocl.ll │ │ ├── avx-intrinsics-fast-isel.ll │ │ ├── avx-intrinsics-x86-upgrade.ll │ │ ├── avx-intrinsics-x86.ll │ │ ├── avx-intrinsics-x86_64.ll │ │ ├── avx-isa-check.ll │ │ ├── avx-load-store.ll │ │ ├── avx-logic.ll │ │ ├── avx-minmax.ll │ │ ├── avx-schedule.ll │ │ ├── avx-select.ll │ │ ├── avx-shift.ll │ │ ├── avx-shuffle-x86_32.ll │ │ ├── avx-splat.ll │ │ ├── avx-trunc.ll │ │ ├── avx-unpack.ll │ │ ├── avx-varargs-x86_64.ll │ │ ├── avx-vbroadcast.ll │ │ ├── avx-vbroadcastf128.ll │ │ ├── avx-vextractf128.ll │ │ ├── avx-vinsertf128.ll │ │ ├── avx-vpclmulqdq.ll │ │ ├── avx-vperm2x128.ll │ │ ├── avx-vzeroupper.ll │ │ ├── avx-win64-args.ll │ │ ├── avx-win64.ll │ │ ├── avx.ll │ │ ├── avx1-logical-load-folding.ll │ │ ├── avx2-arith.ll │ │ ├── avx2-cmp.ll │ │ ├── avx2-conversions.ll │ │ ├── avx2-fma-fneg-combine.ll │ │ ├── avx2-gather.ll │ │ ├── avx2-intrinsics-fast-isel.ll │ │ ├── avx2-intrinsics-x86-upgrade.ll │ │ ├── avx2-intrinsics-x86.ll │ │ ├── avx2-logic.ll │ │ ├── avx2-masked-gather.ll │ │ ├── avx2-nontemporal.ll │ │ ├── avx2-phaddsub.ll │ │ ├── avx2-pmovxrm.ll │ │ ├── avx2-schedule.ll │ │ ├── avx2-shift.ll │ │ ├── avx2-vbroadcast.ll │ │ ├── avx2-vbroadcasti128.ll │ │ ├── avx2-vector-shifts.ll │ │ ├── avx2-vperm.ll │ │ ├── avx512-adc-sbb.ll │ │ ├── avx512-any_extend_load.ll │ │ ├── avx512-arith.ll │ │ ├── avx512-bugfix-23634.ll │ │ ├── avx512-bugfix-25270.ll │ │ ├── avx512-bugfix-26264.ll │ │ ├── avx512-build-vector.ll │ │ ├── avx512-calling-conv.ll │ │ ├── avx512-cmp-kor-sequence.ll │ │ ├── avx512-cmp.ll │ │ ├── avx512-cvt.ll │ │ ├── avx512-ext.ll │ │ ├── avx512-extract-subvector-load-store.ll │ │ ├── avx512-extract-subvector.ll │ │ ├── avx512-fma-commute.ll │ │ ├── avx512-fma-intrinsics.ll │ │ ├── avx512-fma.ll │ │ ├── avx512-fsel.ll │ │ ├── avx512-gather-scatter-intrin.ll │ │ ├── avx512-gfni-intrinsics.ll │ │ ├── avx512-hadd-hsub.ll │ │ ├── avx512-i1test.ll │ │ ├── avx512-inc-dec.ll │ │ ├── avx512-insert-extract.ll │ │ ├── avx512-insert-extract_i1.ll │ │ ├── avx512-intel-ocl.ll │ │ ├── avx512-intrinsics-fast-isel.ll │ │ ├── avx512-intrinsics-upgrade.ll │ │ ├── avx512-intrinsics.ll │ │ ├── avx512-load-store.ll │ │ ├── avx512-load-trunc-store-i1.ll │ │ ├── avx512-logic.ll │ │ ├── avx512-mask-op.ll │ │ ├── avx512-mask-spills.ll │ │ ├── avx512-mask-zext-bugfix.ll │ │ ├── avx512-masked-memop-64-32.ll │ │ ├── avx512-masked_memop-16-8.ll │ │ ├── avx512-memfold.ll │ │ ├── avx512-mov.ll │ │ ├── avx512-nontemporal.ll │ │ ├── avx512-pmovxrm.ll │ │ ├── avx512-regcall-Mask.ll │ │ ├── avx512-regcall-NoMask.ll │ │ ├── avx512-rotate.ll │ │ ├── avx512-scalar.ll │ │ ├── avx512-scalarIntrinsics.ll │ │ ├── avx512-scalar_mask.ll │ │ ├── avx512-schedule.ll │ │ ├── avx512-select.ll │ │ ├── avx512-shift.ll │ │ ├── avx512-shuffle-schedule.ll │ │ ├── avx512-shuffles │ │ │ ├── broadcast-scalar-fp.ll │ │ │ ├── broadcast-scalar-int.ll │ │ │ ├── broadcast-vector-fp.ll │ │ │ ├── broadcast-vector-int.ll │ │ │ ├── duplicate-high.ll │ │ │ ├── duplicate-low.ll │ │ │ ├── in_lane_permute.ll │ │ │ ├── partial_permute.ll │ │ │ ├── permute.ll │ │ │ ├── shuffle-interleave.ll │ │ │ ├── shuffle-vec.ll │ │ │ ├── shuffle.ll │ │ │ └── unpack.ll │ │ ├── avx512-skx-insert-subvec.ll │ │ ├── avx512-trunc.ll │ │ ├── avx512-unsafe-fp-math.ll │ │ ├── avx512-vbroadcast.ll │ │ ├── avx512-vbroadcasti128.ll │ │ ├── avx512-vbroadcasti256.ll │ │ ├── avx512-vec-cmp.ll │ │ ├── avx512-vec3-crash.ll │ │ ├── avx512-vpclmulqdq.ll │ │ ├── avx512-vpermv3-commute.ll │ │ ├── avx512-vpternlog-commute.ll │ │ ├── avx512-vselect-crash.ll │ │ ├── avx512-vselect.ll │ │ ├── avx512bw-arith.ll │ │ ├── avx512bw-intrinsics-fast-isel.ll │ │ ├── avx512bw-intrinsics-upgrade.ll │ │ ├── avx512bw-intrinsics.ll │ │ ├── avx512bw-mask-op.ll │ │ ├── avx512bw-mov.ll │ │ ├── avx512bw-vec-cmp.ll │ │ ├── avx512bw-vec-test-testn.ll │ │ ├── avx512bwvl-arith.ll │ │ ├── avx512bwvl-intrinsics-fast-isel.ll │ │ ├── avx512bwvl-intrinsics-upgrade.ll │ │ ├── avx512bwvl-intrinsics.ll │ │ ├── avx512bwvl-mov.ll │ │ ├── avx512bwvl-vec-cmp.ll │ │ ├── avx512bwvl-vec-test-testn.ll │ │ ├── avx512cd-intrinsics-fast-isel.ll │ │ ├── avx512cd-intrinsics-upgrade.ll │ │ ├── avx512cd-intrinsics.ll │ │ ├── avx512cdvl-intrinsics-upgrade.ll │ │ ├── avx512cdvl-intrinsics.ll │ │ ├── avx512dq-intrinsics-upgrade.ll │ │ ├── avx512dq-intrinsics.ll │ │ ├── avx512dq-mask-op.ll │ │ ├── avx512dqvl-intrinsics-upgrade.ll │ │ ├── avx512dqvl-intrinsics.ll │ │ ├── avx512er-intrinsics.ll │ │ ├── avx512f-vec-test-testn.ll │ │ ├── avx512ifma-intrinsics.ll │ │ ├── avx512ifmavl-intrinsics.ll │ │ ├── avx512vbmi-intrinsics.ll │ │ ├── avx512vbmi2-intrinsics.ll │ │ ├── avx512vbmi2vl-intrinsics.ll │ │ ├── avx512vbmivl-intrinsics.ll │ │ ├── avx512vl-arith.ll │ │ ├── avx512vl-intrinsics-fast-isel.ll │ │ ├── avx512vl-intrinsics-upgrade.ll │ │ ├── avx512vl-intrinsics.ll │ │ ├── avx512vl-logic.ll │ │ ├── avx512vl-mov.ll │ │ ├── avx512vl-nontemporal.ll │ │ ├── avx512vl-vbroadcast.ll │ │ ├── avx512vl-vec-cmp.ll │ │ ├── avx512vl-vec-masked-cmp.ll │ │ ├── avx512vl-vec-test-testn.ll │ │ ├── avx512vl-vpclmulqdq.ll │ │ ├── avx512vl_vnni-intrinsics.ll │ │ ├── avx512vlcd-intrinsics-fast-isel.ll │ │ ├── avx512vnni-intrinsics.ll │ │ ├── avx512vpopcntdq-intrinsics.ll │ │ ├── avx512vpopcntdq-schedule.ll │ │ ├── barrier-sse.ll │ │ ├── barrier.ll │ │ ├── base-pointer-and-cmpxchg.ll │ │ ├── basic-promote-integers.ll │ │ ├── bc-extract.ll │ │ ├── bigstructret.ll │ │ ├── bigstructret2.ll │ │ ├── bit-piece-comment.ll │ │ ├── bit-test-shift.ll │ │ ├── bitcast-and-setcc-128.ll │ │ ├── bitcast-and-setcc-256.ll │ │ ├── bitcast-and-setcc-512.ll │ │ ├── bitcast-i256.ll │ │ ├── bitcast-int-to-vector-bool-sext.ll │ │ ├── bitcast-int-to-vector-bool-zext.ll │ │ ├── bitcast-int-to-vector-bool.ll │ │ ├── bitcast-int-to-vector.ll │ │ ├── bitcast-mmx.ll │ │ ├── bitcast-setcc-128.ll │ │ ├── bitcast-setcc-256.ll │ │ ├── bitcast-setcc-512.ll │ │ ├── bitcast.ll │ │ ├── bitcast2.ll │ │ ├── bitreverse.ll │ │ ├── block-placement.ll │ │ ├── block-placement.mir │ │ ├── bmi-intrinsics-fast-isel-x86_64.ll │ │ ├── bmi-intrinsics-fast-isel.ll │ │ ├── bmi-schedule.ll │ │ ├── bmi.ll │ │ ├── bmi2-schedule.ll │ │ ├── bmi2.ll │ │ ├── bool-ext-inc.ll │ │ ├── bool-simplify.ll │ │ ├── bool-vector.ll │ │ ├── bool-zext.ll │ │ ├── br-fold.ll │ │ ├── branch_instruction_and_target_split_perf_nops.mir │ │ ├── branchfolding-catchpads.ll │ │ ├── branchfolding-debugloc.ll │ │ ├── branchfolding-landingpads.ll │ │ ├── branchfolding-undef.mir │ │ ├── brcond.ll │ │ ├── break-anti-dependencies.ll │ │ ├── break-false-dep.ll │ │ ├── broadcast-elm-cross-splat-vec.ll │ │ ├── broadcastm-lowering.ll │ │ ├── bss_pagealigned.ll │ │ ├── bswap-inline-asm.ll │ │ ├── bswap-rotate.ll │ │ ├── bswap-vector.ll │ │ ├── bswap-wide-int.ll │ │ ├── bswap.ll │ │ ├── bswap_tree.ll │ │ ├── bswap_tree2.ll │ │ ├── bt.ll │ │ ├── btq.ll │ │ ├── bug26810.ll │ │ ├── build-vector-128.ll │ │ ├── build-vector-256.ll │ │ ├── build-vector-512.ll │ │ ├── buildvec-insertvec.ll │ │ ├── bypass-slow-division-32.ll │ │ ├── bypass-slow-division-64.ll │ │ ├── bypass-slow-division-tune.ll │ │ ├── byval-align.ll │ │ ├── byval-callee-cleanup.ll │ │ ├── byval.ll │ │ ├── byval2.ll │ │ ├── byval3.ll │ │ ├── byval4.ll │ │ ├── byval5.ll │ │ ├── byval6.ll │ │ ├── byval7.ll │ │ ├── cache-intrinsic.ll │ │ ├── call-imm.ll │ │ ├── call-push.ll │ │ ├── cas.ll │ │ ├── cast-vsel.ll │ │ ├── catch.ll │ │ ├── catchpad-dynamic-alloca.ll │ │ ├── catchpad-lifetime.ll │ │ ├── catchpad-realign-savexmm.ll │ │ ├── catchpad-regmask.ll │ │ ├── catchpad-reuse.ll │ │ ├── catchpad-weight.ll │ │ ├── catchret-empty-fallthrough.ll │ │ ├── catchret-fallthrough.ll │ │ ├── catchret-regmask.ll │ │ ├── cfi-xmm.ll │ │ ├── cfi.ll │ │ ├── cfstring.ll │ │ ├── chain_order.ll │ │ ├── change-compare-stride-1.ll │ │ ├── change-compare-stride-trickiness-0.ll │ │ ├── change-compare-stride-trickiness-1.ll │ │ ├── change-compare-stride-trickiness-2.ll │ │ ├── change-unsafe-fp-math.ll │ │ ├── cleanuppad-inalloca.ll │ │ ├── cleanuppad-large-codemodel.ll │ │ ├── cleanuppad-realign.ll │ │ ├── clear_upper_vector_element_bits.ll │ │ ├── clflushopt-schedule.ll │ │ ├── clflushopt.ll │ │ ├── clobber-fi0.ll │ │ ├── clwb-schedule.ll │ │ ├── clwb.ll │ │ ├── clz.ll │ │ ├── clzero-schedule.ll │ │ ├── clzero.ll │ │ ├── cmov-double.ll │ │ ├── cmov-fp.ll │ │ ├── cmov-into-branch.ll │ │ ├── cmov-promotion.ll │ │ ├── cmov-schedule.ll │ │ ├── cmov.ll │ │ ├── cmovcmov.ll │ │ ├── cmp-fast-isel.ll │ │ ├── cmp.ll │ │ ├── cmpxchg-clobber-flags.ll │ │ ├── cmpxchg-i1.ll │ │ ├── cmpxchg-i128-i1.ll │ │ ├── cmpxchg16b.ll │ │ ├── cmpxchg8b_alloca_regalloc_handling.ll │ │ ├── coal-sections.ll │ │ ├── coalesce-esp.ll │ │ ├── coalesce-implicitdef.ll │ │ ├── coalesce_commute_movsd.ll │ │ ├── coalesce_commute_subreg.ll │ │ ├── coalescer-commute1.ll │ │ ├── coalescer-commute2.ll │ │ ├── coalescer-commute3.ll │ │ ├── coalescer-commute4.ll │ │ ├── coalescer-commute5.ll │ │ ├── coalescer-cross.ll │ │ ├── coalescer-dce.ll │ │ ├── coalescer-dce2.ll │ │ ├── coalescer-identity.ll │ │ ├── coalescer-remat.ll │ │ ├── coalescer-subreg.ll │ │ ├── coalescer-win64.ll │ │ ├── code_placement.ll │ │ ├── code_placement_align_all.ll │ │ ├── code_placement_cold_loop_blocks.ll │ │ ├── code_placement_eh.ll │ │ ├── code_placement_ignore_succ_in_inner_loop.ll │ │ ├── code_placement_loop_rotation.ll │ │ ├── code_placement_loop_rotation2.ll │ │ ├── code_placement_loop_rotation3.ll │ │ ├── codegen-prepare-addrmode-sext.ll │ │ ├── codegen-prepare-cast.ll │ │ ├── codegen-prepare-crash.ll │ │ ├── codegen-prepare-extload.ll │ │ ├── codegen-prepare.ll │ │ ├── codemodel.ll │ │ ├── coff-comdat.ll │ │ ├── coff-comdat2.ll │ │ ├── coff-comdat3.ll │ │ ├── coff-feat00.ll │ │ ├── coff-weak.ll │ │ ├── coldcc64.ll │ │ ├── combine-64bit-vec-binop.ll │ │ ├── combine-abs.ll │ │ ├── combine-add.ll │ │ ├── combine-and.ll │ │ ├── combine-avx-intrinsics.ll │ │ ├── combine-avx2-intrinsics.ll │ │ ├── combine-fcopysign.ll │ │ ├── combine-lds.ll │ │ ├── combine-mul.ll │ │ ├── combine-multiplies.ll │ │ ├── combine-or.ll │ │ ├── combine-pmuldq.ll │ │ ├── combine-rotates.ll │ │ ├── combine-sdiv.ll │ │ ├── combine-sext-in-reg.ll │ │ ├── combine-shl.ll │ │ ├── combine-sra.ll │ │ ├── combine-srem.ll │ │ ├── combine-srl.ll │ │ ├── combine-sse41-intrinsics.ll │ │ ├── combine-sub.ll │ │ ├── combine-testm-and.ll │ │ ├── combine-udiv.ll │ │ ├── combine-urem.ll │ │ ├── commute-3dnow.ll │ │ ├── commute-blend-avx2.ll │ │ ├── commute-blend-sse41.ll │ │ ├── commute-clmul.ll │ │ ├── commute-fcmp.ll │ │ ├── commute-intrinsic.ll │ │ ├── commute-two-addr.ll │ │ ├── commute-vpclmulqdq-avx.ll │ │ ├── commute-vpclmulqdq-avx512.ll │ │ ├── commute-xop.ll │ │ ├── commuted-blend-mask.ll │ │ ├── compact-unwind.ll │ │ ├── compare-add.ll │ │ ├── compare-global.ll │ │ ├── compare-inf.ll │ │ ├── compare_folding.ll │ │ ├── compiler_used.ll │ │ ├── complex-asm.ll │ │ ├── complex-fastmath.ll │ │ ├── complex-fca.ll │ │ ├── compress_expand.ll │ │ ├── computeKnownBits_urem.ll │ │ ├── conditional-indecrement.ll │ │ ├── conditional-tailcall-samedest.mir │ │ ├── conditional-tailcall.ll │ │ ├── const-base-addr.ll │ │ ├── constant-combines.ll │ │ ├── constant-hoisting-and.ll │ │ ├── constant-hoisting-bfi.ll │ │ ├── constant-hoisting-cmp.ll │ │ ├── constant-hoisting-optnone.ll │ │ ├── constant-hoisting-shift-immediate.ll │ │ ├── constant-pool-remat-0.ll │ │ ├── constant-pool-sharing.ll │ │ ├── constpool.ll │ │ ├── constructor.ll │ │ ├── convert-2-addr-3-addr-inc64.ll │ │ ├── copy-eflags.ll │ │ ├── copy-propagation.ll │ │ ├── copysign-constant-magnitude.ll │ │ ├── cpus.ll │ │ ├── crash-O0.ll │ │ ├── crash-lre-eliminate-dead-def.ll │ │ ├── crash-nosse.ll │ │ ├── crash.ll │ │ ├── critical-anti-dep-breaker.ll │ │ ├── critical-edge-split-2.ll │ │ ├── cse-add-with-overflow.ll │ │ ├── cstring.ll │ │ ├── ctpop-combine.ll │ │ ├── cvt16.ll │ │ ├── cvtv2f32.ll │ │ ├── cxx_tlscc64.ll │ │ ├── dag-fmf-cse.ll │ │ ├── dag-merge-fast-accesses.ll │ │ ├── dag-optnone.ll │ │ ├── dag-rauw-cse.ll │ │ ├── dag-update-nodetomatch.ll │ │ ├── dagcombine-and-setcc.ll │ │ ├── dagcombine-buildvector.ll │ │ ├── dagcombine-cse.ll │ │ ├── dagcombine-shifts.ll │ │ ├── dagcombine-unsafe-math.ll │ │ ├── darwin-bzero.ll │ │ ├── darwin-no-dead-strip.ll │ │ ├── darwin-preemption.ll │ │ ├── darwin-quote.ll │ │ ├── darwin-tls.ll │ │ ├── dbg-baseptr.ll │ │ ├── dbg-changes-codegen-branch-folding.ll │ │ ├── dbg-changes-codegen.ll │ │ ├── dbg-combine.ll │ │ ├── dbg-line-0-no-discriminator.ll │ │ ├── debug-nodebug-crash.ll │ │ ├── debugloc-argsize.ll │ │ ├── debugloc-no-line-0.ll │ │ ├── deopt-bundles.ll │ │ ├── deopt-intrinsic-cconv.ll │ │ ├── deopt-intrinsic.ll │ │ ├── disable-tail-calls.ll │ │ ├── discontiguous-loops.ll │ │ ├── div-rem-simplify.ll │ │ ├── div8.ll │ │ ├── divide-by-constant.ll │ │ ├── divide-windows-itanium.ll │ │ ├── divrem.ll │ │ ├── divrem8_ext.ll │ │ ├── dllexport-x86_64.ll │ │ ├── dllexport.ll │ │ ├── dllimport-x86_64.ll │ │ ├── dllimport.ll │ │ ├── dollar-name.ll │ │ ├── domain-reassignment.mir │ │ ├── dont-trunc-store-double-to-float.ll │ │ ├── dropped_constructor.ll │ │ ├── dwarf-comp-dir.ll │ │ ├── dwarf-eh-prepare.ll │ │ ├── dwarf-headers.ll │ │ ├── dyn-stackalloc.ll │ │ ├── dyn_alloca_aligned.ll │ │ ├── dynamic-alloca-in-entry.ll │ │ ├── dynamic-alloca-lifetime.ll │ │ ├── dynamic-allocas-VLAs.ll │ │ ├── early-cfi-sections.ll │ │ ├── early-ifcvt-crash.ll │ │ ├── early-ifcvt.ll │ │ ├── eflags-copy-expansion.mir │ │ ├── eh-frame-unreachable.ll │ │ ├── eh-label.ll │ │ ├── eh-nolandingpads.ll │ │ ├── eh-null-personality.ll │ │ ├── eh-unknown.ll │ │ ├── eh_frame.ll │ │ ├── element-wise-atomic-memory-intrinsics.ll │ │ ├── elf-associated.ll │ │ ├── elf-comdat.ll │ │ ├── elf-comdat2.ll │ │ ├── emit-big-cst.ll │ │ ├── empty-function.ll │ │ ├── empty-functions.ll │ │ ├── empty-struct-return-type.ll │ │ ├── emutls-pic.ll │ │ ├── emutls-pie.ll │ │ ├── emutls.ll │ │ ├── emutls_generic.ll │ │ ├── epilogue.ll │ │ ├── equiv_with_fndef.ll │ │ ├── equiv_with_vardef.ll │ │ ├── evex-to-vex-compress.mir │ │ ├── exception-label.ll │ │ ├── exedeps-movq.ll │ │ ├── exedepsfix-broadcast.ll │ │ ├── expand-opaque-const.ll │ │ ├── expand-vr64-gr64-copy.mir │ │ ├── extend.ll │ │ ├── extended-fma-contraction.ll │ │ ├── extern_weak.ll │ │ ├── extmul128.ll │ │ ├── extmul64.ll │ │ ├── extract-combine.ll │ │ ├── extract-concat.ll │ │ ├── extract-extract.ll │ │ ├── extract-store.ll │ │ ├── extractelement-from-arg.ll │ │ ├── extractelement-index.ll │ │ ├── extractelement-legalization-cycle.ll │ │ ├── extractelement-legalization-store-ordering.ll │ │ ├── extractelement-load.ll │ │ ├── extractelement-shuffle.ll │ │ ├── extractps.ll │ │ ├── f16c-intrinsics-fast-isel.ll │ │ ├── f16c-intrinsics.ll │ │ ├── f16c-schedule.ll │ │ ├── fabs.ll │ │ ├── fadd-combines.ll │ │ ├── fast-cc-callee-pops.ll │ │ ├── fast-cc-merge-stack-adj.ll │ │ ├── fast-cc-pass-in-regs.ll │ │ ├── fast-isel-abort-warm.ll │ │ ├── fast-isel-agg-constant.ll │ │ ├── fast-isel-args-fail.ll │ │ ├── fast-isel-args-fail2.ll │ │ ├── fast-isel-args.ll │ │ ├── fast-isel-atomic.ll │ │ ├── fast-isel-avoid-unnecessary-pic-base.ll │ │ ├── fast-isel-bail.ll │ │ ├── fast-isel-bc.ll │ │ ├── fast-isel-bitcasts-avx.ll │ │ ├── fast-isel-bitcasts-avx512.ll │ │ ├── fast-isel-bitcasts.ll │ │ ├── fast-isel-branch_weights.ll │ │ ├── fast-isel-call-bool.ll │ │ ├── fast-isel-call-cleanup.ll │ │ ├── fast-isel-call.ll │ │ ├── fast-isel-cmp-branch.ll │ │ ├── fast-isel-cmp-branch2.ll │ │ ├── fast-isel-cmp-branch3.ll │ │ ├── fast-isel-cmp.ll │ │ ├── fast-isel-constant.ll │ │ ├── fast-isel-constpool.ll │ │ ├── fast-isel-constrain-store-indexreg.ll │ │ ├── fast-isel-deadcode.ll │ │ ├── fast-isel-divrem-x86-64.ll │ │ ├── fast-isel-divrem.ll │ │ ├── fast-isel-double-half-convertion.ll │ │ ├── fast-isel-emutls.ll │ │ ├── fast-isel-expect.ll │ │ ├── fast-isel-extract.ll │ │ ├── fast-isel-float-half-convertion.ll │ │ ├── fast-isel-fneg.ll │ │ ├── fast-isel-fold-mem.ll │ │ ├── fast-isel-fptrunc-fpext.ll │ │ ├── fast-isel-gc-intrinsics.ll │ │ ├── fast-isel-gep.ll │ │ ├── fast-isel-gv.ll │ │ ├── fast-isel-i1.ll │ │ ├── fast-isel-int-float-conversion-x86-64.ll │ │ ├── fast-isel-int-float-conversion.ll │ │ ├── fast-isel-load-i1.ll │ │ ├── fast-isel-mem.ll │ │ ├── fast-isel-movsbl-indexreg.ll │ │ ├── fast-isel-nontemporal.ll │ │ ├── fast-isel-noplt-pic.ll │ │ ├── fast-isel-ret-ext.ll │ │ ├── fast-isel-select-cmov.ll │ │ ├── fast-isel-select-cmov2.ll │ │ ├── fast-isel-select-cmp.ll │ │ ├── fast-isel-select-pseudo-cmov.ll │ │ ├── fast-isel-select-sse.ll │ │ ├── fast-isel-select.ll │ │ ├── fast-isel-sext-zext.ll │ │ ├── fast-isel-sext.ll │ │ ├── fast-isel-shift.ll │ │ ├── fast-isel-sse12-fptoint.ll │ │ ├── fast-isel-stackcheck.ll │ │ ├── fast-isel-store.ll │ │ ├── fast-isel-tailcall.ll │ │ ├── fast-isel-tls.ll │ │ ├── fast-isel-trunc-kill-subreg.ll │ │ ├── fast-isel-vecload.ll │ │ ├── fast-isel-x32.ll │ │ ├── fast-isel-x86-64.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 │ │ ├── fastisel-gep-promote-before-add.ll │ │ ├── fastisel-softfloat.ll │ │ ├── fastmath-float-half-conversion.ll │ │ ├── fcmove.ll │ │ ├── fdiv-combine.ll │ │ ├── fdiv.ll │ │ ├── fentry-insertion.ll │ │ ├── field-extract-use-trunc.ll │ │ ├── fildll.ll │ │ ├── file-directive.ll │ │ ├── file-source-filename.ll │ │ ├── finite-libcalls.ll │ │ ├── fixup-bw-copy.ll │ │ ├── fixup-bw-copy.mir │ │ ├── fixup-bw-inst.ll │ │ ├── fixup-bw-inst.mir │ │ ├── fixup-lea.ll │ │ ├── float-asmprint.ll │ │ ├── float-conv-elim.ll │ │ ├── floor-soft-float.ll │ │ ├── fltused.ll │ │ ├── fltused_function_pointer.ll │ │ ├── fma-commute-x86.ll │ │ ├── fma-do-not-commute.ll │ │ ├── fma-fneg-combine.ll │ │ ├── fma-intrinsics-phi-213-to-231.ll │ │ ├── fma-intrinsics-x86.ll │ │ ├── fma-phi-213-to-231.ll │ │ ├── fma-scalar-memfold.ll │ │ ├── fma-schedule.ll │ │ ├── fma.ll │ │ ├── fma4-commute-x86.ll │ │ ├── fma4-fneg-combine.ll │ │ ├── fma4-intrinsics-x86.ll │ │ ├── fma4-intrinsics-x86_64-folded-load.ll │ │ ├── fma4-scalar-memfold.ll │ │ ├── fma4-schedule.ll │ │ ├── fma_patterns.ll │ │ ├── fma_patterns_wide.ll │ │ ├── fmaddsub-combine.ll │ │ ├── fmaxnum.ll │ │ ├── fmf-flags.ll │ │ ├── fminnum.ll │ │ ├── fmsubadd-combine.ll │ │ ├── fmul-combines.ll │ │ ├── fmul-zero.ll │ │ ├── fnabs.ll │ │ ├── fold-add.ll │ │ ├── fold-and-shift.ll │ │ ├── fold-call-2.ll │ │ ├── fold-call-3.ll │ │ ├── fold-call-oper.ll │ │ ├── fold-call.ll │ │ ├── fold-imm.ll │ │ ├── fold-load-binops.ll │ │ ├── fold-load-unops.ll │ │ ├── fold-load-vec.ll │ │ ├── fold-load.ll │ │ ├── fold-mul-lohi.ll │ │ ├── fold-pcmpeqd-1.ll │ │ ├── fold-pcmpeqd-2.ll │ │ ├── fold-push.ll │ │ ├── fold-rmw-ops.ll │ │ ├── fold-sext-trunc.ll │ │ ├── fold-tied-op.ll │ │ ├── fold-vector-bv-crash.ll │ │ ├── fold-vector-sext-crash.ll │ │ ├── fold-vector-sext-crash2.ll │ │ ├── fold-vector-sext-zext.ll │ │ ├── fold-vector-shl-crash.ll │ │ ├── fold-vector-shuffle-crash.ll │ │ ├── fold-vector-trunc-sitofp.ll │ │ ├── fold-vex.ll │ │ ├── fold-xmm-zero.ll │ │ ├── fold-zext-trunc.ll │ │ ├── fops-windows-itanium.ll │ │ ├── force-align-stack-alloca.ll │ │ ├── force-align-stack.ll │ │ ├── fp-double-rounding.ll │ │ ├── fp-elim-and-no-fp-elim.ll │ │ ├── fp-elim.ll │ │ ├── fp-fast.ll │ │ ├── fp-immediate-shorten.ll │ │ ├── fp-in-intregs.ll │ │ ├── fp-intrinsics.ll │ │ ├── fp-load-trunc.ll │ │ ├── fp-logic-replace.ll │ │ ├── fp-logic.ll │ │ ├── fp-select-cmp-and.ll │ │ ├── fp-stack-2results.ll │ │ ├── fp-stack-O0-crash.ll │ │ ├── fp-stack-O0.ll │ │ ├── fp-stack-compare-cmov.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 │ │ ├── fp-trunc.ll │ │ ├── fp-une-cmp.ll │ │ ├── fp128-calling-conv.ll │ │ ├── fp128-cast.ll │ │ ├── fp128-compare.ll │ │ ├── fp128-extract.ll │ │ ├── fp128-g.ll │ │ ├── fp128-i128.ll │ │ ├── fp128-libcalls.ll │ │ ├── fp128-load.ll │ │ ├── fp128-select.ll │ │ ├── fp128-store.ll │ │ ├── fp2sint.ll │ │ ├── fp_constant_op.ll │ │ ├── fp_load_cast_fold.ll │ │ ├── fp_load_fold.ll │ │ ├── fpcmp-soft-fp.ll │ │ ├── fpstack-debuginstr-kill.ll │ │ ├── frame-base.ll │ │ ├── frame-lowering-debug-intrinsic-2.ll │ │ ├── frame-lowering-debug-intrinsic.ll │ │ ├── frame-order.ll │ │ ├── frameaddr.ll │ │ ├── frameregister.ll │ │ ├── frem-msvc32.ll │ │ ├── fsgsbase-schedule.ll │ │ ├── fsgsbase.ll │ │ ├── fsxor-alignment.ll │ │ ├── full-lsr.ll │ │ ├── funclet-layout.ll │ │ ├── function-alias.ll │ │ ├── function-subtarget-features-2.ll │ │ ├── function-subtarget-features.ll │ │ ├── ga-offset.ll │ │ ├── ga-offset2.ll │ │ ├── gather-addresses.ll │ │ ├── gcc_except_table.ll │ │ ├── gcc_except_table_functions.ll │ │ ├── gep-expanded-vector.ll │ │ ├── getelementptr.ll │ │ ├── gfni-intrinsics.ll │ │ ├── ghc-cc.ll │ │ ├── ghc-cc64.ll │ │ ├── global-access-pie-copyrelocs.ll │ │ ├── global-access-pie.ll │ │ ├── global-fill.ll │ │ ├── global-sections-comdat.ll │ │ ├── global-sections-tls.ll │ │ ├── global-sections.ll │ │ ├── gnu-seh-nolpads.ll │ │ ├── gpr-to-mask.ll │ │ ├── greedy_regalloc_bad_eviction_sequence.ll │ │ ├── gs-fold.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 │ │ ├── haddsub-2.ll │ │ ├── haddsub-shuf.ll │ │ ├── haddsub-undef.ll │ │ ├── haddsub.ll │ │ ├── half.ll │ │ ├── handle-move.ll │ │ ├── hhvm-cc.ll │ │ ├── hidden-vis-2.ll │ │ ├── hidden-vis-3.ll │ │ ├── hidden-vis-4.ll │ │ ├── hidden-vis-pic.ll │ │ ├── hidden-vis.ll │ │ ├── hipe-cc.ll │ │ ├── hipe-cc64.ll │ │ ├── hipe-prologue.ll │ │ ├── hoist-common.ll │ │ ├── hoist-invariant-load.ll │ │ ├── hoist-spill-lpad.ll │ │ ├── hoist-spill.ll │ │ ├── horizontal-reduce-smax.ll │ │ ├── horizontal-reduce-smin.ll │ │ ├── horizontal-reduce-umax.ll │ │ ├── horizontal-reduce-umin.ll │ │ ├── horizontal-shuffle.ll │ │ ├── huge-stack-offset.ll │ │ ├── huge-stack-offset2.ll │ │ ├── i128-and-beyond.ll │ │ ├── i128-immediate.ll │ │ ├── i128-mul.ll │ │ ├── i128-ret.ll │ │ ├── i128-sdiv.ll │ │ ├── i16lshr8pat.ll │ │ ├── i1narrowfail.ll │ │ ├── i256-add.ll │ │ ├── i2k.ll │ │ ├── i386-setjmp-pic.ll │ │ ├── i386-shrink-wrapping.ll │ │ ├── i386-tlscall-fastregalloc.ll │ │ ├── i486-fence-loop.ll │ │ ├── i64-mem-copy.ll │ │ ├── i64-to-float.ll │ │ ├── i686-win-shrink-wrapping.ll │ │ ├── iabs.ll │ │ ├── ident-metadata.ll │ │ ├── ifunc-asm.ll │ │ ├── illegal-bitfield-loadstore.ll │ │ ├── illegal-insert.ll │ │ ├── illegal-vector-args-return.ll │ │ ├── immediate_merging.ll │ │ ├── immediate_merging64.ll │ │ ├── implicit-null-check-negative.ll │ │ ├── implicit-null-check.ll │ │ ├── implicit-null-checks.mir │ │ ├── implicit-use-spill.mir │ │ ├── imul-lea-2.ll │ │ ├── imul-lea.ll │ │ ├── imul.ll │ │ ├── inalloca-ctor.ll │ │ ├── inalloca-invoke.ll │ │ ├── inalloca-regparm.ll │ │ ├── inalloca-stdcall.ll │ │ ├── inalloca.ll │ │ ├── inconsistent_landingpad.ll │ │ ├── indirect-hidden.ll │ │ ├── init-priority.ll │ │ ├── inline-0bh.ll │ │ ├── inline-asm-2addr.ll │ │ ├── inline-asm-A-constraint.ll │ │ ├── inline-asm-R-constraint.ll │ │ ├── inline-asm-avx-v-constraint-32bit.ll │ │ ├── inline-asm-avx-v-constraint.ll │ │ ├── inline-asm-avx512f-v-constraint.ll │ │ ├── inline-asm-avx512vl-v-constraint-32bit.ll │ │ ├── inline-asm-avx512vl-v-constraint.ll │ │ ├── inline-asm-bad-constraint-n.ll │ │ ├── inline-asm-duplicated-constraint.ll │ │ ├── inline-asm-error.ll │ │ ├── inline-asm-flag-clobber.ll │ │ ├── inline-asm-fpstack.ll │ │ ├── inline-asm-h.ll │ │ ├── inline-asm-modifier-V.ll │ │ ├── inline-asm-modifier-n.ll │ │ ├── inline-asm-modifier-q.ll │ │ ├── inline-asm-mrv.ll │ │ ├── inline-asm-out-regs.ll │ │ ├── inline-asm-pic.ll │ │ ├── inline-asm-ptr-cast.ll │ │ ├── inline-asm-q-regs.ll │ │ ├── inline-asm-sp-clobber-memcpy.ll │ │ ├── inline-asm-stack-realign.ll │ │ ├── inline-asm-stack-realign2.ll │ │ ├── inline-asm-stack-realign3.ll │ │ ├── inline-asm-tied.ll │ │ ├── inline-asm-x-scalar.ll │ │ ├── inline-asm.ll │ │ ├── inline-sse.ll │ │ ├── inlineasm-sched-bug.ll │ │ ├── inreg.ll │ │ ├── ins_split_regalloc.ll │ │ ├── ins_subreg_coalesce-1.ll │ │ ├── ins_subreg_coalesce-2.ll │ │ ├── ins_subreg_coalesce-3.ll │ │ ├── insert-into-constant-vector.ll │ │ ├── insert-positions.ll │ │ ├── insertelement-copytoregs.ll │ │ ├── insertelement-duplicates.ll │ │ ├── insertelement-legalize.ll │ │ ├── insertelement-ones.ll │ │ ├── insertelement-shuffle.ll │ │ ├── insertelement-zero.ll │ │ ├── insertps-O0-bug.ll │ │ ├── insertps-combine.ll │ │ ├── insertps-from-constantpool.ll │ │ ├── insertps-unfold-load-bug.ll │ │ ├── int-intrinsic.ll │ │ ├── interval-update-remat.ll │ │ ├── invalid-liveness.mir │ │ ├── invalid-shift-immediate.ll │ │ ├── ipra-inline-asm.ll │ │ ├── ipra-local-linkage.ll │ │ ├── ipra-reg-alias.ll │ │ ├── ipra-reg-usage.ll │ │ ├── ipra-transform.ll │ │ ├── isel-optnone.ll │ │ ├── isel-sink.ll │ │ ├── isel-sink2.ll │ │ ├── isel-sink3.ll │ │ ├── isint.ll │ │ ├── isnan.ll │ │ ├── isnan2.ll │ │ ├── ispositive.ll │ │ ├── jump_sign.ll │ │ ├── known-bits-vector.ll │ │ ├── known-bits.ll │ │ ├── known-signbits-vector.ll │ │ ├── label-annotation.ll │ │ ├── label-redefinition.ll │ │ ├── lakemont.ll │ │ ├── large-code-model-isel.ll │ │ ├── large-constants.ll │ │ ├── large-gep-chain.ll │ │ ├── large-gep-scale.ll │ │ ├── large-global.ll │ │ ├── late-address-taken.ll │ │ ├── ldzero.ll │ │ ├── lea-2.ll │ │ ├── lea-3.ll │ │ ├── lea-4.ll │ │ ├── lea-5.ll │ │ ├── lea-opt-cse1.ll │ │ ├── lea-opt-cse2.ll │ │ ├── lea-opt-cse3.ll │ │ ├── lea-opt-cse4.ll │ │ ├── lea-opt-memop-check-1.ll │ │ ├── lea-opt-memop-check-2.ll │ │ ├── lea-opt-with-debug.mir │ │ ├── lea-opt.ll │ │ ├── lea-recursion.ll │ │ ├── lea.ll │ │ ├── lea32-schedule.ll │ │ ├── lea64-schedule.ll │ │ ├── leaFixup32.mir │ │ ├── leaFixup64.mir │ │ ├── leaf-fp-elim.ll │ │ ├── legalize-fmp-oeq-vector-select.ll │ │ ├── legalize-libcalls.ll │ │ ├── legalize-shift-64.ll │ │ ├── legalize-shl-vec.ll │ │ ├── legalize-sub-zero-2.ll │ │ ├── legalize-sub-zero.ll │ │ ├── legalizedag_vec.ll │ │ ├── libcall-sret.ll │ │ ├── licm-dominance.ll │ │ ├── licm-nested.ll │ │ ├── licm-regpressure.ll │ │ ├── licm-symbol.ll │ │ ├── limited-prec.ll │ │ ├── linux-preemption.ll │ │ ├── lit.local.cfg │ │ ├── live-out-reg-info.ll │ │ ├── live-range-nosubreg.ll │ │ ├── liveness-local-regalloc.ll │ │ ├── llc-override-mcpu-mattr.ll │ │ ├── load-combine-dbg.ll │ │ ├── load-combine.ll │ │ ├── load-slice.ll │ │ ├── loc-remat.ll │ │ ├── local_stack_symbol_ordering.ll │ │ ├── localescape.ll │ │ ├── log2_not_readnone.ll │ │ ├── logical-load-fold.ll │ │ ├── long-setcc.ll │ │ ├── longlong-deadload.ll │ │ ├── loop-blocks.ll │ │ ├── loop-hoist.ll │ │ ├── loop-search.ll │ │ ├── loop-strength-reduce-2.ll │ │ ├── loop-strength-reduce-3.ll │ │ ├── loop-strength-reduce-crash.ll │ │ ├── loop-strength-reduce.ll │ │ ├── loop-strength-reduce2.ll │ │ ├── loop-strength-reduce4.ll │ │ ├── loop-strength-reduce5.ll │ │ ├── loop-strength-reduce6.ll │ │ ├── loop-strength-reduce7.ll │ │ ├── loop-strength-reduce8.ll │ │ ├── lower-bitcast.ll │ │ ├── lower-vec-shift-2.ll │ │ ├── lower-vec-shift.ll │ │ ├── lower-vec-shuffle-bug.ll │ │ ├── lrshrink.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-quadratic-expand.ll │ │ ├── lsr-redundant-addressing.ll │ │ ├── lsr-reuse-trunc.ll │ │ ├── lsr-reuse.ll │ │ ├── lsr-sort.ll │ │ ├── lsr-static-addr.ll │ │ ├── lsr-wrap.ll │ │ ├── lwp-intrinsics-x86_64.ll │ │ ├── lwp-intrinsics.ll │ │ ├── lwp-schedule.ll │ │ ├── lzcnt-schedule.ll │ │ ├── lzcnt-tzcnt.ll │ │ ├── lzcnt-zext-cmp.ll │ │ ├── lzcnt.ll │ │ ├── machine-combiner-int-vec.ll │ │ ├── machine-combiner-int.ll │ │ ├── machine-combiner.ll │ │ ├── machine-copy-prop.mir │ │ ├── machine-cp.ll │ │ ├── machine-cse.ll │ │ ├── machine-outliner-debuginfo.ll │ │ ├── machine-outliner-tailcalls.ll │ │ ├── machine-outliner.ll │ │ ├── machine-region-info.mir │ │ ├── machine-sink-and-implicit-null-checks.ll │ │ ├── machine-sink.ll │ │ ├── machine-trace-metrics-crash.ll │ │ ├── machinesink-merge-debuginfo.ll │ │ ├── machinesink-null-debuginfo.ll │ │ ├── macho-comdat.ll │ │ ├── madd.ll │ │ ├── mask-negated-bool.ll │ │ ├── masked-iv-safe.ll │ │ ├── masked-iv-unsafe.ll │ │ ├── masked_gather_scatter.ll │ │ ├── masked_memop.ll │ │ ├── maskmovdqu.ll │ │ ├── materialize.ll │ │ ├── mature-mc-support.ll │ │ ├── mbp-false-cfg-break.ll │ │ ├── mcinst-avx-lowering.ll │ │ ├── mcinst-lowering.ll │ │ ├── mcu-abi.ll │ │ ├── mem-intrin-base-reg.ll │ │ ├── mem-promote-integers.ll │ │ ├── membarrier.ll │ │ ├── memcmp-minsize.ll │ │ ├── memcmp-optsize.ll │ │ ├── memcmp.ll │ │ ├── memcpy-2.ll │ │ ├── memcpy-from-string.ll │ │ ├── memcpy-struct-by-value.ll │ │ ├── memcpy.ll │ │ ├── mempcpy-32.ll │ │ ├── mempcpy.ll │ │ ├── memset-2.ll │ │ ├── memset-3.ll │ │ ├── memset-nonzero.ll │ │ ├── memset-sse-stack-realignment.ll │ │ ├── memset.ll │ │ ├── memset64-on-x86-32.ll │ │ ├── merge-consecutive-loads-128.ll │ │ ├── merge-consecutive-loads-256.ll │ │ ├── merge-consecutive-loads-512.ll │ │ ├── merge-consecutive-stores-i1.ll │ │ ├── merge-consecutive-stores.ll │ │ ├── merge-sp-update-lea.ll │ │ ├── merge-store-constants.ll │ │ ├── merge-store-partially-alias-loads.ll │ │ ├── merge_store.ll │ │ ├── merge_store_duplicated_loads.ll │ │ ├── mfence.ll │ │ ├── mingw-alloca.ll │ │ ├── misaligned-memset.ll │ │ ├── misched-aa-colored.ll │ │ ├── misched-aa-mmos.ll │ │ ├── misched-balance.ll │ │ ├── misched-code-difference-with-debug.ll │ │ ├── misched-copy.ll │ │ ├── misched-crash.ll │ │ ├── misched-fusion.ll │ │ ├── misched-ilp.ll │ │ ├── misched-matmul.ll │ │ ├── misched-matrix.ll │ │ ├── misched-new.ll │ │ ├── mmx-arg-passing-x86-64.ll │ │ ├── mmx-arg-passing.ll │ │ ├── mmx-arith.ll │ │ ├── mmx-bitcast-fold.ll │ │ ├── mmx-bitcast.ll │ │ ├── mmx-coalescing.ll │ │ ├── mmx-copy-gprs.ll │ │ ├── mmx-cvt.ll │ │ ├── mmx-fold-load.ll │ │ ├── mmx-intrinsics.ll │ │ ├── mmx-only.ll │ │ ├── mmx-schedule.ll │ │ ├── mod128.ll │ │ ├── movbe-schedule.ll │ │ ├── movbe.ll │ │ ├── movfs.ll │ │ ├── movgs.ll │ │ ├── movmsk.ll │ │ ├── movntdq-no-avx.ll │ │ ├── movpc32-check.ll │ │ ├── movtopush.ll │ │ ├── movtopush.mir │ │ ├── movtopush64.ll │ │ ├── ms-inline-asm-avx512.ll │ │ ├── ms-inline-asm.ll │ │ ├── mul-constant-i16.ll │ │ ├── mul-constant-i32.ll │ │ ├── mul-constant-i64.ll │ │ ├── mul-constant-result.ll │ │ ├── mul-i1024.ll │ │ ├── mul-i256.ll │ │ ├── mul-i512.ll │ │ ├── mul-legalize.ll │ │ ├── mul-remat.ll │ │ ├── mul-shift-reassoc.ll │ │ ├── mul128.ll │ │ ├── mul128_sext_loop.ll │ │ ├── mul64.ll │ │ ├── muloti.ll │ │ ├── mult-alt-generic-i686.ll │ │ ├── mult-alt-generic-x86_64.ll │ │ ├── mult-alt-x86.ll │ │ ├── multiple-loop-post-inc.ll │ │ ├── multiple-return-values-cross-block.ll │ │ ├── mulvi32.ll │ │ ├── mulx32.ll │ │ ├── mulx64.ll │ │ ├── musttail-fastcall.ll │ │ ├── musttail-indirect.ll │ │ ├── musttail-thiscall.ll │ │ ├── musttail-varargs.ll │ │ ├── musttail.ll │ │ ├── mwaitx-schedule.ll │ │ ├── mwaitx.ll │ │ ├── named-reg-alloc.ll │ │ ├── named-reg-notareg.ll │ │ ├── nancvt.ll │ │ ├── narrow-shl-cst.ll │ │ ├── narrow-shl-load.ll │ │ ├── narrow_op-1.ll │ │ ├── neg-shl-add.ll │ │ ├── neg_cmp.ll │ │ ├── neg_fp.ll │ │ ├── negate-add-zero.ll │ │ ├── negate-i1.ll │ │ ├── negate-shift.ll │ │ ├── negate.ll │ │ ├── negative-offset.ll │ │ ├── negative-sin.ll │ │ ├── negative-stride-fptosi-user.ll │ │ ├── negative-subscript.ll │ │ ├── negative_zero.ll │ │ ├── new-remat.ll │ │ ├── newline-and-quote.ll │ │ ├── no-and8ri8.ll │ │ ├── no-cmov.ll │ │ ├── no-plt.ll │ │ ├── no-prolog-kill.ll │ │ ├── no-sse2-avg.ll │ │ ├── nobt.ll │ │ ├── nocx16.ll │ │ ├── non-lazy-bind.ll │ │ ├── non-unique-sections.ll │ │ ├── non-value-mem-operand.mir │ │ ├── nonconst-static-ev.ll │ │ ├── nonconst-static-iv.ll │ │ ├── nontemporal-2.ll │ │ ├── nontemporal-loads.ll │ │ ├── nontemporal.ll │ │ ├── noreturn-call.ll │ │ ├── norex-subreg.ll │ │ ├── nosse-error1.ll │ │ ├── nosse-error2.ll │ │ ├── nosse-varargs.ll │ │ ├── nosse-vector.ll │ │ ├── not-and-simplify.ll │ │ ├── note-sections.ll │ │ ├── null-streamer.ll │ │ ├── objc-gc-module-flags.ll │ │ ├── object-size.ll │ │ ├── oddshuffles.ll │ │ ├── opaque-constant-asm.ll │ │ ├── opt-ext-uses.ll │ │ ├── opt-shuff-tstore.ll │ │ ├── optimize-max-0.ll │ │ ├── optimize-max-1.ll │ │ ├── optimize-max-2.ll │ │ ├── optimize-max-3.ll │ │ ├── or-address.ll │ │ ├── or-branch.ll │ │ ├── or-lea.ll │ │ ├── osx-private-labels.ll │ │ ├── overflow-intrinsic-setcc-fold.ll │ │ ├── overflow.ll │ │ ├── overlap-shift.ll │ │ ├── packed_struct.ll │ │ ├── packss.ll │ │ ├── palignr.ll │ │ ├── partial-fold32.ll │ │ ├── partial-fold64.ll │ │ ├── pass-three.ll │ │ ├── patchable-prologue.ll │ │ ├── patchpoint-invoke.ll │ │ ├── patchpoint-verifiable.mir │ │ ├── patchpoint-webkit_jscc.ll │ │ ├── patchpoint.ll │ │ ├── pause.ll │ │ ├── peep-setb.ll │ │ ├── peep-test-0.ll │ │ ├── peep-test-1.ll │ │ ├── peep-test-2.ll │ │ ├── peep-test-3.ll │ │ ├── peep-test-4.ll │ │ ├── peephole-cvt-sse.ll │ │ ├── peephole-fold-movsd.ll │ │ ├── peephole-multiple-folds.ll │ │ ├── peephole-na-phys-copy-folding.ll │ │ ├── peephole-recurrence.mir │ │ ├── peephole.mir │ │ ├── personality.ll │ │ ├── personality_size.ll │ │ ├── phaddsub.ll │ │ ├── phi-bit-propagation.ll │ │ ├── phi-immediate-factoring.ll │ │ ├── phielim-split.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 │ │ ├── pie.ll │ │ ├── pku.ll │ │ ├── pmovext.ll │ │ ├── pmovsx-inreg.ll │ │ ├── pmul.ll │ │ ├── pmulld.ll │ │ ├── pointer-vector.ll │ │ ├── pop-stack-cleanup-msvc.ll │ │ ├── pop-stack-cleanup.ll │ │ ├── popcnt-schedule.ll │ │ ├── popcnt.ll │ │ ├── post-ra-sched-with-debug.mir │ │ ├── post-ra-sched.ll │ │ ├── postalloc-coalescing.ll │ │ ├── postra-licm.ll │ │ ├── powi.ll │ │ ├── pr10068.ll │ │ ├── pr10475.ll │ │ ├── pr10499.ll │ │ ├── pr10523.ll │ │ ├── pr10524.ll │ │ ├── pr10525.ll │ │ ├── pr10526.ll │ │ ├── pr11202.ll │ │ ├── pr11334.ll │ │ ├── pr11415.ll │ │ ├── pr11468.ll │ │ ├── pr11985.ll │ │ ├── pr11998.ll │ │ ├── pr12312.ll │ │ ├── pr12360.ll │ │ ├── pr12889.ll │ │ ├── pr13209.ll │ │ ├── pr13220.ll │ │ ├── pr13458.ll │ │ ├── pr13577.ll │ │ ├── pr13859.ll │ │ ├── pr13899.ll │ │ ├── pr14088.ll │ │ ├── pr14098.ll │ │ ├── pr14161.ll │ │ ├── pr14204.ll │ │ ├── pr14314.ll │ │ ├── pr14333.ll │ │ ├── pr14562.ll │ │ ├── pr1462.ll │ │ ├── pr1489.ll │ │ ├── pr1505.ll │ │ ├── pr1505b.ll │ │ ├── pr15267.ll │ │ ├── pr15296.ll │ │ ├── pr15309.ll │ │ ├── pr15705.ll │ │ ├── pr15981.ll │ │ ├── pr16031.ll │ │ ├── pr16360.ll │ │ ├── pr16807.ll │ │ ├── pr17546.ll │ │ ├── pr17631.ll │ │ ├── pr17764.ll │ │ ├── pr18014.ll │ │ ├── pr18054.ll │ │ ├── pr18162.ll │ │ ├── pr18344.ll │ │ ├── pr18846.ll │ │ ├── pr19049.ll │ │ ├── pr20011.ll │ │ ├── pr20012.ll │ │ ├── pr20020.ll │ │ ├── pr20088.ll │ │ ├── pr21099.ll │ │ ├── pr2177.ll │ │ ├── pr21792.ll │ │ ├── pr2182.ll │ │ ├── pr22019.ll │ │ ├── pr22103.ll │ │ ├── pr22338.ll │ │ ├── pr22774.ll │ │ ├── pr22970.ll │ │ ├── pr23103.ll │ │ ├── pr23246.ll │ │ ├── pr2326.ll │ │ ├── pr23273.ll │ │ ├── pr23603.ll │ │ ├── pr23664.ll │ │ ├── pr24139.ll │ │ ├── pr24374.ll │ │ ├── pr24602.ll │ │ ├── pr25828.ll │ │ ├── pr2585.ll │ │ ├── pr26350.ll │ │ ├── pr2656.ll │ │ ├── pr2659.ll │ │ ├── pr26625.ll │ │ ├── pr26652.ll │ │ ├── pr26757.ll │ │ ├── pr26835.ll │ │ ├── pr26870.ll │ │ ├── pr27071.ll │ │ ├── pr27501.ll │ │ ├── pr27591.ll │ │ ├── pr27681.mir │ │ ├── pr28129.ll │ │ ├── pr28173.ll │ │ ├── pr28444.ll │ │ ├── pr28472.ll │ │ ├── pr28489.ll │ │ ├── pr2849.ll │ │ ├── pr28504.ll │ │ ├── pr28515.ll │ │ ├── pr28560.ll │ │ ├── pr28824.ll │ │ ├── pr29010.ll │ │ ├── pr29022.ll │ │ ├── pr29061.ll │ │ ├── pr29112.ll │ │ ├── pr29170.ll │ │ ├── pr2924.ll │ │ ├── pr2982.ll │ │ ├── pr30284.ll │ │ ├── pr30430.ll │ │ ├── pr30511.ll │ │ ├── pr30562.ll │ │ ├── pr30813.ll │ │ ├── pr31045.ll │ │ ├── pr31088.ll │ │ ├── pr31143.ll │ │ ├── pr31242.ll │ │ ├── pr31271.ll │ │ ├── pr31323.ll │ │ ├── pr3154.ll │ │ ├── pr31773.ll │ │ ├── pr31956.ll │ │ ├── pr32108.ll │ │ ├── pr3216.ll │ │ ├── pr32241.ll │ │ ├── pr32256.ll │ │ ├── pr32278.ll │ │ ├── pr32282.ll │ │ ├── pr32284.ll │ │ ├── pr32329.ll │ │ ├── pr32340.ll │ │ ├── pr32345.ll │ │ ├── pr32368.ll │ │ ├── pr3241.ll │ │ ├── pr32420.ll │ │ ├── pr3243.ll │ │ ├── pr3244.ll │ │ ├── pr32451.ll │ │ ├── pr32484.ll │ │ ├── pr3250.ll │ │ ├── pr32515.ll │ │ ├── pr32588.ll │ │ ├── pr32610.ll │ │ ├── pr32659.ll │ │ ├── pr32907.ll │ │ ├── pr3317.ll │ │ ├── pr33290.ll │ │ ├── pr33349.ll │ │ ├── pr33396.ll │ │ ├── pr3366.ll │ │ ├── pr33715.ll │ │ ├── pr33772.ll │ │ ├── pr33828.ll │ │ ├── pr33844.ll │ │ ├── pr33954.ll │ │ ├── pr33960.ll │ │ ├── pr34080-2.ll │ │ ├── pr34080.ll │ │ ├── pr34088.ll │ │ ├── pr34137.ll │ │ ├── pr34139.ll │ │ ├── pr34149.ll │ │ ├── pr34177.ll │ │ ├── pr34271-1.ll │ │ ├── pr34271.ll │ │ ├── pr34381.ll │ │ ├── pr34397.ll │ │ ├── pr34421.ll │ │ ├── pr3457.ll │ │ ├── pr34592.ll │ │ ├── pr34605.ll │ │ ├── pr34629.ll │ │ ├── pr34634.ll │ │ ├── pr34653.ll │ │ ├── pr34657.ll │ │ ├── pr34855.ll │ │ ├── pr3522.ll │ │ ├── pr35272.ll │ │ ├── pr35399.ll │ │ ├── pr35443.ll │ │ ├── pr35636.ll │ │ ├── pr35761.ll │ │ ├── pr35765.ll │ │ ├── pr35972.ll │ │ ├── pr36199.ll │ │ ├── pr36553.ll │ │ ├── pr37563.ll │ │ ├── pr5145.ll │ │ ├── pr7882.ll │ │ ├── pr9127.ll │ │ ├── pr9743.ll │ │ ├── pre-coalesce-2.ll │ │ ├── pre-coalesce.ll │ │ ├── pre-coalesce.mir │ │ ├── pre-ra-sched.ll │ │ ├── prefetch.ll │ │ ├── prefixdata.ll │ │ ├── preserve_allcc64.ll │ │ ├── preserve_mostcc64.ll │ │ ├── private-2.ll │ │ ├── private.ll │ │ ├── prolog-push-seq.ll │ │ ├── prologue-epilogue-remarks.mir │ │ ├── prologuedata.ll │ │ ├── promote-assert-zext.ll │ │ ├── promote-i16.ll │ │ ├── promote-trunc.ll │ │ ├── promote-vec3.ll │ │ ├── promote.ll │ │ ├── ps4-noreturn.ll │ │ ├── pseudo_cmov_lower.ll │ │ ├── pseudo_cmov_lower1.ll │ │ ├── pseudo_cmov_lower2.ll │ │ ├── pshufb-mask-comments.ll │ │ ├── pshufd-combine-crash.ll │ │ ├── psubus.ll │ │ ├── ptr-rotate.ll │ │ ├── ptrtoint-constexpr.ll │ │ ├── push-cfi-debug.ll │ │ ├── push-cfi-obj.ll │ │ ├── push-cfi.ll │ │ ├── ragreedy-bug.ll │ │ ├── ragreedy-hoist-spill.ll │ │ ├── ragreedy-last-chance-recoloring.ll │ │ ├── rd-mod-wr-eflags.ll │ │ ├── rdpmc.ll │ │ ├── rdrand-schedule.ll │ │ ├── rdrand-x86_64.ll │ │ ├── rdrand.ll │ │ ├── rdseed-schedule.ll │ │ ├── rdseed-x86_64.ll │ │ ├── rdseed.ll │ │ ├── rdtsc.ll │ │ ├── read-fp-no-frame-pointer.ll │ │ ├── recip-fastmath.ll │ │ ├── recip-fastmath2.ll │ │ ├── recip-pic.ll │ │ ├── red-zone.ll │ │ ├── red-zone2.ll │ │ ├── reduce-trunc-shl.ll │ │ ├── regalloc-reconcile-broken-hints.ll │ │ ├── regalloc-spill-at-ehpad.ll │ │ ├── regcall-no-plt.ll │ │ ├── reghinting.ll │ │ ├── regparm.ll │ │ ├── regpressure.ll │ │ ├── rem.ll │ │ ├── rem_crash.ll │ │ ├── remat-constant.ll │ │ ├── remat-fold-load.ll │ │ ├── remat-mov-0.ll │ │ ├── remat-phys-dead.ll │ │ ├── remat-scalar-zero.ll │ │ ├── replace-load-and-with-bzhi.ll │ │ ├── replace_unsupported_masked_mem_intrin.ll │ │ ├── ret-addr.ll │ │ ├── ret-i64-0.ll │ │ ├── ret-mmx.ll │ │ ├── retpoline-external.ll │ │ ├── retpoline-regparm.ll │ │ ├── retpoline.ll │ │ ├── return-ext.ll │ │ ├── return_zeroext_i2.ll │ │ ├── returned-trunc-tail-calls.ll │ │ ├── reverse_branches.ll │ │ ├── rip-rel-address.ll │ │ ├── rip-rel-lea.ll │ │ ├── rodata-relocs.ll │ │ ├── rot16.ll │ │ ├── rot32.ll │ │ ├── rot64.ll │ │ ├── rotate.ll │ │ ├── rotate2.ll │ │ ├── rotate4.ll │ │ ├── rotate_vec.ll │ │ ├── rounding-ops.ll │ │ ├── rrlist-livereg-corrutpion.ll │ │ ├── rtm-schedule.ll │ │ ├── rtm.ll │ │ ├── sad.ll │ │ ├── sad_variations.ll │ │ ├── saddo-redundant-add.ll │ │ ├── safestack.ll │ │ ├── safestack_ssp.ll │ │ ├── sandybridge-loads.ll │ │ ├── sar_fold.ll │ │ ├── sar_fold64.ll │ │ ├── sbb.ll │ │ ├── scalar-extract.ll │ │ ├── scalar-fp-to-i64.ll │ │ ├── scalar-int-to-fp.ll │ │ ├── scalar-min-max-fill-operand.ll │ │ ├── scalar_sse_minmax.ll │ │ ├── scalar_widen_div.ll │ │ ├── scalarize-bitcast.ll │ │ ├── scatter-schedule.ll │ │ ├── scavenger.mir │ │ ├── scev-interchange.ll │ │ ├── schedule-x86_32.ll │ │ ├── schedule-x86_64.ll │ │ ├── scheduler-backtracking.ll │ │ ├── sdiv-exact.ll │ │ ├── sdiv-pow2.ll │ │ ├── segmented-stacks-dynamic.ll │ │ ├── segmented-stacks.ll │ │ ├── seh-catch-all-win32.ll │ │ ├── seh-catch-all.ll │ │ ├── seh-catchpad.ll │ │ ├── seh-except-finally.ll │ │ ├── seh-exception-code.ll │ │ ├── seh-filter-no-personality.ll │ │ ├── seh-finally.ll │ │ ├── seh-no-invokes.ll │ │ ├── seh-safe-div-win32.ll │ │ ├── seh-safe-div.ll │ │ ├── seh-stack-realign.ll │ │ ├── select-mmx.ll │ │ ├── select-with-and-or.ll │ │ ├── select.ll │ │ ├── select_const.ll │ │ ├── select_meta.ll │ │ ├── selectiondag-crash.ll │ │ ├── selectiondag-cse.ll │ │ ├── selectiondag-dominator.ll │ │ ├── selectiondag-order.ll │ │ ├── setcc-combine.ll │ │ ├── setcc-logic.ll │ │ ├── setcc-lowering.ll │ │ ├── setcc-narrowing.ll │ │ ├── setcc-wide-types.ll │ │ ├── setcc.ll │ │ ├── setjmp-spills.ll │ │ ├── setoeq.ll │ │ ├── setuge.ll │ │ ├── sext-i1.ll │ │ ├── sext-load.ll │ │ ├── sext-ret-val.ll │ │ ├── sext-setcc-self.ll │ │ ├── sext-subreg.ll │ │ ├── sext-trunc.ll │ │ ├── sha-schedule.ll │ │ ├── sha.ll │ │ ├── shift-and.ll │ │ ├── shift-avx2-crash.ll │ │ ├── shift-bmi2.ll │ │ ├── shift-coalesce.ll │ │ ├── shift-codegen.ll │ │ ├── shift-combine-crash.ll │ │ ├── shift-combine.ll │ │ ├── shift-double-x86_64.ll │ │ ├── shift-double.ll │ │ ├── shift-folding.ll │ │ ├── shift-i128.ll │ │ ├── shift-i256.ll │ │ ├── shift-one.ll │ │ ├── shift-pair.ll │ │ ├── shift-parts.ll │ │ ├── shift-pcmp.ll │ │ ├── shl-anyext.ll │ │ ├── shl-crash-on-legalize.ll │ │ ├── shl-i64.ll │ │ ├── shl_elim.ll │ │ ├── shl_undef.ll │ │ ├── shrink-compare.ll │ │ ├── shrink-fp-const1.ll │ │ ├── shrink-fp-const2.ll │ │ ├── shrink-wrap-chkstk.ll │ │ ├── shrink_vmul.ll │ │ ├── shrink_vmul_sse.ll │ │ ├── shrinkwrap-hang.ll │ │ ├── shuffle-combine-crash-2.ll │ │ ├── shuffle-combine-crash.ll │ │ ├── shuffle-of-insert.ll │ │ ├── shuffle-of-splat-multiuses.ll │ │ ├── shuffle-strided-with-offset-128.ll │ │ ├── shuffle-strided-with-offset-256.ll │ │ ├── shuffle-strided-with-offset-512.ll │ │ ├── shuffle-vs-trunc-128.ll │ │ ├── shuffle-vs-trunc-256.ll │ │ ├── shuffle-vs-trunc-512.ll │ │ ├── sibcall-2.ll │ │ ├── sibcall-3.ll │ │ ├── sibcall-4.ll │ │ ├── sibcall-5.ll │ │ ├── sibcall-6.ll │ │ ├── sibcall-byval.ll │ │ ├── sibcall-win64.ll │ │ ├── sibcall.ll │ │ ├── simple-zext.ll │ │ ├── sincos-opt.ll │ │ ├── sincos.ll │ │ ├── sink-blockfreq.ll │ │ ├── sink-cheap-instructions.ll │ │ ├── sink-gep-before-mem-inst.ll │ │ ├── sink-hoist.ll │ │ ├── sink-out-of-loop.ll │ │ ├── sjlj-baseptr.ll │ │ ├── sjlj-eh.ll │ │ ├── sjlj.ll │ │ ├── slow-incdec.ll │ │ ├── slow-pmulld.ll │ │ ├── slow-unaligned-mem.ll │ │ ├── small-byval-memcpy.ll │ │ ├── smul-with-overflow.ll │ │ ├── soft-fp-legal-in-HW-reg.ll │ │ ├── soft-fp.ll │ │ ├── soft-sitofp.ll │ │ ├── splat-const.ll │ │ ├── splat-for-size.ll │ │ ├── split-eh-lpad-edges.ll │ │ ├── split-extend-vector-inreg.ll │ │ ├── split-store.ll │ │ ├── split-vector-bitcast.ll │ │ ├── split-vector-rem.ll │ │ ├── sqrt-fastmath-mir.ll │ │ ├── sqrt-fastmath-tune.ll │ │ ├── sqrt-fastmath.ll │ │ ├── sqrt-partial.ll │ │ ├── sqrt.ll │ │ ├── sret-implicit.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-domains.ll │ │ ├── sse-fcopysign.ll │ │ ├── sse-fsignum.ll │ │ ├── sse-intel-ocl.ll │ │ ├── sse-intrinsics-fast-isel-x86_64.ll │ │ ├── sse-intrinsics-fast-isel.ll │ │ ├── sse-intrinsics-x86-upgrade.ll │ │ ├── sse-intrinsics-x86.ll │ │ ├── sse-intrinsics-x86_64.ll │ │ ├── sse-load-ret.ll │ │ ├── sse-minmax.ll │ │ ├── sse-only.ll │ │ ├── sse-regcall.ll │ │ ├── sse-scalar-fp-arith-unary.ll │ │ ├── sse-scalar-fp-arith.ll │ │ ├── sse-schedule.ll │ │ ├── sse-unaligned-mem-feature.ll │ │ ├── sse-varargs.ll │ │ ├── sse1.ll │ │ ├── sse2-intrinsics-fast-isel-x86_64.ll │ │ ├── sse2-intrinsics-fast-isel.ll │ │ ├── sse2-intrinsics-x86-upgrade.ll │ │ ├── sse2-intrinsics-x86.ll │ │ ├── sse2-intrinsics-x86_64.ll │ │ ├── sse2-schedule.ll │ │ ├── sse2-vector-shifts.ll │ │ ├── sse2.ll │ │ ├── sse3-avx-addsub-2.ll │ │ ├── sse3-avx-addsub.ll │ │ ├── sse3-intrinsics-fast-isel.ll │ │ ├── sse3-intrinsics-x86.ll │ │ ├── sse3-schedule.ll │ │ ├── sse3.ll │ │ ├── sse41-intrinsics-fast-isel.ll │ │ ├── sse41-intrinsics-x86-upgrade.ll │ │ ├── sse41-intrinsics-x86.ll │ │ ├── sse41-pmovxrm.ll │ │ ├── sse41-schedule.ll │ │ ├── sse41.ll │ │ ├── sse42-intrinsics-fast-isel-x86_64.ll │ │ ├── sse42-intrinsics-fast-isel.ll │ │ ├── sse42-intrinsics-x86.ll │ │ ├── sse42-intrinsics-x86_64.ll │ │ ├── sse42-schedule.ll │ │ ├── sse4a-intrinsics-fast-isel.ll │ │ ├── sse4a-schedule.ll │ │ ├── sse4a-upgrade.ll │ │ ├── sse4a.ll │ │ ├── sse_partial_update.ll │ │ ├── sse_reload_fold.ll │ │ ├── ssp-data-layout.ll │ │ ├── ssp-guard-spill.ll │ │ ├── ssse3-intrinsics-fast-isel.ll │ │ ├── ssse3-intrinsics-x86.ll │ │ ├── ssse3-schedule.ll │ │ ├── stack-align-memcpy.ll │ │ ├── stack-align.ll │ │ ├── stack-align2.ll │ │ ├── stack-folding-3dnow.ll │ │ ├── stack-folding-adx-x86_64.ll │ │ ├── stack-folding-bmi.ll │ │ ├── stack-folding-bmi2.ll │ │ ├── stack-folding-fp-avx1.ll │ │ ├── stack-folding-fp-avx512.ll │ │ ├── stack-folding-fp-avx512vl.ll │ │ ├── stack-folding-fp-sse42.ll │ │ ├── stack-folding-int-avx1.ll │ │ ├── stack-folding-int-avx2.ll │ │ ├── stack-folding-int-avx512.ll │ │ ├── stack-folding-int-avx512vl.ll │ │ ├── stack-folding-int-sse42.ll │ │ ├── stack-folding-lwp.ll │ │ ├── stack-folding-mmx.ll │ │ ├── stack-folding-sha.ll │ │ ├── stack-folding-tbm.ll │ │ ├── stack-folding-x86_64.ll │ │ ├── stack-folding-xop.ll │ │ ├── stack-probe-red-zone.ll │ │ ├── stack-probe-size.ll │ │ ├── stack-probes.ll │ │ ├── stack-protector-dbginfo.ll │ │ ├── stack-protector-msvc.ll │ │ ├── stack-protector-remarks.ll │ │ ├── stack-protector-target.ll │ │ ├── stack-protector-vreg-to-vreg-copy.ll │ │ ├── stack-protector-weight.ll │ │ ├── stack-protector.ll │ │ ├── stack-size-section.ll │ │ ├── stack-update-frame-opcode.ll │ │ ├── stack_guard_remat.ll │ │ ├── stackguard-internal.ll │ │ ├── stackmap-fast-isel.ll │ │ ├── stackmap-frame-setup.ll │ │ ├── stackmap-large-constants.ll │ │ ├── stackmap-large-location-size.ll │ │ ├── stackmap-liveness.ll │ │ ├── stackmap-nops.ll │ │ ├── stackmap-shadow-optimization.ll │ │ ├── stackmap.ll │ │ ├── stackpointer.ll │ │ ├── statepoint-allocas.ll │ │ ├── statepoint-call-lowering.ll │ │ ├── statepoint-far-call.ll │ │ ├── statepoint-forward.ll │ │ ├── statepoint-gctransition-call-lowering.ll │ │ ├── statepoint-invoke.ll │ │ ├── statepoint-live-in.ll │ │ ├── statepoint-stack-usage.ll │ │ ├── statepoint-stackmap-format.ll │ │ ├── statepoint-uniqueing.ll │ │ ├── statepoint-vector-bad-spill.ll │ │ ├── statepoint-vector.ll │ │ ├── stdarg.ll │ │ ├── stdcall-notailcall.ll │ │ ├── stdcall.ll │ │ ├── store-empty-member.ll │ │ ├── store-fp-constant.ll │ │ ├── store-global-address.ll │ │ ├── store-narrow.ll │ │ ├── store-zero-and-minus-one.ll │ │ ├── store_op_load_fold.ll │ │ ├── store_op_load_fold2.ll │ │ ├── stores-merging.ll │ │ ├── storetrunc-fp.ll │ │ ├── stride-nine-with-base-reg.ll │ │ ├── stride-reuse.ll │ │ ├── sub-with-overflow.ll │ │ ├── sub.ll │ │ ├── subcarry.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 │ │ ├── subvector-broadcast.ll │ │ ├── sunkaddr-ext.ll │ │ ├── swift-error.ll │ │ ├── swift-return.ll │ │ ├── swiftcc.ll │ │ ├── swifterror.ll │ │ ├── swiftself.ll │ │ ├── switch-bt.ll │ │ ├── switch-crit-edge-constant.ll │ │ ├── switch-default-only.ll │ │ ├── switch-density.ll │ │ ├── switch-edge-weight.ll │ │ ├── switch-jump-table.ll │ │ ├── switch-lower-peel-top-case.ll │ │ ├── switch-or.ll │ │ ├── switch-order-weight.ll │ │ ├── switch-zextload.ll │ │ ├── switch.ll │ │ ├── swizzle-2.ll │ │ ├── swizzle-avx2.ll │ │ ├── system-intrinsics-64-xsave.ll │ │ ├── system-intrinsics-64-xsavec.ll │ │ ├── system-intrinsics-64-xsaveopt.ll │ │ ├── system-intrinsics-64-xsaves.ll │ │ ├── system-intrinsics-64.ll │ │ ├── system-intrinsics-xgetbv.ll │ │ ├── system-intrinsics-xsave.ll │ │ ├── system-intrinsics-xsavec.ll │ │ ├── system-intrinsics-xsaveopt.ll │ │ ├── system-intrinsics-xsaves.ll │ │ ├── system-intrinsics-xsetbv.ll │ │ ├── system-intrinsics.ll │ │ ├── tail-call-attrs.ll │ │ ├── tail-call-casts.ll │ │ ├── tail-call-conditional.mir │ │ ├── tail-call-got.ll │ │ ├── tail-call-legality.ll │ │ ├── tail-call-mutable-memarg.ll │ │ ├── tail-call-parameter-attrs-mismatch.ll │ │ ├── tail-call-win64.ll │ │ ├── tail-dup-addr.ll │ │ ├── tail-dup-catchret.ll │ │ ├── tail-dup-debugloc.ll │ │ ├── tail-dup-merge-loop-headers.ll │ │ ├── tail-dup-no-other-successor.ll │ │ ├── tail-dup-repeat.ll │ │ ├── tail-merge-after-mbp.mir │ │ ├── tail-merge-debugloc.ll │ │ ├── tail-merge-identical.ll │ │ ├── tail-merge-unreachable.ll │ │ ├── tail-merge-wineh.ll │ │ ├── tail-opts.ll │ │ ├── tail-threshold.ll │ │ ├── tailcall-64.ll │ │ ├── tailcall-calleesave.ll │ │ ├── tailcall-cgp-dup.ll │ │ ├── tailcall-disable.ll │ │ ├── tailcall-fastisel.ll │ │ ├── tailcall-largecode.ll │ │ ├── tailcall-mem-intrinsics.ll │ │ ├── tailcall-msvc-conventions.ll │ │ ├── tailcall-multiret.ll │ │ ├── tailcall-readnone.ll │ │ ├── tailcall-returndup-void.ll │ │ ├── tailcall-ri64.ll │ │ ├── tailcall-stackalign.ll │ │ ├── tailcall-structret.ll │ │ ├── tailcall.ll │ │ ├── tailcallbyval.ll │ │ ├── tailcallbyval64.ll │ │ ├── tailcallfp.ll │ │ ├── tailcallfp2.ll │ │ ├── tailcallpic1.ll │ │ ├── tailcallpic2.ll │ │ ├── tailcallpic3.ll │ │ ├── tailcallstack64.ll │ │ ├── taildup-crash.ll │ │ ├── targetLoweringGeneric.ll │ │ ├── tbm-intrinsics-fast-isel-x86_64.ll │ │ ├── tbm-intrinsics-fast-isel.ll │ │ ├── tbm-intrinsics-x86_64.ll │ │ ├── tbm-schedule.ll │ │ ├── tbm_patterns.ll │ │ ├── test-nofold.ll │ │ ├── test-shrink-bug.ll │ │ ├── test-shrink.ll │ │ ├── testb-je-fusion.ll │ │ ├── testl-commute.ll │ │ ├── this-return-64.ll │ │ ├── tls-addr-non-leaf-function.ll │ │ ├── tls-android-negative.ll │ │ ├── tls-android.ll │ │ ├── tls-local-dynamic.ll │ │ ├── tls-models.ll │ │ ├── tls-pic.ll │ │ ├── tls-pie.ll │ │ ├── tls-shrink-wrapping.ll │ │ ├── tls-windows-itanium.ll │ │ ├── tls.ll │ │ ├── tlv-1.ll │ │ ├── tlv-2.ll │ │ ├── tlv-3.ll │ │ ├── token_landingpad.ll │ │ ├── trap.ll │ │ ├── trunc-ext-ld-st.ll │ │ ├── trunc-store.ll │ │ ├── trunc-to-bool.ll │ │ ├── twoaddr-coalesce-2.ll │ │ ├── twoaddr-coalesce-3.ll │ │ ├── twoaddr-coalesce.ll │ │ ├── twoaddr-lea.ll │ │ ├── twoaddr-pass-sink.ll │ │ ├── twoaddr-sink-terminator.ll │ │ ├── uint64-to-float.ll │ │ ├── uint_to_fp-2.ll │ │ ├── uint_to_fp-3.ll │ │ ├── uint_to_fp.ll │ │ ├── umul-with-carry.ll │ │ ├── umul-with-overflow.ll │ │ ├── unaligned-32-byte-memops.ll │ │ ├── unaligned-load.ll │ │ ├── unaligned-spill-folding.ll │ │ ├── undef-label.ll │ │ ├── unknown-location.ll │ │ ├── unreachable-loop-sinking.ll │ │ ├── unreachableblockelim.ll │ │ ├── unused_stackslots.ll │ │ ├── unwind-init.ll │ │ ├── unwindraise.ll │ │ ├── update-terminator-debugloc.ll │ │ ├── update-terminator.mir │ │ ├── urem-i8-constant.ll │ │ ├── urem-power-of-two.ll │ │ ├── use-add-flags.ll │ │ ├── utf16-cfstrings.ll │ │ ├── utf8.ll │ │ ├── v2f32.ll │ │ ├── v4f32-immediate.ll │ │ ├── v4i32load-crash.ll │ │ ├── v8i1-masks.ll │ │ ├── vaargs.ll │ │ ├── vaes-intrinsics-avx-x86.ll │ │ ├── vaes-intrinsics-avx512-x86.ll │ │ ├── vaes-intrinsics-avx512vl-x86.ll │ │ ├── var-permute-128.ll │ │ ├── var-permute-256.ll │ │ ├── var-permute-512.ll │ │ ├── vararg-callee-cleanup.ll │ │ ├── vararg_no_start.ll │ │ ├── vararg_tailcall.ll │ │ ├── variable-sized-darwin-bzero.ll │ │ ├── variadic-node-pic.ll │ │ ├── vastart-defs-eflags.ll │ │ ├── vbinop-simplify-bug.ll │ │ ├── vec-copysign-avx512.ll │ │ ├── vec-copysign.ll │ │ ├── vec-loadsingles-alignment.ll │ │ ├── vec-trunc-store.ll │ │ ├── vec3.ll │ │ ├── vec_add.ll │ │ ├── vec_align.ll │ │ ├── vec_align_i256.ll │ │ ├── vec_anyext.ll │ │ ├── vec_call.ll │ │ ├── vec_cast.ll │ │ ├── vec_cast2.ll │ │ ├── vec_cmp_sint-128.ll │ │ ├── vec_cmp_uint-128.ll │ │ ├── vec_compare-sse4.ll │ │ ├── vec_compare.ll │ │ ├── vec_ctbits.ll │ │ ├── vec_ext_inreg.ll │ │ ├── vec_extract-avx.ll │ │ ├── vec_extract-mmx.ll │ │ ├── vec_extract-sse4.ll │ │ ├── vec_extract.ll │ │ ├── vec_fabs.ll │ │ ├── vec_floor.ll │ │ ├── vec_fneg.ll │ │ ├── vec_fp_to_int.ll │ │ ├── vec_fpext.ll │ │ ├── vec_fptrunc.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-7.ll │ │ ├── vec_insert-8.ll │ │ ├── vec_insert-9.ll │ │ ├── vec_insert-mmx.ll │ │ ├── vec_int_to_fp.ll │ │ ├── vec_loadsingles.ll │ │ ├── vec_logical.ll │ │ ├── vec_minmax_match.ll │ │ ├── vec_minmax_sint.ll │ │ ├── vec_minmax_uint.ll │ │ ├── vec_partial.ll │ │ ├── vec_reassociate.ll │ │ ├── vec_return.ll │ │ ├── vec_round.ll │ │ ├── vec_sdiv_to_shift.ll │ │ ├── vec_set-2.ll │ │ ├── vec_set-3.ll │ │ ├── vec_set-4.ll │ │ ├── vec_set-6.ll │ │ ├── vec_set-7.ll │ │ ├── vec_set-8.ll │ │ ├── vec_set-A.ll │ │ ├── vec_set-B.ll │ │ ├── vec_set-C.ll │ │ ├── vec_set-D.ll │ │ ├── vec_set-F.ll │ │ ├── vec_set-H.ll │ │ ├── vec_set.ll │ │ ├── vec_setcc-2.ll │ │ ├── vec_setcc.ll │ │ ├── vec_shift.ll │ │ ├── vec_shift2.ll │ │ ├── vec_shift3.ll │ │ ├── vec_shift4.ll │ │ ├── vec_shift5.ll │ │ ├── vec_shift6.ll │ │ ├── vec_shift7.ll │ │ ├── vec_shuf-insert.ll │ │ ├── vec_split.ll │ │ ├── vec_ss_load_fold.ll │ │ ├── vec_trunc_sext.ll │ │ ├── vec_udiv_to_shift.ll │ │ ├── vec_uint_to_fp-fastmath.ll │ │ ├── vec_uint_to_fp.ll │ │ ├── vec_unsafe-fp-math.ll │ │ ├── vec_zero-2.ll │ │ ├── vec_zero.ll │ │ ├── vec_zero_cse.ll │ │ ├── vector-bitreverse.ll │ │ ├── vector-blend.ll │ │ ├── vector-compare-all_of.ll │ │ ├── vector-compare-any_of.ll │ │ ├── vector-compare-combines.ll │ │ ├── vector-compare-results.ll │ │ ├── vector-extend-inreg.ll │ │ ├── vector-gep.ll │ │ ├── vector-half-conversions.ll │ │ ├── vector-idiv-sdiv-128.ll │ │ ├── vector-idiv-sdiv-256.ll │ │ ├── vector-idiv-sdiv-512.ll │ │ ├── vector-idiv-udiv-128.ll │ │ ├── vector-idiv-udiv-256.ll │ │ ├── vector-idiv-udiv-512.ll │ │ ├── vector-idiv.ll │ │ ├── vector-interleave.ll │ │ ├── vector-intrinsics.ll │ │ ├── vector-lzcnt-128.ll │ │ ├── vector-lzcnt-256.ll │ │ ├── vector-lzcnt-512.ll │ │ ├── vector-merge-store-fp-constants.ll │ │ ├── vector-mul.ll │ │ ├── vector-narrow-binop.ll │ │ ├── vector-pcmp.ll │ │ ├── vector-popcnt-128.ll │ │ ├── vector-popcnt-256.ll │ │ ├── vector-popcnt-512.ll │ │ ├── vector-rem.ll │ │ ├── vector-rotate-128.ll │ │ ├── vector-rotate-256.ll │ │ ├── vector-rotate-512.ll │ │ ├── vector-sext.ll │ │ ├── vector-shift-ashr-128.ll │ │ ├── vector-shift-ashr-256.ll │ │ ├── vector-shift-ashr-512.ll │ │ ├── vector-shift-lshr-128.ll │ │ ├── vector-shift-lshr-256.ll │ │ ├── vector-shift-lshr-512.ll │ │ ├── vector-shift-shl-128.ll │ │ ├── vector-shift-shl-256.ll │ │ ├── vector-shift-shl-512.ll │ │ ├── vector-shuffle-128-v16.ll │ │ ├── vector-shuffle-128-v2.ll │ │ ├── vector-shuffle-128-v4.ll │ │ ├── vector-shuffle-128-v8.ll │ │ ├── vector-shuffle-256-v16.ll │ │ ├── vector-shuffle-256-v32.ll │ │ ├── vector-shuffle-256-v4.ll │ │ ├── vector-shuffle-256-v8.ll │ │ ├── vector-shuffle-512-v16.ll │ │ ├── vector-shuffle-512-v32.ll │ │ ├── vector-shuffle-512-v64.ll │ │ ├── vector-shuffle-512-v8.ll │ │ ├── vector-shuffle-avx512.ll │ │ ├── vector-shuffle-combining-avx.ll │ │ ├── vector-shuffle-combining-avx2.ll │ │ ├── vector-shuffle-combining-avx512bw.ll │ │ ├── vector-shuffle-combining-avx512bwvl.ll │ │ ├── vector-shuffle-combining-avx512vbmi.ll │ │ ├── vector-shuffle-combining-sse41.ll │ │ ├── vector-shuffle-combining-sse4a.ll │ │ ├── vector-shuffle-combining-ssse3.ll │ │ ├── vector-shuffle-combining-xop.ll │ │ ├── vector-shuffle-combining.ll │ │ ├── vector-shuffle-masked.ll │ │ ├── vector-shuffle-mmx.ll │ │ ├── vector-shuffle-sse1.ll │ │ ├── vector-shuffle-sse41.ll │ │ ├── vector-shuffle-sse4a.ll │ │ ├── vector-shuffle-v1.ll │ │ ├── vector-shuffle-v48.ll │ │ ├── vector-shuffle-variable-128.ll │ │ ├── vector-shuffle-variable-256.ll │ │ ├── vector-sqrt.ll │ │ ├── vector-trunc-math.ll │ │ ├── vector-trunc.ll │ │ ├── vector-truncate-combine.ll │ │ ├── vector-tzcnt-128.ll │ │ ├── vector-tzcnt-256.ll │ │ ├── vector-tzcnt-512.ll │ │ ├── vector-unsigned-cmp.ll │ │ ├── vector-variable-idx.ll │ │ ├── vector-variable-idx2.ll │ │ ├── vector-zext.ll │ │ ├── vector-zmov.ll │ │ ├── vector.ll │ │ ├── vectorcall.ll │ │ ├── verifier-phi-fail0.mir │ │ ├── verifier-phi.mir │ │ ├── version_directive.ll │ │ ├── vfcmp.ll │ │ ├── viabs.ll │ │ ├── virtual-registers-cleared-in-machine-functions-liveins.ll │ │ ├── visibility.ll │ │ ├── visibility2.ll │ │ ├── vmovq.ll │ │ ├── volatile.ll │ │ ├── vortex-bug.ll │ │ ├── vpshufbitqbm-intrinsics.ll │ │ ├── vselect-2.ll │ │ ├── vselect-avx.ll │ │ ├── vselect-constants.ll │ │ ├── vselect-minmax.ll │ │ ├── vselect-packss.ll │ │ ├── vselect-pcmp.ll │ │ ├── vselect-zero.ll │ │ ├── vselect.ll │ │ ├── vshift-1.ll │ │ ├── vshift-2.ll │ │ ├── vshift-3.ll │ │ ├── vshift-4.ll │ │ ├── vshift-5.ll │ │ ├── vshift-6.ll │ │ ├── vshift_scalar.ll │ │ ├── vshift_split.ll │ │ ├── vshift_split2.ll │ │ ├── vsplit-and.ll │ │ ├── vzero-excess.ll │ │ ├── warn-stack.ll │ │ ├── weak-undef.ll │ │ ├── weak.ll │ │ ├── weak_def_can_be_hidden.ll │ │ ├── webkit-jscc.ll │ │ ├── wide-fma-contraction.ll │ │ ├── wide-integer-cmp.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_bitops-0.ll │ │ ├── widen_bitops-1.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_compare-1.ll │ │ ├── widen_conv-1.ll │ │ ├── widen_conv-2.ll │ │ ├── widen_conv-3.ll │ │ ├── widen_conv-4.ll │ │ ├── widen_conversions.ll │ │ ├── widen_extract-1.ll │ │ ├── widen_load-0.ll │ │ ├── widen_load-1.ll │ │ ├── widen_load-2.ll │ │ ├── widen_load-3.ll │ │ ├── widen_shuffle-1.ll │ │ ├── widened-broadcast.ll │ │ ├── win-alloca-expander.ll │ │ ├── win-catchpad-csrs.ll │ │ ├── win-catchpad-nested-cxx.ll │ │ ├── win-catchpad-nested.ll │ │ ├── win-catchpad-varargs.ll │ │ ├── win-catchpad.ll │ │ ├── win-cleanuppad.ll │ │ ├── win-funclet-cfi.ll │ │ ├── win-mixed-ehpersonality.ll │ │ ├── win32-eh-available-externally.ll │ │ ├── win32-eh-states.ll │ │ ├── win32-eh.ll │ │ ├── win32-pic-jumptable.ll │ │ ├── win32-preemption.ll │ │ ├── win32-seh-catchpad-realign.ll │ │ ├── win32-seh-catchpad.ll │ │ ├── win32-seh-nested-finally.ll │ │ ├── win32-spill-xmm.ll │ │ ├── win32_sret.ll │ │ ├── win64-jumptable.ll │ │ ├── win64-nosse-csrs.ll │ │ ├── win64_alloca_dynalloca.ll │ │ ├── win64_call_epi.ll │ │ ├── win64_eh.ll │ │ ├── win64_eh_leaf.ll │ │ ├── win64_eh_leaf2.ll │ │ ├── win64_frame.ll │ │ ├── win64_nonvol.ll │ │ ├── win64_params.ll │ │ ├── win64_sibcall.ll │ │ ├── win64_vararg.ll │ │ ├── win_chkstk.ll │ │ ├── win_coreclr_chkstk.ll │ │ ├── win_cst_pool.ll │ │ ├── windows-itanium-alloca.ll │ │ ├── wineh-coreclr.ll │ │ ├── wineh-exceptionpointer.ll │ │ ├── wineh-no-ehpads.ll │ │ ├── x32-cet-intrinsics.ll │ │ ├── x32-function_pointer-1.ll │ │ ├── x32-function_pointer-2.ll │ │ ├── x32-function_pointer-3.ll │ │ ├── x32-indirectbr.ll │ │ ├── x32-landingpad.ll │ │ ├── x32-lea-1.ll │ │ ├── x32-movtopush64.ll │ │ ├── x32-va_start.ll │ │ ├── x64-cet-intrinsics.ll │ │ ├── x86-16.ll │ │ ├── x86-32-intrcc.ll │ │ ├── x86-32-vector-calling-conv.ll │ │ ├── x86-64-and-mask.ll │ │ ├── x86-64-arg.ll │ │ ├── x86-64-asm.ll │ │ ├── x86-64-baseptr.ll │ │ ├── x86-64-call.ll │ │ ├── x86-64-dead-stack-adjust.ll │ │ ├── x86-64-disp.ll │ │ ├── x86-64-double-precision-shift-left.ll │ │ ├── x86-64-double-precision-shift-right.ll │ │ ├── x86-64-double-shifts-Oz-Os-O2.ll │ │ ├── x86-64-double-shifts-var.ll │ │ ├── x86-64-extend-shift.ll │ │ ├── x86-64-flags-intrinsics.ll │ │ ├── x86-64-gv-offset.ll │ │ ├── x86-64-intrcc-nosse.ll │ │ ├── x86-64-intrcc.ll │ │ ├── x86-64-jumps.ll │ │ ├── x86-64-mem.ll │ │ ├── x86-64-ms_abi-vararg.ll │ │ ├── x86-64-pic-1.ll │ │ ├── x86-64-pic-10.ll │ │ ├── x86-64-pic-11.ll │ │ ├── x86-64-pic-12.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-pic.ll │ │ ├── x86-64-plt-relative-reloc.ll │ │ ├── x86-64-psub.ll │ │ ├── x86-64-ptr-arg-simple.ll │ │ ├── x86-64-ret0.ll │ │ ├── x86-64-shortint.ll │ │ ├── x86-64-sret-return-2.ll │ │ ├── x86-64-sret-return.ll │ │ ├── x86-64-stack-and-frame-ptr.ll │ │ ├── x86-64-static-relo-movl.ll │ │ ├── x86-64-tls-1.ll │ │ ├── x86-64-varargs.ll │ │ ├── x86-big-ret.ll │ │ ├── x86-cmov-converter.ll │ │ ├── x86-flags-intrinsics.ll │ │ ├── x86-fold-pshufb.ll │ │ ├── x86-framelowering-trap.ll │ │ ├── x86-inline-asm-validation.ll │ │ ├── x86-interleaved-access.ll │ │ ├── x86-interleaved-check.ll │ │ ├── x86-interrupt_cc.ll │ │ ├── x86-interrupt_cld.ll │ │ ├── x86-interrupt_vzeroupper.ll │ │ ├── x86-mixed-alignment-dagcombine.ll │ │ ├── x86-no_caller_saved_registers-preserve.ll │ │ ├── x86-no_caller_saved_registers.ll │ │ ├── x86-plt-relative-reloc.ll │ │ ├── x86-repmov-copy-eflags.ll │ │ ├── x86-sanitizer-shrink-wrapping.ll │ │ ├── x86-setcc-int-to-fp-combine.ll │ │ ├── x86-shifts.ll │ │ ├── x86-shrink-wrap-unwind.ll │ │ ├── x86-shrink-wrapping.ll │ │ ├── x86-store-gv-addr.ll │ │ ├── x86-upgrade-avx-vbroadcast.ll │ │ ├── x86-upgrade-avx2-vbroadcast.ll │ │ ├── x86-win64-shrink-wrapping.ll │ │ ├── x86_64-mul-by-const.ll │ │ ├── x87-schedule.ll │ │ ├── x87.ll │ │ ├── xaluo.ll │ │ ├── xchg-nofold.ll │ │ ├── xmm-r64.ll │ │ ├── xmulo.ll │ │ ├── xop-ifma.ll │ │ ├── xop-intrinsics-fast-isel.ll │ │ ├── xop-intrinsics-x86_64-upgrade.ll │ │ ├── xop-intrinsics-x86_64.ll │ │ ├── xop-mask-comments.ll │ │ ├── xop-pcmov.ll │ │ ├── xop-schedule.ll │ │ ├── xor-combine-debugloc.ll │ │ ├── xor-icmp.ll │ │ ├── xor-select-i1-combine.ll │ │ ├── xor.ll │ │ ├── xray-attribute-instrumentation.ll │ │ ├── xray-custom-log.ll │ │ ├── xray-empty-firstmbb.mir │ │ ├── xray-empty-function.mir │ │ ├── xray-log-args.ll │ │ ├── xray-loop-detection.ll │ │ ├── xray-multiplerets-in-blocks.mir │ │ ├── xray-section-group.ll │ │ ├── xray-selective-instrumentation-miss.ll │ │ ├── xray-selective-instrumentation.ll │ │ ├── xray-tail-call-sled.ll │ │ ├── xtest.ll │ │ ├── zero-remat.ll │ │ ├── zext-extract_subreg.ll │ │ ├── zext-fold.ll │ │ ├── zext-inreg-0.ll │ │ ├── zext-inreg-1.ll │ │ ├── zext-sext.ll │ │ ├── zext-shl.ll │ │ ├── zext-trunc.ll │ │ └── zlib-longest-match.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 │ │ ├── 2011-01-31-DAGCombineBug.ll │ │ ├── 2011-08-01-DynamicAllocBug.ll │ │ ├── DbgValueOtherTargets.test │ │ ├── addsub64.ll │ │ ├── aliases.ll │ │ ├── align.ll │ │ ├── alignment.ll │ │ ├── ashr.ll │ │ ├── atomic.ll │ │ ├── basictest.ll │ │ ├── bigstructret.ll │ │ ├── byVal.ll │ │ ├── call.ll │ │ ├── codemodel.ll │ │ ├── constants.ll │ │ ├── dwarf_debug.ll │ │ ├── epilogue_prologue.ll │ │ ├── events.ll │ │ ├── exception.ll │ │ ├── float-intrinsics.ll │ │ ├── fneg.ll │ │ ├── getid.ll │ │ ├── globals.ll │ │ ├── indirectbr.ll │ │ ├── inline-asm.ll │ │ ├── ladd_lsub_combine.ll │ │ ├── licm-ldwcp.ll │ │ ├── linkage.ll │ │ ├── lit.local.cfg │ │ ├── llvm-intrinsics.ll │ │ ├── load.ll │ │ ├── memcpy.ll │ │ ├── misc-intrinsics.ll │ │ ├── mkmsk.ll │ │ ├── mul64.ll │ │ ├── offset_folding.ll │ │ ├── private.ll │ │ ├── ps-intrinsics.ll │ │ ├── resources.ll │ │ ├── resources_combine.ll │ │ ├── scavenging.ll │ │ ├── section-name.ll │ │ ├── sext.ll │ │ ├── shedulingPreference.ll │ │ ├── sr-intrinsics.ll │ │ ├── store.ll │ │ ├── switch.ll │ │ ├── switch_long.ll │ │ ├── threads.ll │ │ ├── tls.ll │ │ ├── trampoline.ll │ │ ├── trap.ll │ │ ├── unaligned_load.ll │ │ ├── unaligned_store.ll │ │ ├── unaligned_store_combine.ll │ │ ├── varargs.ll │ │ ├── zext.ll │ │ └── zextfree.ll ├── DebugInfo │ ├── AArch64 │ │ ├── asan-stack-vars.ll │ │ ├── big-endian-dump.ll │ │ ├── big-endian.ll │ │ ├── bitfields.ll │ │ ├── cfi-eof-prologue.ll │ │ ├── coalescing.ll │ │ ├── constant-dbgloc.ll │ │ ├── dagcombine-zext.ll │ │ ├── dwarfdump.ll │ │ ├── eh_frame.s │ │ ├── eh_frame_personality.ll │ │ ├── frameindices.ll │ │ ├── inlined-argument.ll │ │ ├── line-header.ll │ │ ├── lit.local.cfg │ │ ├── little-endian-dump.ll │ │ ├── processes-relocations.ll │ │ ├── prologue_end.ll │ │ └── struct_by_value.ll │ ├── AMDGPU │ │ ├── code-pointer-size.ll │ │ ├── dbg-value-sched-crash.ll │ │ ├── dwarfdump-relocs.ll │ │ ├── lit.local.cfg │ │ ├── pointer-address-space.ll │ │ └── variable-locations.ll │ ├── ARM │ │ ├── PR16736.ll │ │ ├── PR26163.ll │ │ ├── big-endian-bitfield.ll │ │ ├── big-endian-dump.ll │ │ ├── bitfield.ll │ │ ├── cfi-eof-prologue.ll │ │ ├── constant-dbgloc.ll │ │ ├── float-args.ll │ │ ├── header.ll │ │ ├── illegal-fragment.ll │ │ ├── line.test │ │ ├── lit.local.cfg │ │ ├── little-endian-dump.ll │ │ ├── lowerbdgdeclare_vla.ll │ │ ├── multiple-constant-uses-drops-dbgloc.ll │ │ ├── partial-subreg.ll │ │ ├── processes-relocations.ll │ │ ├── prologue_end.ll │ │ ├── s-super-register.ll │ │ ├── salvage-debug-info.ll │ │ ├── sdag-split-arg.ll │ │ ├── sdag-split-arg1.ll │ │ ├── selectiondag-deadcode.ll │ │ ├── single-constant-use-preserves-dbgloc.ll │ │ ├── split-complex.ll │ │ ├── sroa-complex.ll │ │ └── tls.ll │ ├── COFF │ │ ├── anonymous-struct.ll │ │ ├── array-odr-violation.ll │ │ ├── asan-module-ctor.ll │ │ ├── asan-module-without-functions.ll │ │ ├── asm.ll │ │ ├── big-type.ll │ │ ├── bitfields.ll │ │ ├── comdat.ll │ │ ├── cpp-mangling.ll │ │ ├── defer-complete-type.ll │ │ ├── dlang.ll │ │ ├── enum.ll │ │ ├── fp-stack.ll │ │ ├── fpo-argsize.ll │ │ ├── fpo-csrs.ll │ │ ├── fpo-funclet.ll │ │ ├── fpo-realign-alloca.ll │ │ ├── fpo-shrink-wrap.ll │ │ ├── fpo-stack-protect.ll │ │ ├── global-dllimport.ll │ │ ├── global-type-hashes.ll │ │ ├── globals-discarded.ll │ │ ├── globals.ll │ │ ├── inheritance.ll │ │ ├── inlining-files.ll │ │ ├── inlining-header.ll │ │ ├── inlining-levels.ll │ │ ├── inlining-padding.ll │ │ ├── inlining-same-name.ll │ │ ├── inlining.ll │ │ ├── int8-char-type.ll │ │ ├── lines-bb-start.ll │ │ ├── lines-difile.ll │ │ ├── lit.local.cfg │ │ ├── local-constant.ll │ │ ├── local-variable-gap.ll │ │ ├── local-variables.ll │ │ ├── long-name.ll │ │ ├── long-type-name.ll │ │ ├── multifile.ll │ │ ├── multifunction.ll │ │ ├── nested-types.ll │ │ ├── no-cus.ll │ │ ├── parameter-order.ll │ │ ├── pieces.ll │ │ ├── pr28747.ll │ │ ├── purge-typedef-udts.ll │ │ ├── register-variables.ll │ │ ├── retained-types.ll │ │ ├── scopes.ll │ │ ├── simple.ll │ │ ├── static-methods.ll │ │ ├── synthetic.ll │ │ ├── tail-call-without-lexical-scopes.ll │ │ ├── typedef.ll │ │ ├── types-array-advanced.ll │ │ ├── types-array-unsized.ll │ │ ├── types-array.ll │ │ ├── types-basic.ll │ │ ├── types-calling-conv.ll │ │ ├── types-data-members.ll │ │ ├── types-nested-class.ll │ │ ├── types-non-virtual-methods.ll │ │ ├── types-ptr-to-member.ll │ │ ├── types-recursive-struct.ll │ │ ├── udts.ll │ │ ├── vftables.ll │ │ ├── virtual-method-kinds.ll │ │ ├── virtual-methods.ll │ │ └── vtable-optzn-array.ll │ ├── Generic │ │ ├── 2009-10-16-Phi.ll │ │ ├── 2009-11-03-InsertExtractValue.ll │ │ ├── 2009-11-05-DeadGlobalVariable.ll │ │ ├── 2009-11-06-NamelessGlobalVariable.ll │ │ ├── 2009-11-10-CurrentFn.ll │ │ ├── 2010-01-05-DbgScope.ll │ │ ├── 2010-03-12-llc-crash.ll │ │ ├── 2010-03-19-DbgDeclare.ll │ │ ├── 2010-03-24-MemberFn.ll │ │ ├── 2010-04-06-NestedFnDbgInfo.ll │ │ ├── 2010-04-19-FramePtr.ll │ │ ├── 2010-05-03-DisableFramePtr.ll │ │ ├── 2010-05-03-OriginDIE.ll │ │ ├── 2010-05-10-MultipleCU.ll │ │ ├── 2010-06-29-InlinedFnLocalVar.ll │ │ ├── 2010-10-01-crash.ll │ │ ├── PR20038.ll │ │ ├── accel-table-hash-collisions.ll │ │ ├── array.ll │ │ ├── block-asan.ll │ │ ├── bug_null_debuginfo.ll │ │ ├── constant-pointers.ll │ │ ├── constant-sdnodes-have-dbg-location.ll │ │ ├── constantfp-sdnodes-have-dbg-location.ll │ │ ├── containing-type-extension.ll │ │ ├── cross-cu-inlining.ll │ │ ├── cross-cu-linkonce-distinct.ll │ │ ├── cross-cu-linkonce.ll │ │ ├── cu-range-hole.ll │ │ ├── cu-ranges.ll │ │ ├── dbg-at-specficiation.ll │ │ ├── dead-argument-order.ll │ │ ├── debug-info-always-inline.ll │ │ ├── debug-info-qualifiers.ll │ │ ├── debuginfofinder-forward-declaration.ll │ │ ├── debuginfofinder-inlined-cu.ll │ │ ├── debuginfofinder-multiple-cu.ll │ │ ├── def-line.ll │ │ ├── discriminator.ll │ │ ├── dwarf-public-names.ll │ │ ├── empty.ll │ │ ├── enum-types.ll │ │ ├── enum.ll │ │ ├── global-sra-array.ll │ │ ├── global-sra-single-member.ll │ │ ├── global-sra-struct.ll │ │ ├── global.ll │ │ ├── gmlt.test │ │ ├── gmlt_profiling.ll │ │ ├── gvn.ll │ │ ├── imported-name-inlined.ll │ │ ├── incorrect-variable-debugloc.ll │ │ ├── incorrect-variable-debugloc1.ll │ │ ├── indvar-discriminator.ll │ │ ├── inheritance.ll │ │ ├── inline-debug-info-multiret.ll │ │ ├── inline-debug-info.ll │ │ ├── inline-debug-loc.ll │ │ ├── inline-no-debug-info.ll │ │ ├── inline-scopes.ll │ │ ├── inlined-arguments.ll │ │ ├── inlined-vars.ll │ │ ├── instcombine-phi.ll │ │ ├── invalid.ll │ │ ├── licm-hoist-debug-loc.ll │ │ ├── linkage-name-abstract.ll │ │ ├── lit.local.cfg │ │ ├── location-verifier.ll │ │ ├── lto-comp-dir.ll │ │ ├── mainsubprogram.ll │ │ ├── member-order.ll │ │ ├── member-pointers.ll │ │ ├── missing-abstract-variable.ll │ │ ├── multiline.ll │ │ ├── namespace.ll │ │ ├── namespace_function_definition.ll │ │ ├── namespace_inline_function_definition.ll │ │ ├── noscopes.ll │ │ ├── piece-verifier.ll │ │ ├── ptrsize.ll │ │ ├── recursive_inlining.ll │ │ ├── restrict.ll │ │ ├── simplifycfg_sink_last_inst.ll │ │ ├── skeletoncu.ll │ │ ├── sroa-larger.ll │ │ ├── sroa-samesize.ll │ │ ├── store-tail-merge.ll │ │ ├── sugared-constants.ll │ │ ├── sunk-compare.ll │ │ ├── template-recursive-void.ll │ │ ├── thrownTypes.ll │ │ ├── tu-composite.ll │ │ ├── tu-member-pointer.ll │ │ ├── two-cus-from-same-file.ll │ │ ├── typedef.ll │ │ ├── unconditional-branch.ll │ │ ├── varargs.ll │ │ ├── version.ll │ │ └── virtual-index.ll │ ├── Inputs │ │ ├── arange-overlap.cc │ │ ├── arange-overlap.elf-x86_64 │ │ ├── arm-relocs.elf-arm │ │ ├── cross-cu-inlining.c │ │ ├── cross-cu-inlining.x86_64-macho.o │ │ ├── dwarfdump-decompression-corrupt.elf-x86-64 │ │ ├── dwarfdump-decompression-error.elf-x86-64 │ │ ├── dwarfdump-dwp.x86_64.o │ │ ├── dwarfdump-gdbindex-v7.elf-x86-64 │ │ ├── dwarfdump-inl-test.cc │ │ ├── dwarfdump-inl-test.elf-x86-64 │ │ ├── dwarfdump-inl-test.h │ │ ├── dwarfdump-inl-test.high_pc.elf-x86-64 │ │ ├── dwarfdump-macho-relocs.macho.x86_64.o │ │ ├── dwarfdump-macro-cmd.h │ │ ├── dwarfdump-macro.cc │ │ ├── dwarfdump-macro.h │ │ ├── dwarfdump-macro.o │ │ ├── dwarfdump-objc.m │ │ ├── dwarfdump-objc.x86_64.o │ │ ├── dwarfdump-pubnames.cc │ │ ├── dwarfdump-pubnames.elf-x86-64 │ │ ├── dwarfdump-ranges-baseaddr-exe.elf-x86-64 │ │ ├── dwarfdump-test-32bit.elf.c │ │ ├── dwarfdump-test-32bit.elf.o │ │ ├── dwarfdump-test-loc-list-32bit.elf.cpp │ │ ├── dwarfdump-test-loc-list-32bit.elf.o │ │ ├── dwarfdump-test-zlib.cc │ │ ├── dwarfdump-test-zlib.elf-x86-64 │ │ ├── dwarfdump-test-zlib.o.elf-x86-64 │ │ ├── dwarfdump-test-zlibgnu.elf-x86-64 │ │ ├── dwarfdump-test.cc │ │ ├── dwarfdump-test.elf-x86-64 │ │ ├── dwarfdump-test.elf-x86-64.debuglink │ │ ├── dwarfdump-test.macho-i386.o │ │ ├── dwarfdump-test2-helper.cc │ │ ├── dwarfdump-test2-main.cc │ │ ├── dwarfdump-test2.elf-x86-64 │ │ ├── dwarfdump-test3-decl.h │ │ ├── dwarfdump-test3-decl2.h │ │ ├── dwarfdump-test3.cc │ │ ├── dwarfdump-test3.elf-x86-64-space │ │ ├── dwarfdump-test4-decl.h │ │ ├── dwarfdump-test4-part1.cc │ │ ├── dwarfdump-test4-part2.cc │ │ ├── dwarfdump-test4.elf-x86-64 │ │ ├── dwarfdump-type-units.cc │ │ ├── dwarfdump-type-units.elf-x86-64 │ │ ├── dwarfdump.elf-mips64-64-bit-dwarf │ │ ├── fat-test.o │ │ ├── fission-ranges.cc │ │ ├── fission-ranges.elf-x86_64 │ │ ├── gmlt.ll │ │ ├── implicit-const-test.o │ │ ├── invalid.elf │ │ ├── invalid.elf.2 │ │ ├── invalid.elf.3 │ │ ├── line.ll │ │ ├── llvm-symbolizer-dwo-test │ │ ├── llvm-symbolizer-dwo-test.cc │ │ ├── llvm-symbolizer-test.c │ │ ├── llvm-symbolizer-test.elf-x86-64 │ │ ├── macho-universal │ │ ├── macho-universal.cc │ │ ├── shared-object-stripped.elf-i386 │ │ ├── split-dwarf-addr-object-relocation.cpp │ │ ├── split-dwarf-addr-object-relocation.dwo │ │ ├── split-dwarf-addr-object-relocation.o │ │ ├── split-dwarf-dwp.cpp │ │ ├── split-dwarf-dwp.o │ │ ├── split-dwarf-dwp.o.dwp │ │ ├── split-dwarf-empty.dwo │ │ ├── split-dwarf-empty.o │ │ ├── split-dwarf-multiple-cu.cpp │ │ ├── split-dwarf-multiple-cu.dwo │ │ ├── split-dwarf-multiple-cu.o │ │ ├── split-dwarf-test │ │ ├── split-dwarf-test-nogmlt │ │ ├── split-dwarf-test.cc │ │ ├── split-dwarf-test.cpp │ │ ├── split-dwarf-test.dwo │ │ ├── test-inline.o │ │ ├── test-multiple-macho.o │ │ ├── test-parameters.o │ │ ├── test-simple-macho.o │ │ ├── typeunit-header.elf-x86-64 │ │ └── typeunit-header.s │ ├── Lanai │ │ ├── lit.local.cfg │ │ └── processes-relocations.ll │ ├── MIR │ │ ├── AArch64 │ │ │ ├── clobber-sp.mir │ │ │ ├── implicit-def-dead-scope.mir │ │ │ └── lit.local.cfg │ │ ├── ARM │ │ │ ├── lit.local.cfg │ │ │ ├── split-superreg-complex.mir │ │ │ ├── split-superreg-piece.mir │ │ │ └── split-superreg.mir │ │ ├── X86 │ │ │ ├── bit-piece-dh.mir │ │ │ ├── empty-inline.mir │ │ │ ├── lit.local.cfg │ │ │ ├── live-debug-values-3preds.mir │ │ │ ├── live-debug-values-spill.mir │ │ │ ├── live-debug-values.mir │ │ │ ├── live-debug-vars-unused-arg-debugonly.mir │ │ │ ├── live-debug-vars-unused-arg.mir │ │ │ ├── livedebugvalues-limit.mir │ │ │ ├── mlicm-hoist.mir │ │ │ ├── no-cfi-loc.mir │ │ │ └── regcoalescer.mir │ │ └── lit.local.cfg │ ├── MSP430 │ │ ├── lit.local.cfg │ │ └── sdagsplit-1.ll │ ├── Mips │ │ ├── InlinedFnLocalVar.ll │ │ ├── delay-slot.ll │ │ ├── dsr-fixed-objects.ll │ │ ├── dsr-non-fixed-objects.ll │ │ ├── dwarfdump-tls.ll │ │ ├── fn-call-line.ll │ │ ├── lit.local.cfg │ │ ├── processes-relocations.ll │ │ ├── prologue_end.ll │ │ └── tls.ll │ ├── PDB │ │ ├── DIA │ │ │ ├── lit.local.cfg │ │ │ ├── pdbdump-flags.test │ │ │ ├── pdbdump-linenumbers.test │ │ │ └── pdbdump-symbol-format.test │ │ ├── Inputs │ │ │ ├── bad-block-size.pdb │ │ │ ├── big-read.pdb │ │ │ ├── debug-subsections.yaml │ │ │ ├── empty.cpp │ │ │ ├── empty.pdb │ │ │ ├── every-type.cpp │ │ │ ├── every-type.pdb │ │ │ ├── every-type.yaml │ │ │ ├── longname-truncation.yaml │ │ │ ├── merge-ids-1.yaml │ │ │ ├── merge-ids-2.yaml │ │ │ ├── merge-ids-and-types-1.yaml │ │ │ ├── merge-ids-and-types-2.yaml │ │ │ ├── merge-types-1.yaml │ │ │ ├── merge-types-2.yaml │ │ │ ├── obj-hashes-1.yaml │ │ │ ├── obj-hashes-2.yaml │ │ │ ├── one-symbol.yaml │ │ │ ├── pdbdump-globals-empty.pdb │ │ │ ├── source-names-1.yaml │ │ │ ├── source-names-2.yaml │ │ │ ├── symbolformat-fpo.cpp │ │ │ ├── symbolformat.cpp │ │ │ ├── symbolformat.pdb │ │ │ └── unknown-symbol.yaml │ │ ├── Native │ │ │ ├── pdb-native-compilands.test │ │ │ ├── pdb-native-enums.test │ │ │ └── pdb-native-summary.test │ │ ├── dbi-bytes.test │ │ ├── dump-fpm.test │ │ ├── every-type.test │ │ ├── just-my-code.test │ │ ├── module-bytes.test │ │ ├── module-stats.test │ │ ├── obj-globalhash.test │ │ ├── pdb-longname-truncation.test │ │ ├── pdb-minimal-construct.test │ │ ├── pdb-unknown-symbol.test │ │ ├── pdb-yaml-symbols.test │ │ ├── pdbdump-debug-subsections.test │ │ ├── pdbdump-globals-empty.test │ │ ├── pdbdump-headers.test │ │ ├── pdbdump-merge-ids-and-types.test │ │ ├── pdbdump-mergeids.test │ │ ├── pdbdump-mergetypes.test │ │ ├── pdbdump-objfilename.yaml │ │ ├── pdbdump-raw-blocks.test │ │ ├── pdbdump-raw-bytes.test │ │ ├── pdbdump-raw-stream.test │ │ ├── pdbdump-readwrite.test │ │ ├── pdbdump-source-names.test │ │ ├── pdbdump-write.test │ │ ├── pdbdump-yaml-types.test │ │ ├── pdbdump-yaml.test │ │ ├── section-headers.test │ │ ├── tpi-bytes.test │ │ ├── udt-stats.test │ │ └── write-fpm.test │ ├── PowerPC │ │ ├── line.test │ │ ├── lit.local.cfg │ │ ├── processes-relocations.ll │ │ ├── tls-fission.ll │ │ └── tls.ll │ ├── Sparc │ │ ├── gnu-window-save.ll │ │ ├── lit.local.cfg │ │ ├── processes-relocations.ll │ │ ├── prologue_end.ll │ │ └── subreg.ll │ ├── SystemZ │ │ ├── eh_frame.s │ │ ├── eh_frame_personality.ll │ │ ├── eh_frame_personality.s │ │ ├── lit.local.cfg │ │ ├── processes-relocations.ll │ │ ├── prologue_end.ll │ │ ├── variable-loc.ll │ │ └── variable-loc.s │ ├── WebAssembly │ │ ├── dbg-declare.ll │ │ └── lit.local.cfg │ ├── X86 │ │ ├── 2010-04-13-PubType.ll │ │ ├── 2011-09-26-GlobalVarContext.ll │ │ ├── 2011-12-16-BadStructRef.ll │ │ ├── DIModule.ll │ │ ├── DIModuleContext.ll │ │ ├── DW_AT_byte_size.ll │ │ ├── DW_AT_calling-convention.ll │ │ ├── DW_AT_linkage_name.ll │ │ ├── DW_AT_location-reference.ll │ │ ├── DW_AT_object_pointer.ll │ │ ├── DW_AT_specification.ll │ │ ├── DW_AT_stmt_list_sec_offset.ll │ │ ├── DW_TAG_friend.ll │ │ ├── FrameIndexExprs.ll │ │ ├── InlinedFnLocalVar.ll │ │ ├── PR26148.ll │ │ ├── abstract_origin.ll │ │ ├── align_c11.ll │ │ ├── align_cpp11.ll │ │ ├── align_objc.ll │ │ ├── aligned_stack_var.ll │ │ ├── arange-and-stub.ll │ │ ├── arange.ll │ │ ├── arguments.ll │ │ ├── array.ll │ │ ├── array2.ll │ │ ├── asm-macro-line-number.s │ │ ├── atomic-c11-dwarf-4.ll │ │ ├── atomic-c11-dwarf-5.ll │ │ ├── bbjoin.ll │ │ ├── bitfields-dwarf4.ll │ │ ├── bitfields.ll │ │ ├── block-capture.ll │ │ ├── byvalstruct.ll │ │ ├── c-type-units.ll │ │ ├── clang-module.ll │ │ ├── coff_debug_info_type.ll │ │ ├── coff_relative_names.ll │ │ ├── concrete_out_of_line.ll │ │ ├── constant-aggregate.ll │ │ ├── constant-loclist.ll │ │ ├── containing-type-extension-rust.ll │ │ ├── cu-ranges-odr.ll │ │ ├── cu-ranges.ll │ │ ├── data_member_location.ll │ │ ├── dbg-abstract-vars-g-gmlt.ll │ │ ├── dbg-addr-dse.ll │ │ ├── dbg-addr.ll │ │ ├── dbg-asm.s │ │ ├── dbg-byval-parameter.ll │ │ ├── dbg-const-int.ll │ │ ├── dbg-const.ll │ │ ├── dbg-declare-alloca.ll │ │ ├── dbg-declare-arg.ll │ │ ├── dbg-declare-inalloca.ll │ │ ├── dbg-declare.ll │ │ ├── dbg-file-name.ll │ │ ├── dbg-i128-const.ll │ │ ├── dbg-merge-loc-entry.ll │ │ ├── dbg-prolog-end.ll │ │ ├── dbg-subrange.ll │ │ ├── dbg-value-const-byref.ll │ │ ├── dbg-value-dag-combine.ll │ │ ├── dbg-value-frame-index.ll │ │ ├── dbg-value-g-gmlt.ll │ │ ├── dbg-value-inlined-parameter.ll │ │ ├── dbg-value-isel.ll │ │ ├── dbg-value-location.ll │ │ ├── dbg-value-range.ll │ │ ├── dbg-value-regmask-clobber.ll │ │ ├── dbg-value-terminator.ll │ │ ├── dbg-value-transfer-order.ll │ │ ├── dbg_value_direct.ll │ │ ├── debug-dead-local-var.ll │ │ ├── debug-info-access.ll │ │ ├── debug-info-block-captured-self.ll │ │ ├── debug-info-blocks.ll │ │ ├── debug-info-packed-struct.ll │ │ ├── debug-info-producer-with-flags.ll │ │ ├── debug-info-static-member.ll │ │ ├── debug-loc-asan.ll │ │ ├── debug-loc-frame.ll │ │ ├── debug-loc-offset.ll │ │ ├── debug-macro.ll │ │ ├── debug-ranges-offset.ll │ │ ├── debug_and_nodebug_CUs.ll │ │ ├── debug_frame.ll │ │ ├── debugger-tune.ll │ │ ├── decl-derived-member.ll │ │ ├── default-subrange-array.ll │ │ ├── deleted-bit-piece.ll │ │ ├── discriminator.ll │ │ ├── discriminator2.ll │ │ ├── discriminator3.ll │ │ ├── dllimport.ll │ │ ├── double-declare.ll │ │ ├── dw_op_minus.ll │ │ ├── dw_op_minus_direct.ll │ │ ├── dwarf-aranges-no-dwarf-labels.ll │ │ ├── dwarf-aranges.ll │ │ ├── dwarf-linkage-names.ll │ │ ├── dwarf-no-source-loc.ll │ │ ├── dwarf-public-names.ll │ │ ├── dwarf-pubnames-split.ll │ │ ├── dwarfdump-bogus-LNE.s │ │ ├── dwarfdump-debug-loc-simple.test │ │ ├── dwarfdump-header-64.s │ │ ├── dwarfdump-header.s │ │ ├── dwarfdump-line-dwo.s │ │ ├── dwarfdump-line-only.s │ │ ├── dwarfdump-ranges-baseaddr-exe.s │ │ ├── dwarfdump-ranges-baseaddr.s │ │ ├── dwarfdump-ranges-unrelocated.s │ │ ├── dwarfdump-str-offsets-dwp.s │ │ ├── dwarfdump-str-offsets-invalid-1.s │ │ ├── dwarfdump-str-offsets-invalid-2.s │ │ ├── dwarfdump-str-offsets-invalid-3.s │ │ ├── dwarfdump-str-offsets-invalid-4.s │ │ ├── dwarfdump-str-offsets-invalid-5.s │ │ ├── dwarfdump-str-offsets-invalid-6.s │ │ ├── dwarfdump-str-offsets-macho.s │ │ ├── dwarfdump-str-offsets.s │ │ ├── earlydup-crash.ll │ │ ├── elf-names.ll │ │ ├── empty-and-one-elem-array.ll │ │ ├── empty-array.ll │ │ ├── empty.ll │ │ ├── ending-run.ll │ │ ├── enum-class.ll │ │ ├── enum-fwd-decl.ll │ │ ├── fi-expr.ll │ │ ├── fi-piece.ll │ │ ├── fission-cu.ll │ │ ├── fission-hash.ll │ │ ├── fission-inline.ll │ │ ├── fission-no-inlining.ll │ │ ├── fission-ranges.ll │ │ ├── float_const.ll │ │ ├── float_const_loclist.ll │ │ ├── formal_parameter.ll │ │ ├── frame-register.ll │ │ ├── generate-odr-hash.ll │ │ ├── ghost-sdnode-dbgvalues.ll │ │ ├── gmlt.test │ │ ├── gnu-public-names-empty.ll │ │ ├── gnu-public-names-gmlt.ll │ │ ├── gnu-public-names-multiple-cus.ll │ │ ├── gnu-public-names-tu.ll │ │ ├── gnu-public-names.ll │ │ ├── header.ll │ │ ├── inline-asm-locs.ll │ │ ├── inline-member-function.ll │ │ ├── inline-namespace.ll │ │ ├── inline-seldag-test.ll │ │ ├── inlined-formal-parameter.ll │ │ ├── inlined-indirect-value.ll │ │ ├── instcombine-instrinsics.ll │ │ ├── isel-cse-line.ll │ │ ├── lexical-block-file-inline.ll │ │ ├── lexical_block.ll │ │ ├── line-info.ll │ │ ├── line.test │ │ ├── linkage-name.ll │ │ ├── lit.local.cfg │ │ ├── live-debug-values.ll │ │ ├── live-debug-variables.ll │ │ ├── live-debug-vars-dse.mir │ │ ├── low-pc-cu.ll │ │ ├── main-file-name.s │ │ ├── memberfnptr.ll │ │ ├── mi-print.ll │ │ ├── misched-dbg-value.ll │ │ ├── missing-file-line.ll │ │ ├── mixed-nodebug-cu.ll │ │ ├── multiple-aranges.ll │ │ ├── multiple-at-const-val.ll │ │ ├── nodebug.ll │ │ ├── nodebug_with_debug_loc.ll │ │ ├── nondefault-subrange-array.ll │ │ ├── nophysreg.ll │ │ ├── noreturn_c11.ll │ │ ├── noreturn_cpp11.ll │ │ ├── noreturn_objc.ll │ │ ├── objc-fwd-decl.ll │ │ ├── objc-property-void.ll │ │ ├── op_deref.ll │ │ ├── parameters.ll │ │ ├── partial-constant.ll │ │ ├── pieces-1.ll │ │ ├── pieces-2.ll │ │ ├── pieces-3.ll │ │ ├── pieces-4.ll │ │ ├── pointer-type-size.ll │ │ ├── pr11300.ll │ │ ├── pr12831.ll │ │ ├── pr13303.ll │ │ ├── pr19307.ll │ │ ├── pr28270.ll │ │ ├── pr34545.ll │ │ ├── processes-relocations.ll │ │ ├── prologue-stack.ll │ │ ├── range_reloc.ll │ │ ├── ref_addr_relocation.ll │ │ ├── reference-argument.ll │ │ ├── rematerialize.ll │ │ ├── rvalue-ref.ll │ │ ├── safestack-byval.ll │ │ ├── sdag-salvage-add.ll │ │ ├── sdag-split-arg.ll │ │ ├── sdagsplit-1.ll │ │ ├── single-dbg_value.ll │ │ ├── single-fi.ll │ │ ├── spill-indirect-nrvo.ll │ │ ├── spill-nontrivial-param.ll │ │ ├── spill-nospill.ll │ │ ├── split-dwarf-cross-unit-reference.ll │ │ ├── split-dwarf-multiple-cu-hash.ll │ │ ├── split-dwarf-omit-empty.ll │ │ ├── split-global.ll │ │ ├── sret.ll │ │ ├── sroasplit-1.ll │ │ ├── sroasplit-2.ll │ │ ├── sroasplit-3.ll │ │ ├── sroasplit-4.ll │ │ ├── sroasplit-5.ll │ │ ├── sroasplit-dbg-declare.ll │ │ ├── stack-args.ll │ │ ├── stack-value-dwarf2.ll │ │ ├── stack-value-dwarf4.ll │ │ ├── stack-value-piece.ll │ │ ├── static_member_array.ll │ │ ├── stmt-list-multiple-compile-units.ll │ │ ├── stmt-list.ll │ │ ├── stringpool.ll │ │ ├── struct-loc.ll │ │ ├── subrange-type.ll │ │ ├── subreg.ll │ │ ├── subregisters.ll │ │ ├── tail-merge.ll │ │ ├── template.ll │ │ ├── this-stack_value.ll │ │ ├── tls.ll │ │ ├── type_units_with_addresses.ll │ │ ├── unattached-global.ll │ │ ├── union-const.ll │ │ ├── union-template.ll │ │ ├── vector.ll │ │ ├── vla.ll │ │ ├── void-typedef.ll │ │ ├── xray-split-dwarf-interaction.ll │ │ └── zextload.ll │ ├── arm-relocs.test │ ├── cross-cu-scope.ll │ ├── debugify.ll │ ├── debuglineinfo-macho.test │ ├── debuglineinfo.test │ ├── debugmacinfo.test │ ├── dwarfdump-64-bit-dwarf.test │ ├── dwarfdump-accel.test │ ├── dwarfdump-debug-frame-simple.test │ ├── dwarfdump-decompression-corrupt.test │ ├── dwarfdump-decompression-error.test │ ├── dwarfdump-dump-flags.test │ ├── dwarfdump-dump-gdbindex.test │ ├── dwarfdump-dwp.test │ ├── dwarfdump-implicit-const.test │ ├── dwarfdump-invalid.test │ ├── dwarfdump-macho-relocs.test │ ├── dwarfdump-macho-universal.test │ ├── dwarfdump-objc.test │ ├── dwarfdump-pubnames.test │ ├── dwarfdump-ranges.test │ ├── dwarfdump-type-units.test │ ├── dwarfdump-zlib.test │ ├── dwo.ll │ ├── invalid-relocations.test │ ├── llvm-symbolizer-split-dwarf-empty.test │ ├── llvm-symbolizer-zlib.test │ ├── llvm-symbolizer.test │ ├── macro_link.ll │ ├── member-pointers.o │ ├── missing-abstract-variable.o │ ├── omit-empty.ll │ ├── pr34186.ll │ ├── pr34672.ll │ ├── skeletoncu.ll │ ├── strip-DIGlobalVariable.ll │ ├── strip-loop-metadata.ll │ ├── typeunit-header.test │ └── unrolled-loop-remainder.ll ├── Examples │ ├── Kaleidoscope │ │ ├── Chapter3.test │ │ ├── Chapter4.test │ │ ├── Chapter5.test │ │ ├── Chapter6.test │ │ └── Chapter7.test │ └── lit.local.cfg ├── ExecutionEngine │ ├── 2010-01-15-UndefValue.ll │ ├── Interpreter │ │ ├── intrinsics.ll │ │ └── lit.local.cfg │ ├── MCJIT │ │ ├── 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 │ │ ├── 2013-04-04-RelocAddend.ll │ │ ├── Inputs │ │ │ ├── cross-module-b.ll │ │ │ ├── multi-module-b.ll │ │ │ ├── multi-module-c.ll │ │ │ ├── multi-module-eh-b.ll │ │ │ └── weak-function-2.ll │ │ ├── cross-module-a.ll │ │ ├── cross-module-sm-pic-a.ll │ │ ├── eh-lg-pic.ll │ │ ├── eh.ll │ │ ├── fpbitcast.ll │ │ ├── hello.ll │ │ ├── hello2.ll │ │ ├── lit.local.cfg │ │ ├── load-object-a.ll │ │ ├── multi-module-a.ll │ │ ├── multi-module-eh-a.ll │ │ ├── multi-module-sm-pic-a.ll │ │ ├── non-extern-addend.ll │ │ ├── pr13727.ll │ │ ├── remote │ │ │ ├── Inputs │ │ │ │ ├── cross-module-b.ll │ │ │ │ ├── multi-module-b.ll │ │ │ │ └── multi-module-c.ll │ │ │ ├── cross-module-a.ll │ │ │ ├── eh.ll │ │ │ ├── lit.local.cfg │ │ │ ├── multi-module-a.ll │ │ │ ├── simpletest-remote.ll │ │ │ ├── stubs-remote.ll │ │ │ ├── stubs-sm-pic.ll │ │ │ ├── test-common-symbols-remote.ll │ │ │ ├── test-data-align-remote.ll │ │ │ ├── test-fp-no-external-funcs-remote.ll │ │ │ ├── test-global-init-nonzero-remote.ll │ │ │ ├── test-global-init-nonzero-sm-pic.ll │ │ │ ├── test-ptr-reloc-remote.ll │ │ │ └── test-ptr-reloc-sm-pic.ll │ │ ├── simplesttest.ll │ │ ├── simpletest.ll │ │ ├── stubs-sm-pic.ll │ │ ├── stubs.ll │ │ ├── test-arith.ll │ │ ├── test-branch.ll │ │ ├── test-call-no-external-funcs.ll │ │ ├── test-call.ll │ │ ├── test-cast.ll │ │ ├── test-common-symbols-alignment.ll │ │ ├── test-common-symbols.ll │ │ ├── test-constantexpr.ll │ │ ├── test-data-align.ll │ │ ├── test-fp-no-external-funcs.ll │ │ ├── test-fp.ll │ │ ├── test-global-ctors.ll │ │ ├── test-global-init-nonzero-sm-pic.ll │ │ ├── test-global-init-nonzero.ll │ │ ├── test-global.ll │ │ ├── test-loadstore.ll │ │ ├── test-local.ll │ │ ├── test-logical.ll │ │ ├── test-loop.ll │ │ ├── test-phi.ll │ │ ├── test-ptr-reloc-sm-pic.ll │ │ ├── test-ptr-reloc.ll │ │ ├── test-ret.ll │ │ ├── test-return.ll │ │ ├── test-setcond-fp.ll │ │ ├── test-setcond-int.ll │ │ ├── test-shift.ll │ │ └── weak-function.ll │ ├── OrcLazy │ │ ├── Inputs │ │ │ └── weak-function-2.ll │ │ ├── anonymous_globals.ll │ │ ├── common-symbols.ll │ │ ├── global_aliases.ll │ │ ├── hello.ll │ │ ├── lit.local.cfg │ │ ├── module-flags.ll │ │ ├── private_linkage.ll │ │ └── weak-function.ll │ ├── OrcMCJIT │ │ ├── 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 │ │ ├── 2013-04-04-RelocAddend.ll │ │ ├── Inputs │ │ │ ├── cross-module-b.ll │ │ │ ├── multi-module-b.ll │ │ │ ├── multi-module-c.ll │ │ │ ├── multi-module-eh-b.ll │ │ │ └── weak-function-2.ll │ │ ├── cross-module-a.ll │ │ ├── cross-module-sm-pic-a.ll │ │ ├── eh-lg-pic.ll │ │ ├── eh.ll │ │ ├── fpbitcast.ll │ │ ├── hello.ll │ │ ├── hello2.ll │ │ ├── lit.local.cfg │ │ ├── load-object-a.ll │ │ ├── multi-module-a.ll │ │ ├── multi-module-eh-a.ll │ │ ├── multi-module-sm-pic-a.ll │ │ ├── non-extern-addend.ll │ │ ├── pr13727.ll │ │ ├── pr32650.ll │ │ ├── remote │ │ │ ├── Inputs │ │ │ │ ├── cross-module-b.ll │ │ │ │ ├── multi-module-b.ll │ │ │ │ └── multi-module-c.ll │ │ │ ├── cross-module-a.ll │ │ │ ├── eh.ll │ │ │ ├── lit.local.cfg │ │ │ ├── multi-module-a.ll │ │ │ ├── simpletest-remote.ll │ │ │ ├── stubs-remote.ll │ │ │ ├── stubs-sm-pic.ll │ │ │ ├── test-common-symbols-remote.ll │ │ │ ├── test-data-align-remote.ll │ │ │ ├── test-fp-no-external-funcs-remote.ll │ │ │ ├── test-global-init-nonzero-remote.ll │ │ │ ├── test-global-init-nonzero-sm-pic.ll │ │ │ ├── test-ptr-reloc-remote.ll │ │ │ └── test-ptr-reloc-sm-pic.ll │ │ ├── simplesttest.ll │ │ ├── simpletest.ll │ │ ├── stubs-sm-pic.ll │ │ ├── stubs.ll │ │ ├── test-arith.ll │ │ ├── test-branch.ll │ │ ├── test-call-no-external-funcs.ll │ │ ├── test-call.ll │ │ ├── test-cast.ll │ │ ├── test-common-symbols-alignment.ll │ │ ├── test-common-symbols.ll │ │ ├── test-constantexpr.ll │ │ ├── test-data-align.ll │ │ ├── test-fp-no-external-funcs.ll │ │ ├── test-fp.ll │ │ ├── test-global-ctors.ll │ │ ├── test-global-init-nonzero-sm-pic.ll │ │ ├── test-global-init-nonzero.ll │ │ ├── test-global.ll │ │ ├── test-loadstore.ll │ │ ├── test-local.ll │ │ ├── test-logical.ll │ │ ├── test-loop.ll │ │ ├── test-phi.ll │ │ ├── test-ptr-reloc-sm-pic.ll │ │ ├── test-ptr-reloc.ll │ │ ├── test-ret.ll │ │ ├── test-return.ll │ │ ├── test-setcond-fp.ll │ │ ├── test-setcond-int.ll │ │ ├── test-shift.ll │ │ └── weak-function.ll │ ├── RuntimeDyld │ │ ├── AArch64 │ │ │ ├── ELF_ARM64_BE-relocations.s │ │ │ ├── ELF_ARM64_PIC_relocations.s │ │ │ ├── ELF_ARM64_local_branch.s │ │ │ ├── ELF_ARM64_relocations.s │ │ │ ├── MachO_ARM64_relocations.s │ │ │ └── lit.local.cfg │ │ ├── ARM │ │ │ ├── COFF_Thumb.s │ │ │ ├── ELF_ARM_EXIDX_relocations.s │ │ │ ├── MachO_ARM_PIC_relocations.s │ │ │ ├── MachO_Thumb_Relocations.s │ │ │ └── lit.local.cfg │ │ ├── Mips │ │ │ ├── ELF_Mips64r2N64_PIC_relocations.s │ │ │ ├── ELF_N32_relocations.s │ │ │ ├── ELF_N64R6_relocations.s │ │ │ ├── ELF_O32R6_relocations.s │ │ │ ├── ELF_O32_PIC_relocations.s │ │ │ ├── Inputs │ │ │ │ └── ExternalFunction.ll │ │ │ └── lit.local.cfg │ │ ├── PowerPC │ │ │ ├── lit.local.cfg │ │ │ └── ppc32_elf_rel_addr16.s │ │ ├── SystemZ │ │ │ ├── Inputs │ │ │ │ └── rtdyld-globals.ll │ │ │ ├── cfi-relo-pc64.s │ │ │ └── lit.local.cfg │ │ └── X86 │ │ │ ├── COFF_i386.s │ │ │ ├── COFF_x86_64.s │ │ │ ├── ELF-relaxed.s │ │ │ ├── ELF_STT_FILE.s │ │ │ ├── ELF_x64-64_PC8_relocations.s │ │ │ ├── ELF_x64-64_PIC_relocations.s │ │ │ ├── ELF_x86-64_PIC-small-relocations.s │ │ │ ├── ELF_x86-64_debug_frame.s │ │ │ ├── ELF_x86-64_none.yaml │ │ │ ├── ELF_x86_64_StubBuf.s │ │ │ ├── Inputs │ │ │ ├── ELF_STT_FILE_FILE.s │ │ │ ├── ELF_STT_FILE_GLOBAL.s │ │ │ ├── ELF_x86_64_StubBuf.ll │ │ │ └── ExternalGlobal.ll │ │ │ ├── MachO_empty_ehframe.s │ │ │ ├── MachO_i386_DynNoPIC_relocations.s │ │ │ ├── MachO_i386_eh_frame.s │ │ │ ├── MachO_x86-64_PIC_relocations.s │ │ │ ├── coff-alignment.ll │ │ │ └── lit.local.cfg │ ├── fma3-jit.ll │ ├── frem.ll │ ├── lit.local.cfg │ ├── mov64zext32.ll │ ├── test-interp-vec-arithm_float.ll │ ├── test-interp-vec-arithm_int.ll │ ├── test-interp-vec-cast.ll │ ├── test-interp-vec-insertelement.ll │ ├── test-interp-vec-insertextractvalue.ll │ ├── test-interp-vec-loadstore.ll │ ├── test-interp-vec-logical.ll │ ├── test-interp-vec-select.ll │ ├── test-interp-vec-setcond-fp.ll │ ├── test-interp-vec-setcond-int.ll │ ├── test-interp-vec-shift.ll │ └── test-interp-vec-shuffle.ll ├── Feature │ ├── NamedMDNode.ll │ ├── NamedMDNode2.ll │ ├── OperandBundles │ │ ├── adce.ll │ │ ├── basic-aa-argmemonly.ll │ │ ├── dse.ll │ │ ├── early-cse.ll │ │ ├── function-attrs.ll │ │ ├── inliner-conservative.ll │ │ ├── merge-func.ll │ │ ├── pr26510.ll │ │ └── special-state.ll │ ├── README.txt │ ├── alias2.ll │ ├── aliases.ll │ ├── alignment.ll │ ├── attributes.ll │ ├── basictest.ll │ ├── callingconventions.ll │ ├── calltest.ll │ ├── casttest.ll │ ├── cfgstructures.ll │ ├── cold.ll │ ├── comdat.ll │ ├── const_pv.ll │ ├── constexpr.ll │ ├── constpointer.ll │ ├── escaped_label.ll │ ├── exception.ll │ ├── float.ll │ ├── fold-fpcast.ll │ ├── forwardreftest.ll │ ├── fp-intrinsics.ll │ ├── global_pv.ll │ ├── global_section.ll │ ├── globalredefinition3.ll │ ├── globalvars.ll │ ├── indirectcall.ll │ ├── indirectcall2.ll │ ├── inlineasm.ll │ ├── instructions.ll │ ├── intrinsic-noduplicate.ll │ ├── intrinsics.ll │ ├── load_module.ll │ ├── md_on_instruction.ll │ ├── memorymarkers.ll │ ├── metadata.ll │ ├── minsize_attr.ll │ ├── newcasts.ll │ ├── optnone-llc.ll │ ├── optnone-opt.ll │ ├── optnone.ll │ ├── packed.ll │ ├── packed_struct.ll │ ├── paramattrs.ll │ ├── ppcld.ll │ ├── prefixdata.ll │ ├── prologuedata.ll │ ├── properties.ll │ ├── prototype.ll │ ├── recursivetype.ll │ ├── seh-nounwind.ll │ ├── simplecalltest.ll │ ├── small.ll │ ├── smallest.ll │ ├── sparcld.ll │ ├── strip_names.ll │ ├── terminators.ll │ ├── testalloca.ll │ ├── testconstants.ll │ ├── testlogical.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 ├── FileCheck │ ├── check-a-b-has-b.txt │ ├── check-b-a-has-b.txt │ ├── check-dag-multi-prefix-2.txt │ ├── check-dag-multi-prefix.txt │ ├── check-dag-substring-prefix.txt │ ├── check-dag-xfails.txt │ ├── check-dag.txt │ ├── check-empty.txt │ ├── check-label-dag-capture.txt │ ├── check-label-dag.txt │ ├── check-label.txt │ ├── check-multi-prefix-label.txt │ ├── check-multiple-prefixes-mixed.txt │ ├── check-multiple-prefixes-nomatch-2.txt │ ├── check-multiple-prefixes-nomatch.txt │ ├── check-multiple-prefixes-substr.txt │ ├── check-not-diaginfo.txt │ ├── check-prefixes.txt │ ├── check-substring-multi-prefix-2.txt │ ├── check-substring-multi-prefix.txt │ ├── defines.txt │ ├── dos-style-eol.txt │ ├── first-character-match.txt │ ├── implicit-check-not.txt │ ├── line-count-2.txt │ ├── line-count.txt │ ├── match-full-lines.txt │ ├── multiple-missing-prefixes.txt │ ├── next-no-match.txt │ ├── no-multi-suffixes.txt │ ├── regex-brackets.txt │ ├── regex-no-match.txt │ ├── regex-scope.txt │ ├── same.txt │ ├── separate-multi-prefix.txt │ ├── simple-var-capture.txt │ ├── two-checks-for-same-match.txt │ ├── validate-check-prefix.txt │ └── var-ref-same-line.txt ├── Instrumentation │ ├── AddressSanitizer │ │ ├── X86 │ │ │ ├── asm_attr.ll │ │ │ ├── asm_cfi.ll │ │ │ ├── asm_cfi.s │ │ │ ├── asm_cpuid.ll │ │ │ ├── asm_more_registers_than_available.ll │ │ │ ├── asm_mov.ll │ │ │ ├── asm_mov.s │ │ │ ├── asm_mov_no_instrumentation.s │ │ │ ├── asm_rep_movs.ll │ │ │ ├── asm_rsp_mem_op.s │ │ │ ├── asm_swap_intel.s │ │ │ ├── bug_11395.ll │ │ │ └── lit.local.cfg │ │ ├── adaptive_global_redzones.ll │ │ ├── asan-masked-load-store.ll │ │ ├── asan-vs-gvn.ll │ │ ├── asan_address_space_attr.ll │ │ ├── basic-msvc64.ll │ │ ├── basic.ll │ │ ├── debug-info-global-var.ll │ │ ├── debug_info.ll │ │ ├── debug_info_noninstrumented_alloca.ll │ │ ├── debug_info_noninstrumented_alloca2.ll │ │ ├── do-not-instrument-globals-darwin.ll │ │ ├── do-not-instrument-globals-linux.ll │ │ ├── do-not-instrument-internal-globals.ll │ │ ├── do-not-instrument-profiling-globals.ll │ │ ├── do-not-instrument-promotable-allocas.ll │ │ ├── do-not-instrument-sanitizers.ll │ │ ├── do-not-touch-comdat-global.ll │ │ ├── do-not-touch-odr-global.ll │ │ ├── do-not-touch-threadlocal.ll │ │ ├── experiment-call.ll │ │ ├── experiment.ll │ │ ├── force-dynamic-shadow.ll │ │ ├── freebsd.ll │ │ ├── global_cstring_darwin.ll │ │ ├── global_metadata.ll │ │ ├── global_metadata_array.ll │ │ ├── global_metadata_darwin.ll │ │ ├── global_metadata_windows.ll │ │ ├── instrument-dynamic-allocas.ll │ │ ├── instrument-no-return.ll │ │ ├── instrument-stack.ll │ │ ├── instrument_global.ll │ │ ├── instrument_initializer_metadata.ll │ │ ├── instrument_load_then_store.ll │ │ ├── instrumentation-with-call-threshold.ll │ │ ├── keep_going.ll │ │ ├── lifetime-throw.ll │ │ ├── lifetime-uar-uas.ll │ │ ├── lifetime.ll │ │ ├── local_alias.ll │ │ ├── local_stack_base.ll │ │ ├── localescape.ll │ │ ├── no-globals.ll │ │ ├── ps4.ll │ │ ├── scale-offset.ll │ │ ├── stack-poisoning-and-lifetime-be.ll │ │ ├── stack-poisoning-and-lifetime.ll │ │ ├── stack-poisoning-byval-args.ll │ │ ├── stack-poisoning.ll │ │ ├── stack_dynamic_alloca.ll │ │ ├── stack_layout.ll │ │ ├── str-nobuiltin.ll │ │ ├── test64.ll │ │ ├── twice.ll │ │ ├── ubsan.ll │ │ └── with-ifunc.ll │ ├── BoundsChecking │ │ ├── many-trap.ll │ │ ├── phi.ll │ │ ├── simple-32.ll │ │ └── simple.ll │ ├── DataFlowSanitizer │ │ ├── Inputs │ │ │ ├── abilist.txt │ │ │ ├── debuglist.txt │ │ │ └── shadow-args-abilist.txt │ │ ├── abilist.ll │ │ ├── args-unreachable-bb.ll │ │ ├── arith.ll │ │ ├── call.ll │ │ ├── debug-nonzero-labels.ll │ │ ├── debug.ll │ │ ├── external_mask.ll │ │ ├── load.ll │ │ ├── memset.ll │ │ ├── prefix-rename.ll │ │ ├── shadow-args-zext.ll │ │ ├── store.ll │ │ ├── union-large.ll │ │ ├── union.ll │ │ └── unordered_atomic_mem_intrins.ll │ ├── EfficiencySanitizer │ │ ├── str-nobuiltin.ll │ │ ├── struct_field_count_basic.ll │ │ ├── struct_field_gep.ll │ │ ├── struct_field_small.ll │ │ ├── working_set_basic.ll │ │ ├── working_set_slow.ll │ │ └── working_set_strict.ll │ ├── HWAddressSanitizer │ │ ├── atomic.ll │ │ ├── basic.ll │ │ └── with-calls.ll │ ├── InstrProfiling │ │ ├── PR23499.ll │ │ ├── X86 │ │ │ ├── alloc.ll │ │ │ └── lit.local.cfg │ │ ├── always_inline.ll │ │ ├── icall.ll │ │ ├── linkage.ll │ │ ├── no-counters.ll │ │ ├── noruntime.ll │ │ ├── platform.ll │ │ └── profiling.ll │ ├── MemorySanitizer │ │ ├── AArch64 │ │ │ └── vararg.ll │ │ ├── Mips │ │ │ ├── vararg-mips64.ll │ │ │ └── vararg-mips64el.ll │ │ ├── PowerPC │ │ │ ├── vararg-ppc64.ll │ │ │ └── vararg-ppc64le.ll │ │ ├── X86 │ │ │ └── vararg.ll │ │ ├── alloca.ll │ │ ├── array_types.ll │ │ ├── atomics.ll │ │ ├── byval-alignment.ll │ │ ├── check-constant-shadow.ll │ │ ├── check_access_address.ll │ │ ├── csr.ll │ │ ├── global_ctors_2to3.ll │ │ ├── instrumentation-with-call-threshold.ll │ │ ├── missing_origin.ll │ │ ├── msan_basic.ll │ │ ├── msan_x86intrinsics.ll │ │ ├── mul_by_constant.ll │ │ ├── nosanitize.ll │ │ ├── origin-alignment.ll │ │ ├── origin-array.ll │ │ ├── pr32842.ll │ │ ├── return_from_main.ll │ │ ├── store-long-origin.ll │ │ ├── store-origin.ll │ │ ├── str-nobuiltin.ll │ │ ├── unreachable.ll │ │ ├── unsized_type.ll │ │ ├── vector_arith.ll │ │ ├── vector_cmp.ll │ │ ├── vector_cvt.ll │ │ ├── vector_pack.ll │ │ ├── vector_shift.ll │ │ └── with-call-type-size.ll │ ├── SanitizerCoverage │ │ ├── chains.ll │ │ ├── cmp-tracing-api-x86_32.ll │ │ ├── cmp-tracing-api-x86_64.ll │ │ ├── cmp-tracing.ll │ │ ├── const-cmp-tracing.ll │ │ ├── coverage-dbg.ll │ │ ├── coverage.ll │ │ ├── coverage2-dbg.ll │ │ ├── div-tracing.ll │ │ ├── gep-tracing.ll │ │ ├── inline-8bit-counters.ll │ │ ├── no-func.ll │ │ ├── pc-table.ll │ │ ├── postdominator_check.ll │ │ ├── seh.ll │ │ ├── stack-depth.ll │ │ ├── switch-tracing.ll │ │ ├── trace-pc-guard-comdat.ll │ │ ├── trace-pc-guard-nocomdat.ll │ │ ├── tracing-comdat.ll │ │ ├── tracing.ll │ │ └── wineh.ll │ └── ThreadSanitizer │ │ ├── atomic-non-integer.ll │ │ ├── atomic.ll │ │ ├── capture.ll │ │ ├── do-not-instrument-memory-access.ll │ │ ├── eh.ll │ │ ├── no_sanitize_thread.ll │ │ ├── read_before_write.ll │ │ ├── read_from_global.ll │ │ ├── sanitize-thread-no-checking.ll │ │ ├── str-nobuiltin.ll │ │ ├── tsan-vs-gvn.ll │ │ ├── tsan_address_space_attr.ll │ │ ├── tsan_basic.ll │ │ ├── unaligned.ll │ │ ├── vptr_read.ll │ │ └── vptr_update.ll ├── Integer │ ├── 2007-01-19-TruncSext.ll │ ├── BitPacked.ll │ ├── basictest_bt.ll │ ├── constexpr_bt.ll │ ├── constpointer_bt.ll │ ├── fold-fpcast_bt.ll │ ├── instructions_bt.ll │ ├── newcasts_bt.ll │ ├── packed_bt.ll │ ├── packed_struct_bt.ll │ ├── properties_bt.ll │ ├── undefined_bt.ll │ └── unreachable_bt.ll ├── JitListener │ ├── lit.local.cfg │ ├── multiple.ll │ └── simple.ll ├── LTO │ ├── ARM │ │ ├── Inputs │ │ │ └── thumb.ll │ │ ├── inline-asm.ll │ │ ├── link-arm-and-thumb.ll │ │ ├── lit.local.cfg │ │ └── runtime-library-subtarget.ll │ ├── Resolution │ │ └── X86 │ │ │ ├── Inputs │ │ │ ├── alias-1.ll │ │ │ ├── comdat-mixed-lto.ll │ │ │ ├── comdat.ll │ │ │ ├── common2.ll │ │ │ ├── commons.ll │ │ │ ├── dead-strip-alias.ll │ │ │ ├── dead-strip-fulllto.ll │ │ │ ├── intrinsic.ll │ │ │ ├── link-odr-availextern-ae.ll │ │ │ ├── link-odr-availextern-odr.ll │ │ │ ├── load-sample-prof-icp.prof │ │ │ ├── load-sample-prof.prof │ │ │ ├── mixed_lto.ll │ │ │ └── mod-asm-used.ll │ │ │ ├── alias.ll │ │ │ ├── asm-output.ll │ │ │ ├── comdat-mixed-lto.ll │ │ │ ├── comdat.ll │ │ │ ├── common2.ll │ │ │ ├── commons.ll │ │ │ ├── dead-strip-alias.ll │ │ │ ├── dead-strip-fulllto.ll │ │ │ ├── diagnostic-handler-remarks-with-hotness.ll │ │ │ ├── diagnostic-handler-remarks.ll │ │ │ ├── empty-bitcode.test │ │ │ ├── export-jumptable.ll │ │ │ ├── function-alias-non-prevailing.ll │ │ │ ├── ifunc.ll │ │ │ ├── intrinsic.ll │ │ │ ├── link-odr-availextern.ll │ │ │ ├── linker-redef-thin.ll │ │ │ ├── linker-redef.ll │ │ │ ├── linkonce.ll │ │ │ ├── lit.local.cfg │ │ │ ├── load-sample-prof-icp.ll │ │ │ ├── load-sample-prof.ll │ │ │ ├── lowertypetests.ll │ │ │ ├── mixed_lto.ll │ │ │ ├── mod-asm-used.ll │ │ │ ├── multi-thinlto.ll │ │ │ ├── symtab-elf.ll │ │ │ ├── symtab.ll │ │ │ └── type-checked-load.ll │ └── X86 │ │ ├── Inputs │ │ ├── bcsection.macho.s │ │ ├── bcsection.s │ │ ├── invalid.ll.bc │ │ ├── list-symbols.ll │ │ ├── remangle_intrinsics.ll │ │ ├── remangle_intrinsics_tbaa.ll │ │ ├── strip-debug-info-bar.ll │ │ └── type-mapping-src.ll │ │ ├── attrs.ll │ │ ├── bcsection.ll │ │ ├── cfi_endproc.ll │ │ ├── current-section.ll │ │ ├── diagnostic-handler-noexit.ll │ │ ├── diagnostic-handler-remarks-with-hotness.ll │ │ ├── diagnostic-handler-remarks.ll │ │ ├── disable-verify.ll │ │ ├── invalid.ll │ │ ├── keep-used-puts-during-instcombine.ll │ │ ├── linkonce_odr_func.ll │ │ ├── list-symbols.ll │ │ ├── lit.local.cfg │ │ ├── llvm-lto-output.ll │ │ ├── no-undefined-puts-when-implemented.ll │ │ ├── objc-detection-i386.ll │ │ ├── objc-detection.ll │ │ ├── parallel.ll │ │ ├── pr25919.ll │ │ ├── private-symbol.ll │ │ ├── remangle_intrinsics.ll │ │ ├── remangle_intrinsics_tbaa.ll │ │ ├── restore-externals.ll │ │ ├── runtime-library.ll │ │ ├── set-merged.ll │ │ ├── stdcall.ll │ │ ├── strip-debug-info-no-call-loc.ll │ │ ├── strip-debug-info.ll │ │ ├── symver-asm.ll │ │ ├── symver-asm2.ll │ │ ├── triple-init.ll │ │ ├── type-mapping-bug.ll │ │ └── unnamed.ll ├── 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-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-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 │ ├── 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 │ ├── 2011-08-04-DebugLoc.ll │ ├── 2011-08-04-DebugLoc2.ll │ ├── 2011-08-04-Metadata.ll │ ├── 2011-08-04-Metadata2.ll │ ├── 2011-08-18-unique-class-type.ll │ ├── 2011-08-18-unique-class-type2.ll │ ├── 2011-08-18-unique-debug-type.ll │ ├── 2011-08-18-unique-debug-type2.ll │ ├── AppendingLinkage.ll │ ├── AppendingLinkage2.ll │ ├── ConstantGlobals.ll │ ├── DbgDeclare.ll │ ├── DbgDeclare2.ll │ ├── Inputs │ │ ├── 2003-01-30-LinkerRename.ll │ │ ├── 2003-05-31-LinkerRename.ll │ │ ├── ConstantGlobals.ll │ │ ├── PR11464.a.ll │ │ ├── PR11464.b.ll │ │ ├── PR8300.a.ll │ │ ├── PR8300.b.ll │ │ ├── alias-2.ll │ │ ├── alias.ll │ │ ├── alignment.ll │ │ ├── apple-version │ │ │ ├── 1.ll │ │ │ ├── 2.ll │ │ │ ├── 3.ll │ │ │ └── 4.ll │ │ ├── available_externally_over_decl.ll │ │ ├── basiclink.a.ll │ │ ├── basiclink.b.ll │ │ ├── comdat-rm-dst.ll │ │ ├── comdat.ll │ │ ├── comdat11.ll │ │ ├── comdat13.ll │ │ ├── comdat14.ll │ │ ├── comdat15.ll │ │ ├── comdat16.ll │ │ ├── comdat2.ll │ │ ├── comdat3.ll │ │ ├── comdat4.ll │ │ ├── comdat5.ll │ │ ├── comdat8.ll │ │ ├── constructor-comdat.ll │ │ ├── ctors.ll │ │ ├── ctors2.ll │ │ ├── ctors3.ll │ │ ├── datalayout-a.ll │ │ ├── datalayout-b.ll │ │ ├── dicompositetype-unique.ll │ │ ├── distinct.ll │ │ ├── drop-debug.bc │ │ ├── funcimport.ll │ │ ├── funcimport2.ll │ │ ├── funcimport_appending_global.ll │ │ ├── funcimport_comdat.ll │ │ ├── ident.a.ll │ │ ├── ident.b.ll │ │ ├── internalize-lazy.ll │ │ ├── linkage.a.ll │ │ ├── linkage.b.ll │ │ ├── linkage.c.ll │ │ ├── linkage.d.ll │ │ ├── linkage2.ll │ │ ├── mdlocation.ll │ │ ├── metadata-attach.ll │ │ ├── metadata-function.ll │ │ ├── metadata-with-global-value-operand.ll │ │ ├── module-flags-dont-change-others.ll │ │ ├── module-flags-pic-1-b.ll │ │ ├── module-flags-pic-2-b.ll │ │ ├── objectivec-class-property-flag-mismatch.ll │ │ ├── odr-lambda-2.ll │ │ ├── odr.ll │ │ ├── old_global_ctors.3.4.bc │ │ ├── only-needed-compiler-used.ll │ │ ├── only-needed-ctors.ll │ │ ├── only-needed-debug-metadata.ll │ │ ├── only-needed-dtors.ll │ │ ├── only-needed-named-metadata.ll │ │ ├── only-needed-recurse.ll │ │ ├── only-needed-used.ll │ │ ├── opaque.ll │ │ ├── override-different-linkage.ll │ │ ├── override-with-internal-linkage-2.ll │ │ ├── override-with-internal-linkage.ll │ │ ├── override.ll │ │ ├── pr21374.ll │ │ ├── pr22807-1.ll │ │ ├── pr22807-2.ll │ │ ├── pr26037.ll │ │ ├── pr27044.ll │ │ ├── redefinition.ll │ │ ├── replaced-function-matches-first-subprogram.ll │ │ ├── subprogram-linkonce-weak.ll │ │ ├── syncscope-1.ll │ │ ├── syncscope-2.ll │ │ ├── targettriple-a.ll │ │ ├── targettriple-b.ll │ │ ├── targettriple-c.ll │ │ ├── testlink.ll │ │ ├── thinlto_funcimport_debug.ll │ │ ├── thumb-module-inline-asm.ll │ │ ├── thumb.ll │ │ ├── type-unique-alias.ll │ │ ├── type-unique-dst-types2.ll │ │ ├── type-unique-dst-types3.ll │ │ ├── type-unique-inheritance-a.ll │ │ ├── type-unique-inheritance-b.ll │ │ ├── type-unique-name.ll │ │ ├── type-unique-opaque.ll │ │ ├── type-unique-simple2-a.ll │ │ ├── type-unique-simple2-b.ll │ │ ├── type-unique-unrelated2.ll │ │ ├── type-unique-unrelated3.ll │ │ ├── unique-fwd-decl-b.ll │ │ ├── unique-fwd-decl-order.ll │ │ └── visibility.ll │ ├── LinkOnce.ll │ ├── PR8300.ll │ ├── alias-2.ll │ ├── alias-3.ll │ ├── alias.ll │ ├── alignment.ll │ ├── apple-version.ll │ ├── available_externally_a.ll │ ├── available_externally_b.ll │ ├── available_externally_over_decl.ll │ ├── basiclink.ll │ ├── broken.ll │ ├── comdat-rm-dst.ll │ ├── comdat.ll │ ├── comdat10.ll │ ├── comdat11.ll │ ├── comdat12.ll │ ├── comdat13.ll │ ├── comdat14.ll │ ├── comdat15.ll │ ├── comdat16.ll │ ├── comdat2.ll │ ├── comdat4.ll │ ├── comdat5.ll │ ├── comdat6.ll │ ├── comdat7.ll │ ├── comdat8.ll │ ├── comdat9.ll │ ├── comdat_group.ll │ ├── constructor-comdat.ll │ ├── ctors.ll │ ├── ctors2.ll │ ├── ctors3.ll │ ├── ctors4.ll │ ├── ctors5.ll │ ├── datalayout.ll │ ├── debug-info-global-var.ll │ ├── debug-info-version-a.ll │ ├── debug-info-version-b.ll │ ├── dicompositetype-unique.ll │ ├── distinct-cycles.ll │ ├── distinct.ll │ ├── dllstorage-a.ll │ ├── dllstorage-b.ll │ ├── drop-debug.ll │ ├── func-attrs-a.ll │ ├── func-attrs-b.ll │ ├── funcimport.ll │ ├── funcimport2.ll │ ├── funcimport_appending_global.ll │ ├── funcimport_comdat.ll │ ├── global_ctors.ll │ ├── ident.ll │ ├── inlineasm.ll │ ├── internalize-lazy.ll │ ├── link-arm-and-thumb-module-inline-asm.ll │ ├── link-arm-and-thumb.ll │ ├── link-flags.ll │ ├── link-global-to-func.ll │ ├── link-type-names.ll │ ├── linkage.ll │ ├── linkage2.ll │ ├── linkmdnode.ll │ ├── linkmdnode2.ll │ ├── linknamedmdnode.ll │ ├── linknamedmdnode2.ll │ ├── lto-attributes.ll │ ├── mdlocation.ll │ ├── metadata-a.ll │ ├── metadata-attach.ll │ ├── metadata-b.ll │ ├── metadata-function.ll │ ├── metadata-global.ll │ ├── metadata-with-global-value-operand.ll │ ├── module-flags-1-a.ll │ ├── module-flags-1-b.ll │ ├── module-flags-2-a.ll │ ├── module-flags-2-b.ll │ ├── module-flags-3-a.ll │ ├── module-flags-3-b.ll │ ├── module-flags-4-a.ll │ ├── module-flags-4-b.ll │ ├── module-flags-5-a.ll │ ├── module-flags-5-b.ll │ ├── module-flags-6-a.ll │ ├── module-flags-6-b.ll │ ├── module-flags-7-a.ll │ ├── module-flags-7-b.ll │ ├── module-flags-8-a.ll │ ├── module-flags-8-b.ll │ ├── module-flags-dont-change-others.ll │ ├── module-flags-pic-1-a.ll │ ├── module-flags-pic-2-a.ll │ ├── multiple-merged-structs.ll │ ├── null_mapping_constant.ll │ ├── objectivec-class-property-flag-mismatch.ll │ ├── odr-lambda-1.ll │ ├── odr.ll │ ├── only-needed-compiler-used.ll │ ├── only-needed-ctors1.ll │ ├── only-needed-ctors2.ll │ ├── only-needed-debug-metadata.ll │ ├── only-needed-dtors1.ll │ ├── only-needed-dtors2.ll │ ├── only-needed-named-metadata.ll │ ├── only-needed-recurse.ll │ ├── only-needed-used.ll │ ├── opaque.ll │ ├── override-different-linkage.ll │ ├── override-with-internal-linkage-2.ll │ ├── override-with-internal-linkage.ll │ ├── override.ll │ ├── partial-type-refinement-link.ll │ ├── partial-type-refinement.ll │ ├── pr21374.ll │ ├── pr21494.ll │ ├── pr22807.ll │ ├── pr26037.ll │ ├── pr27044.ll │ ├── prologuedata.ll │ ├── redefinition.ll │ ├── replaced-function-matches-first-subprogram.ll │ ├── subprogram-linkonce-weak.ll │ ├── syncscopes.ll │ ├── targettriple.ll │ ├── testlink.ll │ ├── thinlto_funcimport_debug.ll │ ├── transitive-lazy-link.ll │ ├── type-unique-alias.ll │ ├── type-unique-dst-types.ll │ ├── type-unique-inheritance.ll │ ├── type-unique-name.ll │ ├── type-unique-odr-a.ll │ ├── type-unique-odr-b.ll │ ├── type-unique-opaque.ll │ ├── type-unique-simple-a.ll │ ├── type-unique-simple-b.ll │ ├── type-unique-simple2-a.ll │ ├── type-unique-simple2-b.ll │ ├── type-unique-simple2.ll │ ├── type-unique-src-type.ll │ ├── type-unique-type-array-a.ll │ ├── type-unique-type-array-b.ll │ ├── type-unique-unrelated.ll │ ├── unique-fwd-decl-a.ll │ ├── unique-fwd-decl-order.ll │ ├── uniqued-distinct-cycles.ll │ ├── unnamed-addr-err-a.ll │ ├── unnamed-addr-err-b.ll │ ├── unnamed-addr1-a.ll │ ├── unnamed-addr1-b.ll │ ├── visibility.ll │ └── weakextern.ll ├── MC │ ├── AArch64 │ │ ├── SVE │ │ │ ├── add-diagnostics.s │ │ │ ├── add.s │ │ │ ├── dot-req-diagnostics.s │ │ │ ├── dot-req.s │ │ │ ├── sub-diagnostics.s │ │ │ ├── sub.s │ │ │ ├── zip1-diagnostics.s │ │ │ ├── zip1.s │ │ │ ├── zip2-diagnostics.s │ │ │ └── zip2.s │ │ ├── adrp-relocation.s │ │ ├── alias-addsubimm.s │ │ ├── alias-logicalimm.s │ │ ├── arm32-elf-relocs.s │ │ ├── arm64-adr.s │ │ ├── arm64-advsimd.s │ │ ├── arm64-aliases.s │ │ ├── arm64-arithmetic-encoding.s │ │ ├── arm64-arm64-fixup.s │ │ ├── arm64-basic-a64-instructions.s │ │ ├── arm64-be-datalayout.s │ │ ├── arm64-bitfield-encoding.s │ │ ├── arm64-branch-encoding.s │ │ ├── arm64-condbr-without-dots.s │ │ ├── arm64-crypto.s │ │ ├── arm64-diagno-predicate.s │ │ ├── arm64-diags.s │ │ ├── arm64-directive_loh.s │ │ ├── arm64-elf-reloc-condbr.s │ │ ├── arm64-elf-relocs.s │ │ ├── arm64-fp-encoding-error.s │ │ ├── arm64-fp-encoding.s │ │ ├── arm64-ilp32.s │ │ ├── arm64-large-relocs.s │ │ ├── arm64-leaf-compact-unwind.s │ │ ├── arm64-logical-encoding.s │ │ ├── arm64-mapping-across-sections.s │ │ ├── arm64-mapping-within-section.s │ │ ├── arm64-memory.s │ │ ├── arm64-nv-cond.s │ │ ├── arm64-optional-hash.s │ │ ├── arm64-separator.s │ │ ├── arm64-simd-ldst.s │ │ ├── arm64-small-data-fixups.s │ │ ├── arm64-spsel-sysreg.s │ │ ├── arm64-system-encoding.s │ │ ├── arm64-target-specific-sysreg.s │ │ ├── arm64-tls-modifiers-darwin.s │ │ ├── arm64-tls-relocs.s │ │ ├── arm64-v128_lo-diagnostics.s │ │ ├── arm64-variable-exprs.s │ │ ├── arm64-vector-lists.s │ │ ├── arm64-verbose-vector-case.s │ │ ├── arm64v8.1-diagno-predicate.s │ │ ├── armv8.1a-atomic.s │ │ ├── armv8.1a-lor.s │ │ ├── armv8.1a-lse.s │ │ ├── armv8.1a-pan.s │ │ ├── armv8.1a-rdma.s │ │ ├── armv8.1a-vhe.s │ │ ├── armv8.2a-at.s │ │ ├── armv8.2a-dotprod-errors.s │ │ ├── armv8.2a-dotprod.s │ │ ├── armv8.2a-mmfr2.s │ │ ├── armv8.2a-persistent-memory.s │ │ ├── armv8.2a-statistical-profiling.s │ │ ├── armv8.2a-uao.s │ │ ├── armv8.3a-ID_ISAR6_EL1.s │ │ ├── armv8.3a-complex.s │ │ ├── armv8.3a-diagnostics.s │ │ ├── armv8.3a-js.s │ │ ├── armv8.3a-rcpc.s │ │ ├── armv8.3a-signed-pointer.s │ │ ├── basic-a64-diagnostics.s │ │ ├── basic-a64-instructions.s │ │ ├── basic-pic.s │ │ ├── case-insen-reg-names.s │ │ ├── cfi.s │ │ ├── coff-align.s │ │ ├── coff-basic.ll │ │ ├── coff-debug.ll │ │ ├── coff-gnu.s │ │ ├── coff-relocations.s │ │ ├── crc.s │ │ ├── cyclone-movi-bug.s │ │ ├── darwin-reloc-addsubimm.s │ │ ├── directive-arch-negative.s │ │ ├── directive-arch.s │ │ ├── directive-cpu-err.s │ │ ├── directive-cpu.s │ │ ├── dot-req-case-insensitive.s │ │ ├── dot-req-diagnostics.s │ │ ├── dot-req.s │ │ ├── elf-extern.s │ │ ├── elf-globaladdress.ll │ │ ├── elf-objdump.s │ │ ├── elf-reloc-addsubimm.s │ │ ├── elf-reloc-ldrlit.s │ │ ├── elf-reloc-ldstunsimm.s │ │ ├── elf-reloc-movw.s │ │ ├── elf-reloc-pcreladdressing.s │ │ ├── elf-reloc-tstb.s │ │ ├── elf-reloc-uncondbrimm.s │ │ ├── elf_osabi_flags.s │ │ ├── error-location-during-layout.s │ │ ├── error-location-ldr-pseudo.s │ │ ├── error-location-post-layout.s │ │ ├── error-location.s │ │ ├── expr-shr.s │ │ ├── fixup-out-of-range.s │ │ ├── fullfp16-diagnostics.s │ │ ├── fullfp16-neon-neg.s │ │ ├── gicv3-regs-diagnostics.s │ │ ├── gicv3-regs.s │ │ ├── ilp32-diagnostics.s │ │ ├── inline-asm-modifiers.s │ │ ├── inst-directive-diagnostic.s │ │ ├── inst-directive.s │ │ ├── invalid-instructions-spellcheck.s │ │ ├── jump-table.s │ │ ├── label-arithmetic-darwin.s │ │ ├── label-arithmetic-diags-darwin.s │ │ ├── label-arithmetic-diags-elf.s │ │ ├── label-arithmetic-elf.s │ │ ├── ldr-pseudo-diagnostics.s │ │ ├── ldr-pseudo-obj-errors.s │ │ ├── ldr-pseudo.s │ │ ├── lit.local.cfg │ │ ├── macho-adrp-missing-reloc.s │ │ ├── macho-adrp-page.s │ │ ├── mapping-across-sections.s │ │ ├── mapping-within-section.s │ │ ├── neon-2velem.s │ │ ├── neon-3vdiff.s │ │ ├── neon-aba-abd.s │ │ ├── neon-across.s │ │ ├── neon-add-pairwise.s │ │ ├── neon-add-sub-instructions.s │ │ ├── neon-bitwise-instructions.s │ │ ├── neon-compare-instructions.s │ │ ├── neon-crypto.s │ │ ├── neon-diagnostics.s │ │ ├── neon-extract.s │ │ ├── neon-facge-facgt.s │ │ ├── neon-frsqrt-frecp.s │ │ ├── neon-halving-add-sub.s │ │ ├── neon-max-min-pairwise.s │ │ ├── neon-max-min.s │ │ ├── neon-mla-mls-instructions.s │ │ ├── neon-mov.s │ │ ├── neon-mul-div-instructions.s │ │ ├── neon-perm.s │ │ ├── neon-rounding-halving-add.s │ │ ├── neon-rounding-shift.s │ │ ├── neon-saturating-add-sub.s │ │ ├── neon-saturating-rounding-shift.s │ │ ├── neon-saturating-shift.s │ │ ├── neon-scalar-abs.s │ │ ├── neon-scalar-add-sub.s │ │ ├── neon-scalar-by-elem-mla.s │ │ ├── neon-scalar-by-elem-mul.s │ │ ├── neon-scalar-by-elem-saturating-mla.s │ │ ├── neon-scalar-by-elem-saturating-mul.s │ │ ├── neon-scalar-compare.s │ │ ├── neon-scalar-cvt.s │ │ ├── neon-scalar-dup.s │ │ ├── neon-scalar-extract-narrow.s │ │ ├── neon-scalar-fp-compare.s │ │ ├── neon-scalar-mul.s │ │ ├── neon-scalar-neg.s │ │ ├── neon-scalar-recip.s │ │ ├── neon-scalar-reduce-pairwise.s │ │ ├── neon-scalar-rounding-shift.s │ │ ├── neon-scalar-saturating-add-sub.s │ │ ├── neon-scalar-saturating-rounding-shift.s │ │ ├── neon-scalar-saturating-shift.s │ │ ├── neon-scalar-shift-imm.s │ │ ├── neon-scalar-shift.s │ │ ├── neon-shift-left-long.s │ │ ├── neon-shift.s │ │ ├── neon-simd-copy.s │ │ ├── neon-simd-ldst-multi-elem.s │ │ ├── neon-simd-ldst-one-elem.s │ │ ├── neon-simd-misc.s │ │ ├── neon-simd-post-ldst-multi-elem.s │ │ ├── neon-simd-shift.s │ │ ├── neon-sxtl.s │ │ ├── neon-tbl.s │ │ ├── neon-uxtl.s │ │ ├── nofp-crypto-diagnostic.s │ │ ├── noneon-diagnostics.s │ │ ├── optional-hash.s │ │ ├── ras-extension.s │ │ ├── shift_extend_op_w_symbol.s │ │ ├── single-slash.s │ │ ├── tls-add-shift.s │ │ ├── tls-relocs.s │ │ ├── trace-regs-diagnostics.s │ │ └── trace-regs.s │ ├── AMDGPU │ │ ├── add-sub-no-carry.s │ │ ├── buffer_wbinv1l_vol_vi.s │ │ ├── ds-err.s │ │ ├── ds-gfx9.s │ │ ├── ds.s │ │ ├── elf-notes-verify-amdgcn.s │ │ ├── elf-notes-verify-r600.s │ │ ├── exp-err.s │ │ ├── exp.s │ │ ├── expressions.s │ │ ├── flat-gfx9.s │ │ ├── flat-global.s │ │ ├── flat-scratch-instructions.s │ │ ├── flat-scratch.s │ │ ├── flat.s │ │ ├── gfx7_asm_all.s │ │ ├── gfx8_asm_all.s │ │ ├── gfx9_asm_all.s │ │ ├── hsa-exp.s │ │ ├── hsa-metadata-kernel-args.s │ │ ├── hsa-metadata-kernel-attrs.s │ │ ├── hsa-metadata-kernel-code-props.s │ │ ├── hsa-metadata-kernel-debug-props.s │ │ ├── hsa-metadata-unknown-key.s │ │ ├── hsa-text.s │ │ ├── hsa.s │ │ ├── hsa_code_object_isa_args.s │ │ ├── invalid-instructions-spellcheck.s │ │ ├── isa-version-hsa.s │ │ ├── isa-version-pal.s │ │ ├── isa-version-unk.s │ │ ├── labels-branch.s │ │ ├── lit.local.cfg │ │ ├── literal16-err.s │ │ ├── literal16.s │ │ ├── literals.s │ │ ├── literalv216-err.s │ │ ├── literalv216.s │ │ ├── macro-examples.s │ │ ├── max-branch-distance.s │ │ ├── mimg.s │ │ ├── mtbuf.s │ │ ├── mubuf-gfx9.s │ │ ├── mubuf.s │ │ ├── out-of-range-registers.s │ │ ├── pal.s │ │ ├── reg-syntax-extra.s │ │ ├── regression │ │ │ ├── bug28165.s │ │ │ ├── bug28168.s │ │ │ ├── bug28413.s │ │ │ ├── bug28538.s │ │ │ └── lit.local.cfg │ │ ├── reloc.s │ │ ├── smem-err.s │ │ ├── smem.s │ │ ├── smrd-err.s │ │ ├── smrd.s │ │ ├── sop1-err.s │ │ ├── sop1.s │ │ ├── sop2-err.s │ │ ├── sop2.s │ │ ├── sopc-err.s │ │ ├── sopc.s │ │ ├── sopk-err.s │ │ ├── sopk.s │ │ ├── sopp-err.s │ │ ├── sopp-gfx9.s │ │ ├── sopp.s │ │ ├── sym_kernel_scope.s │ │ ├── sym_option.s │ │ ├── trap.s │ │ ├── vintrp-err.s │ │ ├── vintrp.s │ │ ├── vop-err.s │ │ ├── vop1-gfx9-err.s │ │ ├── vop1-gfx9.s │ │ ├── vop1.s │ │ ├── vop2-err.s │ │ ├── vop2.s │ │ ├── vop3-convert.s │ │ ├── vop3-errs.s │ │ ├── vop3-gfx9.s │ │ ├── vop3-modifiers-err.s │ │ ├── vop3-modifiers.s │ │ ├── vop3-vop1-nosrc.s │ │ ├── vop3.s │ │ ├── vop3p-err.s │ │ ├── vop3p.s │ │ ├── vop_dpp.s │ │ ├── vop_dpp_expr.s │ │ ├── vop_sdwa.s │ │ ├── vopc-errs.s │ │ ├── vopc-vi.s │ │ └── vopc.s │ ├── ARM │ │ ├── 2010-11-30-reloc-movt.s │ │ ├── 2013-03-18-Br-to-label-named-like-reg.s │ │ ├── AlignedBundling │ │ │ ├── group-bundle-arm.s │ │ │ ├── lit.local.cfg │ │ │ └── pad-align-to-bundle-end.s │ │ ├── Inputs │ │ │ ├── 1.s │ │ │ ├── 2.s │ │ │ ├── 3.s │ │ │ ├── 4.s │ │ │ ├── 5.s │ │ │ ├── 6.s │ │ │ ├── 7.s │ │ │ ├── attr.s │ │ │ └── ident.s │ │ ├── Windows │ │ │ ├── invalid-relocation.s │ │ │ ├── literals-comments.s │ │ │ ├── mov32t-range.s │ │ │ ├── multiple-text-sections.s │ │ │ ├── text-attributes.s │ │ │ └── thumb-attributes.s │ │ ├── align_arm_2_thumb.s │ │ ├── align_thumb_2_arm.s │ │ ├── aligned-blx.s │ │ ├── arm-aliases.s │ │ ├── arm-arithmetic-aliases.s │ │ ├── arm-branch-errors.s │ │ ├── arm-branches.s │ │ ├── arm-elf-relocation-diagnostics.s │ │ ├── arm-elf-relocations.s │ │ ├── arm-elf-symver.s │ │ ├── arm-it-block.s │ │ ├── arm-ldrd.s │ │ ├── arm-load-store-multiple-deprecated.s │ │ ├── arm-macho-calls.s │ │ ├── arm-memory-instructions.s │ │ ├── arm-qualifier-diagnostics.s │ │ ├── arm-shift-encoding.s │ │ ├── arm-thumb-cpus-default.s │ │ ├── arm-thumb-cpus.s │ │ ├── arm-thumb-tail-call.ll │ │ ├── arm-thumb-trustzone.s │ │ ├── arm-trustzone.s │ │ ├── arm11-hint-instr.s │ │ ├── arm_addrmode2.s │ │ ├── arm_addrmode3.s │ │ ├── arm_fixups.s │ │ ├── arm_instructions.s │ │ ├── armv8.2a-dotprod-a32.s │ │ ├── armv8.2a-dotprod-error.s │ │ ├── armv8.2a-dotprod-t32.s │ │ ├── armv8.3a-js.s │ │ ├── assembly-default-build-attributes.s │ │ ├── basic-arm-instructions-v8.1a.s │ │ ├── basic-arm-instructions-v8.s │ │ ├── basic-arm-instructions.s │ │ ├── basic-thumb-instructions.s │ │ ├── basic-thumb2-instructions-v8.s │ │ ├── basic-thumb2-instructions.s │ │ ├── big-endian-arm-fixup.s │ │ ├── big-endian-thumb-fixup.s │ │ ├── big-endian-thumb2-fixup.s │ │ ├── bkpt.s │ │ ├── bracket-darwin.s │ │ ├── bracket-exprs.s │ │ ├── branch-disassemble.s │ │ ├── cmp-immediate-fixup-error.s │ │ ├── cmp-immediate-fixup-error2.s │ │ ├── cmp-immediate-fixup.s │ │ ├── cmp-immediate-fixup2.s │ │ ├── coff-debugging-secrel.ll │ │ ├── coff-file.s │ │ ├── coff-function-type-info.ll │ │ ├── coff-relocations.s │ │ ├── comment.s │ │ ├── complex-operands.s │ │ ├── coproc-diag.s │ │ ├── cps.s │ │ ├── cpu-test.s │ │ ├── crc32-thumb.s │ │ ├── crc32.s │ │ ├── cxx-global-constructor.ll │ │ ├── d16.s │ │ ├── data-in-code.ll │ │ ├── deprecated-v8.s │ │ ├── dfb-neg.s │ │ ├── dfb.s │ │ ├── diagnostics-noneon.s │ │ ├── diagnostics.s │ │ ├── directive-align.s │ │ ├── directive-arch-armv2.s │ │ ├── directive-arch-armv2a.s │ │ ├── directive-arch-armv3.s │ │ ├── directive-arch-armv3m.s │ │ ├── directive-arch-armv4.s │ │ ├── directive-arch-armv4t.s │ │ ├── directive-arch-armv5.s │ │ ├── directive-arch-armv5t.s │ │ ├── directive-arch-armv5te.s │ │ ├── directive-arch-armv6-m.s │ │ ├── directive-arch-armv6.s │ │ ├── directive-arch-armv6k.s │ │ ├── directive-arch-armv6t2.s │ │ ├── directive-arch-armv6z.s │ │ ├── directive-arch-armv7-a.s │ │ ├── directive-arch-armv7-m.s │ │ ├── directive-arch-armv7-r.s │ │ ├── directive-arch-armv7.s │ │ ├── directive-arch-armv7a.s │ │ ├── directive-arch-armv7e-m.s │ │ ├── directive-arch-armv7em.s │ │ ├── directive-arch-armv7m.s │ │ ├── directive-arch-armv7r.s │ │ ├── directive-arch-armv8-a.s │ │ ├── directive-arch-armv8.2-a.s │ │ ├── directive-arch-armv8a.s │ │ ├── directive-arch-iwmmxt.s │ │ ├── directive-arch-iwmmxt2.s │ │ ├── directive-arch-mode-switch.s │ │ ├── directive-arch-semantic-action.s │ │ ├── directive-arch_extension-crc.s │ │ ├── directive-arch_extension-crypto.s │ │ ├── directive-arch_extension-fp.s │ │ ├── directive-arch_extension-idiv.s │ │ ├── directive-arch_extension-mode-switch.s │ │ ├── directive-arch_extension-mp.s │ │ ├── directive-arch_extension-sec.s │ │ ├── directive-arch_extension-simd.s │ │ ├── directive-arch_extension-toggle.s │ │ ├── directive-arch_extension-unsupported.s │ │ ├── directive-cpu.s │ │ ├── directive-eabi_attribute-diagnostics.s │ │ ├── directive-eabi_attribute-overwrite.s │ │ ├── directive-eabi_attribute.s │ │ ├── directive-even.s │ │ ├── directive-fpu-diagnostics.s │ │ ├── directive-fpu-instrs.s │ │ ├── directive-fpu-multiple.s │ │ ├── directive-fpu-softvfp.s │ │ ├── directive-fpu.s │ │ ├── directive-literals.s │ │ ├── directive-object_arch-2.s │ │ ├── directive-object_arch-3.s │ │ ├── directive-object_arch-diagnostics.s │ │ ├── directive-object_arch.s │ │ ├── directive-thumb_func.s │ │ ├── directive-tlsdescseq-diagnostics.s │ │ ├── directive-tlsdescseq.s │ │ ├── directive-type-diagnostics.s │ │ ├── directive-unsupported.s │ │ ├── directive-word-diagnostics.s │ │ ├── directive_parsing.s │ │ ├── dot-req-case-insensitive.s │ │ ├── dot-req.s │ │ ├── dwarf-asm-multiple-sections-dwarf-2.s │ │ ├── dwarf-asm-multiple-sections.s │ │ ├── dwarf-asm-no-code.s │ │ ├── dwarf-asm-nonstandard-section.s │ │ ├── dwarf-asm-single-section.s │ │ ├── dwarf-cfi-initial-state.s │ │ ├── eh-compact-pr0.s │ │ ├── eh-compact-pr1.s │ │ ├── eh-directive-cantunwind-diagnostics.s │ │ ├── eh-directive-cantunwind.s │ │ ├── eh-directive-fnend-diagnostics.s │ │ ├── eh-directive-fnstart-diagnostics.s │ │ ├── eh-directive-handlerdata.s │ │ ├── eh-directive-integrated-test.s │ │ ├── eh-directive-movsp-diagnostics.s │ │ ├── eh-directive-movsp.s │ │ ├── eh-directive-multiple-offsets.s │ │ ├── eh-directive-pad-diagnostics.s │ │ ├── eh-directive-pad.s │ │ ├── eh-directive-personality-diagnostics.s │ │ ├── eh-directive-personality.s │ │ ├── eh-directive-personalityindex-diagnostics.s │ │ ├── eh-directive-personalityindex.s │ │ ├── eh-directive-save-diagnostics.s │ │ ├── eh-directive-save.s │ │ ├── eh-directive-section-comdat.s │ │ ├── eh-directive-section-multiple-func.s │ │ ├── eh-directive-section.s │ │ ├── eh-directive-setfp-diagnostics.s │ │ ├── eh-directive-setfp.s │ │ ├── eh-directive-text-section-multiple-func.s │ │ ├── eh-directive-text-section.s │ │ ├── eh-directive-unwind_raw-diagnostics.s │ │ ├── eh-directive-unwind_raw.s │ │ ├── eh-directive-vsave-diagnostics.s │ │ ├── eh-directive-vsave.s │ │ ├── eh-link.s │ │ ├── ehabi-personality-abs.s │ │ ├── elf-eflags-eabi.s │ │ ├── elf-jump24-fixup.s │ │ ├── elf-movt.s │ │ ├── elf-reloc-01.s │ │ ├── elf-reloc-02.s │ │ ├── elf-reloc-03.s │ │ ├── elf-reloc-condcall.s │ │ ├── elf-thumbfunc-reloc.s │ │ ├── elf-thumbfunc-reloc2.s │ │ ├── elf-thumbfunc.s │ │ ├── error-location-ldr-pseudo.s │ │ ├── error-location-post-layout.s │ │ ├── error-location.s │ │ ├── fconst.s │ │ ├── fixup-cpu-mode.s │ │ ├── fp-armv8.s │ │ ├── fp-const-errors.s │ │ ├── full_line_comment.s │ │ ├── fullfp16-neg.s │ │ ├── fullfp16-neon-neg.s │ │ ├── fullfp16-neon.s │ │ ├── fullfp16.s │ │ ├── gas-compl-copr-reg.s │ │ ├── hilo-16bit-relocations.s │ │ ├── idiv.s │ │ ├── implicit-it-generation.s │ │ ├── implicit-it.s │ │ ├── inline-asm-diags.ll │ │ ├── inline-asm-srcloc.ll │ │ ├── inline-comments-arm.ll │ │ ├── inst-arm-suffixes.s │ │ ├── inst-constant-required.s │ │ ├── inst-directive-emit.s │ │ ├── inst-directive.s │ │ ├── inst-overflow.s │ │ ├── inst-thumb-overflow-2.s │ │ ├── inst-thumb-overflow.s │ │ ├── inst-thumb-suffixes.s │ │ ├── invalid-barrier.s │ │ ├── invalid-crc32.s │ │ ├── invalid-fp-armv8.s │ │ ├── invalid-hint-arm.s │ │ ├── invalid-hint-thumb.s │ │ ├── invalid-idiv.s │ │ ├── invalid-instructions-spellcheck.s │ │ ├── invalid-neon-v8.s │ │ ├── invalid-special-reg.s │ │ ├── invalid-vector-index.s │ │ ├── ldr-pseudo-cond-darwin.s │ │ ├── ldr-pseudo-cond.s │ │ ├── ldr-pseudo-darwin.s │ │ ├── ldr-pseudo-obj-errors.s │ │ ├── ldr-pseudo-parse-errors.s │ │ ├── ldr-pseudo-unpredictable.s │ │ ├── ldr-pseudo-wide.s │ │ ├── ldr-pseudo.s │ │ ├── ldrd-strd-gnu-arm-bad-imm.s │ │ ├── ldrd-strd-gnu-arm-bad-regs.s │ │ ├── ldrd-strd-gnu-arm.s │ │ ├── ldrd-strd-gnu-bad-inst.s │ │ ├── ldrd-strd-gnu-sp.s │ │ ├── ldrd-strd-gnu-thumb-bad-regs.s │ │ ├── ldrd-strd-gnu-thumb.s │ │ ├── lit.local.cfg │ │ ├── load-store-acquire-release-v8-thumb.s │ │ ├── load-store-acquire-release-v8.s │ │ ├── lsl-zero-errors.s │ │ ├── lsl-zero.s │ │ ├── ltorg-darwin.s │ │ ├── ltorg-range.s │ │ ├── ltorg.s │ │ ├── macho-movwt.s │ │ ├── macho-relocs-with-addend.s │ │ ├── macho-word-reloc-thumb.s │ │ ├── mapping-initial.s │ │ ├── mapping-within-section.s │ │ ├── mappingsymbols.s │ │ ├── misaligned-blx.s │ │ ├── mixed-arm-thumb-bl-fixup.ll │ │ ├── mode-switch.s │ │ ├── modified-immediate-fixup-error.s │ │ ├── modified-immediate-fixup.s │ │ ├── move-banked-regs.s │ │ ├── mul-v4.s │ │ ├── multi-section-mapping.s │ │ ├── negative-immediates-fail.s │ │ ├── negative-immediates-thumb1-fail.s │ │ ├── negative-immediates-thumb1.s │ │ ├── negative-immediates.s │ │ ├── neon-abs-encoding.s │ │ ├── neon-absdiff-encoding.s │ │ ├── neon-add-encoding.s │ │ ├── neon-bitcount-encoding.s │ │ ├── neon-bitwise-encoding.s │ │ ├── neon-cmp-encoding.s │ │ ├── neon-complex.s │ │ ├── neon-convert-encoding.s │ │ ├── neon-crypto.s │ │ ├── neon-dup-encoding.s │ │ ├── neon-minmax-encoding.s │ │ ├── neon-mov-encoding.s │ │ ├── neon-mov-vfp.s │ │ ├── neon-mul-accum-encoding.s │ │ ├── neon-mul-encoding.s │ │ ├── neon-neg-encoding.s │ │ ├── neon-pairwise-encoding.s │ │ ├── neon-reciprocal-encoding.s │ │ ├── neon-reverse-encoding.s │ │ ├── neon-satshift-encoding.s │ │ ├── neon-shift-encoding.s │ │ ├── neon-shiftaccum-encoding.s │ │ ├── neon-shuffle-encoding.s │ │ ├── neon-sub-encoding.s │ │ ├── neon-table-encoding.s │ │ ├── neon-v8.s │ │ ├── neon-vcvt-fp16.s │ │ ├── neon-vld-encoding.s │ │ ├── neon-vld-vst-align.s │ │ ├── neon-vst-encoding.s │ │ ├── neon-vswp.s │ │ ├── neont2-abs-encoding.s │ │ ├── neont2-absdiff-encoding.s │ │ ├── neont2-add-encoding.s │ │ ├── neont2-bitcount-encoding.s │ │ ├── neont2-bitwise-encoding.s │ │ ├── neont2-cmp-encoding.s │ │ ├── neont2-convert-encoding.s │ │ ├── neont2-dup-encoding.s │ │ ├── neont2-minmax-encoding.s │ │ ├── neont2-mov-encoding.s │ │ ├── neont2-mul-accum-encoding.s │ │ ├── neont2-mul-encoding.s │ │ ├── neont2-neg-encoding.s │ │ ├── neont2-pairwise-encoding.s │ │ ├── neont2-reciprocal-encoding.s │ │ ├── neont2-reverse-encoding.s │ │ ├── neont2-satshift-encoding.s │ │ ├── neont2-shift-encoding.s │ │ ├── neont2-shiftaccum-encoding.s │ │ ├── neont2-shuffle-encoding.s │ │ ├── neont2-sub-encoding.s │ │ ├── neont2-table-encoding.s │ │ ├── neont2-vld-encoding.s │ │ ├── neont2-vst-encoding.s │ │ ├── not-armv4.s │ │ ├── obsolete-v8.s │ │ ├── pkhbt-archs.s │ │ ├── pool.s │ │ ├── pr11877.s │ │ ├── pr22395-2.s │ │ ├── pr22395.s │ │ ├── preserve-comments-arm.s │ │ ├── quad-relocation.s │ │ ├── ras-extension.s │ │ ├── register-token-source-loc.s │ │ ├── relocated-mapping.s │ │ ├── simple-fp-encoding.s │ │ ├── single-precision-fp.s │ │ ├── sub-expr-imm.s │ │ ├── symbol-variants-errors.s │ │ ├── symbol-variants.s │ │ ├── t2-modified-immediate-fixup-error1.s │ │ ├── t2-modified-immediate-fixup-error2.s │ │ ├── t2-modified-immediate-fixup.s │ │ ├── target-expressions.s │ │ ├── thumb-add-sub-width.s │ │ ├── thumb-branch-errors.s │ │ ├── thumb-branches.s │ │ ├── thumb-cb-offsets.s │ │ ├── thumb-cb-thumbfunc.s │ │ ├── thumb-diagnostics.s │ │ ├── thumb-far-jump.s │ │ ├── thumb-fp-armv8.s │ │ ├── thumb-hints.s │ │ ├── thumb-invalid-crypto.txt │ │ ├── thumb-load-store-multiple.s │ │ ├── thumb-mov.s │ │ ├── thumb-movwt-reloc.s │ │ ├── thumb-neon-crypto.s │ │ ├── thumb-neon-v8.s │ │ ├── thumb-not-mclass.s │ │ ├── thumb-only-conditionals.s │ │ ├── thumb-shift-encoding.s │ │ ├── thumb-st_other.s │ │ ├── thumb-types.s │ │ ├── thumb.s │ │ ├── thumb1-branch-reloc.s │ │ ├── thumb1-relax-8m-baseline.s │ │ ├── thumb1-relax-adr.s │ │ ├── thumb1-relax-bcc.s │ │ ├── thumb1-relax-br.s │ │ ├── thumb1-relax-ldrlit.s │ │ ├── thumb1-relax.s │ │ ├── thumb2-b.w-encodingT4.s │ │ ├── thumb2-beq-fixup.s │ │ ├── thumb2-branches.s │ │ ├── thumb2-bxj-v8.s │ │ ├── thumb2-bxj.s │ │ ├── thumb2-cbn-to-next-inst.s │ │ ├── thumb2-diagnostics.s │ │ ├── thumb2-dsp-diag.s │ │ ├── thumb2-exception-return-mclass.s │ │ ├── thumb2-ldrb-ldrh.s │ │ ├── thumb2-ldrd.s │ │ ├── thumb2-ldrexd-strexd.s │ │ ├── thumb2-mclass.s │ │ ├── thumb2-narrow-dp.ll │ │ ├── thumb2-pldw.s │ │ ├── thumb2-strd.s │ │ ├── thumb2be-b.w-encoding.s │ │ ├── thumb2be-beq.w-encoding.s │ │ ├── thumb2be-movt-encoding.s │ │ ├── thumb2be-movw-encoding.s │ │ ├── thumb_rewrites.s │ │ ├── thumb_set-diagnostics.s │ │ ├── thumb_set.s │ │ ├── thumbv7em.s │ │ ├── thumbv7m.s │ │ ├── thumbv8m.s │ │ ├── tls-directives.s │ │ ├── twice.ll │ │ ├── udf-arm-diagnostics.s │ │ ├── udf-arm.s │ │ ├── udf-thumb-2-diagnostics.s │ │ ├── udf-thumb-2.s │ │ ├── udf-thumb-diagnostics.s │ │ ├── udf-thumb.s │ │ ├── unpred-control-flow-in-it-block.s │ │ ├── unwind-stack-diagnostics.s │ │ ├── v7k-dsp.s │ │ ├── v8_IT_manual.s │ │ ├── variant-diagnostics.s │ │ ├── vfp-aliases-diagnostics.s │ │ ├── vfp-aliases.s │ │ ├── vfp4.s │ │ ├── virtexts-arm.s │ │ ├── virtexts-thumb.s │ │ ├── vldm-vstm-diags.s │ │ ├── vmov-vmvn-byte-replicate.s │ │ ├── vmov-vmvn-illegal-cases.s │ │ ├── vmrs_vmsr.s │ │ ├── vorr-vbic-illegal-cases.s │ │ └── vpush-vpop.s │ ├── AVR │ │ ├── inst-adc.s │ │ ├── inst-add.s │ │ ├── inst-adiw.s │ │ ├── inst-and.s │ │ ├── inst-andi.s │ │ ├── inst-asr.s │ │ ├── inst-bld.s │ │ ├── inst-brbc.s │ │ ├── inst-brbs.s │ │ ├── inst-break.s │ │ ├── inst-bst.s │ │ ├── inst-call.s │ │ ├── inst-cbi.s │ │ ├── inst-cbr.s │ │ ├── inst-clr.s │ │ ├── inst-com.s │ │ ├── inst-cp.s │ │ ├── inst-cpc.s │ │ ├── inst-cpi.s │ │ ├── inst-cpse.s │ │ ├── inst-dec.s │ │ ├── inst-des.s │ │ ├── inst-eicall.s │ │ ├── inst-eijmp.s │ │ ├── inst-elpm.s │ │ ├── inst-eor.s │ │ ├── inst-family-cond-branch.s │ │ ├── inst-family-set-clr-flag.s │ │ ├── inst-fmul.s │ │ ├── inst-fmuls.s │ │ ├── inst-fmulsu.s │ │ ├── inst-icall.s │ │ ├── inst-ijmp.s │ │ ├── inst-in.s │ │ ├── inst-inc.s │ │ ├── inst-jmp.s │ │ ├── inst-lac.s │ │ ├── inst-las.s │ │ ├── inst-lat.s │ │ ├── inst-ld.s │ │ ├── inst-ldd.s │ │ ├── inst-ldi.s │ │ ├── inst-lds.s │ │ ├── inst-lpm.s │ │ ├── inst-lsl.s │ │ ├── inst-lsr.s │ │ ├── inst-mov.s │ │ ├── inst-movw.s │ │ ├── inst-mul.s │ │ ├── inst-muls.s │ │ ├── inst-mulsu.s │ │ ├── inst-neg.s │ │ ├── inst-nop.s │ │ ├── inst-or.s │ │ ├── inst-ori.s │ │ ├── inst-out.s │ │ ├── inst-pop.s │ │ ├── inst-push.s │ │ ├── inst-rcall.s │ │ ├── inst-ret.s │ │ ├── inst-reti.s │ │ ├── inst-rjmp.s │ │ ├── inst-rol.s │ │ ├── inst-ror.s │ │ ├── inst-sbc.s │ │ ├── inst-sbci.s │ │ ├── inst-sbi.s │ │ ├── inst-sbic.s │ │ ├── inst-sbis.s │ │ ├── inst-sbiw.s │ │ ├── inst-sbr.s │ │ ├── inst-sbrc.s │ │ ├── inst-sbrs.s │ │ ├── inst-ser.s │ │ ├── inst-sleep.s │ │ ├── inst-spm.s │ │ ├── inst-st.s │ │ ├── inst-std.s │ │ ├── inst-sts.s │ │ ├── inst-sub.s │ │ ├── inst-subi.s │ │ ├── inst-swap.s │ │ ├── inst-tst.s │ │ ├── inst-wdr.s │ │ ├── inst-xch.s │ │ ├── lit.local.cfg │ │ ├── modifiers.s │ │ ├── out-of-range-fixups │ │ │ ├── adiw-pass.s │ │ │ ├── brbs-pass.s │ │ │ ├── call-pass.s │ │ │ ├── in-pass.s │ │ │ ├── lds-pass.s │ │ │ ├── rjmp-pass.s │ │ │ └── sbi-pass.s │ │ ├── relocations.s │ │ ├── symbol_relocation.s │ │ ├── syntax-reg-int-literal.s │ │ └── syntax-reg-pair.s │ ├── AsmParser │ │ ├── AArch64 │ │ │ ├── directive-parse-err.s │ │ │ └── lit.local.cfg │ │ ├── Inputs │ │ │ ├── function.x │ │ │ ├── module.x │ │ │ ├── non-english-characters-comments.s │ │ │ └── non-english-characters-section-name.s │ │ ├── align_invalid.s │ │ ├── altmacro_expression.s │ │ ├── altmacro_string.s │ │ ├── altmacro_string_escape.s │ │ ├── assignment.s │ │ ├── at-pseudo-variable-bad.s │ │ ├── at-pseudo-variable.s │ │ ├── bad-macro.s │ │ ├── cfi-unfinished-frame.s │ │ ├── cfi-unknown-register.s │ │ ├── cfi-window-save.s │ │ ├── comments-x86-darwin.s │ │ ├── conditional_asm.s │ │ ├── dash-n.s │ │ ├── defsym.s │ │ ├── defsym_error1.s │ │ ├── defsym_error2.s │ │ ├── directive-err-diagnostics.s │ │ ├── directive-err.s │ │ ├── directive-warning.s │ │ ├── directive_abort.s │ │ ├── directive_align.s │ │ ├── directive_ascii.s │ │ ├── directive_comm.s │ │ ├── directive_darwin_section.s │ │ ├── directive_dc.s │ │ ├── directive_dcb.s │ │ ├── directive_desc.s │ │ ├── directive_ds.s │ │ ├── directive_elf_size.s │ │ ├── directive_end-2.s │ │ ├── directive_end.s │ │ ├── directive_file-2.s │ │ ├── directive_file.s │ │ ├── directive_fill.s │ │ ├── directive_incbin.s │ │ ├── directive_include.s │ │ ├── directive_lcomm.s │ │ ├── directive_line.s │ │ ├── directive_loc.s │ │ ├── directive_lsym.s │ │ ├── directive_org.s │ │ ├── directive_print.s │ │ ├── directive_rept-diagnostics.s │ │ ├── directive_rept.s │ │ ├── directive_seh.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 │ │ ├── dot-symbol-assignment-backwards.s │ │ ├── dot-symbol-assignment.s │ │ ├── dot-symbol-non-absolute.s │ │ ├── dot-symbol.s │ │ ├── empty-comment.s │ │ ├── equ.s │ │ ├── expr-shr.s │ │ ├── expr_symbol_modifiers.s │ │ ├── exprs-invalid.s │ │ ├── exprs.s │ │ ├── extern.s │ │ ├── floating-literals.s │ │ ├── hash-directive.s │ │ ├── hello.s │ │ ├── if-diagnostics.s │ │ ├── ifb.s │ │ ├── ifc.s │ │ ├── ifdef.s │ │ ├── ifeqs-diagnostics.s │ │ ├── ifeqs.s │ │ ├── ifndef.s │ │ ├── ifnes.s │ │ ├── incbin_abcd │ │ ├── include.ll │ │ ├── inline-comments.ll │ │ ├── inline_macro_duplication.ll │ │ ├── invalid-asm-variant.s │ │ ├── invalid-input-assertion.s │ │ ├── labels.s │ │ ├── line_with_hash.s │ │ ├── lit.local.cfg │ │ ├── macro-args.s │ │ ├── macro-def-in-instantiation.s │ │ ├── macro-duplicate-params-names-err.s │ │ ├── macro-err1.s │ │ ├── macro-exitm.s │ │ ├── macro-irp.s │ │ ├── macro-irpc.s │ │ ├── macro-max-depth.s │ │ ├── macro-qualifier-diagnostics.s │ │ ├── macro-qualifier.s │ │ ├── macro-rept-err1.s │ │ ├── macro-rept-err2.s │ │ ├── macro-rept.s │ │ ├── macro_parsing.s │ │ ├── macros-argument-parsing-diagnostics.s │ │ ├── macros-argument-parsing.s │ │ ├── macros-darwin-vararg.s │ │ ├── macros-darwin.s │ │ ├── macros-gas.s │ │ ├── macros-parsing.s │ │ ├── negativ_altmacro_expression.s │ │ ├── negative_altmacro_string.s │ │ ├── non-english-characters.s │ │ ├── pr11865.s │ │ ├── pr28805.ll │ │ ├── pr28921.s │ │ ├── preserve-comments-crlf.s │ │ ├── preserve-comments.s │ │ ├── purgem.s │ │ ├── reassign.s │ │ ├── rename.s │ │ ├── section.s │ │ ├── section_names.s │ │ ├── secure_log_unique.s │ │ ├── seh-directive-errors.s │ │ ├── seh-unfinished-frame.s │ │ ├── undefined-local-symbol.s │ │ ├── uppercase-hex.s │ │ ├── vararg-default-value.s │ │ ├── vararg.s │ │ ├── variables-invalid.s │ │ └── variables.s │ ├── BPF │ │ ├── insn-unit-32.s │ │ ├── insn-unit.s │ │ └── lit.local.cfg │ ├── COFF │ │ ├── ARM │ │ │ └── lit.local.cfg │ │ ├── alias.s │ │ ├── align-nops.s │ │ ├── bad-expr.s │ │ ├── basic-coff-64.s │ │ ├── basic-coff.s │ │ ├── bigobj.py │ │ ├── bss.s │ │ ├── bss_section.ll │ │ ├── comm-align.s │ │ ├── comm.ll │ │ ├── comm.s │ │ ├── const-gv-with-rel-init.ll │ │ ├── cross-section-relative-err.s │ │ ├── cross-section-relative.ll │ │ ├── cross-section-relative.s │ │ ├── cv-compiler-info.ll │ │ ├── cv-def-range-gap.s │ │ ├── cv-def-range.s │ │ ├── cv-empty-file-table.s │ │ ├── cv-empty-linetable.s │ │ ├── cv-errors.s │ │ ├── cv-fpo-csrs.s │ │ ├── cv-fpo-errors.s │ │ ├── cv-fpo-setframe.s │ │ ├── cv-inline-linetable-infloop.s │ │ ├── cv-inline-linetable-unlikely.s │ │ ├── cv-inline-linetable-unreachable.s │ │ ├── cv-inline-linetable.s │ │ ├── cv-loc-cross-section.s │ │ ├── cv-loc.s │ │ ├── diff.s │ │ ├── directive-section-characteristics.ll │ │ ├── early-dce.s │ │ ├── eh-frame.s │ │ ├── feat00.s │ │ ├── file.s │ │ ├── global_ctors_dtors.ll │ │ ├── initialised-data.ll │ │ ├── invalid-def.s │ │ ├── invalid-endef.s │ │ ├── invalid-scl-range.s │ │ ├── invalid-scl.s │ │ ├── invalid-type-range.s │ │ ├── invalid-type.s │ │ ├── ir-to-imgrel.ll │ │ ├── label-undefined.s │ │ ├── linker-options.ll │ │ ├── linkonce-invalid.s │ │ ├── linkonce.s │ │ ├── lit.local.cfg │ │ ├── lset0.s │ │ ├── module-asm.ll │ │ ├── offset.s │ │ ├── pr23025.s │ │ ├── pr28462.s │ │ ├── rdata.ll │ │ ├── relax-reloc.s │ │ ├── relocation-imgrel.s │ │ ├── safeseh.s │ │ ├── secidx.s │ │ ├── secrel-variant.s │ │ ├── secrel32-undef.s │ │ ├── secrel32.s │ │ ├── section-comdat-conflict.s │ │ ├── section-comdat-conflict2.s │ │ ├── section-comdat.s │ │ ├── section-invalid-flags.s │ │ ├── section-name-encoding.s │ │ ├── section-passthru-flags.s │ │ ├── section.s │ │ ├── seh-align1.s │ │ ├── seh-align2.s │ │ ├── seh-align3.s │ │ ├── seh-linkonce.s │ │ ├── seh-section-2.s │ │ ├── seh-section.s │ │ ├── seh-stackalloc-zero.s │ │ ├── seh.s │ │ ├── simple-fixups.s │ │ ├── stdin.s │ │ ├── switch-relocations.ll │ │ ├── symbol-alias.s │ │ ├── symbol-fragment-offset-64.s │ │ ├── symbol-fragment-offset.s │ │ ├── symbol-mangling.ll │ │ ├── temporary-alias.s │ │ ├── timestamp.s │ │ ├── tricky-names.ll │ │ ├── weak-alias-local.s │ │ ├── weak-val.s │ │ └── weak.s │ ├── Disassembler │ │ ├── AArch64 │ │ │ ├── a64-ignored-fields.txt │ │ │ ├── arm64-advsimd.txt │ │ │ ├── arm64-arithmetic.txt │ │ │ ├── arm64-basic-a64-undefined.txt │ │ │ ├── arm64-bitfield.txt │ │ │ ├── arm64-branch.txt │ │ │ ├── arm64-canonical-form.txt │ │ │ ├── arm64-crc32.txt │ │ │ ├── arm64-crypto.txt │ │ │ ├── arm64-invalid-logical.txt │ │ │ ├── arm64-logical.txt │ │ │ ├── arm64-memory.txt │ │ │ ├── arm64-non-apple-fmov.txt │ │ │ ├── arm64-scalar-fp.txt │ │ │ ├── arm64-system.txt │ │ │ ├── armv8.1a-atomic.txt │ │ │ ├── armv8.1a-lor.txt │ │ │ ├── armv8.1a-pan.txt │ │ │ ├── armv8.1a-rdma.txt │ │ │ ├── armv8.1a-vhe.txt │ │ │ ├── armv8.2a-at.txt │ │ │ ├── armv8.2a-dotprod.txt │ │ │ ├── armv8.2a-mmfr2.txt │ │ │ ├── armv8.2a-persistent-memory.txt │ │ │ ├── armv8.2a-statistical-profiling.txt │ │ │ ├── armv8.2a-uao.txt │ │ │ ├── armv8.3a-ID_ISAR6_EL1.txt │ │ │ ├── armv8.3a-complex.txt │ │ │ ├── armv8.3a-js.txt │ │ │ ├── armv8.3a-rcpc.txt │ │ │ ├── armv8.3a-signed-pointer.txt │ │ │ ├── basic-a64-instructions.txt │ │ │ ├── basic-a64-undefined.txt │ │ │ ├── basic-a64-unpredictable.txt │ │ │ ├── fullfp16-neg.txt │ │ │ ├── fullfp16-neon-neg.txt │ │ │ ├── gicv3-regs.txt │ │ │ ├── ldp-offset-predictable.txt │ │ │ ├── ldp-postind.predictable.txt │ │ │ ├── ldp-preind.predictable.txt │ │ │ ├── lit.local.cfg │ │ │ ├── neon-instructions.txt │ │ │ ├── ras-extension.txt │ │ │ └── trace-regs.txt │ │ ├── AMDGPU │ │ │ ├── aperture-regs.ll │ │ │ ├── dpp_vi.txt │ │ │ ├── ds_vi.txt │ │ │ ├── exp_vi.txt │ │ │ ├── flat_gfx9.txt │ │ │ ├── flat_vi.txt │ │ │ ├── gfx8_dasm_all.txt │ │ │ ├── gfx9_dasm_all.txt │ │ │ ├── lit.local.cfg │ │ │ ├── literal16_vi.txt │ │ │ ├── mac.txt │ │ │ ├── mimg_vi.txt │ │ │ ├── mov.txt │ │ │ ├── mtbuf_vi.txt │ │ │ ├── mubuf_vi.txt │ │ │ ├── nop.txt │ │ │ ├── sdwa_gfx9.txt │ │ │ ├── sdwa_vi.txt │ │ │ ├── si-support.txt │ │ │ ├── smem_vi.txt │ │ │ ├── smrd_vi.txt │ │ │ ├── sop1_vi.txt │ │ │ ├── sop2_vi.txt │ │ │ ├── sopc_vi.txt │ │ │ ├── sopk_vi.txt │ │ │ ├── sopp_vi.txt │ │ │ ├── trap_gfx9.txt │ │ │ ├── trap_vi.txt │ │ │ ├── vintrp.txt │ │ │ ├── vop1.txt │ │ │ ├── vop1_gfx9.txt │ │ │ ├── vop1_vi.txt │ │ │ ├── vop2_vi.txt │ │ │ ├── vop3_gfx9.txt │ │ │ ├── vop3_vi.txt │ │ │ └── vopc_vi.txt │ │ ├── ARC │ │ │ ├── alu.txt │ │ │ ├── br.txt │ │ │ ├── compact.txt │ │ │ ├── ldst.txt │ │ │ ├── lit.local.cfg │ │ │ └── misc.txt │ │ ├── ARM │ │ │ ├── addrmode2-reencoding.txt │ │ │ ├── arm-LDREXD-reencoding.txt │ │ │ ├── arm-STREXD-reencoding.txt │ │ │ ├── arm-tests.txt │ │ │ ├── arm-thumb-trustzone.txt │ │ │ ├── arm-trustzone.txt │ │ │ ├── arm-vmrs_vmsr.txt │ │ │ ├── armv8.1a.txt │ │ │ ├── armv8.2a-dotprod-a32.s │ │ │ ├── armv8.2a-dotprod-t32.s │ │ │ ├── armv8.3a-js-arm.txt │ │ │ ├── armv8.3a-js-thumb.txt │ │ │ ├── basic-arm-instructions-v8.txt │ │ │ ├── basic-arm-instructions.txt │ │ │ ├── crc32-thumb.txt │ │ │ ├── crc32.txt │ │ │ ├── d16.txt │ │ │ ├── dfb-arm.txt │ │ │ ├── dfb-thumb.txt │ │ │ ├── fp-armv8.txt │ │ │ ├── fp-encoding.txt │ │ │ ├── fullfp16-arm-neg.txt │ │ │ ├── fullfp16-arm.txt │ │ │ ├── fullfp16-neon-arm-neg.txt │ │ │ ├── fullfp16-neon-arm.txt │ │ │ ├── fullfp16-neon-thumb-neg.txt │ │ │ ├── fullfp16-neon-thumb.txt │ │ │ ├── fullfp16-thumb-neg.txt │ │ │ ├── fullfp16-thumb.txt │ │ │ ├── hex-immediates.txt │ │ │ ├── invalid-FSTMX-arm.txt │ │ │ ├── invalid-IT-CC15.txt │ │ │ ├── invalid-armv7.txt │ │ │ ├── invalid-armv8.1a.txt │ │ │ ├── invalid-armv8.txt │ │ │ ├── invalid-because-armv7.txt │ │ │ ├── invalid-thumb-MSR-MClass.txt │ │ │ ├── invalid-thumbv7-xfail.txt │ │ │ ├── invalid-thumbv7.txt │ │ │ ├── invalid-thumbv8.1a.txt │ │ │ ├── invalid-thumbv8.txt │ │ │ ├── invalid-virtexts.arm.txt │ │ │ ├── ldrd-armv4.txt │ │ │ ├── lit.local.cfg │ │ │ ├── load-store-acquire-release-v8-thumb.txt │ │ │ ├── load-store-acquire-release-v8.txt │ │ │ ├── marked-up-thumb.txt │ │ │ ├── memory-arm-instructions.txt │ │ │ ├── move-banked-regs-arm.txt │ │ │ ├── move-banked-regs-thumb.txt │ │ │ ├── neon-complex-arm.txt │ │ │ ├── neon-complex-thumb.txt │ │ │ ├── neon-crypto.txt │ │ │ ├── neon-tests.txt │ │ │ ├── neon-v8.txt │ │ │ ├── neon.txt │ │ │ ├── neont-VLD-reencoding.txt │ │ │ ├── neont-VST-reencoding.txt │ │ │ ├── neont2.txt │ │ │ ├── ras-extension-arm.txt │ │ │ ├── ras-extension-thumb.txt │ │ │ ├── thumb-MSR-MClass.txt │ │ │ ├── thumb-fp-armv8.txt │ │ │ ├── thumb-neon-crypto.txt │ │ │ ├── thumb-neon-v8.txt │ │ │ ├── thumb-printf.txt │ │ │ ├── thumb-tests.txt │ │ │ ├── thumb-v8.1a.txt │ │ │ ├── thumb-v8.txt │ │ │ ├── thumb-vmrs_vmsr.txt │ │ │ ├── thumb1.txt │ │ │ ├── thumb2-preloads.txt │ │ │ ├── thumb2-v8.txt │ │ │ ├── thumb2-v8m.txt │ │ │ ├── thumb2.txt │ │ │ ├── unpredictable-ADC-arm.txt │ │ │ ├── unpredictable-ADDREXT3-arm.txt │ │ │ ├── unpredictable-AExtI-arm.txt │ │ │ ├── unpredictable-AI1cmp-arm.txt │ │ │ ├── unpredictable-BFI.txt │ │ │ ├── unpredictable-LDR-arm.txt │ │ │ ├── unpredictable-LDRD-arm.txt │ │ │ ├── unpredictable-LSL-regform.txt │ │ │ ├── unpredictable-MRRC2-arm.txt │ │ │ ├── unpredictable-MRS-arm.txt │ │ │ ├── unpredictable-MUL-arm.txt │ │ │ ├── unpredictable-RSC-arm.txt │ │ │ ├── unpredictable-SEL-arm.txt │ │ │ ├── unpredictable-SHADD16-arm.txt │ │ │ ├── unpredictable-SSAT-arm.txt │ │ │ ├── unpredictable-STRBrs-arm.txt │ │ │ ├── unpredictable-UQADD8-arm.txt │ │ │ ├── unpredictable-swp-arm.txt │ │ │ ├── unpredictables-thumb.txt │ │ │ ├── vfp4.txt │ │ │ ├── virtexts-arm.txt │ │ │ └── virtexts-thumb.txt │ │ ├── Hexagon │ │ │ ├── alu32_alu.txt │ │ │ ├── alu32_perm.txt │ │ │ ├── alu32_pred.txt │ │ │ ├── cr.txt │ │ │ ├── invalid_packet.txt │ │ │ ├── j.txt │ │ │ ├── jr.txt │ │ │ ├── ld.txt │ │ │ ├── lit.local.cfg │ │ │ ├── memop.txt │ │ │ ├── nv_j.txt │ │ │ ├── nv_st.txt │ │ │ ├── st.txt │ │ │ ├── system_user.txt │ │ │ ├── too_many_instructions.txt │ │ │ ├── too_many_loop_ends.txt │ │ │ ├── unextendable.txt │ │ │ ├── xtype_alu.txt │ │ │ ├── xtype_bit.txt │ │ │ ├── xtype_complex.txt │ │ │ ├── xtype_fp.txt │ │ │ ├── xtype_mpy.txt │ │ │ ├── xtype_perm.txt │ │ │ ├── xtype_pred.txt │ │ │ └── xtype_shift.txt │ │ ├── Lanai │ │ │ ├── lit.local.cfg │ │ │ └── v11.txt │ │ ├── Mips │ │ │ ├── dsp │ │ │ │ ├── valid-el.txt │ │ │ │ └── valid.txt │ │ │ ├── dspr2 │ │ │ │ └── valid.txt │ │ │ ├── eva │ │ │ │ ├── valid_R6-eva.txt │ │ │ │ └── valid_preR6-eva.txt │ │ │ ├── lit.local.cfg │ │ │ ├── micromips-dsp │ │ │ │ ├── valid-micromips32r3.txt │ │ │ │ └── valid.txt │ │ │ ├── micromips-dspr2 │ │ │ │ └── valid.txt │ │ │ ├── micromips-dspr3 │ │ │ │ └── valid.txt │ │ │ ├── micromips32r3 │ │ │ │ ├── invalid.txt │ │ │ │ ├── valid-el.txt │ │ │ │ └── valid.txt │ │ │ ├── micromips32r6 │ │ │ │ └── valid.txt │ │ │ ├── mips1 │ │ │ │ ├── invalid-xfail.txt │ │ │ │ ├── invalid.txt │ │ │ │ ├── valid-mips1-el.txt │ │ │ │ ├── valid-mips1.txt │ │ │ │ └── valid-xfail.txt │ │ │ ├── mips2 │ │ │ │ ├── invalid-xfail.txt │ │ │ │ ├── valid-mips2-el.txt │ │ │ │ ├── valid-mips2.txt │ │ │ │ └── valid-xfail.txt │ │ │ ├── mips3 │ │ │ │ ├── invalid-xfail.txt │ │ │ │ ├── valid-mips3-el.txt │ │ │ │ ├── valid-mips3.txt │ │ │ │ └── valid-xfail.txt │ │ │ ├── mips32 │ │ │ │ ├── invalid-xfail.txt │ │ │ │ ├── valid-mips32-el.txt │ │ │ │ ├── valid-mips32.txt │ │ │ │ ├── valid-xfail-mips32.txt │ │ │ │ └── valid-xfail.txt │ │ │ ├── mips32r2 │ │ │ │ ├── invalid-xfail.txt │ │ │ │ ├── valid-mips32r2-el.txt │ │ │ │ ├── valid-mips32r2.txt │ │ │ │ ├── valid-xfail-mips32r2.txt │ │ │ │ └── valid-xfail.txt │ │ │ ├── mips32r3 │ │ │ │ ├── invalid-xfail.txt │ │ │ │ ├── valid-mips32r3-el.txt │ │ │ │ ├── valid-mips32r3.txt │ │ │ │ ├── valid-xfail-mips32r3.txt │ │ │ │ └── valid-xfail.txt │ │ │ ├── mips32r5 │ │ │ │ ├── invalid-xfail.txt │ │ │ │ ├── valid-mips32r5-el.txt │ │ │ │ ├── valid-mips32r5.txt │ │ │ │ ├── valid-xfail-mips32r5.txt │ │ │ │ └── valid-xfail.txt │ │ │ ├── mips32r6 │ │ │ │ ├── valid-mips32r6-el.txt │ │ │ │ ├── valid-mips32r6.txt │ │ │ │ └── valid-xfail-mips32r6.txt │ │ │ ├── mips4 │ │ │ │ ├── invalid-xfail.txt │ │ │ │ ├── valid-mips4-el.txt │ │ │ │ ├── valid-mips4.txt │ │ │ │ └── valid-xfail.txt │ │ │ ├── mips64 │ │ │ │ ├── invalid-xfail.txt │ │ │ │ ├── valid-mips64-el.txt │ │ │ │ ├── valid-mips64-xfail.txt │ │ │ │ ├── valid-mips64.txt │ │ │ │ └── valid-xfail.txt │ │ │ ├── mips64r2 │ │ │ │ ├── invalid-xfail.txt │ │ │ │ ├── valid-mips64r2-el.txt │ │ │ │ ├── valid-mips64r2.txt │ │ │ │ ├── valid-xfail-mips64r2.txt │ │ │ │ └── valid-xfail.txt │ │ │ ├── mips64r3 │ │ │ │ ├── invalid-xfail.txt │ │ │ │ ├── valid-mips64r3-el.txt │ │ │ │ ├── valid-mips64r3.txt │ │ │ │ ├── valid-xfail-mips64r3.txt │ │ │ │ └── valid-xfail.txt │ │ │ ├── mips64r5 │ │ │ │ ├── invalid-xfail.txt │ │ │ │ ├── valid-mips64r5-el.txt │ │ │ │ ├── valid-mips64r5.txt │ │ │ │ ├── valid-xfail-mips64r5.txt │ │ │ │ └── valid-xfail.txt │ │ │ ├── mips64r6 │ │ │ │ ├── valid-mips64r6-el.txt │ │ │ │ ├── valid-mips64r6.txt │ │ │ │ └── valid-xfail-mips64r6.txt │ │ │ ├── msa │ │ │ │ ├── test_2r.txt │ │ │ │ ├── test_2r_msa64.txt │ │ │ │ ├── test_2rf.txt │ │ │ │ ├── test_3r.txt │ │ │ │ ├── test_3rf.txt │ │ │ │ ├── test_bit.txt │ │ │ │ ├── test_ctrlregs.txt │ │ │ │ ├── test_dlsa.txt │ │ │ │ ├── test_elm.txt │ │ │ │ ├── test_elm_insert.txt │ │ │ │ ├── test_elm_insert_msa64.txt │ │ │ │ ├── test_elm_insve.txt │ │ │ │ ├── test_elm_msa64.txt │ │ │ │ ├── test_i10.txt │ │ │ │ ├── test_i5.txt │ │ │ │ ├── test_i8.txt │ │ │ │ ├── test_lsa.txt │ │ │ │ ├── test_mi10.txt │ │ │ │ └── test_vec.txt │ │ │ └── mt │ │ │ │ ├── valid-r2-el.txt │ │ │ │ └── valid-r2.txt │ │ ├── PowerPC │ │ │ ├── dcbt.txt │ │ │ ├── lit.local.cfg │ │ │ ├── ppc32-extpid-e500.txt │ │ │ ├── ppc64-encoding-4xx.txt │ │ │ ├── ppc64-encoding-6xx.txt │ │ │ ├── ppc64-encoding-bookII.txt │ │ │ ├── ppc64-encoding-bookIII.txt │ │ │ ├── ppc64-encoding-e500.txt │ │ │ ├── ppc64-encoding-ext.txt │ │ │ ├── ppc64-encoding-fp.txt │ │ │ ├── ppc64-encoding-p8vector.txt │ │ │ ├── ppc64-encoding-p9vector.txt │ │ │ ├── ppc64-encoding-vmx.txt │ │ │ ├── ppc64-encoding.txt │ │ │ ├── ppc64-operands.txt │ │ │ ├── ppc64le-encoding.txt │ │ │ ├── qpx.txt │ │ │ └── vsx.txt │ │ ├── Sparc │ │ │ ├── lit.local.cfg │ │ │ ├── sparc-fp.txt │ │ │ ├── sparc-mem.txt │ │ │ ├── sparc-special-registers.txt │ │ │ ├── sparc-v9.txt │ │ │ └── sparc.txt │ │ ├── SystemZ │ │ │ ├── insns-pcrel.txt │ │ │ ├── insns-z13-bad.txt │ │ │ ├── insns-z13.txt │ │ │ ├── insns-z14.txt │ │ │ ├── insns.txt │ │ │ ├── invalid-regs.txt │ │ │ ├── lit.local.cfg │ │ │ ├── trunc-01.txt │ │ │ ├── trunc-02.txt │ │ │ ├── trunc-03.txt │ │ │ └── unmapped.txt │ │ ├── X86 │ │ │ ├── avx-512.txt │ │ │ ├── fp-stack.txt │ │ │ ├── gather-novsib.txt │ │ │ ├── hex-immediates.txt │ │ │ ├── intel-syntax-32.txt │ │ │ ├── intel-syntax.txt │ │ │ ├── invalid-VEX-vvvv.txt │ │ │ ├── lit.local.cfg │ │ │ ├── marked-up.txt │ │ │ ├── missing-sib.txt │ │ │ ├── moffs.txt │ │ │ ├── padlock.txt │ │ │ ├── prefixes-i386.txt │ │ │ ├── prefixes-x86_64.txt │ │ │ ├── prefixes.txt │ │ │ ├── simple-tests.txt │ │ │ ├── truncated-input.txt │ │ │ ├── x86-16.txt │ │ │ ├── x86-32.txt │ │ │ ├── x86-64-err.txt │ │ │ └── x86-64.txt │ │ └── XCore │ │ │ ├── lit.local.cfg │ │ │ └── xcore.txt │ ├── ELF │ │ ├── ARM │ │ │ ├── bss-non-zero-value.s │ │ │ ├── clang-section.s │ │ │ ├── directive-type-diagnostics.s │ │ │ ├── execute-only-section.s │ │ │ ├── gnu-type-hash-diagnostics.s │ │ │ ├── gnu-type-hash.s │ │ │ └── lit.local.cfg │ │ ├── abs.s │ │ ├── alias-reloc.s │ │ ├── alias-to-local.s │ │ ├── alias.s │ │ ├── align-bss.s │ │ ├── align-nops.s │ │ ├── align-size.s │ │ ├── align-text.s │ │ ├── align-zero.s │ │ ├── align.s │ │ ├── bad-expr.s │ │ ├── bad-expr2.s │ │ ├── bad-expr3.s │ │ ├── bad-relocation.s │ │ ├── bad-section.s │ │ ├── basic-elf-32.s │ │ ├── basic-elf-64.s │ │ ├── bracket-exprs.s │ │ ├── bracket.s │ │ ├── bss-large.ll │ │ ├── bss.ll │ │ ├── call-abs.s │ │ ├── cfi-adjust-cfa-offset.s │ │ ├── cfi-advance-loc2.s │ │ ├── cfi-def-cfa-offset.s │ │ ├── cfi-def-cfa-register.s │ │ ├── cfi-def-cfa.s │ │ ├── cfi-escape.s │ │ ├── cfi-large-model.s │ │ ├── cfi-offset.s │ │ ├── cfi-reg.s │ │ ├── cfi-register.s │ │ ├── cfi-rel-offset.s │ │ ├── cfi-rel-offset2.s │ │ ├── cfi-remember.s │ │ ├── cfi-restore.s │ │ ├── cfi-same-value.s │ │ ├── cfi-sections.s │ │ ├── cfi-signal-frame.s │ │ ├── cfi-undefined.s │ │ ├── cfi-version.ll │ │ ├── cfi-window-save.s │ │ ├── cfi-zero-addr-delta.s │ │ ├── cfi.s │ │ ├── comdat-declaration-errors.s │ │ ├── comdat-dup-group-name.s │ │ ├── comdat-name-number.s │ │ ├── comdat-reloc.s │ │ ├── comdat.s │ │ ├── common-error1.s │ │ ├── common-error2.s │ │ ├── common-error3.s │ │ ├── common-redeclare.s │ │ ├── common.s │ │ ├── common2.s │ │ ├── comp-dir.s │ │ ├── compression.s │ │ ├── debug-line.s │ │ ├── debug-line2.s │ │ ├── debug-loc.s │ │ ├── diff.s │ │ ├── diff2.s │ │ ├── discriminator.s │ │ ├── div-by-zero.s │ │ ├── dot-symbol-assignment.s │ │ ├── elf_directive_previous.s │ │ ├── elf_directive_section.s │ │ ├── empty-dwarf-lines.s │ │ ├── empty-twice.ll │ │ ├── empty.s │ │ ├── entsize.ll │ │ ├── entsize.s │ │ ├── fde.s │ │ ├── file-double.s │ │ ├── file.s │ │ ├── gen-dwarf.s │ │ ├── global-offset.s │ │ ├── gnu-type-diagnostics.s │ │ ├── gnu-type.s │ │ ├── got-relaxed-i386.s │ │ ├── got-relaxed-no-relax.s │ │ ├── got-relaxed-rex.s │ │ ├── got-relaxed.s │ │ ├── got.s │ │ ├── ident.s │ │ ├── ifunc-reloc.s │ │ ├── invalid-symver.s │ │ ├── lcomm.s │ │ ├── leb128.s │ │ ├── lit.local.cfg │ │ ├── local-reloc.s │ │ ├── many-sections-2.s │ │ ├── many-sections-3.s │ │ ├── many-sections.s │ │ ├── merge.s │ │ ├── metadata-declaration-errors.s │ │ ├── n_bytes.s │ │ ├── no-fixup.s │ │ ├── no-reloc.s │ │ ├── nocompression.s │ │ ├── noexec.s │ │ ├── norelocation.s │ │ ├── offset.s │ │ ├── org.s │ │ ├── pic-diff.s │ │ ├── plt.s │ │ ├── popsection.s │ │ ├── pr19430.s │ │ ├── pr19582.s │ │ ├── pr9292.s │ │ ├── relax-all-flag.s │ │ ├── relax-arith.s │ │ ├── relax-arith2.s │ │ ├── relax-arith3.s │ │ ├── relax-arith4.s │ │ ├── relax-crash.s │ │ ├── relax.s │ │ ├── reloc-same-name-section.s │ │ ├── relocation-386.s │ │ ├── relocation-pc.s │ │ ├── relocation-tls.s │ │ ├── relocation.s │ │ ├── rename.s │ │ ├── section-metadata-err1.s │ │ ├── section-metadata-err2.s │ │ ├── section-metadata-err3.s │ │ ├── section-metadata-err4.s │ │ ├── section-numeric-flag.s │ │ ├── section-numeric-invalid-type.s │ │ ├── section-numeric-type.s │ │ ├── section-quoting.s │ │ ├── section-sym-err.s │ │ ├── section-sym-err2.s │ │ ├── section-sym.s │ │ ├── section-sym2.s │ │ ├── section-unique-err1.s │ │ ├── section-unique-err2.s │ │ ├── section-unique-err3.s │ │ ├── section-unique-err4.s │ │ ├── section-unique.s │ │ ├── section.s │ │ ├── set.s │ │ ├── size.s │ │ ├── sleb.s │ │ ├── strtab-suffix-opt.s │ │ ├── subsection.s │ │ ├── subtraction-error.s │ │ ├── symbol-names.s │ │ ├── symver-msvc.s │ │ ├── symver-pr23914.s │ │ ├── symver.s │ │ ├── tls-i386.s │ │ ├── tls.s │ │ ├── type-propagate.s │ │ ├── type.s │ │ ├── uleb.s │ │ ├── undef-temp.s │ │ ├── undef.s │ │ ├── undefined-directional.s │ │ ├── version.s │ │ ├── weak-diff.s │ │ ├── weak-relocation.s │ │ ├── weak.s │ │ ├── weakref-plt.s │ │ ├── weakref-reloc.s │ │ ├── weakref.s │ │ ├── x86_64-reloc-sizetest.s │ │ └── zero.s │ ├── Hexagon │ │ ├── PacketRules │ │ │ ├── endloop_branches.s │ │ │ ├── registers_readonly.s │ │ │ ├── restrict_ax.s │ │ │ └── solo.s │ │ ├── align.s │ │ ├── asmMap.s │ │ ├── basic.ll │ │ ├── bug20416.s │ │ ├── capitalizedEndloop.s │ │ ├── common-redeclare.s │ │ ├── dcfetch-symbol.s │ │ ├── dcfetch.s │ │ ├── dealloc-return-jump.s │ │ ├── decode_acc_type.s │ │ ├── dis-duplex-p0.s │ │ ├── double-vector-producer.s │ │ ├── duplex-addi-global-imm.s │ │ ├── duplex-registers.s │ │ ├── elf-flags.s │ │ ├── empty_asm.s │ │ ├── equ.s │ │ ├── ext-callt-rel.s │ │ ├── extended_relocations.ll │ │ ├── extender.s │ │ ├── fixups.s │ │ ├── got.s │ │ ├── hvx-double-implies-hvx.s │ │ ├── iconst.s │ │ ├── inst_add.ll │ │ ├── inst_add64.ll │ │ ├── inst_and.ll │ │ ├── inst_and64.ll │ │ ├── inst_aslh.ll │ │ ├── inst_asrh.ll │ │ ├── inst_cmp_eq.ll │ │ ├── inst_cmp_eqi.ll │ │ ├── inst_cmp_gt.ll │ │ ├── inst_cmp_gti.ll │ │ ├── inst_cmp_lt.ll │ │ ├── inst_cmp_ugt.ll │ │ ├── inst_cmp_ugti.ll │ │ ├── inst_cmp_ult.ll │ │ ├── inst_or.ll │ │ ├── inst_or64.ll │ │ ├── inst_select.ll │ │ ├── inst_sub.ll │ │ ├── inst_sub64.ll │ │ ├── inst_sxtb.ll │ │ ├── inst_sxth.ll │ │ ├── inst_xor.ll │ │ ├── inst_xor64.ll │ │ ├── inst_zxtb.ll │ │ ├── inst_zxth.ll │ │ ├── instructions │ │ │ ├── alu32_alu.s │ │ │ ├── alu32_perm.s │ │ │ ├── alu32_pred.s │ │ │ ├── cr.s │ │ │ ├── j.s │ │ │ ├── jr.s │ │ │ ├── ld.s │ │ │ ├── memop.s │ │ │ ├── nv_j.s │ │ │ ├── nv_st.s │ │ │ ├── st.s │ │ │ ├── system_user.s │ │ │ ├── xtype_alu.s │ │ │ ├── xtype_bit.s │ │ │ ├── xtype_complex.s │ │ │ ├── xtype_fp.s │ │ │ ├── xtype_mpy.s │ │ │ ├── xtype_perm.s │ │ │ ├── xtype_pred.s │ │ │ └── xtype_shift.s │ │ ├── jumpdoublepound.s │ │ ├── labels.s │ │ ├── lcomm.s │ │ ├── lit.local.cfg │ │ ├── load-GPRel.s │ │ ├── missing_label.s │ │ ├── multiple_errs.s │ │ ├── new-value-check.s │ │ ├── non-relocatable.s │ │ ├── not-over.s │ │ ├── not_found.s │ │ ├── offset.s │ │ ├── operand-range.s │ │ ├── out_of_range.s │ │ ├── parse-pound-hi.s │ │ ├── pcrel.s │ │ ├── plt-rel.s │ │ ├── reg_altnames.s │ │ ├── register-alt-names.s │ │ ├── registers_readonly.s │ │ ├── relaxed_newvalue.s │ │ ├── relocations.s │ │ ├── ro-c9.s │ │ ├── ro-cc9.s │ │ ├── solo-axok.s │ │ ├── store-GPRel.s │ │ ├── test.s │ │ ├── tprel_noextend.s │ │ ├── two-extenders.s │ │ ├── two_ext.s │ │ ├── v60-alu.s │ │ ├── v60-misc.s │ │ ├── v60-permute.s │ │ ├── v60-shift.s │ │ ├── v60-vcmp.s │ │ ├── v60-vmem.s │ │ ├── v60-vmpy-acc.s │ │ ├── v60-vmpy1.s │ │ ├── v60lookup.s │ │ ├── v62_all.s │ │ ├── v62_jumps.s │ │ ├── v62a.s │ │ ├── v62a_regs.s │ │ ├── v65_all.s │ │ ├── vpred_defs.s │ │ ├── vscatter-slot.s │ │ └── vtmp_def.s │ ├── Lanai │ │ ├── conditional_inst.s │ │ ├── ctrl-instructions.s │ │ ├── lit.local.cfg │ │ ├── memory.s │ │ └── v11.s │ ├── MachO │ │ ├── AArch64 │ │ │ ├── classrefs.s │ │ │ ├── cstexpr-gotpcrel.ll │ │ │ ├── darwin-ARM64-local-label-diff.s │ │ │ ├── darwin-ARM64-reloc.s │ │ │ ├── data-in-code.s │ │ │ ├── ld64-workaround.s │ │ │ ├── lit.local.cfg │ │ │ ├── mergeable.s │ │ │ ├── reloc-crash.s │ │ │ ├── reloc-crash2.s │ │ │ └── reloc-errors.s │ │ ├── ARM │ │ │ ├── aliased-symbols.s │ │ │ ├── bad-darwin-ARM-reloc.s │ │ │ ├── bad-darwin-directives.s │ │ │ ├── build-version-diagnostics.s │ │ │ ├── build-version-encode.s │ │ │ ├── build-version.s │ │ │ ├── compact-unwind-armv7k.s │ │ │ ├── cstexpr-gotpcrel.ll │ │ │ ├── darwin-ARM-reloc.s │ │ │ ├── darwin-Thumb-reloc.s │ │ │ ├── data-in-code.s │ │ │ ├── directive-type-diagnostics.s │ │ │ ├── empty-function-nop.ll │ │ │ ├── ios-version-min-load-command.s │ │ │ ├── lit.local.cfg │ │ │ ├── llvm-objdump-macho-stripped.s │ │ │ ├── llvm-objdump-macho.s │ │ │ ├── long-call-branch-island-relocation.s │ │ │ ├── no-subsections-reloc.s │ │ │ ├── no-tls-assert.ll │ │ │ ├── nop-armv4-padding.s │ │ │ ├── nop-armv6t2-padding.s │ │ │ ├── nop-thumb-padding.s │ │ │ ├── nop-thumb2-padding.s │ │ │ ├── relax-thumb-ldr-literal.s │ │ │ ├── relax-thumb2-branches.s │ │ │ ├── static-movt-relocs.s │ │ │ ├── thumb-bl-jbits.s │ │ │ ├── thumb2-function-relative-load.s │ │ │ ├── thumb2-movt-fixup.s │ │ │ ├── thumb2-movw-fixup.s │ │ │ ├── tvos-version-min-load-command.s │ │ │ ├── version-min-diagnostics.s │ │ │ ├── version-min-diagnostics2.s │ │ │ ├── version-min.s │ │ │ └── watchos-version-min-load-command.s │ │ ├── PowerPC │ │ │ ├── coal-sections-powerpc.s │ │ │ └── lit.local.cfg │ │ ├── absolute.s │ │ ├── absolutize.s │ │ ├── alias.s │ │ ├── altentry.s │ │ ├── bad-darwin-x86_64-32-bit-abs-addr.s │ │ ├── bad-darwin-x86_64-diff-relocs.s │ │ ├── bad-darwin-x86_64-reloc-expr.s │ │ ├── bad-dollar.s │ │ ├── bad-indirect-symbols.s │ │ ├── bad-macro.s │ │ ├── bss.s │ │ ├── coal-sections-x86_64.s │ │ ├── comm-1.s │ │ ├── cstexpr-gotpcrel-32.ll │ │ ├── cstexpr-gotpcrel-64.ll │ │ ├── darwin-complex-difference.s │ │ ├── darwin-version-min-load-command.s │ │ ├── darwin-x86_64-diff-reloc-assign-2.s │ │ ├── darwin-x86_64-diff-reloc-assign.s │ │ ├── darwin-x86_64-diff-relocs.s │ │ ├── darwin-x86_64-nobase-relocs.s │ │ ├── darwin-x86_64-reloc-offsets.s │ │ ├── darwin-x86_64-reloc.s │ │ ├── data.s │ │ ├── debug_frame.s │ │ ├── diff-with-two-sections.s │ │ ├── direction_labels.s │ │ ├── eh-frame-reloc.s │ │ ├── eh_symbol.s │ │ ├── empty-twice.ll │ │ ├── file.s │ │ ├── gen-dwarf-cpp.s │ │ ├── gen-dwarf-macro-cpp.s │ │ ├── gen-dwarf-producer.s │ │ ├── gen-dwarf.s │ │ ├── i386-large-relocations.s │ │ ├── indirect-symbols.s │ │ ├── jcc.s │ │ ├── lcomm-attributes.s │ │ ├── linker-option-1.s │ │ ├── linker-option-2.s │ │ ├── linker-options.ll │ │ ├── lit.local.cfg │ │ ├── loc.s │ │ ├── osx-version-min-load-command.s │ │ ├── pcrel-to-other-section.s │ │ ├── pr19185.s │ │ ├── previous.s │ │ ├── pushsection.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-attributes.s │ │ ├── section-flags.s │ │ ├── string-table.s │ │ ├── symbol-diff.s │ │ ├── symbol-flags.s │ │ ├── symbol-indirect.s │ │ ├── symbols-1.s │ │ ├── tbss.s │ │ ├── tdata.s │ │ ├── temp-labels.s │ │ ├── thread_init_func.s │ │ ├── tls.s │ │ ├── tlv-bss.ll │ │ ├── tlv-reloc.s │ │ ├── tlv.s │ │ ├── undefined-directional.s │ │ ├── values.s │ │ ├── variable-errors.s │ │ ├── variable-exprs.s │ │ ├── weakdef.s │ │ ├── x86-data-in-code.s │ │ ├── x86_32-optimal_nop.s │ │ ├── x86_32-scattered-reloc-fallback.s │ │ ├── x86_32-sections.s │ │ ├── x86_32-symbols.s │ │ ├── x86_64-mergeable.s │ │ ├── x86_64-reloc-arithmetic.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 │ ├── Markup │ │ ├── basic-markup.mc │ │ └── lit.local.cfg │ ├── Mips │ │ ├── addend.s │ │ ├── asciiz-directive-bad.s │ │ ├── asciiz-directive.s │ │ ├── bopt-directive.s │ │ ├── branch-pseudos-bad.s │ │ ├── branch-pseudos.s │ │ ├── cfi-advance-loc.s │ │ ├── cfi.s │ │ ├── cnmips │ │ │ └── invalid.s │ │ ├── cpload-bad.s │ │ ├── cpload.s │ │ ├── cprestore-bad.s │ │ ├── cprestore-noreorder-noat.s │ │ ├── cprestore-noreorder.s │ │ ├── cprestore-reorder.s │ │ ├── cprestore-warning-unused.s │ │ ├── cpsetup-bad.s │ │ ├── cpsetup.s │ │ ├── directive-ent.s │ │ ├── do_switch1.s │ │ ├── do_switch2.s │ │ ├── do_switch3.s │ │ ├── double-expand.s │ │ ├── dsp │ │ │ ├── invalid.s │ │ │ └── valid.s │ │ ├── dspr2 │ │ │ ├── invalid.s │ │ │ └── valid.s │ │ ├── eh-frame.s │ │ ├── elf-N32.s │ │ ├── elf-N64.s │ │ ├── elf-bigendian.ll │ │ ├── elf-debug-section.s │ │ ├── elf-gprel-32-64.s │ │ ├── elf-relsym.s │ │ ├── elf-tls.s │ │ ├── elf_basic.s │ │ ├── elf_eflags.s │ │ ├── elf_eflags_abicalls.s │ │ ├── elf_eflags_micromips.s │ │ ├── elf_eflags_micromips2.s │ │ ├── elf_eflags_mips16.s │ │ ├── elf_eflags_nan2008.s │ │ ├── elf_eflags_nanlegacy.s │ │ ├── elf_eflags_noreorder.s │ │ ├── elf_eflags_pic0.s │ │ ├── elf_eflags_pic2.s │ │ ├── elf_header.s │ │ ├── elf_reginfo.s │ │ ├── elf_st_other.s │ │ ├── end-directive.s │ │ ├── eva │ │ │ ├── invalid-noeva-wrong-error.s │ │ │ ├── invalid-noeva.s │ │ │ ├── invalid.s │ │ │ ├── invalid_R6.s │ │ │ ├── valid_R6.s │ │ │ └── valid_preR6.s │ │ ├── expansion-j-sym-pic.s │ │ ├── expansion-jal-sym-pic.s │ │ ├── expr1.s │ │ ├── got-rel-expr.s │ │ ├── hex-immediates.s │ │ ├── higher-highest-addressing.s │ │ ├── hilo-addressing.s │ │ ├── init-order-bug.ll │ │ ├── insn-directive.s │ │ ├── instalias-imm-expanding.s │ │ ├── instr-analysis.s │ │ ├── j-macro-insn.s │ │ ├── lit.local.cfg │ │ ├── llvm-mc-fixup-endianness.s │ │ ├── macro-abs.s │ │ ├── macro-aliases-invalid-wrong-error.s │ │ ├── macro-aliases.s │ │ ├── macro-bcc-imm-bad.s │ │ ├── macro-bcc-imm.s │ │ ├── macro-ddiv-bad.s │ │ ├── macro-ddiv.s │ │ ├── macro-ddivu-bad.s │ │ ├── macro-ddivu.s │ │ ├── macro-div-bad.s │ │ ├── macro-div.s │ │ ├── macro-divu-bad.s │ │ ├── macro-divu.s │ │ ├── macro-dla-32bit.s │ │ ├── macro-dla-bad.s │ │ ├── macro-dla-pic.s │ │ ├── macro-dla.s │ │ ├── macro-dli.s │ │ ├── macro-la-bad.s │ │ ├── macro-la-pic.s │ │ ├── macro-la.s │ │ ├── macro-ld-sd.s │ │ ├── macro-li-bad.s │ │ ├── macro-li.d.s │ │ ├── macro-li.s │ │ ├── macro-li.s.s │ │ ├── macro-seq.s │ │ ├── memory-offsets.s │ │ ├── micromips-16-bit-instructions.s │ │ ├── micromips-alias.s │ │ ├── micromips-alu-instructions.s │ │ ├── micromips-ase-directive.s │ │ ├── micromips-bad-branches.s │ │ ├── micromips-branch-fixup.s │ │ ├── micromips-branch-instructions.s │ │ ├── micromips-control-instructions.s │ │ ├── micromips-diagnostic-fixup.s │ │ ├── micromips-dsp │ │ │ ├── invalid-wrong-error.s │ │ │ ├── invalid.s │ │ │ ├── valid-micromips32r3.s │ │ │ └── valid.s │ │ ├── micromips-dspr2 │ │ │ ├── invalid.s │ │ │ └── valid.s │ │ ├── micromips-dspr3 │ │ │ └── valid.s │ │ ├── micromips-el-fixup-data.s │ │ ├── micromips-expansions.s │ │ ├── micromips-fpu-instructions.s │ │ ├── micromips-func-addr.s │ │ ├── micromips-invalid.s │ │ ├── micromips-jump-instructions.s │ │ ├── micromips-jump26.s │ │ ├── micromips-label-test-sections.s │ │ ├── micromips-label-test.s │ │ ├── micromips-loadstore-instructions.s │ │ ├── micromips-loadstore-unaligned.s │ │ ├── micromips-movcond-instructions.s │ │ ├── micromips-multiply-instructions.s │ │ ├── micromips-neg-offset.s │ │ ├── micromips-pc16-fixup.s │ │ ├── micromips-relocations.s │ │ ├── micromips-shift-instructions.s │ │ ├── micromips-tailr.s │ │ ├── micromips-trap-instructions.s │ │ ├── micromips │ │ │ ├── invalid-wrong-error.s │ │ │ ├── invalid.s │ │ │ └── valid.s │ │ ├── micromips32r6 │ │ │ ├── invalid-wrong-error.s │ │ │ ├── invalid.s │ │ │ ├── relocations.s │ │ │ └── valid.s │ │ ├── micromips64r6-unsupported.s │ │ ├── mips-abi-bad.s │ │ ├── mips-alu-instructions.s │ │ ├── mips-bad-branches.s │ │ ├── mips-control-instructions.s │ │ ├── mips-cop0-reginfo.s │ │ ├── mips-coprocessor-encodings.s │ │ ├── mips-data-directives.s │ │ ├── mips-diagnostic-fixup.s │ │ ├── mips-expansions-bad.s │ │ ├── mips-expansions.s │ │ ├── mips-fpu-instructions.s │ │ ├── mips-hwr-register-names.s │ │ ├── mips-jump-delay-slots.s │ │ ├── mips-jump-instructions.s │ │ ├── mips-memory-instructions.s │ │ ├── mips-noat.s │ │ ├── mips-pc16-fixup.s │ │ ├── mips-pdr-bad.s │ │ ├── mips-pdr.s │ │ ├── mips-rdata.s │ │ ├── mips-reginfo-fp32.s │ │ ├── mips-reginfo-fp64.s │ │ ├── mips-register-names-invalid.s │ │ ├── mips-register-names-o32.s │ │ ├── mips1 │ │ │ ├── invalid-mips2-wrong-error.s │ │ │ ├── invalid-mips2.s │ │ │ ├── invalid-mips3-wrong-error.s │ │ │ ├── invalid-mips3.s │ │ │ ├── invalid-mips32.s │ │ │ ├── invalid-mips32r2.s │ │ │ ├── invalid-mips4-wrong-error.s │ │ │ ├── invalid-mips4.s │ │ │ ├── invalid-mips5-wrong-error.s │ │ │ ├── invalid-mips5.s │ │ │ ├── valid-xfail.s │ │ │ └── valid.s │ │ ├── mips2 │ │ │ ├── invalid-mips3-wrong-error.s │ │ │ ├── invalid-mips3.s │ │ │ ├── invalid-mips32.s │ │ │ ├── invalid-mips32r2-xfail.s │ │ │ ├── invalid-mips32r2.s │ │ │ ├── invalid-mips4-wrong-error.s │ │ │ ├── invalid-mips4.s │ │ │ ├── invalid-mips5-wrong-error.s │ │ │ ├── invalid-mips5.s │ │ │ └── valid.s │ │ ├── mips3 │ │ │ ├── invalid-mips32.s │ │ │ ├── invalid-mips32r2.s │ │ │ ├── invalid-mips4.s │ │ │ ├── invalid-mips5-wrong-error.s │ │ │ ├── invalid-mips5.s │ │ │ └── valid.s │ │ ├── mips32 │ │ │ ├── abiflags.s │ │ │ ├── invalid-mips32r2-xfail.s │ │ │ ├── invalid-mips32r2.s │ │ │ ├── invalid-mips64.s │ │ │ ├── valid-xfail.s │ │ │ └── valid.s │ │ ├── mips32r2 │ │ │ ├── abiflags.s │ │ │ ├── invalid-dsp.s │ │ │ ├── invalid-dspr2.s │ │ │ ├── invalid-mips64r2.s │ │ │ ├── invalid-msa.s │ │ │ ├── invalid.s │ │ │ ├── valid-xfail.s │ │ │ └── valid.s │ │ ├── mips32r3 │ │ │ ├── abiflags.s │ │ │ ├── invalid-mips64r2.s │ │ │ ├── invalid.s │ │ │ ├── valid-xfail.s │ │ │ └── valid.s │ │ ├── mips32r5 │ │ │ ├── abiflags.s │ │ │ ├── invalid-mips32.s │ │ │ ├── invalid-mips32r2.s │ │ │ ├── invalid-mips32r3.s │ │ │ ├── invalid-mips64r2.s │ │ │ ├── invalid.s │ │ │ ├── valid-xfail.s │ │ │ └── valid.s │ │ ├── mips32r6 │ │ │ ├── invalid-mips1-wrong-error.s │ │ │ ├── invalid-mips1.s │ │ │ ├── invalid-mips2-wrong-error.s │ │ │ ├── invalid-mips2.s │ │ │ ├── invalid-mips32-wrong-error.s │ │ │ ├── invalid-mips32.s │ │ │ ├── invalid-mips32r2.s │ │ │ ├── invalid-mips4-wrong-error.s │ │ │ ├── invalid-mips4.s │ │ │ ├── invalid-mips5-wrong-error.s │ │ │ ├── invalid-mips5.s │ │ │ ├── invalid.s │ │ │ ├── relocations.s │ │ │ └── valid.s │ │ ├── mips4 │ │ │ ├── invalid-mips32.s │ │ │ ├── invalid-mips32r2.s │ │ │ ├── invalid-mips5-wrong-error.s │ │ │ ├── invalid-mips5.s │ │ │ ├── invalid-mips64.s │ │ │ ├── invalid-mips64r2-xfail.s │ │ │ ├── invalid-mips64r2.s │ │ │ ├── valid-xfail.s │ │ │ └── valid.s │ │ ├── mips5 │ │ │ ├── invalid-mips32.s │ │ │ ├── invalid-mips32r2.s │ │ │ ├── invalid-mips64.s │ │ │ ├── invalid-mips64r2-xfail.s │ │ │ ├── invalid-mips64r2.s │ │ │ ├── valid-xfail.s │ │ │ └── valid.s │ │ ├── mips64-alu-instructions.s │ │ ├── mips64-expansions.s │ │ ├── mips64-instalias-imm-expanding.s │ │ ├── mips64-instructions.s │ │ ├── mips64-register-names-n32-n64.s │ │ ├── mips64-register-names-o32.s │ │ ├── mips64 │ │ │ ├── abiflags.s │ │ │ ├── invalid-mips32r2.s │ │ │ ├── invalid-mips64r2-xfail.s │ │ │ ├── invalid-mips64r2.s │ │ │ ├── valid-xfail.s │ │ │ └── valid.s │ │ ├── mips64eb-fixups.s │ │ ├── mips64extins.s │ │ ├── mips64r2 │ │ │ ├── abi-bad.s │ │ │ ├── abiflags.s │ │ │ ├── invalid.s │ │ │ ├── valid-xfail.s │ │ │ └── valid.s │ │ ├── mips64r3 │ │ │ ├── abi-bad.s │ │ │ ├── abiflags.s │ │ │ ├── invalid.s │ │ │ ├── valid-xfail.s │ │ │ └── valid.s │ │ ├── mips64r5 │ │ │ ├── abi-bad.s │ │ │ ├── abiflags.s │ │ │ ├── invalid-mips64.s │ │ │ ├── invalid-mips64r2.s │ │ │ ├── invalid-mips64r3.s │ │ │ ├── invalid.s │ │ │ ├── valid-xfail.s │ │ │ └── valid.s │ │ ├── mips64r6 │ │ │ ├── invalid-mips1-wrong-error.s │ │ │ ├── invalid-mips1.s │ │ │ ├── invalid-mips2.s │ │ │ ├── invalid-mips3-wrong-error.s │ │ │ ├── invalid-mips3.s │ │ │ ├── invalid-mips32-wrong-error.s │ │ │ ├── invalid-mips4-wrong-error.s │ │ │ ├── invalid-mips4.s │ │ │ ├── invalid-mips5-wrong-error.s │ │ │ ├── invalid-mips5.s │ │ │ ├── invalid-mips64.s │ │ │ ├── invalid.s │ │ │ ├── relocations.s │ │ │ └── valid.s │ │ ├── mips64shift.ll │ │ ├── mips_abi_flags_xx.s │ │ ├── mips_abi_flags_xx_set.s │ │ ├── mips_directives.s │ │ ├── mips_directives_bad.s │ │ ├── mips_gprel16.s │ │ ├── module-directive-bad.s │ │ ├── module-hardfloat.s │ │ ├── module-softfloat.s │ │ ├── msa │ │ │ ├── abiflags.s │ │ │ ├── invalid-64.s │ │ │ ├── invalid.s │ │ │ ├── set-msa-directive-bad.s │ │ │ ├── set-msa-directive.s │ │ │ ├── test_2r.s │ │ │ ├── test_2r_msa64.s │ │ │ ├── test_2rf.s │ │ │ ├── test_3r.s │ │ │ ├── test_3rf.s │ │ │ ├── test_bit.s │ │ │ ├── test_cbranch.s │ │ │ ├── test_ctrlregs.s │ │ │ ├── test_dlsa.s │ │ │ ├── test_elm.s │ │ │ ├── test_elm_insert.s │ │ │ ├── test_elm_insert_msa64.s │ │ │ ├── test_elm_insve.s │ │ │ ├── test_elm_msa64.s │ │ │ ├── test_i10.s │ │ │ ├── test_i5.s │ │ │ ├── test_i8.s │ │ │ ├── test_lsa.s │ │ │ ├── test_mi10.s │ │ │ └── test_vec.s │ │ ├── mt │ │ │ ├── abiflag.s │ │ │ ├── invalid-wrong-error.s │ │ │ ├── invalid.s │ │ │ ├── mftr-mttr-aliases-invalid-wrong-error.s │ │ │ ├── mftr-mttr-aliases-invalid.s │ │ │ ├── mftr-mttr-aliases.s │ │ │ ├── mftr-mttr-reserved-valid.s │ │ │ ├── module-directive-invalid.s │ │ │ ├── module-directive.s │ │ │ ├── set-directive.s │ │ │ └── valid.s │ │ ├── mul-macro-variants.s │ │ ├── multi-64bit-func.ll │ │ ├── nabi-regs.s │ │ ├── nacl-mask.s │ │ ├── nooddspreg-cmdarg.s │ │ ├── nooddspreg-error.s │ │ ├── nooddspreg.s │ │ ├── octeon-instructions.s │ │ ├── oddspreg.s │ │ ├── pr11877.s │ │ ├── r-mips-got-disp.s │ │ ├── reloc-directive-bad.s │ │ ├── reloc-directive-negative.s │ │ ├── reloc-directive.s │ │ ├── relocation-n64.s │ │ ├── relocation-xfail.s │ │ ├── relocation.s │ │ ├── rotations32-bad.s │ │ ├── rotations32.s │ │ ├── rotations64.s │ │ ├── section-size.s │ │ ├── set-arch.s │ │ ├── set-at-directive-explicit-at.s │ │ ├── set-at-directive.s │ │ ├── set-at-noat-bad-syntax.s │ │ ├── set-defined-symbol.s │ │ ├── set-mips-directives-bad.s │ │ ├── set-mips-directives.s │ │ ├── set-mips0-directive.s │ │ ├── set-mips16-directive.s │ │ ├── set-nodsp.s │ │ ├── set-nomacro-micromips.s │ │ ├── set-nomacro.s │ │ ├── set-oddspreg-nooddspreg-error.s │ │ ├── set-oddspreg-nooddspreg.s │ │ ├── set-push-pop-directives-bad.s │ │ ├── set-push-pop-directives.s │ │ ├── set-softfloat-hardfloat-bad.s │ │ ├── set-softfloat-hardfloat.s │ │ ├── sext_64_32.ll │ │ ├── sort-relocation-table.s │ │ ├── sym-expr.s │ │ ├── sym-offset.ll │ │ ├── target-soft-float.s │ │ ├── tls-symbols.s │ │ ├── unaligned-nops.s │ │ ├── update-module-level-options.s │ │ ├── user-macro-argument-separation.s │ │ └── xgot.s │ ├── PowerPC │ │ ├── dcbt.s │ │ ├── deprecated-p7.s │ │ ├── directive-parse-err.s │ │ ├── htm.s │ │ ├── invalid-instructions-spellcheck.s │ │ ├── lcomm.s │ │ ├── lit.local.cfg │ │ ├── ppc-llong.s │ │ ├── ppc-machine.s │ │ ├── ppc-nop.s │ │ ├── ppc-reloc.s │ │ ├── ppc-separator.s │ │ ├── ppc-word.s │ │ ├── ppc32-ba.s │ │ ├── ppc32-extpid-e500.s │ │ ├── ppc64-abiversion.s │ │ ├── ppc64-encoding-4xx.s │ │ ├── ppc64-encoding-6xx.s │ │ ├── ppc64-encoding-bookII.s │ │ ├── ppc64-encoding-bookIII.s │ │ ├── ppc64-encoding-e500.s │ │ ├── ppc64-encoding-ext.s │ │ ├── ppc64-encoding-fp.s │ │ ├── ppc64-encoding-p8vector.s │ │ ├── ppc64-encoding-spe.s │ │ ├── ppc64-encoding-vmx.s │ │ ├── ppc64-encoding.s │ │ ├── ppc64-errors.s │ │ ├── ppc64-fixup-apply.s │ │ ├── ppc64-fixup-explicit.s │ │ ├── ppc64-fixups.s │ │ ├── ppc64-initial-cfa.s │ │ ├── ppc64-localentry-error1.s │ │ ├── ppc64-localentry-error2.s │ │ ├── ppc64-localentry.s │ │ ├── ppc64-operands.s │ │ ├── ppc64-regs.s │ │ ├── ppc64-relocs-01.s │ │ ├── ppc64-tls-relocs-01.s │ │ ├── pr24686.s │ │ ├── qpx.s │ │ ├── st-other-crash.s │ │ ├── tls-gd-obj.s │ │ ├── tls-ie-obj.s │ │ ├── tls-ld-obj.s │ │ └── vsx.s │ ├── RISCV │ │ ├── elf-header.s │ │ ├── fixups-compressed.s │ │ ├── fixups-diagnostics.s │ │ ├── fixups.s │ │ ├── hilo-constaddr.s │ │ ├── lit.local.cfg │ │ ├── priv-invalid.s │ │ ├── priv-valid.s │ │ ├── relocations.s │ │ ├── rv32a-invalid.s │ │ ├── rv32a-valid.s │ │ ├── rv32c-invalid.s │ │ ├── rv32c-only-valid.s │ │ ├── rv32c-valid.s │ │ ├── rv32d-invalid.s │ │ ├── rv32d-valid.s │ │ ├── rv32dc-invalid.s │ │ ├── rv32dc-valid.s │ │ ├── rv32f-invalid.s │ │ ├── rv32f-valid.s │ │ ├── rv32fc-invalid.s │ │ ├── rv32fc-valid.s │ │ ├── rv32i-aliases-invalid.s │ │ ├── rv32i-aliases-valid.s │ │ ├── rv32i-invalid.s │ │ ├── rv32i-valid.s │ │ ├── rv32m-invalid.s │ │ ├── rv32m-valid.s │ │ ├── rv64a-invalid.s │ │ ├── rv64a-valid.s │ │ ├── rv64c-invalid.s │ │ ├── rv64c-valid.s │ │ ├── rv64d-aliases-valid.s │ │ ├── rv64d-invalid.s │ │ ├── rv64d-valid.s │ │ ├── rv64f-aliases-valid.s │ │ ├── rv64f-invalid.s │ │ ├── rv64f-valid.s │ │ ├── rv64i-aliases-invalid.s │ │ ├── rv64i-aliases-valid.s │ │ ├── rv64i-invalid.s │ │ ├── rv64i-valid.s │ │ ├── rv64m-valid.s │ │ ├── rvd-aliases-valid.s │ │ ├── rvf-aliases-valid.s │ │ └── rvi-aliases-valid.s │ ├── Sparc │ │ ├── leon-instructions.s │ │ ├── lit.local.cfg │ │ ├── sparc-alu-instructions.s │ │ ├── sparc-asm-errors.s │ │ ├── sparc-assembly-exprs.s │ │ ├── sparc-atomic-instructions.s │ │ ├── sparc-coproc.s │ │ ├── sparc-ctrl-instructions.s │ │ ├── sparc-directive-xword.s │ │ ├── sparc-directives.s │ │ ├── sparc-fp-instructions.s │ │ ├── sparc-little-endian.s │ │ ├── sparc-mem-instructions.s │ │ ├── sparc-nop-data.s │ │ ├── sparc-pic.s │ │ ├── sparc-relocations.s │ │ ├── sparc-special-registers.s │ │ ├── sparc-synthetic-instructions.s │ │ ├── sparc-tls-relocations.s │ │ ├── sparc-traps.s │ │ ├── sparc-v9-traps.s │ │ ├── sparc-vis.s │ │ ├── sparc64-alu-instructions.s │ │ ├── sparc64-ctrl-instructions.s │ │ ├── sparcv8-instructions.s │ │ ├── sparcv9-atomic-instructions.s │ │ └── sparcv9-instructions.s │ ├── SystemZ │ │ ├── directive-insn.s │ │ ├── fixups-zEC12.s │ │ ├── fixups.s │ │ ├── insn-bad-z13.s │ │ ├── insn-bad-z14.s │ │ ├── insn-bad-z196.s │ │ ├── insn-bad-zEC12.s │ │ ├── insn-bad.s │ │ ├── insn-good-z13.s │ │ ├── insn-good-z14.s │ │ ├── insn-good-z196.s │ │ ├── insn-good-zEC12.s │ │ ├── insn-good.s │ │ ├── invalid-instructions-spellcheck.s │ │ ├── lit.local.cfg │ │ ├── regs-bad.s │ │ ├── regs-good.s │ │ ├── tokens.s │ │ └── word.s │ ├── WebAssembly │ │ ├── array-fill.ll │ │ ├── bss.ll │ │ ├── custom-code-section.ll │ │ ├── debug-info.ll │ │ ├── explicit-sections.ll │ │ ├── external-data.ll │ │ ├── external-func-address.ll │ │ ├── file-headers.ll │ │ ├── func-address.ll │ │ ├── init-fini-array.ll │ │ ├── lit.local.cfg │ │ ├── reloc-code.ll │ │ ├── reloc-data.ll │ │ ├── sections.ll │ │ ├── stack-ptr.ll │ │ ├── unnamed-data.ll │ │ ├── visibility.ll │ │ ├── weak-alias.ll │ │ └── weak.ll │ └── X86 │ │ ├── 2011-09-06-NoNewline.s │ │ ├── 3DNow.s │ │ ├── AES-32.s │ │ ├── AES-64.s │ │ ├── AVX-32.s │ │ ├── AVX-64.s │ │ ├── AVX2-32.s │ │ ├── AVX2-64.s │ │ ├── AVXAES-32.s │ │ ├── AVXAES-64.s │ │ ├── AlignedBundling │ │ ├── align-mode-argument-error.s │ │ ├── asm-printing-bundle-directives.s │ │ ├── autogen-inst-offset-align-to-end.s │ │ ├── autogen-inst-offset-padding.s │ │ ├── bundle-group-too-large-error.s │ │ ├── bundle-lock-option-error.s │ │ ├── different-sections.s │ │ ├── labeloffset.s │ │ ├── lit.local.cfg │ │ ├── lock-without-bundle-mode-error.s │ │ ├── long-nop-pad.s │ │ ├── misaligned-bundle-group.s │ │ ├── misaligned-bundle.s │ │ ├── nesting.s │ │ ├── pad-align-to-bundle-end.s │ │ ├── pad-bundle-groups.s │ │ ├── relax-at-bundle-end.s │ │ ├── relax-in-bundle-group.s │ │ ├── rodata-section.s │ │ ├── section-alignment.s │ │ ├── single-inst-bundling.s │ │ ├── switch-section-locked-error.s │ │ └── unlock-without-lock-error.s │ │ ├── BMI1-32.s │ │ ├── BMI1-64.s │ │ ├── BMI2-32.s │ │ ├── BMI2-64.s │ │ ├── CLFLUSHOPT-32.s │ │ ├── CLFLUSHOPT-64.s │ │ ├── CLFSH-32.s │ │ ├── CLFSH-64.s │ │ ├── FMA-32.s │ │ ├── FMA-64.s │ │ ├── Inputs │ │ └── crlf.s │ │ ├── PREFETCH-32.s │ │ ├── PREFETCH-64.s │ │ ├── RDPMC-32.s │ │ ├── RDPMC-64.s │ │ ├── RDRAND-32.s │ │ ├── RDRAND-64.s │ │ ├── RDSEED-32.s │ │ ├── RDSEED-64.s │ │ ├── RDTSCP-32.s │ │ ├── RDTSCP-64.s │ │ ├── RDWRFSGS-64.s │ │ ├── X86_64-pku.s │ │ ├── X87-32.s │ │ ├── X87-64.s │ │ ├── abs8.s │ │ ├── address-size.s │ │ ├── avx512-encodings.s │ │ ├── avx512-err.s │ │ ├── avx512bitalg-encoding.s │ │ ├── avx512bw-encoding.s │ │ ├── avx512gfni-encoding.s │ │ ├── avx512ifma-encoding.s │ │ ├── avx512ifmavl-encoding.s │ │ ├── avx512vaes-encoding.s │ │ ├── avx512vbmi-encoding.s │ │ ├── avx512vbmi2-encoding.s │ │ ├── avx512vbmi2vl-encoding.s │ │ ├── avx512vl-encoding.s │ │ ├── avx512vl_bitalg-encoding.s │ │ ├── avx512vl_gfni-encoding.s │ │ ├── avx512vl_vaes-encoding.s │ │ ├── avx512vl_vnni-encoding.s │ │ ├── avx512vlvpclmul.s │ │ ├── avx512vnni-encoding.s │ │ ├── avx512vpclmul.s │ │ ├── avx_vaes-encoding.s │ │ ├── cet-encoding.s │ │ ├── cfi-scope-errors.s │ │ ├── cfi_def_cfa-crash.s │ │ ├── code16gcc.s │ │ ├── compact-unwind.s │ │ ├── crlf.test │ │ ├── data-prefix-fail.s │ │ ├── data-prefix16.s │ │ ├── data-prefix32.s │ │ ├── data-prefix64.s │ │ ├── encoder-fail.s │ │ ├── error-reloc.s │ │ ├── eval-fill.s │ │ ├── expand-var.s │ │ ├── faultmap-section-parsing.s │ │ ├── fde-reloc.s │ │ ├── fixup-cpu-mode.s │ │ ├── fp-setup-macho.s │ │ ├── gather.s │ │ ├── gfni-encoding.s │ │ ├── gnux32-dwarf-gen.s │ │ ├── hex-immediates.s │ │ ├── i386-darwin-frame-register.ll │ │ ├── imm-comments.s │ │ ├── index-operations.s │ │ ├── inline-asm-obj.ll │ │ ├── intel-syntax-2.s │ │ ├── intel-syntax-ambiguous.s │ │ ├── intel-syntax-avx512-error.s │ │ ├── intel-syntax-avx512.s │ │ ├── intel-syntax-bitwise-ops.s │ │ ├── intel-syntax-directional-label.s │ │ ├── intel-syntax-encoding.s │ │ ├── intel-syntax-error.s │ │ ├── intel-syntax-hex.s │ │ ├── intel-syntax-invalid-basereg.s │ │ ├── intel-syntax-invalid-scale.s │ │ ├── intel-syntax-print.ll │ │ ├── intel-syntax-ptr-sized.s │ │ ├── intel-syntax-unsized-memory.s │ │ ├── intel-syntax-var-offset.ll │ │ ├── intel-syntax-x86-64-avx.s │ │ ├── intel-syntax-x86-64-avx512f_vl.s │ │ ├── intel-syntax-x86-avx512dq_vl.s │ │ ├── intel-syntax-x86-avx512vbmi_vl.s │ │ ├── intel-syntax.s │ │ ├── invalid-sleb.s │ │ ├── invalid_opcode.s │ │ ├── large-bss.s │ │ ├── line-table-sections.s │ │ ├── lit.local.cfg │ │ ├── lwp-x86_64.s │ │ ├── lwp.s │ │ ├── macho-reloc-errors-x86.s │ │ ├── macho-reloc-errors-x86_64.s │ │ ├── macho-uleb.s │ │ ├── mpx-encodings.s │ │ ├── no-elf-compact-unwind.s │ │ ├── padlock.s │ │ ├── pr22004.s │ │ ├── pr22028.s │ │ ├── pr27884.s │ │ ├── pr28547.s │ │ ├── relax-insn.s │ │ ├── reloc-bss.s │ │ ├── reloc-directive.s │ │ ├── reloc-macho.s │ │ ├── reloc-undef-global.s │ │ ├── ret.s │ │ ├── sgx-encoding.s │ │ ├── shuffle-comments.s │ │ ├── signed-coff-pcrel.s │ │ ├── stackmap-nops.ll │ │ ├── validate-inst-att.s │ │ ├── validate-inst-intel.s │ │ ├── variant-diagnostics.s │ │ ├── vpclmulqdq.s │ │ ├── x86-16.s │ │ ├── x86-32-avx.s │ │ ├── x86-32-coverage.s │ │ ├── x86-32-fma3.s │ │ ├── x86-32-ms-inline-asm.s │ │ ├── x86-32.s │ │ ├── x86-64-avx512bw.s │ │ ├── x86-64-avx512bw_vl.s │ │ ├── x86-64-avx512cd.s │ │ ├── x86-64-avx512cd_vl.s │ │ ├── x86-64-avx512dq.s │ │ ├── x86-64-avx512dq_vl.s │ │ ├── x86-64-avx512f_vl.s │ │ ├── x86-64-avx512vpopcntdq.s │ │ ├── x86-64.s │ │ ├── x86-GCC-inline-asm-Y-constraints.ll │ │ ├── x86-branch-relaxation.s │ │ ├── x86-evenDirective.s │ │ ├── x86-itanium.ll │ │ ├── x86-target-directives.s │ │ ├── x86-windows-itanium-libcalls.ll │ │ ├── x86_64-asm-match.s │ │ ├── x86_64-avx-clmul-encoding.s │ │ ├── x86_64-avx-encoding.s │ │ ├── x86_64-bmi-encoding.s │ │ ├── x86_64-encoding.s │ │ ├── x86_64-fma3-encoding.s │ │ ├── x86_64-fma4-encoding.s │ │ ├── x86_64-hle-encoding.s │ │ ├── x86_64-imm-widths.s │ │ ├── x86_64-rand-encoding.s │ │ ├── x86_64-rtm-encoding.s │ │ ├── x86_64-signed-reloc.s │ │ ├── x86_64-sse4a.s │ │ ├── x86_64-tbm-encoding.s │ │ ├── x86_64-xop-encoding.s │ │ ├── x86_directives.s │ │ ├── x86_errors.s │ │ ├── x86_long_nop.s │ │ ├── x86_nop.s │ │ └── x86_operands.s ├── Object │ ├── AArch64 │ │ └── yaml2obj-elf-aarch64-rel.yaml │ ├── AMDGPU │ │ ├── elf32-r600-definitions.yaml │ │ ├── elf32-unknown.yaml │ │ ├── elf64-amdgcn-amdhsa-definitions.yaml │ │ ├── elf64-amdgcn-amdpal-definitions.yaml │ │ ├── elf64-amdgcn-mesa3d-definitions.yaml │ │ ├── elf64-relocs.yaml │ │ ├── elf64-unknown.yaml │ │ ├── lit.local.cfg │ │ └── objdump.s │ ├── ARM │ │ ├── lit.local.cfg │ │ ├── macho-data-in-code.test │ │ ├── nm-mapping-symbol.s │ │ ├── objdump-thumb.test │ │ └── symbol-addr.ll │ ├── Inputs │ │ ├── COFF │ │ │ ├── empty-drectve.yaml │ │ │ ├── i386.yaml │ │ │ ├── long-file-symbol.yaml │ │ │ ├── long-section-name.yaml │ │ │ ├── section-aux-symbol.yaml │ │ │ ├── weak-external.yaml │ │ │ ├── weak-externals.yaml │ │ │ └── x86-64.yaml │ │ ├── ELF │ │ │ ├── BE32.yaml │ │ │ ├── BE64.yaml │ │ │ ├── LE32.yaml │ │ │ └── LE64.yaml │ │ ├── GNU.a │ │ ├── IsNAN.o │ │ ├── MacOSX.a │ │ ├── SVR4.a │ │ ├── WASM │ │ │ └── missing-version.wasm │ │ ├── absolute.elf-x86-64 │ │ ├── archive-test.a-coff-i386 │ │ ├── archive-test.a-corrupt-symbol-table │ │ ├── archive-test.a-empty │ │ ├── archive-test.a-gnu-minimal │ │ ├── archive-test.a-gnu-no-symtab │ │ ├── archive-test.a-irix6-mips64el │ │ ├── coff-short-import-code │ │ ├── coff-short-import-data │ │ ├── coff_archive.lib │ │ ├── coff_archive_short.lib │ │ ├── common.coff-i386 │ │ ├── corrupt-archive.a │ │ ├── corrupt-invalid-dynamic-table-offset.elf.x86-64 │ │ ├── corrupt-invalid-dynamic-table-size.elf.x86-64 │ │ ├── corrupt-invalid-dynamic-table-too-large.elf.x86-64 │ │ ├── corrupt-invalid-phentsize.elf.x86-64 │ │ ├── corrupt-invalid-relocation-size.elf.x86-64 │ │ ├── corrupt-invalid-strtab.elf.x86-64 │ │ ├── corrupt-invalid-virtual-addr.elf.x86-64 │ │ ├── corrupt-version.elf-x86_64 │ │ ├── corrupt.elf-x86-64 │ │ ├── darwin-m-test1.mach0-armv7 │ │ ├── darwin-m-test2.macho-i386 │ │ ├── darwin-m-test3.macho-x86-64 │ │ ├── dext-test.elf-mips64r2 │ │ ├── dyn-rel.so.elf-mips │ │ ├── dynamic-reloc.so │ │ ├── elf-mip64-reloc.o │ │ ├── elf-reloc-no-sym.x86_64 │ │ ├── elf-versioning-test.i386 │ │ ├── elf-versioning-test.x86_64 │ │ ├── elfver.S │ │ ├── elfver.script │ │ ├── evenlen │ │ ├── hello-world.elf-x86-64 │ │ ├── hello-world.macho-x86_64 │ │ ├── invalid-bad-rel-type.elf │ │ ├── invalid-bad-section-address.coff │ │ ├── invalid-buffer.elf │ │ ├── invalid-coff-header-too-small │ │ ├── invalid-e_shnum.elf │ │ ├── invalid-ext-symtab-index.elf-x86-64 │ │ ├── invalid-phdr.elf │ │ ├── invalid-rel-sym.elf │ │ ├── invalid-reloc.elf-x86-64 │ │ ├── invalid-relocation-sec-sh_offset.elf-i386 │ │ ├── invalid-relocation-sec-sh_offset.elf-x86-64 │ │ ├── invalid-section-index.elf │ │ ├── invalid-section-size.elf │ │ ├── invalid-section-size2.elf │ │ ├── invalid-sections-address-alignment.x86-64 │ │ ├── invalid-sections-num.elf │ │ ├── invalid-sh_entsize.elf │ │ ├── invalid-strtab-non-null.elf │ │ ├── invalid-strtab-size.elf │ │ ├── invalid-strtab-type.elf │ │ ├── invalid-strtab-zero-size.elf │ │ ├── invalid-symbol-table-size.elf │ │ ├── invalid-xindex-size.elf │ │ ├── liblong_filenames.a │ │ ├── libsimple_archive.a │ │ ├── macho-archive-unsorted-x86_64.a │ │ ├── macho-archive-x86_64.a │ │ ├── macho-bad-archive1.a │ │ ├── macho-bad-archive2.a │ │ ├── macho-data-in-code.macho-thumbv7 │ │ ├── macho-empty-kext-bundle-x86-64 │ │ ├── macho-hello-g.macho-x86_64 │ │ ├── macho-invalid-bad-symbol-index │ │ ├── macho-invalid-bind-overlap │ │ ├── macho-invalid-codesig-overlap │ │ ├── macho-invalid-codesign-bad-size │ │ ├── macho-invalid-dataincode-bad-size │ │ ├── macho-invalid-dataincode-dataoff-datasize │ │ ├── macho-invalid-dataincode-more-than-one │ │ ├── macho-invalid-dyld-name_offset-toobig │ │ ├── macho-invalid-dyld-name_toobig │ │ ├── macho-invalid-dyld-small │ │ ├── macho-invalid-dyldinfo-bind_off-bind_size │ │ ├── macho-invalid-dyldinfo-export_off-export_size │ │ ├── macho-invalid-dyldinfo-lazy_bind_off-lazy_bind_size │ │ ├── macho-invalid-dyldinfo-more-than-one │ │ ├── macho-invalid-dyldinfo-rebase_off │ │ ├── macho-invalid-dyldinfo-rebase_off-rebase_size │ │ ├── macho-invalid-dyldinfo-small │ │ ├── macho-invalid-dyldinfo-weak_bind_off-weak_bind_size │ │ ├── macho-invalid-dyldinfoonly-bad-size │ │ ├── macho-invalid-dyldinfoonly-bind_off │ │ ├── macho-invalid-dyldinfoonly-export_off │ │ ├── macho-invalid-dyldinfoonly-lazy_bind_off │ │ ├── macho-invalid-dyldinfoonly-weak_bind_off │ │ ├── macho-invalid-dylib-cmdsize-past-eof │ │ ├── macho-invalid-dylib-id-more-than-one │ │ ├── macho-invalid-dylib-name_offset-toobig │ │ ├── macho-invalid-dylib-name_offset-toosmall │ │ ├── macho-invalid-dylib-name_toobig │ │ ├── macho-invalid-dylib-no-id │ │ ├── macho-invalid-dylib-small │ │ ├── macho-invalid-dylib-wrong-filetype │ │ ├── macho-invalid-dylib_code_sign_drs-bad-size │ │ ├── macho-invalid-dysymtab-bad-size │ │ ├── macho-invalid-dysymtab-extrefsymoff │ │ ├── macho-invalid-dysymtab-extrefsymoff-nextrefsyms │ │ ├── macho-invalid-dysymtab-extreloff │ │ ├── macho-invalid-dysymtab-extreloff-nextrel │ │ ├── macho-invalid-dysymtab-indirectsymoff │ │ ├── macho-invalid-dysymtab-indirectsymoff-nindirectsyms │ │ ├── macho-invalid-dysymtab-locreloff │ │ ├── macho-invalid-dysymtab-locreloff-nlocrel │ │ ├── macho-invalid-dysymtab-modtaboff │ │ ├── macho-invalid-dysymtab-modtaboff-nmodtab │ │ ├── macho-invalid-dysymtab-more-than-one │ │ ├── macho-invalid-dysymtab-small │ │ ├── macho-invalid-dysymtab-tocoff │ │ ├── macho-invalid-dysymtab-tocoff-ntoc │ │ ├── macho-invalid-encrypt-bad-size │ │ ├── macho-invalid-encrypt-cryptoff │ │ ├── macho-invalid-encrypt-more-than-one │ │ ├── macho-invalid-encrypt64-bad-size │ │ ├── macho-invalid-encrypt64-cryptoff-cryptsize │ │ ├── macho-invalid-entry-bad-size │ │ ├── macho-invalid-entry-more-than-one │ │ ├── macho-invalid-export-overlap │ │ ├── macho-invalid-extrefsyms-overlap │ │ ├── macho-invalid-extreloff-overlap │ │ ├── macho-invalid-fat │ │ ├── macho-invalid-fat-arch-badalign │ │ ├── macho-invalid-fat-arch-bigalign │ │ ├── macho-invalid-fat-arch-overlap │ │ ├── macho-invalid-fat-arch-overlapheaders │ │ ├── macho-invalid-fat-arch-size │ │ ├── macho-invalid-fat-arch-twosame │ │ ├── macho-invalid-fat-header │ │ ├── macho-invalid-fat.obj.elf-x86_64 │ │ ├── macho-invalid-fat_cputype │ │ ├── macho-invalid-function_starts-dataoff │ │ ├── macho-invalid-fvmfile-obsolete │ │ ├── macho-invalid-header │ │ ├── macho-invalid-hints-overlap │ │ ├── macho-invalid-ident-obsolete │ │ ├── macho-invalid-idfvmlib-obsolete │ │ ├── macho-invalid-indirectsyms-overlap │ │ ├── macho-invalid-lazy_bind-overlap │ │ ├── macho-invalid-linkopt-bad-count │ │ ├── macho-invalid-linkopt-bad-size │ │ ├── macho-invalid-linkopthint-dataoff │ │ ├── macho-invalid-linkopthint-small │ │ ├── macho-invalid-loadfvmlib-obsolete │ │ ├── macho-invalid-locreloff-overlap │ │ ├── macho-invalid-modtab-overlap │ │ ├── macho-invalid-no-size-for-sections │ │ ├── macho-invalid-note │ │ ├── macho-invalid-prebind_cksum-obsolete │ │ ├── macho-invalid-prebound_dylib-obsolete │ │ ├── macho-invalid-prepage-obsolete │ │ ├── macho-invalid-rebase-overlap │ │ ├── macho-invalid-reloc-overlap │ │ ├── macho-invalid-routines-bad-size │ │ ├── macho-invalid-routines64-more-than-one │ │ ├── macho-invalid-rpath-name_offset-toobig │ │ ├── macho-invalid-rpath-name_toobig │ │ ├── macho-invalid-rpath-small │ │ ├── macho-invalid-section-addr │ │ ├── macho-invalid-section-addr-size │ │ ├── macho-invalid-section-index-getSectionRawName │ │ ├── macho-invalid-section-offset │ │ ├── macho-invalid-section-offset-in-headers │ │ ├── macho-invalid-section-offset-size │ │ ├── macho-invalid-section-overlap │ │ ├── macho-invalid-section-reloff │ │ ├── macho-invalid-section-reloff-nrelocs │ │ ├── macho-invalid-section-size-filesize │ │ ├── macho-invalid-segment-fileoff │ │ ├── macho-invalid-segment-filesize │ │ ├── macho-invalid-segment-vmsize │ │ ├── macho-invalid-source-bad-size │ │ ├── macho-invalid-source-more-than-one │ │ ├── macho-invalid-splitinfo-dataoff-datasize │ │ ├── macho-invalid-strtab-overlap │ │ ├── macho-invalid-subclient-name_toobig │ │ ├── macho-invalid-subframe-small │ │ ├── macho-invalid-sublibrary-name_offset-toobig │ │ ├── macho-invalid-subumbrella-offset-small │ │ ├── macho-invalid-symbol-name-past-eof │ │ ├── macho-invalid-symseg-obsolete │ │ ├── macho-invalid-symtab-bad-size │ │ ├── macho-invalid-symtab-more-than-one │ │ ├── macho-invalid-symtab-overlap │ │ ├── macho-invalid-symtab-small │ │ ├── macho-invalid-symtab-stroff │ │ ├── macho-invalid-symtab-stroff-strsize │ │ ├── macho-invalid-symtab-symoff │ │ ├── macho-invalid-symtab-symoff-nsyms │ │ ├── macho-invalid-thread-count-pastend │ │ ├── macho-invalid-thread-count-wrong │ │ ├── macho-invalid-thread-flavor-unknown │ │ ├── macho-invalid-thread-state-pastend │ │ ├── macho-invalid-thread-unknown-cputype │ │ ├── macho-invalid-toc-overlap │ │ ├── macho-invalid-too-small-load-command │ │ ├── macho-invalid-too-small-segment-load-command │ │ ├── macho-invalid-too-small-segment-load-command.1 │ │ ├── macho-invalid-twolevelhints-bad-size │ │ ├── macho-invalid-twolevelhints-more-than-one │ │ ├── macho-invalid-twolevelhints-offset │ │ ├── macho-invalid-twolevelhints-offset-nhints │ │ ├── macho-invalid-unixthread-more-than-one │ │ ├── macho-invalid-uuid-bad-size │ │ ├── macho-invalid-uuid-more-than-one │ │ ├── macho-invalid-vers-more-than-one │ │ ├── macho-invalid-vers-small │ │ ├── macho-invalid-weak_bind-overlap │ │ ├── macho-invalid-zero-ncmds │ │ ├── macho-no-exports.dylib │ │ ├── macho-rpath-x86_64 │ │ ├── macho-text-data-bss.macho-x86_64 │ │ ├── macho-text-sections.macho-x86_64 │ │ ├── macho-text.thumb │ │ ├── macho-toc64-archive-x86_64.a │ │ ├── macho-universal-archive-bad1.x86_64.i386 │ │ ├── macho-universal-archive-bad2.x86_64.i386 │ │ ├── macho-universal-archive.x86_64.i386 │ │ ├── macho-universal-bad1.x86_64.i386 │ │ ├── macho-universal-bad2.x86_64.i386 │ │ ├── macho-universal.x86_64.i386 │ │ ├── macho-universal64-archive.x86_64.i386 │ │ ├── macho-universal64.x86_64.i386 │ │ ├── macho-valid-0-nsyms │ │ ├── macho64-invalid-incomplete-load-command │ │ ├── macho64-invalid-incomplete-load-command.1 │ │ ├── macho64-invalid-incomplete-segment-load-command │ │ ├── macho64-invalid-no-size-for-sections │ │ ├── macho64-invalid-too-small-load-command │ │ ├── macho64-invalid-too-small-load-command.1 │ │ ├── macho64-invalid-too-small-segment-load-command │ │ ├── main-ret-zero-pe-i386.dll │ │ ├── main-ret-zero-pe-i386.exe │ │ ├── micro-mips.elf-mipsel │ │ ├── mri-crlf.mri │ │ ├── multi-module.ll │ │ ├── no-section-header-string-table.elf-x86-64 │ │ ├── no-section-table.so │ │ ├── no-sections.elf-x86-64 │ │ ├── no-start-symbol.elf-x86_64 │ │ ├── oddlen │ │ ├── openbsd-phdrs.elf-x86-64 │ │ ├── phdr-note.elf-x86-64 │ │ ├── phdrs.elf-x86-64 │ │ ├── pr25877.lib │ │ ├── program-headers.elf-i386 │ │ ├── program-headers.elf-x86-64 │ │ ├── program-headers.mips │ │ ├── program-headers.mips64 │ │ ├── rel-no-sec-table.elf-x86-64 │ │ ├── relocatable-with-section-address.elf-x86-64 │ │ ├── relocation-dynamic.elf-i386 │ │ ├── relocation-relocatable.elf-i386 │ │ ├── relocations.elf-x86-64 │ │ ├── sectionGroup.elf.x86-64 │ │ ├── shared-object-test.elf-i386 │ │ ├── shared-object-test.elf-x86-64 │ │ ├── shared.ll │ │ ├── shndx.elf │ │ ├── solaris-nosymbols.yaml │ │ ├── stackmap-test.macho-x86-64 │ │ ├── symtab-only.a │ │ ├── thin-path.a │ │ ├── thin.a │ │ ├── thumb-symbols.elf.arm │ │ ├── trivial-executable-test.macho-x86-64 │ │ ├── trivial-label-test.elf-x86-64 │ │ ├── trivial-object-test.coff-arm64 │ │ ├── trivial-object-test.coff-armnt │ │ ├── trivial-object-test.coff-i386 │ │ ├── trivial-object-test.coff-x86-64 │ │ ├── trivial-object-test.elf-avr │ │ ├── trivial-object-test.elf-hexagon │ │ ├── trivial-object-test.elf-i386 │ │ ├── trivial-object-test.elf-mips64el │ │ ├── trivial-object-test.elf-mipsel │ │ ├── trivial-object-test.elf-x86-64 │ │ ├── trivial-object-test.macho-i386 │ │ ├── trivial-object-test.macho-x86-64 │ │ ├── trivial-object-test.wasm │ │ ├── trivial-object-test2.elf-x86-64 │ │ ├── trivial-object-test2.macho-x86-64 │ │ ├── trivial.ll │ │ ├── unwind-section.elf-x86-64 │ │ ├── very_long_bytecode_file_name.bc │ │ ├── weak-global-symbol.macho-i386 │ │ ├── weak.elf-x86-64 │ │ └── xpg4.a │ ├── Lanai │ │ ├── lit.local.cfg │ │ └── yaml2obj-elf-lanai-rel.yaml │ ├── Mips │ │ ├── abi-flags.yaml │ │ ├── elf-abi.yaml │ │ ├── elf-flags.yaml │ │ ├── elf-mips64-rel.yaml │ │ ├── feature.test │ │ ├── lit.local.cfg │ │ ├── objdump-micro-mips.test │ │ └── reloc-visit.test │ ├── RISCV │ │ ├── elf-flags.yaml │ │ └── lit.local.cfg │ ├── X86 │ │ ├── archive-ir-asm.ll │ │ ├── archive-symbol-table.s │ │ ├── asm-lazy-reference.ll │ │ ├── irsymtab-asm.ll │ │ ├── irsymtab-bad-alias.ll │ │ ├── irsymtab.ll │ │ ├── lit.local.cfg │ │ ├── macho-text-sections.test │ │ ├── nm-bitcodeweak.test │ │ ├── nm-coff.s │ │ ├── nm-ir.ll │ │ ├── nm-macho.s │ │ ├── nm-print-size.s │ │ ├── nm-undefinedweak.test │ │ ├── no-start-symbol.test │ │ ├── obj2yaml-dup-section-name.s │ │ ├── obj2yaml-dup-symbol-name.s │ │ ├── objdump-disassembly-inline-relocations.test │ │ ├── objdump-label.test │ │ ├── objdump-trivial-object.test │ │ ├── yaml-elf-x86-rel-broken.yaml │ │ └── yaml2obj-elf-x86-rel.yaml │ ├── ar-create.test │ ├── ar-error.test │ ├── archive-GNU64-write.test │ ├── archive-delete.test │ ├── archive-error-tmp.txt │ ├── archive-extract-dir.test │ ├── archive-extract.test │ ├── archive-format.test │ ├── archive-long-index.test │ ├── archive-move.test │ ├── archive-pad.test │ ├── archive-replace-pos.test │ ├── archive-symtab.test │ ├── archive-thin-create.test │ ├── archive-thin-paths.test │ ├── archive-thin-read.test │ ├── archive-toc.test │ ├── archive-update.test │ ├── check_binary_output.ll │ ├── coff-archive-short.test │ ├── coff-archive.test │ ├── coff-empty-drectve.test │ ├── coff-invalid.test │ ├── coff-weak-externals.test │ ├── corrupt.test │ ├── directory.ll │ ├── dllimport-globalref.ll │ ├── dllimport.ll │ ├── dyn-rel-relocation.test │ ├── dynamic-reloc.test │ ├── elf-invalid-phdr.test │ ├── elf-reloc-no-sym.test │ ├── elf-unknown-type.test │ ├── invalid-alignment.test │ ├── invalid.test │ ├── kext.test │ ├── lit.local.cfg │ ├── macho-invalid.test │ ├── mangle-ir.ll │ ├── mri-addlib.test │ ├── mri-addmod.test │ ├── mri-crlf.test │ ├── mri1.test │ ├── mri2.test │ ├── mri3.test │ ├── mri4.test │ ├── mri5.test │ ├── multi-module.ll │ ├── nm-archive.test │ ├── nm-darwin-m.test │ ├── nm-error.test │ ├── nm-irix6.test │ ├── nm-pe-image.test │ ├── nm-shared-object.test │ ├── nm-trivial-object.test │ ├── nm-universal-binary.test │ ├── nm-weak-global-macho.test │ ├── no-section-header-string-table.test │ ├── no-section-table.test │ ├── obj2yaml-coff-long-file-symbol.test │ ├── obj2yaml-coff-long-section-name.test │ ├── obj2yaml-coff-section-aux-symbol.test │ ├── obj2yaml-coff-weak-external.test │ ├── obj2yaml-invalid-reloc.test │ ├── obj2yaml-sectiongroup.test │ ├── obj2yaml.test │ ├── objc-imageinfo-coff.ll │ ├── objc-imageinfo-elf.ll │ ├── objc-imageinfo-macho.ll │ ├── objdump-export-list.test │ ├── objdump-file-header.test │ ├── objdump-no-sectionheaders.test │ ├── objdump-private-headers.test │ ├── objdump-reloc-shared.test │ ├── objdump-relocations.test │ ├── objdump-section-content.test │ ├── objdump-sectionheaders.test │ ├── objdump-shndx.test │ ├── objdump-symbol-table.test │ ├── pr25877.test │ ├── readobj-absent.test │ ├── readobj-elf-versioning.test │ ├── readobj-shared-object.test │ ├── readobj.test │ ├── relocation-executable.test │ ├── simple-archive.test │ ├── size-trivial-macho.test │ ├── stackmap-dump.test │ ├── wasm-invalid-start.test │ ├── wasm-missing-version.test │ ├── yaml2obj-coff-invalid-alignment.test │ ├── yaml2obj-coff-multi-doc.test │ ├── yaml2obj-elf-alignment.yaml │ ├── yaml2obj-elf-bits-endian.test │ ├── yaml2obj-elf-file-headers-with-e_flags.yaml │ ├── yaml2obj-elf-file-headers.yaml │ ├── yaml2obj-elf-multi-doc.test │ ├── yaml2obj-elf-rel-noref.yaml │ ├── yaml2obj-elf-rel.yaml │ ├── yaml2obj-elf-section-basic.yaml │ ├── yaml2obj-elf-section-invalid-size.yaml │ ├── yaml2obj-elf-symbol-LocalGlobalWeak.yaml │ ├── yaml2obj-elf-symbol-basic.yaml │ ├── yaml2obj-elf-symbol-visibility.yaml │ ├── yaml2obj-invalid.yaml │ └── yaml2obj-readobj.test ├── ObjectYAML │ ├── CodeView │ │ └── sections.yaml │ ├── ELF │ │ └── shf-compressed.yaml │ ├── MachO │ │ ├── BigEndian.yaml │ │ ├── DWARF-BigEndian.yaml │ │ ├── DWARF-LittleEndian.yaml │ │ ├── DWARF-debug_abbrev.yaml │ │ ├── DWARF-debug_aranges.yaml │ │ ├── DWARF-debug_info.yaml │ │ ├── DWARF-debug_line.yaml │ │ ├── DWARF-debug_str.yaml │ │ ├── DWARF-pubsections.yaml │ │ ├── DWARF2-AddrSize8-FormValues.yaml │ │ ├── DWARF5-abbrevValues.yaml │ │ ├── DWARF5-debug_info.yaml │ │ ├── LittleEndian.yaml │ │ ├── bind_opcode.yaml │ │ ├── bogus_load_command.yaml │ │ ├── build_version_command.yaml │ │ ├── dylib_dylinker_command.yaml │ │ ├── export_trie.yaml │ │ ├── fat_macho_i386_x86_64.yaml │ │ ├── lazy_bind_opcode.yaml │ │ ├── load_commands.yaml │ │ ├── mach_header.yaml │ │ ├── mach_header_32_malformed.yaml │ │ ├── mach_header_64.yaml │ │ ├── null_string_entries.yaml │ │ ├── out_of_order_linkedit.yaml │ │ ├── rebase_opcode.yaml │ │ ├── sections.yaml │ │ ├── symtab.yaml │ │ └── weak_bind_opcode.yaml │ ├── lit.local.cfg │ └── wasm │ │ ├── code_section.yaml │ │ ├── custom_section.yaml │ │ ├── data_section.yaml │ │ ├── elem_section.yaml │ │ ├── export_section.yaml │ │ ├── function_section.yaml │ │ ├── global_section.yaml │ │ ├── header.yaml │ │ ├── header_invalid_version.yaml │ │ ├── import_section.yaml │ │ ├── invalid_export.yaml │ │ ├── linking_section.yaml │ │ ├── memory_section.yaml │ │ ├── name_section.yaml │ │ ├── start_section.yaml │ │ ├── table_section.yaml │ │ ├── type_section.yaml │ │ └── weak_symbols.yaml ├── 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-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 │ ├── FileCheck-space.txt │ ├── Inputs │ │ ├── TestProg │ │ │ └── TestProg │ │ ├── block-info-only.bc │ │ ├── glob-input │ │ ├── has-block-info.bc │ │ ├── invariant.group.barrier.ll │ │ ├── new-pm-pgo.prof │ │ ├── new-pm-pgo.proftext │ │ ├── no-block-info.bc │ │ ├── utf8-bom-response │ │ └── utf8-response │ ├── ResponseFile.ll │ ├── X86 │ │ ├── inline-asm-newline-terminator.ll │ │ ├── lit.local.cfg │ │ └── opt-bisect-isel.ll │ ├── attribute-comment.ll │ ├── bcanalyzer-block-info.txt │ ├── can-execute.txt │ ├── cgscc-devirt-iteration.ll │ ├── cgscc-disconnected-invalidation.ll │ ├── cgscc-iterate-function-mutation.ll │ ├── cgscc-libcall-update.ll │ ├── cgscc-observe-devirt.ll │ ├── cleanup-lcssa.ll │ ├── close-stderr.ll │ ├── constant-fold-gep-address-spaces.ll │ ├── constant-fold-gep.ll │ ├── debugcounter-newgvn.ll │ ├── debugcounter-predicateinfo.ll │ ├── extract-alias.ll │ ├── extract-linkonce.ll │ ├── extract-weak-odr.ll │ ├── extract.ll │ ├── invalid-commandline-option.ll │ ├── invariant.group.barrier.ll │ ├── lint.ll │ ├── lit-globbing.ll │ ├── lit-quoting.txt │ ├── lit-unicode.txt │ ├── llvm-nm-without-aliases.ll │ ├── loop-pass-ordering.ll │ ├── loop-pass-printer.ll │ ├── loop-pm-invalidation.ll │ ├── new-pass-manager.ll │ ├── new-pm-defaults.ll │ ├── new-pm-lto-defaults.ll │ ├── new-pm-pgo.ll │ ├── new-pm-thinlto-defaults.ll │ ├── opt-bisect-helper.py │ ├── opt-bisect-legacy-pass-manager.ll │ ├── opt-override-mcpu-mattr.ll │ ├── opt-twice.ll │ ├── optimization-remarks-inline.ll │ ├── optimization-remarks-invalidation.ll │ ├── optimization-remarks-lazy-bfi.ll │ ├── optimize-options.ll │ ├── pass-pipeline-parsing.ll │ ├── pass-pipelines.ll │ ├── pipefail.txt │ ├── pr32085.ll │ ├── print-module-scope.ll │ ├── spir_cc.ll │ ├── statistic.ll │ ├── umask.ll │ └── writing-to-stdout.ll ├── SafepointIRVerifier │ ├── basic-use-after-reloc.ll │ ├── compares.ll │ ├── constant-bases.ll │ ├── from-same-relocation-in-phi-nodes.ll │ ├── unrecorded-live-at-sp.ll │ ├── use-derived-unrelocated.ll │ └── uses-in-phi-nodes.ll ├── SymbolRewriter │ ├── rewrite.ll │ └── rewrite.map ├── TableGen │ ├── 2003-08-03-PassCode.td │ ├── 2006-09-18-LargeInt.td │ ├── 2010-03-24-PrematureDefaults.td │ ├── AllowDuplicateRegisterNames.td │ ├── AnonDefinitionOnDemand.td │ ├── AsmPredicateCondsEmission.td │ ├── AsmVariant.td │ ├── BitOffsetDecoder.td │ ├── BitsInit.td │ ├── BitsInitOverflow.td │ ├── CStyleComment.td │ ├── ClassInstanceValue.td │ ├── ConcatenatedSubregs.td │ ├── Dag.td │ ├── DefmInherit.td │ ├── DefmInsideMultiClass.td │ ├── DuplicateFieldValues.td │ ├── FieldAccess.td │ ├── ForeachList.td │ ├── ForeachLoop.td │ ├── ForwardRef.td │ ├── GeneralList.td │ ├── GlobalISelEmitter.td │ ├── HwModeSelect.td │ ├── Include.inc │ ├── Include.td │ ├── IntBitInit.td │ ├── LazyChange.td │ ├── LetInsideMultiClasses.td │ ├── ListArgs.td │ ├── ListArgsSimple.td │ ├── ListConversion.td │ ├── ListManip.td │ ├── ListOfList.td │ ├── ListSlices.td │ ├── LoLoL.td │ ├── MultiClass.td │ ├── MultiClassDefName.td │ ├── MultiClassInherit.td │ ├── MultiPat.td │ ├── NestedForeach.td │ ├── Paste.td │ ├── RegisterBankEmitter.td │ ├── RegisterEncoder.td │ ├── SetTheory.td │ ├── SiblingForeach.td │ ├── Slice.td │ ├── String.td │ ├── SuperSubclassSameName.td │ ├── TargetInstrInfo.td │ ├── TargetInstrSpec.td │ ├── TemplateArgRename.td │ ├── Tree.td │ ├── TreeNames.td │ ├── TwoLevelName.td │ ├── UnsetBitInit.td │ ├── UnterminatedComment.td │ ├── ValidIdentifiers.td │ ├── cast-list-initializer.td │ ├── cast.td │ ├── defmclass.td │ ├── eq.td │ ├── eqbit.td │ ├── foreach.td │ ├── if-empty-list-arg.td │ ├── if.td │ ├── ifbit.td │ ├── intrinsic-long-name.td │ ├── intrinsic-struct.td │ ├── intrinsic-varargs.td │ ├── lisp.td │ ├── list-element-bitref.td │ ├── listconcat.td │ ├── lit.local.cfg │ ├── math.td │ ├── nested-comment.td │ ├── pr8330.td │ ├── strconcat.td │ ├── subst.td │ ├── subst2.td │ ├── trydecode-emission.td │ ├── trydecode-emission2.td │ ├── trydecode-emission3.td │ └── usevalname.td ├── TestRunner.sh ├── ThinLTO │ └── X86 │ │ ├── Inputs │ │ ├── alias_import.ll │ │ ├── alias_resolution.ll │ │ ├── autoupgrade.bc │ │ ├── cache-icall.ll │ │ ├── cache-import-lists1.ll │ │ ├── cache-import-lists2.ll │ │ ├── cache-typeid-resolutions-import.ll │ │ ├── cache-typeid-resolutions1.ll │ │ ├── cache-typeid-resolutions2.ll │ │ ├── cache-typeid-resolutions3.ll │ │ ├── cache.ll │ │ ├── crash_debuginfo.ll │ │ ├── deadstrip.ll │ │ ├── debuginfo-compositetype-import.ll │ │ ├── debuginfo-cu-import.ll │ │ ├── diagnostic-handler-remarks.ll │ │ ├── dicompositetype-unique-alias.ll │ │ ├── dicompositetype-unique.ll │ │ ├── dicompositetype-unique2.ll │ │ ├── distributed_import.ll │ │ ├── distributed_indexes.ll │ │ ├── drop-debug-info.bc │ │ ├── drop-debug-info.ll │ │ ├── emit_imports.ll │ │ ├── empty.ll │ │ ├── empty_module_with_cache.ll │ │ ├── export.ll │ │ ├── funcimport-tbaa.ll │ │ ├── funcimport.ll │ │ ├── funcimport2.ll │ │ ├── import_opaque_type.ll │ │ ├── lazyload_metadata.ll │ │ ├── linkonce_aliasee_ref_import.ll │ │ ├── linkonce_resolution_comdat.ll │ │ ├── llvm.used.ll │ │ ├── local_name_conflict1.ll │ │ ├── local_name_conflict2.ll │ │ ├── merge-triple.ll │ │ ├── module_asm.ll │ │ ├── module_asm2.ll │ │ ├── noinline.ll │ │ ├── personality-local.ll │ │ ├── personality.ll │ │ ├── reference_non_importable.ll │ │ ├── referenced_by_constant.ll │ │ ├── section.ll │ │ ├── select_right_alias_definition1.ll │ │ ├── select_right_alias_definition2.ll │ │ └── weak_resolution.ll │ │ ├── alias_import.ll │ │ ├── alias_resolution.ll │ │ ├── autoupgrade.ll │ │ ├── cache-config.ll │ │ ├── cache-icall.ll │ │ ├── cache-import-lists.ll │ │ ├── cache-typeid-resolutions.ll │ │ ├── cache.ll │ │ ├── cfi-icall.ll │ │ ├── crash_debuginfo.ll │ │ ├── deadstrip.ll │ │ ├── debuginfo-compositetype-import.ll │ │ ├── debuginfo-cu-import.ll │ │ ├── diagnostic-handler-remarks-with-hotness.ll │ │ ├── diagnostic-handler-remarks.ll │ │ ├── dicompositetype-unique-alias.ll │ │ ├── dicompositetype-unique.ll │ │ ├── dicompositetype-unique2.ll │ │ ├── distributed_import.ll │ │ ├── distributed_indexes.ll │ │ ├── drop-debug-info.ll │ │ ├── emit_imports.ll │ │ ├── empty-module.ll │ │ ├── empty_module_with_cache.ll │ │ ├── export.ll │ │ ├── funcimport-tbaa.ll │ │ ├── funcimport.ll │ │ ├── funcimport2.ll │ │ ├── import_opaque_type.ll │ │ ├── internalize.ll │ │ ├── lazyload_metadata.ll │ │ ├── linkonce_aliasee_ref_import.ll │ │ ├── linkonce_resolution_comdat.ll │ │ ├── lit.local.cfg │ │ ├── llvm.used.ll │ │ ├── local_name_conflict.ll │ │ ├── merge-triple.ll │ │ ├── module_asm2.ll │ │ ├── module_asm_glob.ll │ │ ├── newpm-basic.ll │ │ ├── noinline.ll │ │ ├── personality-local.ll │ │ ├── personality.ll │ │ ├── prefix_replace.ll │ │ ├── reference_non_importable.ll │ │ ├── referenced_by_constant.ll │ │ ├── save_objects.ll │ │ ├── section.ll │ │ ├── tli-nobuiltin.ll │ │ ├── weak_resolution.ll │ │ └── weak_resolution_single.ll ├── 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 │ │ ├── 2016-09-06.ll │ │ ├── 2017-08-21-DomTree-deletions.ll │ │ ├── basictest.ll │ │ ├── basictest1.ll │ │ ├── basictest2.ll │ │ ├── dce_pure_call.ll │ │ ├── dce_pure_invoke.ll │ │ ├── debug-info-intrinsic.ll │ │ ├── delete-profiling-calls-to-constant.ll │ │ ├── domtree-DoubleDeletion.ll │ │ ├── unreachable-function.ll │ │ └── unreachable.ll │ ├── AddDiscriminators │ │ ├── basic.ll │ │ ├── call-nested.ll │ │ ├── call.ll │ │ ├── dbg-declare-discriminator.ll │ │ ├── diamond.ll │ │ ├── first-only.ll │ │ ├── inlined.ll │ │ ├── memcpy-discriminator.ll │ │ ├── multiple.ll │ │ ├── no-discriminators.ll │ │ └── oneline.ll │ ├── AlignmentFromAssumptions │ │ ├── simple.ll │ │ ├── simple32.ll │ │ └── start-unk.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 │ │ ├── chained.ll │ │ ├── control-flow.ll │ │ ├── control-flow2.ll │ │ ├── crash.ll │ │ ├── dbg.ll │ │ ├── fp80.ll │ │ ├── inalloca.ll │ │ ├── pr27568.ll │ │ ├── pr3085.ll │ │ ├── pr32917.ll │ │ ├── pr33641_remove_arg_dbgvalue.ll │ │ ├── profile.ll │ │ ├── reserve-tbaa.ll │ │ ├── sret.ll │ │ ├── tail.ll │ │ └── variadic.ll │ ├── AtomicExpand │ │ ├── ARM │ │ │ ├── atomic-expansion-v7.ll │ │ │ ├── atomic-expansion-v8.ll │ │ │ ├── cmpxchg-weak.ll │ │ │ └── lit.local.cfg │ │ ├── SPARC │ │ │ ├── libcalls.ll │ │ │ ├── lit.local.cfg │ │ │ └── partword.ll │ │ └── X86 │ │ │ ├── expand-atomic-non-integer.ll │ │ │ ├── expand-atomic-rmw-initial-load.ll │ │ │ └── lit.local.cfg │ ├── BDCE │ │ ├── basic.ll │ │ ├── dbg-multipleuses.ll │ │ ├── dce-pure.ll │ │ ├── dead-void-ro.ll │ │ ├── invalidate-assumptions.ll │ │ ├── order.ll │ │ └── pr26587.ll │ ├── BranchFolding │ │ └── 2007-10-19-InlineAsmDirectives.ll │ ├── CallSiteSplitting │ │ ├── callsite-no-or-structure.ll │ │ ├── callsite-no-splitting.ll │ │ ├── callsite-split-debug.ll │ │ ├── callsite-split-or-phi.ll │ │ └── callsite-split.ll │ ├── CalledValuePropagation │ │ ├── simple-arguments.ll │ │ ├── simple-memory.ll │ │ └── simple-select.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-UpdatePHIsOutsideRegion.ll │ │ ├── 2004-03-18-InvokeHandling.ll │ │ ├── 2004-08-12-BlockExtractPHI.ll │ │ ├── 2004-11-12-InvokeExtract.ll │ │ ├── BlockAddressReference.ll │ │ ├── BlockAddressSelfReference.ll │ │ ├── ExtractedFnEntryCount.ll │ │ ├── MultipleExitBranchProb.ll │ │ ├── PartialInlineAlloca.ll │ │ ├── PartialInlineAlloca2.ll │ │ ├── PartialInlineAlloca4.ll │ │ ├── PartialInlineAlloca5.ll │ │ ├── PartialInlineAnd.ll │ │ ├── PartialInlineAndOr.ll │ │ ├── PartialInlineCallRef.ll │ │ ├── PartialInlineDebug.ll │ │ ├── PartialInlineEntryUpdate.ll │ │ ├── PartialInlineHighCost.ll │ │ ├── PartialInlineLiveAcross.ll │ │ ├── PartialInlineNoInline.ll │ │ ├── PartialInlineNoLiveOut.ll │ │ ├── PartialInlineOptRemark.ll │ │ ├── PartialInlineOr.ll │ │ ├── PartialInlineOrAnd.ll │ │ ├── PartialInlinePGOMultiRegion.ll │ │ ├── PartialInlinePGORegion.ll │ │ ├── PartialInlineVarArg.ll │ │ ├── PartialInlineVarArgsDebug.ll │ │ ├── SingleCondition.ll │ │ ├── X86 │ │ │ ├── InheritTargetAttributes.ll │ │ │ └── lit.local.cfg │ │ ├── cost.ll │ │ ├── cost_meta.ll │ │ ├── live_shrink.ll │ │ ├── live_shrink_gep.ll │ │ ├── live_shrink_hoist.ll │ │ ├── live_shrink_multiple.ll │ │ ├── live_shrink_unsafe.ll │ │ └── unreachable-block.ll │ ├── CodeGenPrepare │ │ ├── 2008-11-24-RAUW-Self.ll │ │ ├── AArch64 │ │ │ ├── free-zext.ll │ │ │ ├── lit.local.cfg │ │ │ ├── trunc-weird-user.ll │ │ │ └── widen_switch.ll │ │ ├── AMDGPU │ │ │ ├── lit.local.cfg │ │ │ ├── no-sink-addrspacecast.ll │ │ │ └── sink-addrspacecast.ll │ │ ├── ARM │ │ │ ├── bitreverse-recognize.ll │ │ │ ├── lit.local.cfg │ │ │ └── sink-addrmode.ll │ │ ├── Mips │ │ │ ├── lit.local.cfg │ │ │ └── pr35209.ll │ │ ├── NVPTX │ │ │ ├── bypass-slow-div-constant-numerator.ll │ │ │ ├── bypass-slow-div-not-exact.ll │ │ │ ├── bypass-slow-div-special-cases.ll │ │ │ ├── bypass-slow-div.ll │ │ │ ├── dont-sink-nop-addrspacecast.ll │ │ │ └── lit.local.cfg │ │ ├── X86 │ │ │ ├── catchpad-phi-cast.ll │ │ │ ├── computedgoto.ll │ │ │ ├── cttz-ctlz.ll │ │ │ ├── extend-sink-hoist.ll │ │ │ ├── fcmp-sinking.ll │ │ │ ├── lit.local.cfg │ │ │ ├── memset_chk-simplify-nobuiltin.ll │ │ │ ├── pr27536.ll │ │ │ ├── pr35658.ll │ │ │ ├── select.ll │ │ │ ├── sink-addrmode-base.ll │ │ │ ├── sink-addrmode-select.ll │ │ │ ├── sink-addrmode.ll │ │ │ ├── sink-addrspacecast.ll │ │ │ ├── widen_switch.ll │ │ │ └── x86-shuffle-sink.ll │ │ ├── basic.ll │ │ ├── bitreverse-hang.ll │ │ ├── builtin-condition.ll │ │ ├── crash-on-large-allocas.ll │ │ ├── dom-tree.ll │ │ ├── gep-unmerging.ll │ │ ├── invariant.group.ll │ │ ├── nonintegral.ll │ │ ├── overflow-intrinsics.ll │ │ ├── section-samplepgo.ll │ │ ├── section.ll │ │ ├── skip-merging-case-block.ll │ │ ├── split-indirect-loop.ll │ │ └── statepoint-relocate.ll │ ├── 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 │ │ ├── InsertElement.ll │ │ ├── basictest.ll │ │ ├── bitcast.ll │ │ ├── bswap.ll │ │ ├── calls-math-finite.ll │ │ ├── calls.ll │ │ ├── constant-expr.ll │ │ ├── convert-from-fp16.ll │ │ ├── div-zero.ll │ │ ├── extractvalue.ll │ │ ├── float-to-ptr-cast.ll │ │ ├── insertvalue.ll │ │ ├── loads.ll │ │ ├── logicaltest.ll │ │ ├── overflow-ops.ll │ │ ├── phi.ll │ │ ├── remtest.ll │ │ ├── shift.ll │ │ ├── sse.ll │ │ └── trunc_vec.ll │ ├── ConstantHoisting │ │ ├── AArch64 │ │ │ ├── const-addr.ll │ │ │ ├── large-immediate.ll │ │ │ └── lit.local.cfg │ │ ├── ARM │ │ │ ├── bad-cases.ll │ │ │ ├── const-addr-no-neg-offset.ll │ │ │ ├── gep-struct-index.ll │ │ │ ├── insertvalue.ll │ │ │ └── lit.local.cfg │ │ ├── PowerPC │ │ │ ├── const-base-addr.ll │ │ │ ├── lit.local.cfg │ │ │ └── masks.ll │ │ └── X86 │ │ │ ├── cast-inst.ll │ │ │ ├── const-base-addr.ll │ │ │ ├── dbg-dominatingblock.ll │ │ │ ├── dbg-samebasicblock.ll │ │ │ ├── delete-dead-cast-inst.ll │ │ │ ├── ehpad.ll │ │ │ ├── large-immediate.ll │ │ │ ├── lit.local.cfg │ │ │ ├── phi.ll │ │ │ └── stackmap.ll │ ├── ConstantMerge │ │ ├── 2002-09-23-CPR-Update.ll │ │ ├── 2003-10-28-MergeExternalConstants.ll │ │ ├── 2011-01-15-EitherOrder.ll │ │ ├── align.ll │ │ ├── dont-merge.ll │ │ ├── merge-both.ll │ │ ├── merge-dbg.ll │ │ └── unnamed-addr.ll │ ├── Coroutines │ │ ├── ArgAddr.ll │ │ ├── coro-catchswitch.ll │ │ ├── coro-cleanup.ll │ │ ├── coro-debug.ll │ │ ├── coro-early.ll │ │ ├── coro-eh-aware-edge-split.ll │ │ ├── coro-elide.ll │ │ ├── coro-frame.ll │ │ ├── coro-heap-elide.ll │ │ ├── coro-materialize.ll │ │ ├── coro-spill-after-phi.ll │ │ ├── coro-spill-corobegin.ll │ │ ├── coro-split-00.ll │ │ ├── coro-split-01.ll │ │ ├── coro-split-02.ll │ │ ├── coro-split-dbg.ll │ │ ├── coro-split-eh.ll │ │ ├── coro-split-musttail.ll │ │ ├── ex0.ll │ │ ├── ex1.ll │ │ ├── ex2.ll │ │ ├── ex3.ll │ │ ├── ex4.ll │ │ ├── ex5.ll │ │ ├── no-suspend.ll │ │ ├── phi-coro-end.ll │ │ ├── restart-trigger.ll │ │ └── smoketest.ll │ ├── CorrelatedValuePropagation │ │ ├── 2010-09-02-Trunc.ll │ │ ├── 2010-09-26-MergeConstantRange.ll │ │ ├── add.ll │ │ ├── alloca.ll │ │ ├── ashr.ll │ │ ├── basic.ll │ │ ├── conflict.ll │ │ ├── crash.ll │ │ ├── guards.ll │ │ ├── icmp.ll │ │ ├── non-null.ll │ │ ├── overflows.ll │ │ ├── range.ll │ │ ├── sdiv.ll │ │ ├── select.ll │ │ └── srem.ll │ ├── CrossDSOCFI │ │ ├── basic.ll │ │ ├── cfi_functions.ll │ │ └── thumb.ll │ ├── DCE │ │ ├── basic.ll │ │ ├── calls-errno.ll │ │ ├── guards.ll │ │ └── int_sideeffect.ll │ ├── 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 │ │ ├── 2013-05-17-VarargsAndBlockAddress.ll │ │ ├── aggregates.ll │ │ ├── basictest.ll │ │ ├── call_profile.ll │ │ ├── canon.ll │ │ ├── comdat.ll │ │ ├── dbginfo.ll │ │ ├── dead_vaargs.ll │ │ ├── deadexternal.ll │ │ ├── deadretval.ll │ │ ├── deadretval2.ll │ │ ├── funclet.ll │ │ ├── keepalive.ll │ │ ├── linkage.ll │ │ ├── multdeadretval.ll │ │ ├── naked_functions.ll │ │ ├── operandbundle.ll │ │ ├── returned.ll │ │ └── variadic_safety.ll │ ├── DeadStoreElimination │ │ ├── 2011-03-25-DSEMiscompile.ll │ │ ├── 2011-09-06-EndOfFunction.ll │ │ ├── 2011-09-06-MemCpy.ll │ │ ├── 2016-07-17-UseAfterFree.ll │ │ ├── OverwriteStoreBegin.ll │ │ ├── OverwriteStoreEnd.ll │ │ ├── PartialStore.ll │ │ ├── atomic.ll │ │ ├── calloc-store.ll │ │ ├── combined-partial-overwrites.ll │ │ ├── const-pointers.ll │ │ ├── crash.ll │ │ ├── cs-cs-aliasing.ll │ │ ├── dominate.ll │ │ ├── fence.ll │ │ ├── free.ll │ │ ├── inst-limits.ll │ │ ├── int_sideeffect.ll │ │ ├── invariant.start.ll │ │ ├── libcalls.ll │ │ ├── lifetime.ll │ │ ├── mda-with-dbg-values.ll │ │ ├── memintrinsics.ll │ │ ├── merge-stores-big-endian.ll │ │ ├── merge-stores.ll │ │ ├── no-targetdata.ll │ │ ├── operand-bundles.ll │ │ ├── pr11390.ll │ │ └── simple.ll │ ├── DivRemPairs │ │ ├── PowerPC │ │ │ ├── div-rem-pairs.ll │ │ │ └── lit.local.cfg │ │ └── X86 │ │ │ ├── div-rem-pairs.ll │ │ │ └── lit.local.cfg │ ├── EarlyCSE │ │ ├── AArch64 │ │ │ ├── intrinsics.ll │ │ │ ├── ldstN.ll │ │ │ └── lit.local.cfg │ │ ├── atomics.ll │ │ ├── basic.ll │ │ ├── commute.ll │ │ ├── conditional.ll │ │ ├── const-speculation.ll │ │ ├── edge.ll │ │ ├── fence.ll │ │ ├── flags.ll │ │ ├── floatingpoint.ll │ │ ├── globalsaa-memoryssa.ll │ │ ├── guards.ll │ │ ├── instsimplify-dom.ll │ │ ├── int_sideeffect.ll │ │ ├── invariant-loads.ll │ │ ├── invariant.start.ll │ │ ├── memoryssa.ll │ │ ├── pr33406.ll │ │ ├── read-reg.ll │ │ └── readnone-mayunwind.ll │ ├── EliminateAvailableExternally │ │ └── visibility.ll │ ├── EntryExitInstrumenter │ │ ├── debug-info.ll │ │ └── mcount.ll │ ├── ExpandMemCmp │ │ └── X86 │ │ │ ├── lit.local.cfg │ │ │ └── memcmp.ll │ ├── Float2Int │ │ ├── basic.ll │ │ ├── float2int-optnone.ll │ │ └── toolarge.ll │ ├── ForcedFunctionAttrs │ │ └── forced.ll │ ├── FunctionAttrs │ │ ├── 2008-09-03-Mutual.ll │ │ ├── 2008-09-03-ReadNone.ll │ │ ├── 2008-09-03-ReadOnly.ll │ │ ├── 2008-09-13-VolatileRead.ll │ │ ├── 2008-12-29-Constant.ll │ │ ├── 2009-01-02-LocalStores.ll │ │ ├── 2010-10-30-volatile.ll │ │ ├── assume.ll │ │ ├── atomic.ll │ │ ├── comdat-ipo.ll │ │ ├── convergent.ll │ │ ├── int_sideeffect.ll │ │ ├── nocapture.ll │ │ ├── nonnull-global.ll │ │ ├── nonnull.ll │ │ ├── norecurse.ll │ │ ├── operand-bundles-scc.ll │ │ ├── optnone-simple.ll │ │ ├── optnone.ll │ │ ├── out-of-bounds-iterator-bug.ll │ │ ├── readattrs.ll │ │ ├── readnone.ll │ │ └── returned.ll │ ├── FunctionImport │ │ ├── Inputs │ │ │ ├── adjustable_threshold.ll │ │ │ ├── funcimport.ll │ │ │ ├── funcimport_alias.ll │ │ │ ├── funcimport_debug.ll │ │ │ ├── funcimport_var2.ll │ │ │ ├── hotness_based_import.ll │ │ │ ├── hotness_based_import2.ll │ │ │ └── inlineasm.ll │ │ ├── adjustable_threshold.ll │ │ ├── funcimport.ll │ │ ├── funcimport_alias.ll │ │ ├── funcimport_debug.ll │ │ ├── funcimport_var.ll │ │ ├── hotness_based_import.ll │ │ ├── hotness_based_import2.ll │ │ └── inlineasm.ll │ ├── GCOVProfiling │ │ ├── function-numbering.ll │ │ ├── global-ctor.ll │ │ ├── linezero.ll │ │ ├── linkagename.ll │ │ ├── modules.ll │ │ ├── return-block.ll │ │ ├── three-element-mdnode.ll │ │ └── version.ll │ ├── 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-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-03-10-PREOnVoid.ll │ │ ├── 2009-07-13-MemDepSortFail.ll │ │ ├── 2009-11-12-MemDepMallocBitCast.ll │ │ ├── 2010-03-31-RedundantPHIs.ll │ │ ├── 2010-05-08-OneBit.ll │ │ ├── 2010-11-13-Simplify.ll │ │ ├── 2011-04-27-phioperands.ll │ │ ├── 2011-07-07-MatchIntrinsicExtract.ll │ │ ├── 2011-09-07-TypeIdFor.ll │ │ ├── 2012-05-22-PreCrash.ll │ │ ├── 2016-08-30-MaskedScatterGather.ll │ │ ├── MemdepMiscompile.ll │ │ ├── PRE │ │ │ ├── 2009-02-17-LoadPRECrash.ll │ │ │ ├── 2009-06-17-InvalidPRE.ll │ │ │ ├── 2011-06-01-NonLocalMemdepMiscompile.ll │ │ │ ├── 2017-06-28-pre-load-dbgloc.ll │ │ │ ├── 2017-10-16-LoadPRECrash.ll │ │ │ ├── atomic.ll │ │ │ ├── invariant-load.ll │ │ │ ├── load-metadata.ll │ │ │ ├── load-pre-align.ll │ │ │ ├── load-pre-licm.ll │ │ │ ├── load-pre-nonlocal.ll │ │ │ ├── local-pre.ll │ │ │ ├── lpre-call-wrap-2.ll │ │ │ ├── lpre-call-wrap.ll │ │ │ ├── nonintegral.ll │ │ │ ├── phi-translate-2.ll │ │ │ ├── phi-translate.ll │ │ │ ├── pre-basic-add.ll │ │ │ ├── pre-gep-load.ll │ │ │ ├── pre-jt-add.ll │ │ │ ├── pre-load-guards.ll │ │ │ ├── pre-load-implicit-cf-updates.ll │ │ │ ├── pre-load.ll │ │ │ ├── pre-no-cost-phi.ll │ │ │ ├── pre-poison-add.ll │ │ │ ├── pre-single-pred.ll │ │ │ ├── preserve-tbaa.ll │ │ │ ├── rle-addrspace-cast.ll │ │ │ ├── rle-phi-translate.ll │ │ │ ├── rle-semidominated.ll │ │ │ ├── rle.ll │ │ │ └── volatile.ll │ │ ├── assume-equal.ll │ │ ├── basic-undef-test.ll │ │ ├── basic.ll │ │ ├── big-endian.ll │ │ ├── bitcast-of-call.ll │ │ ├── br-identical.ll │ │ ├── calloc-load-removal.ll │ │ ├── calls-nonlocal.ll │ │ ├── calls-readonly.ll │ │ ├── commute.ll │ │ ├── cond_br.ll │ │ ├── cond_br2.ll │ │ ├── condprop.ll │ │ ├── crash-no-aa.ll │ │ ├── crash.ll │ │ ├── dbg-redundant-load.ll │ │ ├── debugloc.ll │ │ ├── edge.ll │ │ ├── fence.ll │ │ ├── flags.ll │ │ ├── fold-const-expr.ll │ │ ├── fpmath.ll │ │ ├── funclet.ll │ │ ├── int_sideeffect.ll │ │ ├── invariant.group.ll │ │ ├── invariant.start.ll │ │ ├── lifetime-simple.ll │ │ ├── load-constant-mem.ll │ │ ├── load-from-unreachable-predecessor.ll │ │ ├── malloc-load-removal.ll │ │ ├── no_speculative_loads_with_asan.ll │ │ ├── noalias.ll │ │ ├── non-integral-pointers.ll │ │ ├── non-local-offset.ll │ │ ├── nonescaping-malloc.ll │ │ ├── null-aliases-nothing.ll │ │ ├── opt-remarks.ll │ │ ├── phi-translate-partial-alias.ll │ │ ├── pr10820.ll │ │ ├── pr12979.ll │ │ ├── pr14166.ll │ │ ├── pr17732.ll │ │ ├── pr17852.ll │ │ ├── pr24397.ll │ │ ├── pr24426.ll │ │ ├── pr25440.ll │ │ ├── pr28562.ll │ │ ├── pr32314.ll │ │ ├── pr34908.ll │ │ ├── pre-compare.ll │ │ ├── pre-new-inst.ll │ │ ├── propagate-ir-flags.ll │ │ ├── range.ll │ │ ├── readattrs.ll │ │ ├── rle-must-alias.ll │ │ ├── rle-no-phi-translate.ll │ │ ├── rle-nonlocal.ll │ │ ├── stale-loop-info.ll │ │ ├── tbaa.ll │ │ ├── unreachable_block_infinite_loop.ll │ │ └── volatile-nonvolatile.ll │ ├── GVNHoist │ │ ├── hoist-call.ll │ │ ├── hoist-convergent.ll │ │ ├── hoist-inline.ll │ │ ├── hoist-md.ll │ │ ├── hoist-more-than-two-branches.ll │ │ ├── hoist-mssa.ll │ │ ├── hoist-newgvn.ll │ │ ├── hoist-pr20242.ll │ │ ├── hoist-pr22005.ll │ │ ├── hoist-pr28606.ll │ │ ├── hoist-pr28933.ll │ │ ├── hoist-pr31891.ll │ │ ├── hoist-recursive-geps.ll │ │ ├── hoist-unsafe-pr31729.ll │ │ ├── hoist-very-busy.ll │ │ ├── hoist.ll │ │ ├── infinite-loop-direct.ll │ │ ├── infinite-loop-indirect.ll │ │ ├── int_sideeffect.ll │ │ ├── ld_hoist1.ll │ │ ├── ld_hoist_st_sink.ll │ │ ├── pr28626.ll │ │ ├── pr29031.ll │ │ ├── pr29034.ll │ │ ├── pr30216.ll │ │ ├── pr30499.ll │ │ └── pr35222-hoist-load.ll │ ├── GVNSink │ │ ├── dither.ll │ │ ├── indirect-call.ll │ │ ├── int_sideeffect.ll │ │ ├── sink-common-code.ll │ │ └── struct.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 │ │ ├── basicvariabletest.ll │ │ ├── comdats.ll │ │ ├── complex-constantexpr.ll │ │ ├── crash-assertingvh.ll │ │ ├── deadblockaddr.ll │ │ ├── externally_available.ll │ │ ├── global-ifunc.ll │ │ ├── global_ctors.ll │ │ ├── global_ctors_integration.ll │ │ └── indirectbr.ll │ ├── GlobalMerge │ │ ├── basic.ll │ │ └── debug-info.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-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 │ │ ├── 2010-10-19-WeakOdr.ll │ │ ├── 2011-04-09-EmptyGlobalCtors.ll │ │ ├── 2012-05-11-blockaddress.ll │ │ ├── GSROA-section.ll │ │ ├── MallocSROA-section.ll │ │ ├── SROA-section.ll │ │ ├── alias-resolve.ll │ │ ├── alias-used-address-space.ll │ │ ├── alias-used-section.ll │ │ ├── alias-used.ll │ │ ├── array-elem-refs.ll │ │ ├── assume.ll │ │ ├── atexit.ll │ │ ├── atomic.ll │ │ ├── available_externally_global_ctors.ll │ │ ├── basictest.ll │ │ ├── blockaddress.ll │ │ ├── cleanup-pointer-root-users.ll │ │ ├── compiler-used.ll │ │ ├── constantexpr-dangle.ll │ │ ├── constantfold-initializers.ll │ │ ├── crash-2.ll │ │ ├── crash.ll │ │ ├── ctor-list-opt-constexpr.ll │ │ ├── ctor-list-opt-inbounds.ll │ │ ├── ctor-list-opt.ll │ │ ├── cxx-dtor.ll │ │ ├── deaddeclaration.ll │ │ ├── deadfunction.ll │ │ ├── deadglobal-2.ll │ │ ├── deadglobal.ll │ │ ├── externally-initialized-aggregate.ll │ │ ├── externally-initialized-global-ctr.ll │ │ ├── externally-initialized.ll │ │ ├── fastcc.ll │ │ ├── global-demotion.ll │ │ ├── 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 │ │ ├── int_sideeffect.ll │ │ ├── integer-bool-dwarf.ll │ │ ├── integer-bool.ll │ │ ├── invariant-nodatalayout.ll │ │ ├── invariant.group.barrier.ll │ │ ├── invariant.ll │ │ ├── invoke.ll │ │ ├── iterate.ll │ │ ├── load-store-global.ll │ │ ├── localize-constexpr-debuginfo.ll │ │ ├── localize-constexpr.ll │ │ ├── malloc-promote-1.ll │ │ ├── malloc-promote-2.ll │ │ ├── malloc-promote-3.ll │ │ ├── memcpy.ll │ │ ├── memset-null.ll │ │ ├── memset.ll │ │ ├── metadata.ll │ │ ├── phi-select.ll │ │ ├── pr21191.ll │ │ ├── pr33686.ll │ │ ├── preserve-comdats.ll │ │ ├── shrink-address-to-bool.ll │ │ ├── storepointer-compare.ll │ │ ├── storepointer.ll │ │ ├── tls.ll │ │ ├── trivialstore.ll │ │ ├── undef-init.ll │ │ ├── unnamed-addr.ll │ │ └── zeroinitializer-gep-load.ll │ ├── GlobalSplit │ │ ├── basic.ll │ │ ├── non-beneficial.ll │ │ └── nonlocal.ll │ ├── GuardWidening │ │ ├── basic.ll │ │ └── range-check-merging.ll │ ├── IPConstantProp │ │ ├── 2008-06-09-WeakProp.ll │ │ ├── 2009-09-24-byval-ptr.ll │ │ ├── PR16052.ll │ │ ├── PR26044.ll │ │ ├── comdat-ipo.ll │ │ ├── dangling-block-address.ll │ │ ├── deadarg.ll │ │ ├── fp-bc-icmp-const-fold.ll │ │ ├── global.ll │ │ ├── naked-return.ll │ │ ├── recursion.ll │ │ ├── return-argument.ll │ │ ├── return-constant.ll │ │ ├── return-constants.ll │ │ └── user-with-multiple-uses.ll │ ├── IRCE │ │ ├── add-metadata-pre-post-loops.ll │ │ ├── bad-loop-structure.ll │ │ ├── bad_expander.ll │ │ ├── bug-loop-varying-upper-limit.ll │ │ ├── bug-mismatched-types.ll │ │ ├── clamp.ll │ │ ├── conjunctive-checks.ll │ │ ├── correct-loop-info.ll │ │ ├── decrementing-loop.ll │ │ ├── empty_ranges.ll │ │ ├── eq_ne.ll │ │ ├── low-becount.ll │ │ ├── multiple-access-no-preloop.ll │ │ ├── not-likely-taken.ll │ │ ├── only-lower-check.ll │ │ ├── only-upper-check.ll │ │ ├── pre_post_loops.ll │ │ ├── range_intersect_miscompile.ll │ │ ├── ranges_of_different_types.ll │ │ ├── single-access-no-preloop.ll │ │ ├── single-access-with-preloop.ll │ │ ├── skip-profitability-checks.ll │ │ ├── stride_more_than_1.ll │ │ ├── unhandled.ll │ │ ├── unsigned_comparisons_ugt.ll │ │ ├── unsigned_comparisons_ult.ll │ │ └── with-parent-loops.ll │ ├── IndVarSimplify │ │ ├── 2002-09-09-PointerIndVar.ll │ │ ├── 2003-04-16-ExprAnalysis.ll │ │ ├── 2003-09-23-NotAtTop.ll │ │ ├── 2003-12-10-RemoveInstrCrash.ll │ │ ├── 2003-12-15-Crash.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 │ │ ├── 2011-09-10-widen-nsw.ll │ │ ├── 2011-09-19-vectoriv.ll │ │ ├── 2011-09-27-hoistsext.ll │ │ ├── 2011-10-27-lftrnull.ll │ │ ├── 2011-11-01-lftrptr.ll │ │ ├── 2011-11-15-multiexit.ll │ │ ├── 2011-11-17-selfphi.ll │ │ ├── 2012-07-17-lftr-undef.ll │ │ ├── 2012-10-19-congruent-constant.ll │ │ ├── 2014-06-21-congruent-constant.ll │ │ ├── AMDGPU │ │ │ ├── lit.local.cfg │ │ │ └── no-widen-to-i64.ll │ │ ├── NVPTX │ │ │ ├── lit.local.cfg │ │ │ └── no-widen-expensive.ll │ │ ├── ada-loops.ll │ │ ├── ashr-tripcount.ll │ │ ├── avoid-i0.ll │ │ ├── backedge-on-min-max.ll │ │ ├── bec-cmp.ll │ │ ├── canonicalize-cmp.ll │ │ ├── casted-argument.ll │ │ ├── const_phi.ll │ │ ├── constant-fold.ll │ │ ├── crash.ll │ │ ├── dangling-use.ll │ │ ├── divide-pointer.ll │ │ ├── dont-recompute.ll │ │ ├── elim-extend.ll │ │ ├── eliminate-comparison.ll │ │ ├── eliminate-max.ll │ │ ├── eliminate-rem.ll │ │ ├── exit_value_test2.ll │ │ ├── exit_value_test3.ll │ │ ├── exit_value_tests.ll │ │ ├── floating-point-iv.ll │ │ ├── huge_muls.ll │ │ ├── indirectbr.ll │ │ ├── interesting-invoke-use.ll │ │ ├── iterationCount_zext_or_trunc.ll │ │ ├── iv-fold.ll │ │ ├── iv-sext.ll │ │ ├── iv-widen-elim-ext.ll │ │ ├── iv-widen.ll │ │ ├── iv-zext.ll │ │ ├── lcssa-preservation.ll │ │ ├── lftr-address-space-pointers.ll │ │ ├── lftr-extend-const.ll │ │ ├── lftr-other-uses.ll │ │ ├── lftr-promote.ll │ │ ├── lftr-reuse.ll │ │ ├── lftr-udiv-tripcount.ll │ │ ├── lftr-wide-trip-count.ll │ │ ├── lftr-zext.ll │ │ ├── lftr_disabled.ll │ │ ├── lftr_simple.ll │ │ ├── loop-invariant-conditions.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 │ │ ├── lrev-existing-umin.ll │ │ ├── masked-iv.ll │ │ ├── no-iv-rewrite.ll │ │ ├── overflow-intrinsics.ll │ │ ├── phi-uses-value-multiple-times.ll │ │ ├── polynomial-expand.ll │ │ ├── post-inc-range.ll │ │ ├── pr18223.ll │ │ ├── pr20680.ll │ │ ├── pr22222.ll │ │ ├── pr24356.ll │ │ ├── pr24783.ll │ │ ├── pr24804.ll │ │ ├── pr24952.ll │ │ ├── pr24956.ll │ │ ├── pr25047.ll │ │ ├── pr25051.ll │ │ ├── pr25060.ll │ │ ├── pr25360.ll │ │ ├── pr25421.ll │ │ ├── pr25576.ll │ │ ├── pr25578.ll │ │ ├── pr26207.ll │ │ ├── pr26973.ll │ │ ├── pr26974.ll │ │ ├── pr27133.ll │ │ ├── pr28935.ll │ │ ├── pr32045.ll │ │ ├── pr35406.ll │ │ ├── preserve-signed-wrap.ll │ │ ├── promote-iv-to-eliminate-casts.ll │ │ ├── replace-iv-with-loop-invariant.ll │ │ ├── replace-sdiv-by-udiv.ll │ │ ├── replace-srem-by-urem.ll │ │ ├── rewrite-loop-exit-value.ll │ │ ├── scev-phi-debug-info.ll │ │ ├── scevexpander-phi-base-case.ll │ │ ├── sharpen-range.ll │ │ ├── shrunk-constant.ll │ │ ├── signed-trip-count.ll │ │ ├── single-element-range.ll │ │ ├── sink-alloca.ll │ │ ├── sink-trapping.ll │ │ ├── strengthen-overflow.ll │ │ ├── tripcount_compute.ll │ │ ├── tripcount_infinite.ll │ │ ├── udiv-invariant-but-traps.ll │ │ ├── udiv.ll │ │ ├── uglygep.ll │ │ ├── ult-sub-to-eq.ll │ │ ├── use-range-metadata.ll │ │ ├── variable-stride-ivs-0.ll │ │ ├── variable-stride-ivs-1.ll │ │ ├── verify-scev.ll │ │ ├── widen-loop-comp.ll │ │ ├── widen-nsw.ll │ │ └── zext-nuw.ll │ ├── IndirectBrExpand │ │ └── basic.ll │ ├── InferAddressSpaces │ │ ├── AMDGPU │ │ │ ├── basic.ll │ │ │ ├── icmp.ll │ │ │ ├── infer-address-space.ll │ │ │ ├── infer-addrspacecast.ll │ │ │ ├── infer-getelementptr.ll │ │ │ ├── intrinsics.ll │ │ │ ├── lit.local.cfg │ │ │ ├── mem-intrinsics.ll │ │ │ ├── old-pass-regressions.ll │ │ │ ├── select.ll │ │ │ └── volatile.ll │ │ └── NVPTX │ │ │ ├── bug31948.ll │ │ │ ├── clone_constexpr.ll │ │ │ └── lit.local.cfg │ ├── InferFunctionAttrs │ │ ├── annotate.ll │ │ ├── no-proto.ll │ │ └── pr30455.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 │ │ ├── 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-25-WeakInline.ll │ │ ├── 2007-12-19-InlineNoUnwind.ll │ │ ├── 2008-09-02-NoInline.ll │ │ ├── 2009-01-08-NoInlineDynamicAlloca.ll │ │ ├── 2009-01-13-RecursiveInlineCrash.ll │ │ ├── 2009-05-07-CallUsingSelfCrash.ll │ │ ├── 2010-05-12-ValueMap.ll │ │ ├── AArch64 │ │ │ ├── binop.ll │ │ │ ├── ext.ll │ │ │ ├── gep-cost.ll │ │ │ ├── inline-target-attr.ll │ │ │ ├── lit.local.cfg │ │ │ ├── logical-and-or.ll │ │ │ ├── phi.ll │ │ │ ├── select.ll │ │ │ └── switch.ll │ │ ├── AMDGPU │ │ │ ├── inline-target-cpu.ll │ │ │ └── lit.local.cfg │ │ ├── ARM │ │ │ ├── inline-fp.ll │ │ │ ├── inline-target-attr.ll │ │ │ └── lit.local.cfg │ │ ├── PR4909.ll │ │ ├── PowerPC │ │ │ ├── ext.ll │ │ │ └── lit.local.cfg │ │ ├── X86 │ │ │ ├── ext.ll │ │ │ ├── inline-target-attr.ll │ │ │ └── lit.local.cfg │ │ ├── align.ll │ │ ├── alloca-bonus.ll │ │ ├── alloca-dbgdeclare-merge.ll │ │ ├── alloca-dbgdeclare.ll │ │ ├── alloca-in-scc.ll │ │ ├── alloca-merge-align.ll │ │ ├── alloca_test.ll │ │ ├── always-inline.ll │ │ ├── arg-attr-propagation.ll │ │ ├── array-alloca.ll │ │ ├── array_merge.ll │ │ ├── attributes.ll │ │ ├── basictest.ll │ │ ├── bfi-update.ll │ │ ├── blockaddress.ll │ │ ├── byval-tail-call.ll │ │ ├── byval.ll │ │ ├── byval_lifetime.ll │ │ ├── callgraph-update.ll │ │ ├── casts.ll │ │ ├── cfg_preserve_test.ll │ │ ├── cgscc-cycle.ll │ │ ├── cgscc-incremental-invalidate.ll │ │ ├── cgscc-invalidate.ll │ │ ├── cgscc-update.ll │ │ ├── clear-analyses.ll │ │ ├── comdat-ipo.ll │ │ ├── crash-lifetime-marker.ll │ │ ├── crash.ll │ │ ├── crash2.ll │ │ ├── debug-info-duplicate-calls.ll │ │ ├── debug-invoke.ll │ │ ├── delete-call.ll │ │ ├── deopt-bundles.ll │ │ ├── deoptimize-intrinsic-cconv.ll │ │ ├── deoptimize-intrinsic.ll │ │ ├── devirtualize-2.ll │ │ ├── devirtualize-3.ll │ │ ├── devirtualize.ll │ │ ├── dynamic_alloca_test.ll │ │ ├── ephemeral.ll │ │ ├── externally_available.ll │ │ ├── frameescape.ll │ │ ├── function-count-update-2.ll │ │ ├── function-count-update-3.ll │ │ ├── function-count-update.ll │ │ ├── guard-intrinsic.ll │ │ ├── gvn-inline-iteration.ll │ │ ├── ignore-debug-info.ll │ │ ├── inalloca-not-static.ll │ │ ├── inline-assume.ll │ │ ├── inline-byval-bonus.ll │ │ ├── inline-cold-callee.ll │ │ ├── inline-cold-callsite-pgo.ll │ │ ├── inline-cold-callsite-samplepgo.ll │ │ ├── inline-cold-callsite.ll │ │ ├── inline-cold.ll │ │ ├── inline-constexpr-addrspacecast-argument.ll │ │ ├── inline-fast-math-flags.ll │ │ ├── inline-funclets.ll │ │ ├── inline-hot-callee.ll │ │ ├── inline-hot-callsite-2.ll │ │ ├── inline-hot-callsite.ll │ │ ├── inline-indirect.ll │ │ ├── inline-invoke-tail.ll │ │ ├── inline-invoke-with-asm-call.ll │ │ ├── inline-musttail-varargs.ll │ │ ├── inline-optnone.ll │ │ ├── inline-optsize.ll │ │ ├── inline-probe-stack.ll │ │ ├── inline-stack-probe-size.ll │ │ ├── inline-tail.ll │ │ ├── inline-threshold.ll │ │ ├── inline-vla.ll │ │ ├── inline_cleanup.ll │ │ ├── inline_constprop.ll │ │ ├── inline_dbg_declare.ll │ │ ├── inline_dce.ll │ │ ├── inline_invoke.ll │ │ ├── inline_minisize.ll │ │ ├── inline_prune.ll │ │ ├── inline_returns_twice.ll │ │ ├── inline_ssp.ll │ │ ├── inline_stats.ll │ │ ├── inline_unreachable-2.ll │ │ ├── inline_unreachable.ll │ │ ├── internal-scc-members.ll │ │ ├── invoke-cleanup.ll │ │ ├── invoke-combine-clauses.ll │ │ ├── invoke-cost.ll │ │ ├── invoke_test-1.ll │ │ ├── invoke_test-2.ll │ │ ├── invoke_test-3.ll │ │ ├── label-annotation.ll │ │ ├── last-call-bonus.ll │ │ ├── last-call-no-bonus.ll │ │ ├── last-callsite.ll │ │ ├── lifetime-no-datalayout.ll │ │ ├── lifetime.ll │ │ ├── local-as-metadata-undominated-use.ll │ │ ├── monster_scc.ll │ │ ├── nested-inline.ll │ │ ├── noalias-calls.ll │ │ ├── noalias-cs.ll │ │ ├── noalias.ll │ │ ├── noalias2.ll │ │ ├── noinline-recursive-fn.ll │ │ ├── noinline.ll │ │ ├── nonnull.ll │ │ ├── null-function.ll │ │ ├── optimization-remarks-hotness-threshold.ll │ │ ├── optimization-remarks-passed-yaml.ll │ │ ├── optimization-remarks-with-hotness.ll │ │ ├── optimization-remarks-yaml.ll │ │ ├── optimization-remarks.ll │ │ ├── parallel-loop-md.ll │ │ ├── partial-inline-act.ll │ │ ├── pr21206.ll │ │ ├── pr22285.ll │ │ ├── pr26698.ll │ │ ├── pr28298.ll │ │ ├── pr33637.ll │ │ ├── prof-update-instr.ll │ │ ├── prof-update-sample.ll │ │ ├── profile-meta.ll │ │ ├── ptr-diff.ll │ │ ├── recursive.ll │ │ ├── redundant-loads.ll │ │ ├── store-sroa.ll │ │ ├── switch.ll │ │ ├── vector-bonus.ll │ │ ├── vector-no-bonus.ll │ │ └── zero-cost.ll │ ├── InstCombine │ │ ├── 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 │ │ ├── 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-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-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-18-VectorInfLoop.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-08-SingleEltVectorCrash.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-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-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-14-VarArgTrampoline.ll │ │ ├── 2008-01-21-MismatchedCastAndCompare.ll │ │ ├── 2008-01-21-MulTrunc.ll │ │ ├── 2008-01-27-FloatSelect.ll │ │ ├── 2008-02-13-MulURem.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-ShiftOneAndOne.ll │ │ ├── 2008-07-08-SubAnd.ll │ │ ├── 2008-07-08-VolatileLoadMerge.ll │ │ ├── 2008-07-09-SubAndError.ll │ │ ├── 2008-07-10-CastSextBool.ll │ │ ├── 2008-07-11-RemAnd.ll │ │ ├── 2008-07-13-DivZero.ll │ │ ├── 2008-07-16-fsub.ll │ │ ├── 2008-08-05-And.ll │ │ ├── 2008-09-02-VectorCrash.ll │ │ ├── 2008-10-11-DivCompareFold.ll │ │ ├── 2008-10-23-ConstFoldWithoutMask.ll │ │ ├── 2008-11-01-SRemDemandedBits.ll │ │ ├── 2008-11-08-FCmp.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-11-NotInitialized.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-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 │ │ ├── 2010-05-30-memcpy-Struct.ll │ │ ├── 2010-11-01-lshr-mask.ll │ │ ├── 2010-11-21-SizeZeroTypeGEP.ll │ │ ├── 2010-11-23-Distributed.ll │ │ ├── 2011-02-14-InfLoop.ll │ │ ├── 2011-03-08-SRemMinusOneBadOpt.ll │ │ ├── 2011-05-02-VectorBoolean.ll │ │ ├── 2011-05-13-InBoundsGEP.ll │ │ ├── 2011-05-28-swapmulsub.ll │ │ ├── 2011-06-13-nsw-alloca.ll │ │ ├── 2011-09-03-Trampoline.ll │ │ ├── 2011-10-07-AlignPromotion.ll │ │ ├── 2012-01-11-OpaqueBitcastCrash.ll │ │ ├── 2012-02-13-FCmp.ll │ │ ├── 2012-02-28-ICmp.ll │ │ ├── 2012-03-10-InstCombine.ll │ │ ├── 2012-04-24-vselect.ll │ │ ├── 2012-04-30-SRem.ll │ │ ├── 2012-05-28-select-hang.ll │ │ ├── 2012-06-06-LoadOfPHIs.ll │ │ ├── 2012-07-25-LoadPart.ll │ │ ├── 2012-07-30-addrsp-bitcast.ll │ │ ├── 2012-08-28-udiv_ashl.ll │ │ ├── 2012-09-17-ZeroSizedAlloca.ll │ │ ├── 2012-10-25-vector-of-pointers.ll │ │ ├── 2012-12-14-simp-vgep.ll │ │ ├── 2012-3-15-or-xor-constant.ll │ │ ├── 2012-6-7-vselect-bitcast.ll │ │ ├── 2013-03-05-Combine-BitcastTy-Into-Alloca.ll │ │ ├── 2017-07-07-UMul-ZExt.ll │ │ ├── AArch64 │ │ │ ├── 2012-04-23-Neon-Intrinsics.ll │ │ │ └── lit.local.cfg │ │ ├── AMDGPU │ │ │ ├── amdgcn-demanded-vector-elts.ll │ │ │ ├── amdgcn-intrinsics.ll │ │ │ └── lit.local.cfg │ │ ├── ARM │ │ │ ├── 2012-04-23-Neon-Intrinsics.ll │ │ │ ├── constant-fold-hang.ll │ │ │ ├── lit.local.cfg │ │ │ ├── neon-intrinsics.ll │ │ │ ├── strcmp.ll │ │ │ └── strcpy.ll │ │ ├── AddOverFlow.ll │ │ ├── CPP_min_max.ll │ │ ├── ExtractCast.ll │ │ ├── IntPtrCast.ll │ │ ├── JavaCompare.ll │ │ ├── LandingPadClauses.ll │ │ ├── NVPTX │ │ │ ├── lit.local.cfg │ │ │ └── nvvm-intrins.ll │ │ ├── OverlappingInsertvalues.ll │ │ ├── PR30597.ll │ │ ├── PowerPC │ │ │ ├── aligned-altivec.ll │ │ │ ├── aligned-qpx.ll │ │ │ ├── lit.local.cfg │ │ │ └── vsx-unaligned.ll │ │ ├── README.txt │ │ ├── X86 │ │ │ ├── X86FsubCmpCombine.ll │ │ │ ├── blend_x86.ll │ │ │ ├── lit.local.cfg │ │ │ ├── pr2645-1.ll │ │ │ ├── shufflemask-undef.ll │ │ │ ├── x86-avx2.ll │ │ │ ├── x86-avx512.ll │ │ │ ├── x86-bmi-tbm.ll │ │ │ ├── x86-crc32-demanded.ll │ │ │ ├── x86-f16c.ll │ │ │ ├── x86-fma.ll │ │ │ ├── x86-insertps.ll │ │ │ ├── x86-masked-memops.ll │ │ │ ├── x86-movmsk.ll │ │ │ ├── x86-muldq.ll │ │ │ ├── x86-pack.ll │ │ │ ├── x86-pshufb.ll │ │ │ ├── x86-sse.ll │ │ │ ├── x86-sse2.ll │ │ │ ├── x86-sse41.ll │ │ │ ├── x86-sse4a.ll │ │ │ ├── x86-vec_demanded_elts.ll │ │ │ ├── x86-vector-shifts.ll │ │ │ ├── x86-vpermil.ll │ │ │ └── x86-xop.ll │ │ ├── abs-1.ll │ │ ├── abs_abs.ll │ │ ├── add-shrink.ll │ │ ├── add-sitofp.ll │ │ ├── add.ll │ │ ├── add2.ll │ │ ├── add3.ll │ │ ├── addnegneg.ll │ │ ├── addrspacecast.ll │ │ ├── adjust-for-minmax.ll │ │ ├── alias-recursion.ll │ │ ├── align-2d-gep.ll │ │ ├── align-addr.ll │ │ ├── align-attr.ll │ │ ├── align-external.ll │ │ ├── all-bits-shift.ll │ │ ├── alloca-cast-debuginfo.ll │ │ ├── alloca.ll │ │ ├── allocsize-32.ll │ │ ├── allocsize.ll │ │ ├── and-compare.ll │ │ ├── and-fcmp.ll │ │ ├── and-or-and.ll │ │ ├── and-or-icmps.ll │ │ ├── and-or-not.ll │ │ ├── and-or.ll │ │ ├── and-xor-merge.ll │ │ ├── and-xor-or.ll │ │ ├── and.ll │ │ ├── and2.ll │ │ ├── apint-add.ll │ │ ├── apint-and-compare.ll │ │ ├── apint-and-or-and.ll │ │ ├── apint-and-xor-merge.ll │ │ ├── apint-and.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-or.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 │ │ ├── assoc-cast-assoc.ll │ │ ├── assume-loop-align.ll │ │ ├── assume-redundant.ll │ │ ├── assume.ll │ │ ├── assume2.ll │ │ ├── atomic.ll │ │ ├── badmalloc.ll │ │ ├── binop-cast.ll │ │ ├── bit-checks.ll │ │ ├── bitcast-alias-function.ll │ │ ├── bitcast-bigendian.ll │ │ ├── bitcast-bitcast.ll │ │ ├── bitcast-sext-vector.ll │ │ ├── bitcast-store.ll │ │ ├── bitcast-vec-canon.ll │ │ ├── bitcast.ll │ │ ├── bitcount.ll │ │ ├── bitreverse-hang.ll │ │ ├── bitreverse-known-bits.ll │ │ ├── bittest.ll │ │ ├── branch.ll │ │ ├── broadcast.ll │ │ ├── bswap-fold.ll │ │ ├── bswap-known-bits.ll │ │ ├── bswap.ll │ │ ├── builtin-object-size-offset.ll │ │ ├── builtin-object-size-ptr.ll │ │ ├── cabs-array.ll │ │ ├── cabs-discrete.ll │ │ ├── call-cast-attrs.ll │ │ ├── call-cast-target-inalloca.ll │ │ ├── call-cast-target.ll │ │ ├── call-guard.ll │ │ ├── call-intrinsics.ll │ │ ├── call.ll │ │ ├── call2.ll │ │ ├── call_nonnull_arg.ll │ │ ├── canonicalize_branch.ll │ │ ├── cast-call-combine-prof.ll │ │ ├── cast-call-combine.ll │ │ ├── cast-callee-deopt-bundles.ll │ │ ├── cast-int-fcmp-eq-0.ll │ │ ├── cast-mul-select.ll │ │ ├── cast-set.ll │ │ ├── cast.ll │ │ ├── cast_ptr.ll │ │ ├── ceil.ll │ │ ├── clamp-to-minmax.ll │ │ ├── cmp-intrinsic.ll │ │ ├── compare-3way.ll │ │ ├── compare-alloca.ll │ │ ├── compare-signs.ll │ │ ├── compare-udiv.ll │ │ ├── compare-unescaped.ll │ │ ├── consecutive-fences.ll │ │ ├── constant-expr-datalayout.ll │ │ ├── constant-fold-address-space-pointer.ll │ │ ├── constant-fold-alias.ll │ │ ├── constant-fold-compare.ll │ │ ├── constant-fold-gep.ll │ │ ├── constant-fold-iteration.ll │ │ ├── constant-fold-libfunc.ll │ │ ├── constant-fold-math.ll │ │ ├── convergent.ll │ │ ├── copysign.ll │ │ ├── cos-1.ll │ │ ├── cos-2.ll │ │ ├── cos-intrinsic.ll │ │ ├── crash.ll │ │ ├── ctpop.ll │ │ ├── dce-iterate.ll │ │ ├── deadcode.ll │ │ ├── debug-line.ll │ │ ├── debuginfo-dce.ll │ │ ├── debuginfo-dce2.ll │ │ ├── debuginfo-skip.ll │ │ ├── debuginfo.ll │ │ ├── debuginfo_add.ll │ │ ├── default-alignment.ll │ │ ├── demand_shrink_nsw.ll │ │ ├── demorgan.ll │ │ ├── disable-simplify-libcalls.ll │ │ ├── distribute.ll │ │ ├── div-shift-crash.ll │ │ ├── div-shift.ll │ │ ├── div.ll │ │ ├── double-float-shrink-1.ll │ │ ├── double-float-shrink-2.ll │ │ ├── early_constfold_changes_IR.ll │ │ ├── early_dce_clobbers_callgraph.ll │ │ ├── element-atomic-memcpy-to-loads.ll │ │ ├── element-atomic-memintrins.ll │ │ ├── enforce-known-alignment.ll │ │ ├── err-rep-cold.ll │ │ ├── exact.ll │ │ ├── exp2-1.ll │ │ ├── exp2-2.ll │ │ ├── extractelement.ll │ │ ├── extractinsert-tbaa.ll │ │ ├── extractvalue.ll │ │ ├── fabs-libcall.ll │ │ ├── fabs.ll │ │ ├── fast-math-scalarization.ll │ │ ├── fast-math.ll │ │ ├── fcmp-select.ll │ │ ├── fcmp-special.ll │ │ ├── fcmp.ll │ │ ├── fdiv.ll │ │ ├── ffs-1.ll │ │ ├── float-shrink-compare.ll │ │ ├── fls.ll │ │ ├── fma.ll │ │ ├── fmul-sqrt.ll │ │ ├── fmul.ll │ │ ├── fneg-ext.ll │ │ ├── fold-bin-operand.ll │ │ ├── fold-calls.ll │ │ ├── fold-fops-into-selects.ll │ │ ├── fold-phi-load-metadata.ll │ │ ├── fold-phi.ll │ │ ├── fold-sqrt-sqrtf.ll │ │ ├── fold-vector-select.ll │ │ ├── fold-vector-zero.ll │ │ ├── fp-ret-bitcast.ll │ │ ├── fpcast.ll │ │ ├── fpextend.ll │ │ ├── fpextend_x86.ll │ │ ├── fprintf-1.ll │ │ ├── fputs-1.ll │ │ ├── fputs-opt-size.ll │ │ ├── fsub.ll │ │ ├── fwrite-1.ll │ │ ├── gc.relocate.ll │ │ ├── gep-addrspace.ll │ │ ├── gep-sext.ll │ │ ├── gep-vector.ll │ │ ├── gepgep.ll │ │ ├── gepphigep.ll │ │ ├── getelementptr-folding.ll │ │ ├── getelementptr.ll │ │ ├── hoist_instr.ll │ │ ├── icmp-add.ll │ │ ├── icmp-div-constant.ll │ │ ├── icmp-logical.ll │ │ ├── icmp-range.ll │ │ ├── icmp-shl-nsw.ll │ │ ├── icmp-shl-nuw.ll │ │ ├── icmp-shr-lt-gt.ll │ │ ├── icmp-shr.ll │ │ ├── icmp-vec.ll │ │ ├── icmp-xor-signbit.ll │ │ ├── icmp.ll │ │ ├── idioms.ll │ │ ├── indexed-gep-compares.ll │ │ ├── inline-intrinsic-assert.ll │ │ ├── insert-const-shuf.ll │ │ ├── insert-extract-shuffle.ll │ │ ├── insert-val-extract-elem.ll │ │ ├── int_sideeffect.ll │ │ ├── intptr1.ll │ │ ├── intptr2.ll │ │ ├── intptr3.ll │ │ ├── intptr4.ll │ │ ├── intptr5.ll │ │ ├── intptr6.ll │ │ ├── intptr7.ll │ │ ├── intrinsics.ll │ │ ├── invariant.ll │ │ ├── invoke.ll │ │ ├── isascii-1.ll │ │ ├── isdigit-1.ll │ │ ├── known_align.ll │ │ ├── lifetime-asan.ll │ │ ├── lifetime.ll │ │ ├── load-bitcast-select.ll │ │ ├── load-bitcast32.ll │ │ ├── load-bitcast64.ll │ │ ├── load-cmp.ll │ │ ├── load-combine-metadata-2.ll │ │ ├── load-combine-metadata-3.ll │ │ ├── load-combine-metadata-4.ll │ │ ├── load-combine-metadata.ll │ │ ├── load-select.ll │ │ ├── load.ll │ │ ├── load3.ll │ │ ├── load_combine_aa.ll │ │ ├── loadstore-alignment.ll │ │ ├── loadstore-metadata.ll │ │ ├── log-pow-nofastmath.ll │ │ ├── log-pow.ll │ │ ├── logical-select.ll │ │ ├── lshr-phi.ll │ │ ├── lshr.ll │ │ ├── malloc-free-delete.ll │ │ ├── masked_intrinsics.ll │ │ ├── max-of-nots.ll │ │ ├── maxnum.ll │ │ ├── mem-gep-zidx.ll │ │ ├── mem-par-metadata-memcpy.ll │ │ ├── memchr.ll │ │ ├── memcmp-1.ll │ │ ├── memcmp-2.ll │ │ ├── memcmp-constant-fold.ll │ │ ├── memcpy-1.ll │ │ ├── memcpy-2.ll │ │ ├── memcpy-addrspace.ll │ │ ├── memcpy-from-global.ll │ │ ├── memcpy-to-load.ll │ │ ├── memcpy.ll │ │ ├── memcpy_chk-1.ll │ │ ├── memcpy_chk-2.ll │ │ ├── memmove-1.ll │ │ ├── memmove-2.ll │ │ ├── memmove.ll │ │ ├── memmove_chk-1.ll │ │ ├── memmove_chk-2.ll │ │ ├── memset-1.ll │ │ ├── memset-2.ll │ │ ├── memset.ll │ │ ├── memset2.ll │ │ ├── memset_chk-1.ll │ │ ├── memset_chk-2.ll │ │ ├── merge-icmp.ll │ │ ├── min-positive.ll │ │ ├── minmax-fold.ll │ │ ├── minmax-fp.ll │ │ ├── minnum.ll │ │ ├── misc-2002.ll │ │ ├── mul-masked-bits.ll │ │ ├── mul.ll │ │ ├── multi-size-address-space-pointer.ll │ │ ├── multi-use-or.ll │ │ ├── multiple-uses-load-bitcast-select.ll │ │ ├── narrow-switch.ll │ │ ├── narrow.ll │ │ ├── no-negzero.ll │ │ ├── no_cgscc_assert.ll │ │ ├── non-integral-pointers.ll │ │ ├── nonnull-attribute.ll │ │ ├── not.ll │ │ ├── nothrow.ll │ │ ├── nsw.ll │ │ ├── obfuscated_splat.ll │ │ ├── objsize-64.ll │ │ ├── objsize-address-space.ll │ │ ├── objsize-noverify.ll │ │ ├── objsize.ll │ │ ├── odr-linkage.ll │ │ ├── onehot_merge.ll │ │ ├── opaque.ll │ │ ├── or-fcmp.ll │ │ ├── or-shifted-masks.ll │ │ ├── or-xor.ll │ │ ├── or.ll │ │ ├── osx-names.ll │ │ ├── out-of-bounds-indexes.ll │ │ ├── overflow-mul.ll │ │ ├── overflow.ll │ │ ├── phi-load-metadata-2.ll │ │ ├── phi-load-metadata-3.ll │ │ ├── phi-load-metadata.ll │ │ ├── phi-merge-gep.ll │ │ ├── phi-preserve-ir-flags.ll │ │ ├── phi-select-constant.ll │ │ ├── phi.ll │ │ ├── pow-1.ll │ │ ├── pow-2.ll │ │ ├── pow-3.ll │ │ ├── pow-4.ll │ │ ├── pow-exp-nofastmath.ll │ │ ├── pow-exp.ll │ │ ├── pow-sqrt.ll │ │ ├── pr12251.ll │ │ ├── pr12338.ll │ │ ├── pr17827.ll │ │ ├── pr19420.ll │ │ ├── pr20079.ll │ │ ├── pr20678.ll │ │ ├── pr21199.ll │ │ ├── pr21210.ll │ │ ├── pr21651.ll │ │ ├── pr21891.ll │ │ ├── pr23751.ll │ │ ├── pr23809.ll │ │ ├── pr24354.ll │ │ ├── pr24605.ll │ │ ├── pr25342.ll │ │ ├── pr25745.ll │ │ ├── pr2645-0.ll │ │ ├── pr26992.ll │ │ ├── pr26993.ll │ │ ├── pr27236.ll │ │ ├── pr27332.ll │ │ ├── pr27703.ll │ │ ├── pr27996.ll │ │ ├── pr28143.ll │ │ ├── pr28725.ll │ │ ├── pr2996.ll │ │ ├── pr30929.ll │ │ ├── pr31990_wrong_memcpy.ll │ │ ├── pr32686.ll │ │ ├── pr33453.ll │ │ ├── pr33689_same_bitwidth.ll │ │ ├── pr33765.ll │ │ ├── pr34349.ll │ │ ├── pr34627.ll │ │ ├── pr35515.ll │ │ ├── pr36362.ll │ │ ├── prefetch-load.ll │ │ ├── preserve-sminmax.ll │ │ ├── preserved-analyses.ll │ │ ├── prevent-cmp-merge.ll │ │ ├── printf-1.ll │ │ ├── printf-2.ll │ │ ├── printf-3.ll │ │ ├── ptr-int-cast.ll │ │ ├── puts-1.ll │ │ ├── range-check.ll │ │ ├── readnone-maythrow.ll │ │ ├── rem.ll │ │ ├── rotate.ll │ │ ├── round.ll │ │ ├── sdiv-1.ll │ │ ├── sdiv-2.ll │ │ ├── select-2.ll │ │ ├── select-bitext-bitwise-ops.ll │ │ ├── select-bitext.ll │ │ ├── select-cmp-br.ll │ │ ├── select-cmp-cttz-ctlz.ll │ │ ├── select-cmpxchg.ll │ │ ├── select-crash-noverify.ll │ │ ├── select-crash.ll │ │ ├── select-extractelement.ll │ │ ├── select-implied.ll │ │ ├── select-load-call.ll │ │ ├── select-select.ll │ │ ├── select-with-bitwise-ops.ll │ │ ├── select.ll │ │ ├── select_arithmetic.ll │ │ ├── select_meta.ll │ │ ├── set.ll │ │ ├── setcc-strength-reduce.ll │ │ ├── sext.ll │ │ ├── shift-add.ll │ │ ├── shift-shift.ll │ │ ├── shift-sra.ll │ │ ├── shift.ll │ │ ├── shufflevec-bitcast.ll │ │ ├── shufflevec-constant.ll │ │ ├── sign-test-and-or.ll │ │ ├── signed-comparison.ll │ │ ├── signext.ll │ │ ├── simplify-demanded-bits-pointer.ll │ │ ├── simplify-libcalls.ll │ │ ├── sincospi.ll │ │ ├── sink-into-catchswitch.ll │ │ ├── sink-zext.ll │ │ ├── sink_instruction.ll │ │ ├── sitofp.ll │ │ ├── smax-icmp.ll │ │ ├── smin-icmp.ll │ │ ├── sprintf-1.ll │ │ ├── sqrt-nofast.ll │ │ ├── sqrt.ll │ │ ├── srem-simplify-bug.ll │ │ ├── srem1.ll │ │ ├── stack-overalign.ll │ │ ├── stacksaverestore.ll │ │ ├── statepoint.ll │ │ ├── store-load-unaliased-gep.ll │ │ ├── store.ll │ │ ├── stpcpy-1.ll │ │ ├── stpcpy-2.ll │ │ ├── stpcpy_chk-1.ll │ │ ├── stpcpy_chk-2.ll │ │ ├── strcat-1.ll │ │ ├── strcat-2.ll │ │ ├── strcat-3.ll │ │ ├── strchr-1.ll │ │ ├── strchr-2.ll │ │ ├── strcmp-1.ll │ │ ├── strcmp-2.ll │ │ ├── strcpy-1.ll │ │ ├── strcpy-2.ll │ │ ├── strcpy_chk-1.ll │ │ ├── strcpy_chk-2.ll │ │ ├── strcpy_chk-64.ll │ │ ├── strcspn-1.ll │ │ ├── strcspn-2.ll │ │ ├── strlen-1.ll │ │ ├── strlen-2.ll │ │ ├── strncat-1.ll │ │ ├── strncat-2.ll │ │ ├── strncat-3.ll │ │ ├── strncmp-1.ll │ │ ├── strncmp-2.ll │ │ ├── strncmp-wrong-datalayout.ll │ │ ├── strncpy-1.ll │ │ ├── strncpy-2.ll │ │ ├── strncpy_chk-1.ll │ │ ├── strncpy_chk-2.ll │ │ ├── strpbrk-1.ll │ │ ├── strpbrk-2.ll │ │ ├── strrchr-1.ll │ │ ├── strrchr-2.ll │ │ ├── strspn-1.ll │ │ ├── strstr-1.ll │ │ ├── strstr-2.ll │ │ ├── strto-1.ll │ │ ├── struct-assign-tbaa.ll │ │ ├── sub-xor.ll │ │ ├── sub.ll │ │ ├── switch-constant-expr.ll │ │ ├── switch-truncate-crash.ll │ │ ├── tan-nofastmath.ll │ │ ├── tan.ll │ │ ├── tbaa-store-to-load.ll │ │ ├── toascii-1.ll │ │ ├── token.ll │ │ ├── trunc-binop-ext.ll │ │ ├── trunc.ll │ │ ├── type_pun.ll │ │ ├── udiv-simplify.ll │ │ ├── udiv_select_to_select_shift.ll │ │ ├── udivrem-change-width.ll │ │ ├── umax-icmp.ll │ │ ├── umin-icmp.ll │ │ ├── unordered-fcmp-select.ll │ │ ├── unpack-fca.ll │ │ ├── urem-simplify-bug.ll │ │ ├── vararg.ll │ │ ├── vec_demanded_elts.ll │ │ ├── vec_extract_2elts.ll │ │ ├── vec_extract_elt.ll │ │ ├── vec_extract_var_elt.ll │ │ ├── vec_insertelt.ll │ │ ├── vec_narrow.ll │ │ ├── vec_phi_extract.ll │ │ ├── vec_sext.ll │ │ ├── vec_shuffle.ll │ │ ├── vector-casts.ll │ │ ├── vector-mul.ll │ │ ├── vector-type.ll │ │ ├── vector-urem.ll │ │ ├── vector_gep1.ll │ │ ├── vector_gep2.ll │ │ ├── vector_insertelt_shuffle.ll │ │ ├── volatile_store.ll │ │ ├── wcslen-1.ll │ │ ├── wcslen-2.ll │ │ ├── wcslen-3.ll │ │ ├── wcslen-4.ll │ │ ├── weak-symbols.ll │ │ ├── win-math.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-phi.ll │ │ └── zext.ll │ ├── InstMerge │ │ ├── exceptions.ll │ │ ├── st_sink_barrier_call.ll │ │ ├── st_sink_bugfix_22613.ll │ │ ├── st_sink_no_barrier_call.ll │ │ ├── st_sink_no_barrier_load.ll │ │ ├── st_sink_no_barrier_store.ll │ │ ├── st_sink_two_stores.ll │ │ └── st_sink_with_barrier.ll │ ├── InstNamer │ │ └── basic.ll │ ├── InstSimplify │ │ ├── 2010-12-20-Boolean.ll │ │ ├── 2011-01-14-Thread.ll │ │ ├── 2011-02-01-Vector.ll │ │ ├── 2011-09-05-InsertExtractValue.ll │ │ ├── 2011-10-27-BinOpCrash.ll │ │ ├── 2011-11-23-MaskedBitsCrash.ll │ │ ├── 2013-04-19-ConstantFoldingCrash.ll │ │ ├── AndOrXor.ll │ │ ├── add-mask.ll │ │ ├── addsub.ll │ │ ├── and-icmps-same-ops.ll │ │ ├── assume.ll │ │ ├── bitcast-vector-fold.ll │ │ ├── bitreverse-fold.ll │ │ ├── bitreverse.ll │ │ ├── bswap.ll │ │ ├── call-callconv.ll │ │ ├── call.ll │ │ ├── cast.ll │ │ ├── compare.ll │ │ ├── dead-code-removal.ll │ │ ├── div.ll │ │ ├── exact-nsw-nuw.ll │ │ ├── exp-intrinsic.ll │ │ ├── exp2-intrinsic.ll │ │ ├── extract-element.ll │ │ ├── fast-math.ll │ │ ├── fdiv.ll │ │ ├── floating-point-arithmetic.ll │ │ ├── floating-point-compare.ll │ │ ├── fold-builtin-fma.ll │ │ ├── fold-intrinsics.ll │ │ ├── gep.ll │ │ ├── icmp-bool-constant.ll │ │ ├── icmp-constant.ll │ │ ├── icmp-ranges.ll │ │ ├── implies.ll │ │ ├── insertelement.ll │ │ ├── load-relative-32.ll │ │ ├── load-relative.ll │ │ ├── load.ll │ │ ├── log-intrinsic.ll │ │ ├── log2-intrinsic.ll │ │ ├── logic-of-fcmps.ll │ │ ├── maxmin.ll │ │ ├── mul.ll │ │ ├── negate.ll │ │ ├── noalias-ptr.ll │ │ ├── or-icmps-same-ops.ll │ │ ├── or.ll │ │ ├── past-the-end.ll │ │ ├── phi.ll │ │ ├── pr28725.ll │ │ ├── pr33957.ll │ │ ├── ptr_diff.ll │ │ ├── reassociate.ll │ │ ├── rem.ll │ │ ├── require-dominator.ll │ │ ├── returned.ll │ │ ├── select.ll │ │ ├── shift-128-kb.ll │ │ ├── shift-knownbits.ll │ │ ├── shr-nop.ll │ │ ├── shufflevector.ll │ │ ├── signed-div-rem.ll │ │ ├── simplify-nested-bitcast.ll │ │ ├── undef.ll │ │ ├── vec-cmp.ll │ │ ├── vector_gep.ll │ │ └── vector_ptr_bitcast.ll │ ├── InterleavedAccess │ │ ├── AArch64 │ │ │ ├── interleaved-accesses-extract-user.ll │ │ │ ├── interleaved-accesses.ll │ │ │ └── lit.local.cfg │ │ ├── ARM │ │ │ ├── interleaved-accesses-extract-user.ll │ │ │ ├── interleaved-accesses.ll │ │ │ └── lit.local.cfg │ │ └── X86 │ │ │ ├── interleaved-accesses-64bits-avx.ll │ │ │ ├── interleavedLoad.ll │ │ │ ├── interleavedStore.ll │ │ │ └── lit.local.cfg │ ├── Internalize │ │ ├── 2009-01-05-InternalizeAliases.ll │ │ ├── apifile │ │ ├── comdat.ll │ │ ├── lists.ll │ │ ├── local-visibility.ll │ │ ├── stackguard.ll │ │ └── used.ll │ ├── JumpThreading │ │ ├── 2008-11-27-EntryMunge.ll │ │ ├── 2010-08-26-and.ll │ │ ├── 2011-04-02-SimplifyDeadBlock.ll │ │ ├── 2011-04-14-InfLoop.ll │ │ ├── 2012-07-19-NoSuccessorIndirectBr.ll │ │ ├── and-and-cond.ll │ │ ├── and-cond.ll │ │ ├── assume-edge-dom.ll │ │ ├── assume.ll │ │ ├── basic.ll │ │ ├── branch-no-const.ll │ │ ├── compare.ll │ │ ├── conservative-lvi.ll │ │ ├── crash.ll │ │ ├── ddt-crash3.ll │ │ ├── ddt-crash4.ll │ │ ├── degenerate-phi.ll │ │ ├── fold-not-thread.ll │ │ ├── guards.ll │ │ ├── implied-cond.ll │ │ ├── indirectbr.ll │ │ ├── induction.ll │ │ ├── landing-pad.ll │ │ ├── lvi-load.ll │ │ ├── no-irreducible-loops.ll │ │ ├── or-undef.ll │ │ ├── phi-eq.ll │ │ ├── phi-known.ll │ │ ├── pr15851_hang.ll │ │ ├── pr22086.ll │ │ ├── pr26096.ll │ │ ├── pr27840.ll │ │ ├── pr33605.ll │ │ ├── pr33917.ll │ │ ├── pr9331.ll │ │ ├── range-compare.ll │ │ ├── select.ll │ │ ├── static-profile.ll │ │ ├── thread-cmp.ll │ │ ├── thread-loads.ll │ │ ├── threading_prof1.ll │ │ ├── threading_prof2.ll │ │ └── update-edge-weight.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 │ │ ├── indirectbr.ll │ │ ├── invoke-dest.ll │ │ ├── mixed-catch.ll │ │ ├── pr28424.ll │ │ ├── pr28608.ll │ │ ├── unreachable-use.ll │ │ └── unused-phis.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 │ │ ├── 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-12-10-LICM-Indbr-Crash.ll │ │ ├── 2011-04-06-HoistMissedASTUpdate.ll │ │ ├── 2011-04-06-PromoteResultOfPromotion.ll │ │ ├── 2011-04-09-RAUW-AST.ll │ │ ├── 2011-07-06-Alignment.ll │ │ ├── 2014-09-10-doFinalizationAssert.ll │ │ ├── AliasSetMemSet.ll │ │ ├── PR19798.ll │ │ ├── PR21582.ll │ │ ├── PR24013.ll │ │ ├── Preserve-LCSSA.ll │ │ ├── alias-set-tracker-loss.ll │ │ ├── argmemonly-call.ll │ │ ├── assume.ll │ │ ├── atomics.ll │ │ ├── basictest.ll │ │ ├── bisect-state.ll │ │ ├── constexpr.ll │ │ ├── crash.ll │ │ ├── debug-value.ll │ │ ├── dropped-tbaa.ll │ │ ├── extra-copies.ll │ │ ├── funclet.ll │ │ ├── hoist-bitcast-load.ll │ │ ├── hoist-deref-load.ll │ │ ├── hoist-fast-fdiv.ll │ │ ├── hoist-invariant-load.ll │ │ ├── hoist-nounwind.ll │ │ ├── hoist-round.ll │ │ ├── hoisting.ll │ │ ├── int_sideeffect.ll │ │ ├── lcssa-ssa-promoter.ll │ │ ├── loopsink.ll │ │ ├── no-preheader-test.ll │ │ ├── opt-remarks-conditional-load.ll │ │ ├── opt-remarks-intervening-store.ll │ │ ├── opt-remarks.ll │ │ ├── pr23608.ll │ │ ├── pr26843.ll │ │ ├── pr27262.ll │ │ ├── pr32129.ll │ │ ├── pr35342.ll │ │ ├── preheader-safe.ll │ │ ├── promote-order.ll │ │ ├── promote-tls.ll │ │ ├── scalar-promote-memmodel.ll │ │ ├── scalar-promote-unwind.ll │ │ ├── scalar-promote.ll │ │ ├── sink-foldable.ll │ │ ├── sink.ll │ │ ├── sinking.ll │ │ ├── speculate.ll │ │ ├── strlen.ll │ │ ├── unrolled-deeply-nested.ll │ │ ├── update-scev.ll │ │ └── volatile-alias.ll │ ├── LoadStoreVectorizer │ │ ├── AMDGPU │ │ │ ├── aa-metadata.ll │ │ │ ├── adjust-alloca-alignment.ll │ │ │ ├── extended-index.ll │ │ │ ├── gep-bitcast.ll │ │ │ ├── insertion-point.ll │ │ │ ├── interleaved-mayalias-store.ll │ │ │ ├── lit.local.cfg │ │ │ ├── merge-stores-private.ll │ │ │ ├── merge-stores.ll │ │ │ ├── merge-vectors.ll │ │ │ ├── missing-alignment.ll │ │ │ ├── multiple_tails.ll │ │ │ ├── no-implicit-float.ll │ │ │ ├── optnone.ll │ │ │ ├── pointer-elements.ll │ │ │ ├── store_with_aliasing_load.ll │ │ │ └── weird-type-accesses.ll │ │ ├── NVPTX │ │ │ ├── lit.local.cfg │ │ │ ├── merge-across-side-effects.ll │ │ │ ├── non-instr-bitcast.ll │ │ │ └── propagate-invariance-metadata.ll │ │ ├── X86 │ │ │ ├── correct-order.ll │ │ │ ├── lit.local.cfg │ │ │ ├── load-width.ll │ │ │ ├── merge-tbaa.ll │ │ │ ├── non-byte-size.ll │ │ │ ├── preserve-order32.ll │ │ │ ├── preserve-order64.ll │ │ │ └── subchain-interleaved.ll │ │ └── int_sideeffect.ll │ ├── LoopDataPrefetch │ │ ├── AArch64 │ │ │ ├── kryo-large-stride.ll │ │ │ ├── large-stride.ll │ │ │ ├── lit.local.cfg │ │ │ ├── opt-remark-with-hotness.ll │ │ │ └── opt-remark.ll │ │ └── PowerPC │ │ │ ├── basic.ll │ │ │ └── lit.local.cfg │ ├── LoopDeletion │ │ ├── 2007-07-23-InfiniteLoop.ll │ │ ├── 2008-05-06-Phi.ll │ │ ├── 2011-06-21-phioperands.ll │ │ ├── 2017-07-11-incremental-dt.ll │ │ ├── dcetest.ll │ │ ├── invalidation.ll │ │ ├── multiple-exit-conditions.ll │ │ ├── multiple-exits.ll │ │ ├── simplify-then-delete.ll │ │ ├── unreachable-loops.ll │ │ └── update-scev.ll │ ├── LoopDistribute │ │ ├── basic-with-memchecks.ll │ │ ├── basic.ll │ │ ├── bounds-expansion-bug.ll │ │ ├── crash-in-memcheck-generation.ll │ │ ├── diagnostics-with-hotness.ll │ │ ├── diagnostics.ll │ │ ├── metadata.ll │ │ ├── no-if-convert.ll │ │ ├── outside-use.ll │ │ ├── pr28443.ll │ │ ├── program-order.ll │ │ ├── symbolic-stride.ll │ │ └── unknown-bounds-for-memchecks.ll │ ├── LoopIdiom │ │ ├── AMDGPU │ │ │ ├── lit.local.cfg │ │ │ └── popcnt.ll │ │ ├── ARM │ │ │ └── ctlz.ll │ │ ├── X86 │ │ │ ├── ctlz.ll │ │ │ ├── lit.local.cfg │ │ │ ├── popcnt.ll │ │ │ └── unordered-atomic-memcpy.ll │ │ ├── basic-address-space.ll │ │ ├── basic.ll │ │ ├── crash.ll │ │ ├── ctpop-multiple-users-crash.ll │ │ ├── debug-line.ll │ │ ├── int_sideeffect.ll │ │ ├── lir-heurs-multi-block-loop.ll │ │ ├── memset_noidiom.ll │ │ ├── non-canonical-loop.ll │ │ ├── non-integral-pointers.ll │ │ ├── nontemporal_store.ll │ │ ├── pr28196.ll │ │ ├── pr33114.ll │ │ ├── scev-invalidation.ll │ │ ├── struct.ll │ │ ├── struct_pattern.ll │ │ ├── unordered-atomic-memcpy-noarch.ll │ │ ├── unroll.ll │ │ ├── unsafe.ll │ │ └── unwind.ll │ ├── LoopInterchange │ │ ├── call-instructions.ll │ │ ├── current-limitations-lcssa.ll │ │ ├── currentLimitation.ll │ │ ├── interchange-flow-dep-outer.ll │ │ ├── interchange-insts-between-indvar.ll │ │ ├── interchange-not-profitable.ll │ │ ├── interchange-output-dependencies.ll │ │ ├── interchange-simple-count-down.ll │ │ ├── interchange-simple-count-up.ll │ │ ├── loop-interchange-optimization-remarks.ll │ │ ├── not-interchanged-dependencies-1.ll │ │ ├── not-interchanged-loop-nest-3.ll │ │ ├── not-interchanged-tightly-nested.ll │ │ ├── phi-ordering.ll │ │ ├── profitability.ll │ │ └── reductions.ll │ ├── LoopLoadElim │ │ ├── backward.ll │ │ ├── cond-load.ll │ │ ├── def-store-before-load.ll │ │ ├── forward.ll │ │ ├── loop-simplify-dep.ll │ │ ├── memcheck.ll │ │ ├── multiple-stores-same-block.ll │ │ ├── non-consecutive.ll │ │ ├── opt-size.ll │ │ ├── symbolic-stride.ll │ │ ├── type-mismatch.ll │ │ └── unknown-dep.ll │ ├── LoopPredication │ │ ├── basic.ll │ │ ├── nested.ll │ │ ├── reverse.ll │ │ ├── visited.ll │ │ └── widened.ll │ ├── LoopReroll │ │ ├── basic.ll │ │ ├── basic32iters.ll │ │ ├── complex_reroll.ll │ │ ├── indvar_with_ext.ll │ │ ├── negative.ll │ │ ├── nonconst_lb.ll │ │ ├── ptrindvar.ll │ │ ├── reduction.ll │ │ └── reroll_with_dbg.ll │ ├── LoopRotate │ │ ├── 2009-01-25-SingleEntryPhi.ll │ │ ├── PhiRename-1.ll │ │ ├── PhiSelfReference-1.ll │ │ ├── alloca.ll │ │ ├── basic.ll │ │ ├── catchret.ll │ │ ├── convergent.ll │ │ ├── crash.ll │ │ ├── dbg-value-duplicates.ll │ │ ├── dbgvalue.ll │ │ ├── indirectbr.ll │ │ ├── multiple-exits.ll │ │ ├── nosimplifylatch.ll │ │ ├── oz-disable.ll │ │ ├── phi-dbgvalue.ll │ │ ├── phi-duplicate.ll │ │ ├── pr22337.ll │ │ ├── pr2639.ll │ │ ├── pr33701.ll │ │ ├── pr35210.ll │ │ ├── preserve-loop-simplify.ll │ │ ├── preserve-scev.ll │ │ ├── simplifylatch.ll │ │ └── vect.omp.persistence.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 │ │ ├── 2010-12-26-PHIInfiniteLoop.ll │ │ ├── 2011-12-14-LandingpadHeader.ll │ │ ├── 2012-03-20-indirectbr.ll │ │ ├── ashr-crash.ll │ │ ├── basictest.ll │ │ ├── dbg-loc.ll │ │ ├── dup-preds.ll │ │ ├── hardertest.ll │ │ ├── indirectbr-backedge.ll │ │ ├── indirectbr.ll │ │ ├── merge-exits.ll │ │ ├── notify-scev.ll │ │ ├── phi-node-simplify.ll │ │ ├── pr26682.ll │ │ ├── pr28272.ll │ │ ├── pr30454.ll │ │ ├── pr33494.ll │ │ ├── preserve-llvm-loop-metadata.ll │ │ ├── preserve-scev.ll │ │ ├── single-backedge.ll │ │ └── unreachable-loop-pred.ll │ ├── LoopSimplifyCFG │ │ └── merge-header.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-09-09-Overflow.ll │ │ ├── 2009-01-13-nonconstant-stride-outside-loop.ll │ │ ├── 2009-04-28-no-reduce-mul.ll │ │ ├── 2011-07-19-CritEdgeBreakCrash.ll │ │ ├── 2011-10-03-CritEdgeMerge.ll │ │ ├── 2011-10-06-ReusePhi.ll │ │ ├── 2011-10-13-SCEVChain.ll │ │ ├── 2011-10-14-IntPtr.ll │ │ ├── 2011-12-19-PostincQuadratic.ll │ │ ├── 2012-01-02-nopreheader.ll │ │ ├── 2012-01-16-nopreheader.ll │ │ ├── 2012-03-15-nopreheader.ll │ │ ├── 2012-03-26-constexpr.ll │ │ ├── 2012-07-13-ExpandUDiv.ll │ │ ├── 2012-07-18-LimitReassociate.ll │ │ ├── 2013-01-05-IndBr.ll │ │ ├── 2013-01-14-ReuseCast.ll │ │ ├── AArch64 │ │ │ ├── lit.local.cfg │ │ │ ├── lsr-memcpy.ll │ │ │ ├── lsr-memset.ll │ │ │ ├── lsr-reuse.ll │ │ │ └── req-regs.ll │ │ ├── AMDGPU │ │ │ ├── atomics.ll │ │ │ ├── different-addrspace-addressing-mode-loops.ll │ │ │ ├── different-addrspace-crash.ll │ │ │ ├── lit.local.cfg │ │ │ ├── lsr-postinc-pos-addrspace.ll │ │ │ └── preserve-addrspace-assert.ll │ │ ├── ARM │ │ │ ├── 2012-06-15-lsr-noaddrmode.ll │ │ │ ├── addrec-is-loop-invariant.ll │ │ │ ├── ivchain-ARM.ll │ │ │ └── lit.local.cfg │ │ ├── NVPTX │ │ │ ├── lit.local.cfg │ │ │ └── trunc.ll │ │ ├── X86 │ │ │ ├── 2008-08-14-ShadowIV.ll │ │ │ ├── 2009-11-10-LSRCrash.ll │ │ │ ├── 2011-07-20-DoubleIV.ll │ │ │ ├── 2011-11-29-postincphi.ll │ │ │ ├── 2011-12-04-loserreg.ll │ │ │ ├── 2012-01-13-phielim.ll │ │ │ ├── bin_power.ll │ │ │ ├── canonical-2.ll │ │ │ ├── canonical.ll │ │ │ ├── incorrect-offset-scaling.ll │ │ │ ├── ivchain-X86.ll │ │ │ ├── ivchain-stress-X86.ll │ │ │ ├── lit.local.cfg │ │ │ ├── lsr-expand-quadratic.ll │ │ │ ├── lsr-filtering-scaledreg.ll │ │ │ ├── lsr-insns-1.ll │ │ │ ├── lsr-insns-2.ll │ │ │ ├── nested-loop.ll │ │ │ ├── no_superflous_induction_vars.ll │ │ │ ├── pr17473.ll │ │ │ ├── pr28719.ll │ │ │ └── sibling-loops.ll │ │ ├── addrec-gep-address-space.ll │ │ ├── addrec-gep.ll │ │ ├── address-space-loop.ll │ │ ├── count-to-zero.ll │ │ ├── dead-phi.ll │ │ ├── different-type-ivs.ll │ │ ├── dominate-assert.ll │ │ ├── dont-hoist-simple-loop-constants.ll │ │ ├── dont_insert_redundant_ops.ll │ │ ├── dont_reduce_bytes.ll │ │ ├── dont_reverse.ll │ │ ├── ephemeral.ll │ │ ├── exit_compare_live_range.ll │ │ ├── funclet.ll │ │ ├── hoist-parent-preheader.ll │ │ ├── illegal-addr-modes.ll │ │ ├── invariant_value_first.ll │ │ ├── invariant_value_first_arg.ll │ │ ├── ivchain.ll │ │ ├── negative-scale.ll │ │ ├── nested-reduce.ll │ │ ├── nonintegral.ll │ │ ├── nonlinear-postinc.ll │ │ ├── ops_after_indvar.ll │ │ ├── phi_node_update_multiple_preds.ll │ │ ├── post-inc-icmpzero.ll │ │ ├── post-inc-optsize.ll │ │ ├── pr12018.ll │ │ ├── pr12048.ll │ │ ├── pr12691.ll │ │ ├── pr18165.ll │ │ ├── pr2537.ll │ │ ├── pr25541.ll │ │ ├── pr2570.ll │ │ ├── pr27056.ll │ │ ├── pr3086.ll │ │ ├── pr31627.ll │ │ ├── pr3399.ll │ │ ├── pr3571.ll │ │ ├── preserve-gep-loop-variant.ll │ │ ├── related_indvars.ll │ │ ├── remove_indvar.ll │ │ ├── scaling_factor_cost_crash.ll │ │ ├── scev-insertpt-bug.ll │ │ ├── sext-ind-var.ll │ │ ├── share_code_in_preheader.ll │ │ ├── share_ivs.ll │ │ ├── shl.ll │ │ ├── uglygep-address-space.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 │ │ ├── 2011-08-08-PhiUpdate.ll │ │ ├── 2011-08-09-IVSimplify.ll │ │ ├── 2011-08-09-PhiUpdate.ll │ │ ├── 2011-10-01-NoopTrunc.ll │ │ ├── 2012-04-09-unroll-indirectbr.ll │ │ ├── AArch64 │ │ │ ├── falkor-prefetch.ll │ │ │ ├── full-unroll-trip-count-upper-bound.ll │ │ │ ├── lit.local.cfg │ │ │ ├── partial.ll │ │ │ └── runtime-loop.ll │ │ ├── AMDGPU │ │ │ ├── lit.local.cfg │ │ │ ├── unroll-barrier.ll │ │ │ └── unroll-for-private.ll │ │ ├── ARM │ │ │ ├── lit.local.cfg │ │ │ ├── loop-unrolling.ll │ │ │ └── multi-blocks.ll │ │ ├── PowerPC │ │ │ ├── a2-high-cost-trip-count-computation.ll │ │ │ ├── a2-unrolling.ll │ │ │ ├── lit.local.cfg │ │ │ ├── p7-unrolling.ll │ │ │ └── p8-unrolling-legalize-vectors.ll │ │ ├── X86 │ │ │ ├── lit.local.cfg │ │ │ ├── mmx.ll │ │ │ ├── partial.ll │ │ │ └── store_cost.ll │ │ ├── basic.ll │ │ ├── convergent.ll │ │ ├── debug-info.ll │ │ ├── ephemeral.ll │ │ ├── epilog_const_phi.ll │ │ ├── full-unroll-bad-cost.ll │ │ ├── full-unroll-crashers.ll │ │ ├── full-unroll-heuristics-2.ll │ │ ├── full-unroll-heuristics-cmp.ll │ │ ├── full-unroll-heuristics-dce.ll │ │ ├── full-unroll-heuristics-geps.ll │ │ ├── full-unroll-heuristics-phi-prop.ll │ │ ├── full-unroll-heuristics.ll │ │ ├── full-unroll-keep-first-exit.ll │ │ ├── high-cost-trip-count-computation.ll │ │ ├── ignore-annotation-intrinsic-cost.ll │ │ ├── loop-remarks-with-hotness.ll │ │ ├── loop-remarks.ll │ │ ├── not-rotated.ll │ │ ├── partial-unroll-const-bounds.ll │ │ ├── peel-loop-irreducible.ll │ │ ├── peel-loop-negative.ll │ │ ├── peel-loop-not-forced.ll │ │ ├── peel-loop-pgo.ll │ │ ├── peel-loop.ll │ │ ├── peel-loop2.ll │ │ ├── pr10813.ll │ │ ├── pr11361.ll │ │ ├── pr14167.ll │ │ ├── pr18861.ll │ │ ├── pr27157.ll │ │ ├── pr28132.ll │ │ ├── pr31718.ll │ │ ├── pr33437.ll │ │ ├── rebuild_lcssa.ll │ │ ├── revisit.ll │ │ ├── runtime-epilog-debuginfo.ll │ │ ├── runtime-li.ll │ │ ├── runtime-loop-multiexit-dom-verify.ll │ │ ├── runtime-loop-multiple-exits.ll │ │ ├── runtime-loop.ll │ │ ├── runtime-loop1.ll │ │ ├── runtime-loop2.ll │ │ ├── runtime-loop3.ll │ │ ├── runtime-loop4.ll │ │ ├── runtime-loop5.ll │ │ ├── runtime-multiexit-heuristic.ll │ │ ├── runtime-unroll-remainder.ll │ │ ├── scevunroll.ll │ │ ├── shifted-tripcount.ll │ │ ├── tripcount-overflow.ll │ │ ├── unloop.ll │ │ ├── unroll-cleanup.ll │ │ ├── unroll-cleanuppad.ll │ │ ├── unroll-count.ll │ │ ├── unroll-heuristics-pgo.ll │ │ ├── unroll-loop-invalidation.ll │ │ ├── unroll-maxcount.ll │ │ ├── unroll-opt-attribute.ll │ │ ├── unroll-pragmas-disabled.ll │ │ ├── unroll-pragmas.ll │ │ └── update-loop-info-in-subloops.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 │ │ ├── 2010-11-18-LCSSA.ll │ │ ├── 2011-06-02-CritSwitch.ll │ │ ├── 2011-09-26-EHCrash.ll │ │ ├── 2011-11-18-SimpleSwitch.ll │ │ ├── 2011-11-18-TwoSwitches-Threshold.ll │ │ ├── 2011-11-18-TwoSwitches.ll │ │ ├── 2012-04-02-IndirectBr.ll │ │ ├── 2012-04-30-LoopUnswitch-LPad-Crash.ll │ │ ├── 2012-05-20-Phi.ll │ │ ├── 2015-06-17-Metadata.ll │ │ ├── 2015-09-18-Addrspace.ll │ │ ├── AMDGPU │ │ │ ├── divergent-unswitch.ll │ │ │ └── lit.local.cfg │ │ ├── LIV-loop-condtion.ll │ │ ├── basictest.ll │ │ ├── cleanuppad.ll │ │ ├── copy-metadata.ll │ │ ├── crash.ll │ │ ├── elseif-non-exponential-behavior.ll │ │ ├── exponential-behavior.ll │ │ ├── guards.ll │ │ ├── infinite-loop.ll │ │ ├── msan.ll │ │ ├── pr32818.ll │ │ ├── preserve-analyses.ll │ │ ├── simplify-with-nonvalness.ll │ │ ├── trivial-unswitch.ll │ │ ├── unswitch-equality-undef.ll │ │ └── unswitch-select.ll │ ├── LoopVectorize │ │ ├── 12-12-11-if-conv.ll │ │ ├── 2012-10-20-infloop.ll │ │ ├── 2012-10-22-isconsec.ll │ │ ├── 2016-07-27-loop-vec.ll │ │ ├── AArch64 │ │ │ ├── aarch64-predication.ll │ │ │ ├── aarch64-unroll.ll │ │ │ ├── arbitrary-induction-step.ll │ │ │ ├── arm64-unroll.ll │ │ │ ├── backedge-overflow.ll │ │ │ ├── deterministic-type-shrinkage.ll │ │ │ ├── gather-cost.ll │ │ │ ├── induction-trunc.ll │ │ │ ├── interleaved-vs-scalar.ll │ │ │ ├── interleaved_cost.ll │ │ │ ├── lit.local.cfg │ │ │ ├── loop-vectorization-factors.ll │ │ │ ├── max-vf-for-interleaved.ll │ │ │ ├── no_vector_instructions.ll │ │ │ ├── pr31900.ll │ │ │ ├── pr33053.ll │ │ │ ├── predication_costs.ll │ │ │ ├── reduction-small-size.ll │ │ │ ├── sdiv-pow2.ll │ │ │ ├── smallest-and-widest-types.ll │ │ │ └── type-shrinkage-insertelt.ll │ │ ├── AMDGPU │ │ │ ├── divergent-runtime-check.ll │ │ │ ├── lit.local.cfg │ │ │ ├── packed-math.ll │ │ │ └── unroll-in-loop-vectorizer.ll │ │ ├── ARM │ │ │ ├── arm-ieee-vectorize.ll │ │ │ ├── arm-unroll.ll │ │ │ ├── gather-cost.ll │ │ │ ├── gcc-examples.ll │ │ │ ├── interleaved_cost.ll │ │ │ ├── lit.local.cfg │ │ │ ├── mul-cast-vect.ll │ │ │ ├── vector_cast.ll │ │ │ └── width-detect.ll │ │ ├── PowerPC │ │ │ ├── agg-interleave-a2.ll │ │ │ ├── large-loop-rdx.ll │ │ │ ├── lit.local.cfg │ │ │ ├── pr30990.ll │ │ │ ├── small-loop-rdx.ll │ │ │ ├── stride-vectorization.ll │ │ │ ├── vectorize-only-for-real.ll │ │ │ └── vsx-tsvc-s173.ll │ │ ├── SystemZ │ │ │ ├── addressing.ll │ │ │ ├── branch-for-predicated-block.ll │ │ │ ├── lit.local.cfg │ │ │ ├── load-store-scalarization-cost.ll │ │ │ └── mem-interleaving-costs.ll │ │ ├── X86 │ │ │ ├── already-vectorized.ll │ │ │ ├── assume.ll │ │ │ ├── avx1.ll │ │ │ ├── avx512.ll │ │ │ ├── consecutive-ptr-cg-bug.ll │ │ │ ├── consecutive-ptr-uniforms.ll │ │ │ ├── constant-vector-operand.ll │ │ │ ├── conversion-cost.ll │ │ │ ├── cost-model.ll │ │ │ ├── float-induction-x86.ll │ │ │ ├── force-ifcvt.ll │ │ │ ├── fp32_to_uint32-cost-model.ll │ │ │ ├── fp64_to_uint32-cost-model.ll │ │ │ ├── fp_to_sint8-cost-model.ll │ │ │ ├── funclet.ll │ │ │ ├── gather-cost.ll │ │ │ ├── gather-vs-interleave.ll │ │ │ ├── gather_scatter.ll │ │ │ ├── gcc-examples.ll │ │ │ ├── illegal-parallel-loop-uniform-write.ll │ │ │ ├── imprecise-through-phis.ll │ │ │ ├── int128_no_gather.ll │ │ │ ├── interleaving.ll │ │ │ ├── lit.local.cfg │ │ │ ├── masked_load_store.ll │ │ │ ├── max-mstore.ll │ │ │ ├── metadata-enable.ll │ │ │ ├── min-trip-count-switch.ll │ │ │ ├── mul_slm_16bit.ll │ │ │ ├── no-vector.ll │ │ │ ├── no_fpmath.ll │ │ │ ├── no_fpmath_with_hotness.ll │ │ │ ├── parallel-loops-after-reg2mem.ll │ │ │ ├── parallel-loops.ll │ │ │ ├── powof2div.ll │ │ │ ├── pr34438.ll │ │ │ ├── propagate-metadata.ll │ │ │ ├── ptr-indvar-crash.ll │ │ │ ├── rauw-bug.ll │ │ │ ├── reduction-crash.ll │ │ │ ├── reduction-small-size.ll │ │ │ ├── reg-usage-debug.ll │ │ │ ├── reg-usage.ll │ │ │ ├── register-assumption.ll │ │ │ ├── scatter_crash.ll │ │ │ ├── slm-no-vectorize.ll │ │ │ ├── small-size.ll │ │ │ ├── strided_load_cost.ll │ │ │ ├── struct-store.ll │ │ │ ├── svml-calls-finite.ll │ │ │ ├── svml-calls.ll │ │ │ ├── tripcount.ll │ │ │ ├── uint64_to_fp64-cost-model.ll │ │ │ ├── uniform-phi.ll │ │ │ ├── uniform_load.ll │ │ │ ├── uniformshift.ll │ │ │ ├── unroll-pm.ll │ │ │ ├── unroll-small-loops.ll │ │ │ ├── unroll_selection.ll │ │ │ ├── veclib-calls.ll │ │ │ ├── vect.omp.force.ll │ │ │ ├── vect.omp.force.small-tc.ll │ │ │ ├── vector-scalar-select-cost.ll │ │ │ ├── vector_max_bandwidth.ll │ │ │ ├── vector_ptr_load_store.ll │ │ │ ├── vectorization-remarks-loopid-dbg.ll │ │ │ ├── vectorization-remarks-missed.ll │ │ │ ├── vectorization-remarks-profitable.ll │ │ │ ├── vectorization-remarks.ll │ │ │ ├── vectorize-only-for-real.ll │ │ │ ├── x86-predication.ll │ │ │ └── x86_fp80-vector-store.ll │ │ ├── XCore │ │ │ ├── lit.local.cfg │ │ │ └── no-vector-registers.ll │ │ ├── align.ll │ │ ├── bsd_regex.ll │ │ ├── bzip_reverse_loops.ll │ │ ├── calloc.ll │ │ ├── cast-induction.ll │ │ ├── conditional-assignment.ll │ │ ├── consec_no_gep.ll │ │ ├── consecutive-ptr-uniforms.ll │ │ ├── control-flow.ll │ │ ├── cpp-new-array.ll │ │ ├── dbg.value.ll │ │ ├── dead_instructions.ll │ │ ├── debugloc.ll │ │ ├── diag-missing-instr-debug-loc.ll │ │ ├── diag-with-hotness-info-2.ll │ │ ├── diag-with-hotness-info.ll │ │ ├── discriminator.ll │ │ ├── duplicated-metadata.ll │ │ ├── ee-crash.ll │ │ ├── exact.ll │ │ ├── fcmp-vectorize.ll │ │ ├── first-order-recurrence.ll │ │ ├── flags.ll │ │ ├── float-induction.ll │ │ ├── float-reduction.ll │ │ ├── funcall.ll │ │ ├── gcc-examples.ll │ │ ├── gep_with_bitcast.ll │ │ ├── global_alias.ll │ │ ├── hints-trans.ll │ │ ├── hoist-loads.ll │ │ ├── i8-induction.ll │ │ ├── icmp-uniforms.ll │ │ ├── if-conv-crash.ll │ │ ├── if-conversion-edgemasks.ll │ │ ├── if-conversion-nest.ll │ │ ├── if-conversion-reduction.ll │ │ ├── if-conversion.ll │ │ ├── if-pred-non-void.ll │ │ ├── if-pred-not-when-safe.ll │ │ ├── if-pred-stores.ll │ │ ├── incorrect-dom-info.ll │ │ ├── increment.ll │ │ ├── induction-step.ll │ │ ├── induction.ll │ │ ├── induction_plus.ll │ │ ├── infiniteloop.ll │ │ ├── int_sideeffect.ll │ │ ├── interleaved-accesses-1.ll │ │ ├── interleaved-accesses-2.ll │ │ ├── interleaved-accesses-3.ll │ │ ├── interleaved-accesses-alias.ll │ │ ├── interleaved-accesses-pred-stores.ll │ │ ├── interleaved-accesses.ll │ │ ├── intrinsic.ll │ │ ├── iv_outside_user.ll │ │ ├── lcssa-crash.ll │ │ ├── legal_preheader_check.ll │ │ ├── lifetime.ll │ │ ├── loop-form.ll │ │ ├── loop-scalars.ll │ │ ├── loop-vect-memdep.ll │ │ ├── memdep.ll │ │ ├── metadata-unroll.ll │ │ ├── metadata-width.ll │ │ ├── metadata.ll │ │ ├── miniters.ll │ │ ├── minmax_reduction.ll │ │ ├── multi-use-reduction-bug.ll │ │ ├── multiple-address-spaces.ll │ │ ├── multiple-strides-vectorization.ll │ │ ├── no_array_bounds.ll │ │ ├── no_idiv_reduction.ll │ │ ├── no_int_induction.ll │ │ ├── no_outside_user.ll │ │ ├── no_switch.ll │ │ ├── noalias-md-licm.ll │ │ ├── noalias-md.ll │ │ ├── nofloat.ll │ │ ├── non-const-n.ll │ │ ├── nontemporal.ll │ │ ├── nsw-crash.ll │ │ ├── opt.ll │ │ ├── optsize.ll │ │ ├── partial-lcssa.ll │ │ ├── phi-cost.ll │ │ ├── phi-hang.ll │ │ ├── pr25281.ll │ │ ├── pr28541.ll │ │ ├── pr30654-phiscev-sext-trunc.ll │ │ ├── pr31098.ll │ │ ├── pr31190.ll │ │ ├── pr32859.ll │ │ ├── pr33706.ll │ │ ├── pr34681.ll │ │ ├── pr35773.ll │ │ ├── ptr-induction.ll │ │ ├── ptr_loops.ll │ │ ├── read-only.ll │ │ ├── reduction-small-size.ll │ │ ├── reduction.ll │ │ ├── reverse_induction.ll │ │ ├── reverse_iter.ll │ │ ├── runtime-check-address-space.ll │ │ ├── runtime-check-readonly-address-space.ll │ │ ├── runtime-check-readonly.ll │ │ ├── runtime-check.ll │ │ ├── runtime-limit.ll │ │ ├── safegep.ll │ │ ├── same-base-access.ll │ │ ├── scalar-select.ll │ │ ├── scalar_after_vectorization.ll │ │ ├── scev-exitlim-crash.ll │ │ ├── simple-unroll.ll │ │ ├── small-loop.ll │ │ ├── start-non-zero.ll │ │ ├── store-shuffle-bug.ll │ │ ├── struct_access.ll │ │ ├── tbaa-nodep.ll │ │ ├── tripcount.ll │ │ ├── undef-inst-bug.ll │ │ ├── unroll-novec-memcheck-metadata.ll │ │ ├── unroll.ll │ │ ├── unroll_novec.ll │ │ ├── unsafe-dep-remark.ll │ │ ├── unsized-pointee-crash.ll │ │ ├── value-ptr-bug.ll │ │ ├── vect-phiscev-sext-trunc.ll │ │ ├── vect.omp.persistence.ll │ │ ├── vect.stats.ll │ │ ├── vector-geps.ll │ │ ├── vectorize-once.ll │ │ ├── version-mem-access.ll │ │ ├── write-only.ll │ │ └── zero-sized-pointee-crash.ll │ ├── LoopVersioning │ │ ├── basic.ll │ │ ├── exit-block-dominates-rt-check-block.ll │ │ ├── incorrect-phi.ll │ │ ├── lcssa.ll │ │ ├── loop-invariant-bound.ll │ │ ├── noalias-version-twice.ll │ │ └── noalias.ll │ ├── LoopVersioningLICM │ │ ├── loopversioningLICM1.ll │ │ ├── loopversioningLICM2.ll │ │ ├── loopversioningLICM3.ll │ │ └── metadata.ll │ ├── LowerAtomic │ │ ├── atomic-load.ll │ │ ├── atomic-swap.ll │ │ └── barrier.ll │ ├── LowerExpectIntrinsic │ │ ├── PR33346.ll │ │ ├── basic.ll │ │ ├── expect_nonboolean.ll │ │ ├── phi_merge.ll │ │ ├── phi_or.ll │ │ └── phi_tern.ll │ ├── LowerGuardIntrinsic │ │ ├── basic.ll │ │ └── with-calling-conv.ll │ ├── LowerInvoke │ │ ├── 2003-12-10-Crash.ll │ │ └── lowerinvoke.ll │ ├── LowerSwitch │ │ ├── 2003-05-01-PHIProblem.ll │ │ ├── 2003-08-23-EmptySwitch.ll │ │ ├── 2004-03-13-SwitchIsDefaultCrash.ll │ │ ├── 2014-06-10-SwitchContiguousOpt.ll │ │ ├── 2014-06-11-SwitchDefaultUnreachableOpt.ll │ │ ├── 2014-06-23-PHIlowering.ll │ │ ├── delete-default-block-crash.ll │ │ ├── feature.ll │ │ ├── fold-popular-case-to-unreachable-default.ll │ │ └── phi-in-dead-block.ll │ ├── LowerTypeTests │ │ ├── Inputs │ │ │ ├── import-icall.yaml │ │ │ ├── import-unsat.yaml │ │ │ ├── import.yaml │ │ │ ├── use-typeid1-dead.yaml │ │ │ └── use-typeid1-typeid2.yaml │ │ ├── blockaddress-2.ll │ │ ├── blockaddress.ll │ │ ├── constant.ll │ │ ├── export-allones.ll │ │ ├── export-bytearray.ll │ │ ├── export-dead.ll │ │ ├── export-icall.ll │ │ ├── export-inline.ll │ │ ├── export-nothing.ll │ │ ├── export-single.ll │ │ ├── external-global.ll │ │ ├── function-arm-thumb.ll │ │ ├── function-disjoint.ll │ │ ├── function-ext.ll │ │ ├── function-weak.ll │ │ ├── function.ll │ │ ├── import-icall.ll │ │ ├── import-unsat.ll │ │ ├── import.ll │ │ ├── layout.ll │ │ ├── nonstring.ll │ │ ├── pr25902.ll │ │ ├── section.ll │ │ ├── simple.ll │ │ ├── simplify.ll │ │ ├── simplify_phi.ll │ │ ├── single-offset.ll │ │ ├── unnamed.ll │ │ └── unsat.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 │ │ ├── atomic.ll │ │ ├── crash.ll │ │ ├── dbg-addr-inline-dse.ll │ │ ├── dbg-addr.ll │ │ ├── debug-alloca-phi.ll │ │ ├── ignore-lifetime.ll │ │ ├── optnone.ll │ │ ├── pr24179.ll │ │ └── preserve-nonnull-load-metadata.ll │ ├── MemCpyOpt │ │ ├── 2008-02-24-MultipleUseofSRet.ll │ │ ├── 2008-03-13-ReturnSlotBitcast.ll │ │ ├── 2011-06-02-CallSlotOverwritten.ll │ │ ├── align.ll │ │ ├── atomic.ll │ │ ├── callslot_aa.ll │ │ ├── callslot_deref.ll │ │ ├── callslot_throw.ll │ │ ├── capturing-func.ll │ │ ├── crash.ll │ │ ├── fca2memcpy.ll │ │ ├── form-memset.ll │ │ ├── invariant.start.ll │ │ ├── lifetime.ll │ │ ├── load-store-to-memcpy.ll │ │ ├── loadstore-sret.ll │ │ ├── memcpy-to-memset-with-lifetimes.ll │ │ ├── memcpy-to-memset.ll │ │ ├── memcpy-undef.ll │ │ ├── memcpy.ll │ │ ├── memmove.ll │ │ ├── memset-memcpy-redundant-memset.ll │ │ ├── memset-memcpy-to-2x-memset.ll │ │ ├── nontemporal.ll │ │ ├── pr29105.ll │ │ ├── profitable-memset.ll │ │ ├── smaller.ll │ │ └── sret.ll │ ├── MergeFunc │ │ ├── 2011-02-08-RemoveEqual.ll │ │ ├── 2013-01-10-MergeFuncAssert.ll │ │ ├── address-spaces.ll │ │ ├── alloca.ll │ │ ├── apply_function_attributes.ll │ │ ├── call-and-invoke-with-ranges.ll │ │ ├── constant-entire-value.ll │ │ ├── crash.ll │ │ ├── crash2.ll │ │ ├── fold-weak.ll │ │ ├── functions.ll │ │ ├── gep-base-type.ll │ │ ├── inttoptr-address-space.ll │ │ ├── inttoptr.ll │ │ ├── linkonce_odr.ll │ │ ├── merge-block-address-other-function.ll │ │ ├── merge-block-address.ll │ │ ├── merge-const-ptr-and-int.ll │ │ ├── merge-different-vector-types.ll │ │ ├── merge-ptr-and-int.ll │ │ ├── merge-small-unnamed-addr.ll │ │ ├── merge-unnamed-addr-bitcast.ll │ │ ├── merge-unnamed-addr.ll │ │ ├── merge-weak-crash.ll │ │ ├── mergefunc-preserve-debug-info.ll │ │ ├── mergefunc-struct-return.ll │ │ ├── no-merge-block-address-different-labels.ll │ │ ├── no-merge-block-address-other-function.ll │ │ ├── no-merge-ptr-different-sizes.ll │ │ ├── no-merge-ptr-int-different-values.ll │ │ ├── phi-check-blocks.ll │ │ ├── phi-speculation1.ll │ │ ├── phi-speculation2.ll │ │ ├── ptr-int-transitivity-1.ll │ │ ├── ptr-int-transitivity-2.ll │ │ ├── ptr-int-transitivity-3.ll │ │ ├── ranges-multiple.ll │ │ ├── ranges.ll │ │ ├── self-referential-global.ll │ │ ├── too-small.ll │ │ ├── undef-different-types.ll │ │ ├── vector-GEP-crash.ll │ │ ├── vector.ll │ │ └── vectors-and-arrays.ll │ ├── MergeICmps │ │ ├── X86 │ │ │ ├── lit.local.cfg │ │ │ ├── pair-int32-int32.ll │ │ │ ├── tuple-four-int8.ll │ │ │ └── volatile.ll │ │ └── pair-int32-int32.ll │ ├── MetaRenamer │ │ ├── main.ll │ │ └── metarenamer.ll │ ├── NameAnonGlobals │ │ └── rename.ll │ ├── NaryReassociate │ │ ├── NVPTX │ │ │ ├── lit.local.cfg │ │ │ ├── nary-gep.ll │ │ │ └── nary-slsr.ll │ │ ├── nary-add.ll │ │ ├── nary-mul.ll │ │ └── pr24301.ll │ ├── NewGVN │ │ ├── 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-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-03-10-PREOnVoid.ll │ │ ├── 2009-07-13-MemDepSortFail.ll │ │ ├── 2009-11-12-MemDepMallocBitCast.ll │ │ ├── 2010-03-31-RedundantPHIs.ll │ │ ├── 2010-05-08-OneBit.ll │ │ ├── 2010-11-13-Simplify.ll │ │ ├── 2011-04-27-phioperands.ll │ │ ├── 2011-07-07-MatchIntrinsicExtract.ll │ │ ├── 2011-09-07-TypeIdFor.ll │ │ ├── 2012-05-22-PreCrash.ll │ │ ├── 2016-08-30-MaskedScatterGather.ll │ │ ├── MemdepMiscompile.ll │ │ ├── assume-equal.ll │ │ ├── basic-cyclic-opt.ll │ │ ├── basic-undef-test.ll │ │ ├── basic.ll │ │ ├── big-endian.ll │ │ ├── bitcast-of-call.ll │ │ ├── br-identical.ll │ │ ├── calloc-load-removal.ll │ │ ├── calls-nonlocal.ll │ │ ├── calls-readonly.ll │ │ ├── commute.ll │ │ ├── completeness.ll │ │ ├── cond_br.ll │ │ ├── cond_br2.ll │ │ ├── condprop-xfail.ll │ │ ├── condprop.ll │ │ ├── crash-no-aa.ll │ │ ├── crash.ll │ │ ├── cyclic-phi-handling.ll │ │ ├── dbg-redundant-load.ll │ │ ├── deadstore.ll │ │ ├── debugloc.ll │ │ ├── edge.ll │ │ ├── equivalent-phi.ll │ │ ├── fence.ll │ │ ├── flags.ll │ │ ├── fold-const-expr.ll │ │ ├── fpmath.ll │ │ ├── funclet.ll │ │ ├── int_sideeffect.ll │ │ ├── invariant.group.ll │ │ ├── invariant.start.ll │ │ ├── lifetime-simple.ll │ │ ├── load-constant-mem.ll │ │ ├── load-from-unreachable-predecessor.ll │ │ ├── loadforward.ll │ │ ├── malloc-load-removal.ll │ │ ├── memory-handling.ll │ │ ├── no_speculative_loads_with_asan.ll │ │ ├── noalias.ll │ │ ├── non-integral-pointers.ll │ │ ├── non-local-offset.ll │ │ ├── nonescaping-malloc.ll │ │ ├── null-aliases-nothing.ll │ │ ├── opt-remarks.ll │ │ ├── phi-edge-handling.ll │ │ ├── phi-translate-partial-alias.ll │ │ ├── pr10820.ll │ │ ├── pr12979.ll │ │ ├── pr14166.ll │ │ ├── pr17732.ll │ │ ├── pr17852.ll │ │ ├── pr24397.ll │ │ ├── pr24426.ll │ │ ├── pr25440.ll │ │ ├── pr28562.ll │ │ ├── pr31472.ll │ │ ├── pr31483.ll │ │ ├── pr31491.ll │ │ ├── pr31501.ll │ │ ├── pr31573.ll │ │ ├── pr31594.ll │ │ ├── pr31613.ll │ │ ├── pr31682.ll │ │ ├── pr31758.ll │ │ ├── pr32403.ll │ │ ├── pr32607.ll │ │ ├── pr32836.ll │ │ ├── pr32838.ll │ │ ├── pr32845.ll │ │ ├── pr32852.ll │ │ ├── pr32897.ll │ │ ├── pr32934.ll │ │ ├── pr32945.ll │ │ ├── pr32952.ll │ │ ├── pr33014.ll │ │ ├── pr33086.ll │ │ ├── pr33116.ll │ │ ├── pr33185.ll │ │ ├── pr33187.ll │ │ ├── pr33196.ll │ │ ├── pr33204.ll │ │ ├── pr33305.ll │ │ ├── pr33432.ll │ │ ├── pr33461.ll │ │ ├── pr33720.ll │ │ ├── pr34135.ll │ │ ├── pr34430.ll │ │ ├── pr34452.ll │ │ ├── pr35125.ll │ │ ├── pre-compare.ll │ │ ├── pre-new-inst.ll │ │ ├── predicates.ll │ │ ├── propagate-ir-flags.ll │ │ ├── range.ll │ │ ├── readattrs.ll │ │ ├── refine-stores.ll │ │ ├── rle-must-alias.ll │ │ ├── rle-no-phi-translate.ll │ │ ├── rle-nonlocal.ll │ │ ├── rle.ll │ │ ├── stale-loop-info.ll │ │ ├── storeoverstore.ll │ │ ├── tbaa.ll │ │ ├── unreachable_block_infinite_loop.ll │ │ ├── verify-memoryphi.ll │ │ └── volatile-nonvolatile.ll │ ├── ObjCARC │ │ ├── allocas.ll │ │ ├── apelim.ll │ │ ├── basic.ll │ │ ├── cfg-hazards.ll │ │ ├── clang-arc-use-barrier.ll │ │ ├── comdat-ipo.ll │ │ ├── contract-end-of-use-list.ll │ │ ├── contract-marker.ll │ │ ├── contract-replace-arg-use.ll │ │ ├── contract-storestrong-ivar.ll │ │ ├── contract-storestrong.ll │ │ ├── contract-testcases.ll │ │ ├── contract.ll │ │ ├── empty-block.ll │ │ ├── ensure-that-exception-unwind-path-is-visited.ll │ │ ├── escape.ll │ │ ├── expand.ll │ │ ├── gvn.ll │ │ ├── intrinsic-use-isolated.ll │ │ ├── intrinsic-use.ll │ │ ├── invoke-2.ll │ │ ├── invoke.ll │ │ ├── move-and-form-retain-autorelease.ll │ │ ├── move-and-merge-autorelease.ll │ │ ├── nested.ll │ │ ├── path-overflow.ll │ │ ├── pointer-types.ll │ │ ├── post-inlining.ll │ │ ├── pr12270.ll │ │ ├── provenance.ll │ │ ├── retain-block-side-effects.ll │ │ ├── retain-not-declared.ll │ │ ├── rle-s2l.ll │ │ ├── rv.ll │ │ ├── split-backedge.ll │ │ ├── tail-call-invariant-enforcement.ll │ │ ├── unsafe-claim-rv.ll │ │ ├── weak-contract.ll │ │ ├── weak-copies.ll │ │ ├── weak-dce.ll │ │ └── weak.ll │ ├── PGOProfile │ │ ├── Inputs │ │ │ ├── PR28219.proftext │ │ │ ├── branch1.proftext │ │ │ ├── branch1_large_count.proftext │ │ │ ├── branch2.proftext │ │ │ ├── criticaledge.proftext │ │ │ ├── diag.proftext │ │ │ ├── diag_FE.proftext │ │ │ ├── indirect_call.proftext │ │ │ ├── indirectbr.proftext │ │ │ ├── irreducible.proftext │ │ │ ├── landingpad.proftext │ │ │ ├── loop1.proftext │ │ │ ├── loop2.proftext │ │ │ ├── memop_size_annotation.proftext │ │ │ ├── multiple_hash_profile.proftext │ │ │ ├── noreturncall.proftext │ │ │ ├── select1.proftext │ │ │ ├── select2.proftext │ │ │ ├── switch.proftext │ │ │ ├── thinlto_indirect_call_promotion.ll │ │ │ ├── thinlto_samplepgo_icp.ll │ │ │ ├── thinlto_samplepgo_icp2a.ll │ │ │ ├── thinlto_samplepgo_icp2b.ll │ │ │ ├── thinlto_samplepgo_icp3.ll │ │ │ └── unreachable_bb.proftext │ │ ├── PR28219.ll │ │ ├── X86 │ │ │ ├── lit.local.cfg │ │ │ └── macho.ll │ │ ├── branch1.ll │ │ ├── branch2.ll │ │ ├── comdat_internal.ll │ │ ├── comdat_rename.ll │ │ ├── counter_promo.ll │ │ ├── counter_promo_exit_merge.ll │ │ ├── counter_promo_mexits.ll │ │ ├── counter_promo_nest.ll │ │ ├── criticaledge.ll │ │ ├── diag_FE_profile.ll │ │ ├── diag_mismatch.ll │ │ ├── diag_no_funcprofdata.ll │ │ ├── diag_no_profile.ll │ │ ├── do-not-instrument.ll │ │ ├── icp_covariant_call_return.ll │ │ ├── icp_covariant_invoke_return.ll │ │ ├── icp_invoke.ll │ │ ├── icp_invoke_nouse.ll │ │ ├── icp_mismatch_msg.ll │ │ ├── icp_sample.ll │ │ ├── icp_vararg.ll │ │ ├── indirect_call_annotation.ll │ │ ├── indirect_call_profile.ll │ │ ├── indirect_call_promotion.ll │ │ ├── indirectbr.ll │ │ ├── infinite_loop.ll │ │ ├── infinite_loop_gen.ll │ │ ├── irreducible.ll │ │ ├── landingpad.ll │ │ ├── loop1.ll │ │ ├── loop2.ll │ │ ├── memcpy.ll │ │ ├── memop_clone.ll │ │ ├── memop_size_annotation.ll │ │ ├── memop_size_from_strlen.ll │ │ ├── memop_size_opt.ll │ │ ├── memop_size_opt_zero.ll │ │ ├── multiple_hash_profile.ll │ │ ├── noreturncall.ll │ │ ├── preinline.ll │ │ ├── select1.ll │ │ ├── select2.ll │ │ ├── single_bb.ll │ │ ├── split-indirectbr-critical-edges.ll │ │ ├── statics_counter_naming.ll │ │ ├── switch.ll │ │ ├── thinlto_indirect_call_promotion.ll │ │ ├── thinlto_samplepgo_icp.ll │ │ ├── thinlto_samplepgo_icp2.ll │ │ ├── thinlto_samplepgo_icp3.ll │ │ └── unreachable_bb.ll │ ├── PartiallyInlineLibCalls │ │ ├── X86 │ │ │ ├── good-prototype.ll │ │ │ └── lit.local.cfg │ │ ├── bad-prototype.ll │ │ └── nobuiltin.ll │ ├── PhaseOrdering │ │ ├── 2010-03-22-empty-baseclass.ll │ │ ├── PR6627.ll │ │ ├── basic.ll │ │ ├── gdce.ll │ │ ├── globalaa-retained.ll │ │ ├── scev.ll │ │ └── simplifycfg-options.ll │ ├── PlaceSafepoints │ │ ├── basic.ll │ │ ├── call-in-loop.ll │ │ ├── finite-loops.ll │ │ ├── libcall.ll │ │ ├── memset.ll │ │ ├── no-statepoints.ll │ │ ├── split-backedge.ll │ │ ├── statepoint-coreclr.ll │ │ └── statepoint-frameescape.ll │ ├── PreISelIntrinsicLowering │ │ └── load-relative.ll │ ├── PruneEH │ │ ├── 2008-06-02-Weak.ll │ │ ├── ipo-nounwind.ll │ │ ├── operand-bundles.ll │ │ ├── pr23971.ll │ │ ├── pr26263.ll │ │ ├── recursivetest.ll │ │ ├── seh-nounwind.ll │ │ ├── simplenoreturntest.ll │ │ └── simpletest.ll │ ├── Reassociate │ │ ├── 2002-05-15-AgressiveSubMove.ll │ │ ├── 2002-05-15-MissedTree.ll │ │ ├── 2002-05-15-SubReassociate.ll │ │ ├── 2002-07-09-DominanceProblem.ll │ │ ├── 2003-08-12-InfiniteLoop.ll │ │ ├── 2005-09-01-ArrayOutOfBounds.ll │ │ ├── 2006-04-27-ReassociateVector.ll │ │ ├── 2011-01-26-UseAfterFree.ll │ │ ├── 2012-05-08-UndefLeak.ll │ │ ├── 2012-06-08-InfiniteLoop.ll │ │ ├── absorption.ll │ │ ├── add_across_block_crash.ll │ │ ├── basictest.ll │ │ ├── canonicalize-neg-const.ll │ │ ├── commute.ll │ │ ├── crash.ll │ │ ├── crash2.ll │ │ ├── deadcode.ll │ │ ├── erase_inst_made_change.ll │ │ ├── factorize-again.ll │ │ ├── fast-AgressiveSubMove.ll │ │ ├── fast-ArrayOutOfBounds.ll │ │ ├── fast-MissedTree.ll │ │ ├── fast-ReassociateVector.ll │ │ ├── fast-SubReassociate.ll │ │ ├── fast-basictest.ll │ │ ├── fast-fp-commute.ll │ │ ├── fast-mightymul.ll │ │ ├── fast-multistep.ll │ │ ├── fp-commute.ll │ │ ├── fp-expr.ll │ │ ├── inverses.ll │ │ ├── keep-debug-loc.ll │ │ ├── looptest.ll │ │ ├── mightymul.ll │ │ ├── min_int.ll │ │ ├── mixed-fast-nonfast-fp.ll │ │ ├── mulfactor.ll │ │ ├── multistep.ll │ │ ├── negation.ll │ │ ├── negation1.ll │ │ ├── no-op.ll │ │ ├── optional-flags.ll │ │ ├── otherops.ll │ │ ├── pr12245.ll │ │ ├── pr21205.ll │ │ ├── pr28367.ll │ │ ├── propagate-flags.ll │ │ ├── reassoc-intermediate-fnegs.ll │ │ ├── reassociate-deadinst.ll │ │ ├── repeats.ll │ │ ├── secondary.ll │ │ ├── shift-factor.ll │ │ ├── shifttest.ll │ │ ├── subtest.ll │ │ ├── vaarg_movable.ll │ │ ├── wrap-flags.ll │ │ └── xor_reassoc.ll │ ├── Reg2Mem │ │ └── crash.ll │ ├── RewriteStatepointsForGC │ │ ├── base-pointers-1.ll │ │ ├── base-pointers-10.ll │ │ ├── base-pointers-11.ll │ │ ├── base-pointers-12.ll │ │ ├── base-pointers-13.ll │ │ ├── base-pointers-2.ll │ │ ├── base-pointers-3.ll │ │ ├── base-pointers-4.ll │ │ ├── base-pointers-5.ll │ │ ├── base-pointers-6.ll │ │ ├── base-pointers-7.ll │ │ ├── base-pointers-8.ll │ │ ├── base-pointers-9.ll │ │ ├── base-pointers.ll │ │ ├── base-vector.ll │ │ ├── basic.ll │ │ ├── basics.ll │ │ ├── call-gc-result.ll │ │ ├── check_traversal_order.ll │ │ ├── codegen-cond.ll │ │ ├── constants.ll │ │ ├── deopt-intrinsic-cconv.ll │ │ ├── deopt-intrinsic.ll │ │ ├── deopt-lowering-attrs.ll │ │ ├── deref-pointers.ll │ │ ├── drop-invalid-metadata.ll │ │ ├── gc-relocate-creation.ll │ │ ├── invokes.ll │ │ ├── leaf-function.ll │ │ ├── libcall.ll │ │ ├── live-vector-nosplit.ll │ │ ├── liveness-basics.ll │ │ ├── patchable-statepoints.ll │ │ ├── preprocess.ll │ │ ├── relocate-invoke-result.ll │ │ ├── relocation.ll │ │ ├── rematerialize-derived-pointers.ll │ │ ├── rewrite-invoke.ll │ │ ├── statepoint-attrs.ll │ │ ├── statepoint-calling-conventions.ll │ │ ├── statepoint-coreclr.ll │ │ ├── statepoint-format.ll │ │ ├── two-invokes-one-landingpad.ll │ │ └── vector-bitcast.ll │ ├── SCCP │ │ ├── 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 │ │ ├── atomic-load-store.ll │ │ ├── atomic.ll │ │ ├── bitcast.ll │ │ ├── calltest.ll │ │ ├── comdat-ipo.ll │ │ ├── constant-struct.ll │ │ ├── crash.ll │ │ ├── definite-initializer.ll │ │ ├── dont-zap-return.ll │ │ ├── global-alias-constprop.ll │ │ ├── indirectbr.ll │ │ ├── ip-constant-ranges.ll │ │ ├── ipsccp-addr-taken.ll │ │ ├── ipsccp-basic.ll │ │ ├── loadtest.ll │ │ ├── logical-nuke.ll │ │ ├── overdefined-div.ll │ │ ├── pr27712.ll │ │ ├── pr35357.ll │ │ ├── retvalue-undef.ll │ │ ├── sccptest.ll │ │ ├── select.ll │ │ ├── switch-multiple-undef.ll │ │ ├── switch.ll │ │ ├── ub-shift.ll │ │ ├── undef-resolve.ll │ │ └── vector-bitcast.ll │ ├── SLPVectorizer │ │ ├── AArch64 │ │ │ ├── 64-bit-vector.ll │ │ │ ├── commute.ll │ │ │ ├── gather-reduce.ll │ │ │ ├── gather-root.ll │ │ │ ├── getelementptr.ll │ │ │ ├── horizontal.ll │ │ │ ├── lit.local.cfg │ │ │ ├── load-store-q.ll │ │ │ ├── minimum-sizes.ll │ │ │ ├── mismatched-intrinsics.ll │ │ │ ├── nontemporal.ll │ │ │ ├── remarks.ll │ │ │ └── sdiv-pow2.ll │ │ ├── AMDGPU │ │ │ ├── lit.local.cfg │ │ │ └── packed-math.ll │ │ ├── ARM │ │ │ ├── lit.local.cfg │ │ │ ├── memory.ll │ │ │ └── sroa.ll │ │ ├── PowerPC │ │ │ ├── aggregate.ll │ │ │ ├── lit.local.cfg │ │ │ └── pr27897.ll │ │ ├── SystemZ │ │ │ ├── SLP-cmp-cost-query.ll │ │ │ └── lit.local.cfg │ │ ├── X86 │ │ │ ├── PR32086.ll │ │ │ ├── PR34635.ll │ │ │ ├── PR35628_1.ll │ │ │ ├── PR35628_2.ll │ │ │ ├── PR35777.ll │ │ │ ├── PR35865.ll │ │ │ ├── addsub.ll │ │ │ ├── aggregate.ll │ │ │ ├── align.ll │ │ │ ├── arith-add.ll │ │ │ ├── arith-fp.ll │ │ │ ├── arith-mul.ll │ │ │ ├── arith-sub.ll │ │ │ ├── atomics.ll │ │ │ ├── bad_types.ll │ │ │ ├── barriercall.ll │ │ │ ├── bitreverse.ll │ │ │ ├── blending-shuffle.ll │ │ │ ├── bswap.ll │ │ │ ├── call.ll │ │ │ ├── cast.ll │ │ │ ├── cmp_sel.ll │ │ │ ├── commutativity.ll │ │ │ ├── compare-reduce.ll │ │ │ ├── consecutive-access.ll │ │ │ ├── continue_vectorizing.ll │ │ │ ├── crash_7zip.ll │ │ │ ├── crash_binaryop.ll │ │ │ ├── crash_bullet.ll │ │ │ ├── crash_bullet3.ll │ │ │ ├── crash_cmpop.ll │ │ │ ├── crash_dequeue.ll │ │ │ ├── crash_flop7.ll │ │ │ ├── crash_gep.ll │ │ │ ├── crash_lencod.ll │ │ │ ├── crash_mandeltext.ll │ │ │ ├── crash_netbsd_decompress.ll │ │ │ ├── crash_scheduling.ll │ │ │ ├── crash_sim4b1.ll │ │ │ ├── crash_smallpt.ll │ │ │ ├── crash_vectorizeTree.ll │ │ │ ├── cross_block_slp.ll │ │ │ ├── cse.ll │ │ │ ├── ctlz.ll │ │ │ ├── ctpop.ll │ │ │ ├── cttz.ll │ │ │ ├── cycle_dup.ll │ │ │ ├── debug_info.ll │ │ │ ├── diamond.ll │ │ │ ├── external_user.ll │ │ │ ├── extract.ll │ │ │ ├── extract_in_tree_user.ll │ │ │ ├── extractcost.ll │ │ │ ├── extractelement.ll │ │ │ ├── fabs.ll │ │ │ ├── fcopysign.ll │ │ │ ├── flag.ll │ │ │ ├── fma.ll │ │ │ ├── fptosi.ll │ │ │ ├── fptoui.ll │ │ │ ├── fround.ll │ │ │ ├── funclet.ll │ │ │ ├── gep.ll │ │ │ ├── gep_mismatch.ll │ │ │ ├── hoist.ll │ │ │ ├── horizontal-list.ll │ │ │ ├── horizontal-minmax.ll │ │ │ ├── horizontal.ll │ │ │ ├── implicitfloat.ll │ │ │ ├── in-tree-user.ll │ │ │ ├── insert-after-bundle.ll │ │ │ ├── insert-element-build-vector.ll │ │ │ ├── insertvalue.ll │ │ │ ├── intrinsic.ll │ │ │ ├── jumbled-load-multiuse.ll │ │ │ ├── jumbled-load.ll │ │ │ ├── limit.ll │ │ │ ├── lit.local.cfg │ │ │ ├── load-merge.ll │ │ │ ├── long_chains.ll │ │ │ ├── loopinvariant.ll │ │ │ ├── metadata.ll │ │ │ ├── minimum-sizes.ll │ │ │ ├── multi_block.ll │ │ │ ├── multi_user.ll │ │ │ ├── non-vectorizable-intrinsic.ll │ │ │ ├── odd_store.ll │ │ │ ├── operandorder.ll │ │ │ ├── opt.ll │ │ │ ├── ordering.ll │ │ │ ├── phi.ll │ │ │ ├── phi3.ll │ │ │ ├── phi_landingpad.ll │ │ │ ├── phi_overalignedtype.ll │ │ │ ├── powof2div.ll │ │ │ ├── pr16571.ll │ │ │ ├── pr16628.ll │ │ │ ├── pr16899.ll │ │ │ ├── pr18060.ll │ │ │ ├── pr19657.ll │ │ │ ├── pr23510.ll │ │ │ ├── pr27163.ll │ │ │ ├── pr31599.ll │ │ │ ├── propagate_ir_flags.ll │ │ │ ├── reduction.ll │ │ │ ├── reduction2.ll │ │ │ ├── reduction_loads.ll │ │ │ ├── reduction_unrolled.ll │ │ │ ├── remark_horcost.ll │ │ │ ├── remark_listcost.ll │ │ │ ├── remark_not_all_parts.ll │ │ │ ├── remark_unsupported.ll │ │ │ ├── reorder_phi.ll │ │ │ ├── return.ll │ │ │ ├── reverse_extract_elements.ll │ │ │ ├── rgb_phi.ll │ │ │ ├── saxpy.ll │ │ │ ├── schedule-bundle.ll │ │ │ ├── schedule_budget.ll │ │ │ ├── scheduling.ll │ │ │ ├── shift-ashr.ll │ │ │ ├── shift-lshr.ll │ │ │ ├── shift-shl.ll │ │ │ ├── simple-loop.ll │ │ │ ├── simplebb.ll │ │ │ ├── sitofp.ll │ │ │ ├── sqrt.ll │ │ │ ├── store-jumbled.ll │ │ │ ├── stores_vectorize.ll │ │ │ ├── tiny-tree.ll │ │ │ ├── uitofp.ll │ │ │ ├── undef_vect.ll │ │ │ ├── unreachable.ll │ │ │ ├── value-bug.ll │ │ │ ├── vect_copyable_in_binops.ll │ │ │ ├── vector.ll │ │ │ ├── vector_gep.ll │ │ │ └── visit-dominated.ll │ │ ├── XCore │ │ │ ├── lit.local.cfg │ │ │ └── no-vector-registers.ll │ │ └── int_sideeffect.ll │ ├── SROA │ │ ├── address-spaces.ll │ │ ├── alignment.ll │ │ ├── alloca-address-space.ll │ │ ├── basictest.ll │ │ ├── big-endian.ll │ │ ├── dbg-addr-diamond.ll │ │ ├── dbg-single-piece.ll │ │ ├── dead-inst.ll │ │ ├── fca.ll │ │ ├── mem-par-metadata-sroa.ll │ │ ├── non-integral-pointers.ll │ │ ├── phi-and-select.ll │ │ ├── ppcf128-no-fold.ll │ │ ├── pr26972.ll │ │ ├── preserve-nonnull.ll │ │ ├── slice-order-independence.ll │ │ ├── slice-width.ll │ │ ├── vector-conversion.ll │ │ ├── vector-lifetime-intrinsic.ll │ │ ├── vector-promotion.ll │ │ └── vectors-of-pointers.ll │ ├── SafeStack │ │ ├── AArch64 │ │ │ ├── abi.ll │ │ │ ├── abi_ssp.ll │ │ │ └── lit.local.cfg │ │ ├── ARM │ │ │ ├── abi.ll │ │ │ ├── lit.local.cfg │ │ │ └── setjmp.ll │ │ └── X86 │ │ │ ├── abi.ll │ │ │ ├── abi_ssp.ll │ │ │ ├── addr-taken.ll │ │ │ ├── array-aligned.ll │ │ │ ├── array.ll │ │ │ ├── byval.ll │ │ │ ├── call.ll │ │ │ ├── cast.ll │ │ │ ├── coloring-ssp.ll │ │ │ ├── coloring.ll │ │ │ ├── coloring2.ll │ │ │ ├── constant-gep-call.ll │ │ │ ├── constant-gep.ll │ │ │ ├── constant-geps.ll │ │ │ ├── debug-loc-dynamic.ll │ │ │ ├── debug-loc.ll │ │ │ ├── debug-loc2.ll │ │ │ ├── dynamic-alloca.ll │ │ │ ├── escape-addr-pointer.ll │ │ │ ├── escape-bitcast-store.ll │ │ │ ├── escape-bitcast-store2.ll │ │ │ ├── escape-call.ll │ │ │ ├── escape-casted-pointer.ll │ │ │ ├── escape-gep-call.ll │ │ │ ├── escape-gep-invoke.ll │ │ │ ├── escape-gep-negative.ll │ │ │ ├── escape-gep-ptrtoint.ll │ │ │ ├── escape-gep-store.ll │ │ │ ├── escape-phi-call.ll │ │ │ ├── escape-select-call.ll │ │ │ ├── escape-vector.ll │ │ │ ├── invoke.ll │ │ │ ├── layout-frag.ll │ │ │ ├── layout-region-split.ll │ │ │ ├── lit.local.cfg │ │ │ ├── no-attr.ll │ │ │ ├── phi-cycle.ll │ │ │ ├── phi.ll │ │ │ ├── ret.ll │ │ │ ├── setjmp.ll │ │ │ ├── setjmp2.ll │ │ │ ├── sink-to-use.ll │ │ │ ├── ssp.ll │ │ │ ├── store.ll │ │ │ └── struct.ll │ ├── SampleProfile │ │ ├── Inputs │ │ │ ├── bad_discriminator_value.prof │ │ │ ├── bad_fn_header.prof │ │ │ ├── bad_line_values.prof │ │ │ ├── bad_mangle.prof │ │ │ ├── bad_sample_line.prof │ │ │ ├── bad_samples.prof │ │ │ ├── branch.prof │ │ │ ├── calls.prof │ │ │ ├── cov-zero-samples.prof │ │ │ ├── coverage-warning.prof │ │ │ ├── discriminator.prof │ │ │ ├── einline.prof │ │ │ ├── entry_counts.prof │ │ │ ├── fnptr.binprof │ │ │ ├── fnptr.prof │ │ │ ├── function_metadata.prof │ │ │ ├── gcc-simple.afdo │ │ │ ├── indirect-call.afdo │ │ │ ├── indirect-call.prof │ │ │ ├── inline-act.prof │ │ │ ├── inline-combine.prof │ │ │ ├── inline-coverage.prof │ │ │ ├── inline-hint.prof │ │ │ ├── inline.prof │ │ │ ├── nodebug.prof │ │ │ ├── nolocinfo.prof │ │ │ ├── offset.prof │ │ │ ├── propagate.prof │ │ │ ├── remarks.prof │ │ │ ├── summary.prof │ │ │ └── syntax.prof │ │ ├── branch.ll │ │ ├── calls.ll │ │ ├── cov-zero-samples.ll │ │ ├── coverage-warning.ll │ │ ├── discriminator.ll │ │ ├── early-inline.ll │ │ ├── entry_counts.ll │ │ ├── fnptr.ll │ │ ├── function_metadata.ll │ │ ├── gcc-simple.ll │ │ ├── indirect-call-gcc.ll │ │ ├── indirect-call.ll │ │ ├── inline-act.ll │ │ ├── inline-combine.ll │ │ ├── inline-coverage.ll │ │ ├── inline.ll │ │ ├── nodebug.ll │ │ ├── nolocinfo.ll │ │ ├── offset.ll │ │ ├── propagate.ll │ │ ├── remarks.ll │ │ ├── summary.ll │ │ └── syntax.ll │ ├── Scalarizer │ │ ├── basic.ll │ │ ├── cache-bug.ll │ │ ├── crash-bug.ll │ │ ├── dbginfo.ll │ │ ├── dbgloc-bug.ll │ │ ├── intrinsics.ll │ │ ├── store-bug.ll │ │ └── vector-gep.ll │ ├── SeparateConstOffsetFromGEP │ │ ├── AMDGPU │ │ │ ├── lit.local.cfg │ │ │ └── split-gep-and-gvn-addrspace-addressing-modes.ll │ │ └── NVPTX │ │ │ ├── lit.local.cfg │ │ │ ├── split-gep-and-gvn.ll │ │ │ └── split-gep.ll │ ├── SimpleLoopUnswitch │ │ ├── 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 │ │ ├── 2010-11-18-LCSSA.ll │ │ ├── 2011-06-02-CritSwitch.ll │ │ ├── 2011-09-26-EHCrash.ll │ │ ├── 2012-04-02-IndirectBr.ll │ │ ├── 2012-04-30-LoopUnswitch-LPad-Crash.ll │ │ ├── 2012-05-20-Phi.ll │ │ ├── 2015-09-18-Addrspace.ll │ │ ├── LIV-loop-condtion.ll │ │ ├── basictest.ll │ │ ├── cleanuppad.ll │ │ ├── copy-metadata.ll │ │ ├── crash.ll │ │ ├── exponential-behavior.ll │ │ ├── infinite-loop.ll │ │ ├── msan.ll │ │ ├── nontrivial-unswitch-cost.ll │ │ ├── nontrivial-unswitch.ll │ │ ├── preserve-analyses.ll │ │ └── trivial-unswitch.ll │ ├── SimplifyCFG │ │ ├── 2002-05-21-PHIElimination.ll │ │ ├── 2002-09-24-PHIAssertion.ll │ │ ├── 2003-03-07-DominateProblem.ll │ │ ├── 2003-08-05-InvokeCrash.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-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-12-08-Ptr-ICmp-Branch.ll │ │ ├── 2007-11-22-InvokeNoUnwind.ll │ │ ├── 2007-12-21-Crash.ll │ │ ├── 2008-01-02-hoist-fp-add.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-05-12-externweak.ll │ │ ├── 2010-03-30-InvokeCrash.ll │ │ ├── 2011-03-08-UnreachableUse.ll │ │ ├── 2011-09-05-TrivialLPad.ll │ │ ├── AArch64 │ │ │ ├── cttz-ctlz.ll │ │ │ ├── lit.local.cfg │ │ │ └── prefer-fma.ll │ │ ├── AMDGPU │ │ │ ├── cttz-ctlz.ll │ │ │ └── lit.local.cfg │ │ ├── ARM │ │ │ ├── cttz-ctlz.ll │ │ │ ├── lit.local.cfg │ │ │ ├── select-trunc-i64.ll │ │ │ ├── switch-to-lookup-table-constant-expr.ll │ │ │ └── switch-to-lookup-table.ll │ │ ├── BrUnwind.ll │ │ ├── ConditionalTrappingConstantExpr.ll │ │ ├── CoveredLookupTable.ll │ │ ├── DeadSetCC.ll │ │ ├── EmptyBlockMerge.ll │ │ ├── EqualPHIEdgeBlockMerge.ll │ │ ├── ForwardSwitchConditionToPHI.ll │ │ ├── Hexagon │ │ │ ├── disable-lookup-table.ll │ │ │ ├── lit.local.cfg │ │ │ └── switch-to-lookup-table.ll │ │ ├── HoistCode.ll │ │ ├── InfLoop.ll │ │ ├── MagicPointer.ll │ │ ├── Mips │ │ │ ├── cttz-ctlz.ll │ │ │ └── lit.local.cfg │ │ ├── PHINode.ll │ │ ├── PR16069.ll │ │ ├── PR17073.ll │ │ ├── PR25267.ll │ │ ├── PR27615-simplify-cond-br.ll │ │ ├── PR29163.ll │ │ ├── PR30210.ll │ │ ├── PR9946.ll │ │ ├── PhiBlockMerge.ll │ │ ├── PhiBlockMerge2.ll │ │ ├── PhiEliminate.ll │ │ ├── PhiEliminate2.ll │ │ ├── PhiEliminate3.ll │ │ ├── PhiNoEliminate.ll │ │ ├── PowerPC │ │ │ ├── cttz-ctlz-spec.ll │ │ │ └── lit.local.cfg │ │ ├── SPARC │ │ │ ├── lit.local.cfg │ │ │ └── switch_to_lookup_table.ll │ │ ├── SpeculativeExec.ll │ │ ├── UncondBranchToReturn.ll │ │ ├── UnreachableEliminate.ll │ │ ├── X86 │ │ │ ├── disable-lookup-table.ll │ │ │ ├── lit.local.cfg │ │ │ ├── speculate-cttz-ctlz.ll │ │ │ ├── switch-covered-bug.ll │ │ │ ├── switch-table-bug.ll │ │ │ └── switch_to_lookup_table.ll │ │ ├── assume.ll │ │ ├── attr-convergent.ll │ │ ├── attr-noduplicate.ll │ │ ├── basictest.ll │ │ ├── branch-cond-merge.ll │ │ ├── branch-cond-prop.ll │ │ ├── branch-fold-dbg.ll │ │ ├── branch-fold-test.ll │ │ ├── branch-fold-threshold.ll │ │ ├── branch-fold.ll │ │ ├── branch-phi-thread.ll │ │ ├── bug-25299.ll │ │ ├── clamp.ll │ │ ├── combine-parallel-mem-md.ll │ │ ├── common-dest-folding.ll │ │ ├── critedge-assume.ll │ │ ├── dbginfo.ll │ │ ├── dce-cond-after-folding-terminator.ll │ │ ├── div-rem-pairs.ll │ │ ├── duplicate-landingpad.ll │ │ ├── duplicate-phis.ll │ │ ├── empty-catchpad.ll │ │ ├── empty-cleanuppad.ll │ │ ├── extract-cost.ll │ │ ├── gepcost.ll │ │ ├── guards.ll │ │ ├── hoist-common-code.ll │ │ ├── hoist-dbgvalue.ll │ │ ├── hoist-with-range.ll │ │ ├── implied-and-or.ll │ │ ├── implied-cond-matching-false-dest.ll │ │ ├── implied-cond-matching-imm.ll │ │ ├── implied-cond-matching.ll │ │ ├── implied-cond.ll │ │ ├── indirectbr.ll │ │ ├── inline-asm-sink.ll │ │ ├── invoke.ll │ │ ├── invoke_unwind.ll │ │ ├── iterative-simplify.ll │ │ ├── lifetime.ll │ │ ├── merge-cleanuppads.ll │ │ ├── merge-cond-stores-2.ll │ │ ├── merge-cond-stores.ll │ │ ├── multiple-phis.ll │ │ ├── no-md-sink.ll │ │ ├── no_speculative_loads_with_asan.ll │ │ ├── no_speculative_loads_with_tsan.ll │ │ ├── noreturn-call.ll │ │ ├── phi-undef-loadstore.ll │ │ ├── pr33605.ll │ │ ├── pr34131.ll │ │ ├── pr35774.ll │ │ ├── preserve-branchweights-partial.ll │ │ ├── preserve-branchweights-switch-create.ll │ │ ├── preserve-branchweights.ll │ │ ├── preserve-llvm-loop-metadata.ll │ │ ├── preserve-load-metadata-2.ll │ │ ├── preserve-load-metadata-3.ll │ │ ├── preserve-load-metadata.ll │ │ ├── preserve-make-implicit-on-switch-to-br.ll │ │ ├── preserve-store-alignment.ll │ │ ├── rangereduce.ll │ │ ├── remove-debug-2.ll │ │ ├── remove-debug.ll │ │ ├── return-merge.ll │ │ ├── seh-nounwind.ll │ │ ├── select-gep.ll │ │ ├── sink-common-code.ll │ │ ├── speculate-call.ll │ │ ├── speculate-dbgvalue.ll │ │ ├── speculate-math.ll │ │ ├── speculate-store.ll │ │ ├── speculate-vector-ops.ll │ │ ├── speculate-with-offset.ll │ │ ├── statepoint-invoke-unwind.ll │ │ ├── suppress-zero-branch-weights.ll │ │ ├── switch-dead-default.ll │ │ ├── switch-masked-bits.ll │ │ ├── switch-on-const-select.ll │ │ ├── switch-range-to-icmp.ll │ │ ├── switch-simplify-crash.ll │ │ ├── switch-to-br.ll │ │ ├── switch-to-icmp.ll │ │ ├── switch-to-select-multiple-edge-per-block-phi.ll │ │ ├── switch-to-select-two-case.ll │ │ ├── switch_create.ll │ │ ├── switch_switch_fold.ll │ │ ├── switch_thread.ll │ │ ├── switch_undef.ll │ │ ├── trap-debugloc.ll │ │ ├── trapping-load-unreachable.ll │ │ ├── two-entry-phi-return.ll │ │ ├── unreachable-blocks.ll │ │ ├── unreachable-cleanuppad.ll │ │ ├── volatile-phioper.ll │ │ └── wineh-unreachable.ll │ ├── Sink │ │ ├── badloadsink.ll │ │ ├── basic.ll │ │ ├── call.ll │ │ ├── catchswitch.ll │ │ ├── convergent.ll │ │ ├── fence.ll │ │ └── landingpad.ll │ ├── SpeculateAroundPHIs │ │ └── basic-x86.ll │ ├── SpeculativeExecution │ │ ├── spec-calls.ll │ │ ├── spec-casts.ll │ │ ├── spec-compares.ll │ │ ├── spec-fp.ll │ │ └── spec.ll │ ├── StraightLineStrengthReduce │ │ ├── AMDGPU │ │ │ ├── lit.local.cfg │ │ │ ├── pr23975.ll │ │ │ └── reassociate-geps-and-slsr-addrspace.ll │ │ ├── NVPTX │ │ │ ├── lit.local.cfg │ │ │ ├── reassociate-geps-and-slsr.ll │ │ │ └── speculative-slsr.ll │ │ ├── X86 │ │ │ ├── lit.local.cfg │ │ │ └── no-slsr.ll │ │ ├── slsr-add.ll │ │ ├── slsr-gep.ll │ │ └── slsr-mul.ll │ ├── StripDeadPrototypes │ │ └── basic.ll │ ├── StripSymbols │ │ ├── 2007-01-15-llvm.used.ll │ │ ├── 2010-06-30-StripDebug.ll │ │ ├── 2010-08-25-crash.ll │ │ ├── block-address.ll │ │ ├── strip-cov.ll │ │ └── strip-dead-debug-info.ll │ ├── StructurizeCFG │ │ ├── AMDGPU │ │ │ ├── backedge-id-bug-xfail.ll │ │ │ ├── backedge-id-bug.ll │ │ │ └── lit.local.cfg │ │ ├── branch-on-argument.ll │ │ ├── bug36015.ll │ │ ├── invert-constantexpr.ll │ │ ├── loop-multiple-exits.ll │ │ ├── nested-loop-order.ll │ │ ├── no-branch-to-entry.ll │ │ ├── one-loop-multiple-backedges.ll │ │ ├── post-order-traversal-bug.ll │ │ ├── rebuild-ssa-infinite-loop.ll │ │ └── switch.ll │ ├── TailCallElim │ │ ├── 2010-06-26-MultipleReturnValues.ll │ │ ├── EraseBB.ll │ │ ├── accum_recursion.ll │ │ ├── ackermann.ll │ │ ├── basic.ll │ │ ├── deopt-bundle.ll │ │ ├── dont_reorder_load.ll │ │ ├── dup_tail.ll │ │ ├── inf-recursion.ll │ │ ├── notail.ll │ │ ├── opt-remarks-recursion.ll │ │ ├── reorder_load.ll │ │ └── setjmp.ll │ ├── ThinLTOBitcodeWriter │ │ ├── circular-reference.ll │ │ ├── comdat.ll │ │ ├── filter-alias.ll │ │ ├── new-pm.ll │ │ ├── no-type-md.ll │ │ ├── pr33536.ll │ │ ├── split-internal-typeid.ll │ │ ├── split-internal1.ll │ │ ├── split-internal2.ll │ │ ├── split-vfunc-internal.ll │ │ ├── split-vfunc.ll │ │ ├── split.ll │ │ └── unsplittable.ll │ ├── Util │ │ ├── PredicateInfo │ │ │ ├── condprop.ll │ │ │ ├── diamond.ll │ │ │ ├── edge.ll │ │ │ ├── pr33456.ll │ │ │ ├── pr33457.ll │ │ │ └── testandor.ll │ │ ├── clone-dicompileunit.ll │ │ ├── combine-alias-scope-metadata.ll │ │ ├── flattencfg.ll │ │ ├── libcalls-fast-math-inf-loop.ll │ │ ├── libcalls-opt-remarks.ll │ │ ├── libcalls-shrinkwrap-double.ll │ │ ├── libcalls-shrinkwrap-float.ll │ │ ├── libcalls-shrinkwrap-long-double.ll │ │ ├── lowerswitch.ll │ │ ├── simplify-dbg-declare-load.ll │ │ ├── split-bit-piece.ll │ │ ├── store-first-op.ll │ │ ├── strip-gc-relocates.ll │ │ ├── strip-nonlinetable-debuginfo-containingtypes.ll │ │ ├── strip-nonlinetable-debuginfo-cus.ll │ │ ├── strip-nonlinetable-debuginfo-localvars.ll │ │ ├── strip-nonlinetable-debuginfo-loops.ll │ │ └── strip-nonlinetable-debuginfo-subroutinetypes.ll │ └── WholeProgramDevirt │ │ ├── Inputs │ │ ├── export.yaml │ │ ├── import-indir.yaml │ │ ├── import-single-impl.yaml │ │ ├── import-uniform-ret-val.yaml │ │ ├── import-unique-ret-val0.yaml │ │ ├── import-unique-ret-val1.yaml │ │ └── import-vcp.yaml │ │ ├── bad-read-from-vtable.ll │ │ ├── constant-arg.ll │ │ ├── devirt-single-impl-check.ll │ │ ├── devirt-single-impl.ll │ │ ├── expand-check.ll │ │ ├── export-nothing.ll │ │ ├── export-single-impl.ll │ │ ├── export-uniform-ret-val.ll │ │ ├── export-unique-ret-val.ll │ │ ├── export-unsuccessful-checked.ll │ │ ├── export-vcp.ll │ │ ├── import-indir.ll │ │ ├── import-no-dominating-assume.ll │ │ ├── import.ll │ │ ├── non-constant-vtable.ll │ │ ├── pointer-vtable.ll │ │ ├── soa-vtable.ll │ │ ├── struct-vtable.ll │ │ ├── uniform-retval-invoke.ll │ │ ├── uniform-retval.ll │ │ ├── unique-retval.ll │ │ ├── vcp-accesses-memory.ll │ │ ├── vcp-decl.ll │ │ ├── vcp-no-this.ll │ │ ├── vcp-non-constant-arg.ll │ │ ├── vcp-too-wide-ints.ll │ │ ├── vcp-type-mismatch.ll │ │ ├── vcp-uses-this.ll │ │ ├── virtual-const-prop-begin.ll │ │ ├── virtual-const-prop-check.ll │ │ └── virtual-const-prop-end.ll ├── Unit │ ├── lit.cfg.py │ └── lit.site.cfg.py.in ├── Verifier │ ├── 2002-04-13-RetTypes.ll │ ├── 2002-11-05-GetelementptrPointers.ll │ ├── 2004-05-21-SwitchConstantMismatch.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 │ ├── DILocation-parents.ll │ ├── DISubprogram.ll │ ├── PhiGrouping.ll │ ├── README.txt │ ├── SelfReferential.ll │ ├── alias.ll │ ├── align-md.ll │ ├── alloc-size-failedparse.ll │ ├── allocsize.ll │ ├── amdgpu-cc.ll │ ├── atomics.ll │ ├── bitcast-address-space-nested-global-cycle.ll │ ├── bitcast-address-space-nested-global.ll │ ├── bitcast-address-space-through-constant-inttoptr-inside-gep-instruction.ll │ ├── bitcast-address-space-through-constant-inttoptr.ll │ ├── bitcast-address-space-through-gep-2.ll │ ├── bitcast-address-space-through-gep.ll │ ├── bitcast-address-space-through-inttoptr.ll │ ├── bitcast-address-spaces.ll │ ├── bitcast-alias-address-space.ll │ ├── bitcast-vector-pointer-as.ll │ ├── byval-1.ll │ ├── byval-4.ll │ ├── callsite-dbgloc.ll │ ├── comdat-decl1.ll │ ├── comdat-decl2.ll │ ├── comdat.ll │ ├── comdat2.ll │ ├── comdat3.ll │ ├── cttz-undef-arg.ll │ ├── dbg-difile-crash.ll │ ├── dbg-invalid-compileunit.ll │ ├── dbg-invalid-named-metadata.ll │ ├── dbg-invalid-retaintypes.ll │ ├── dbg-line-without-file.ll │ ├── dbg-null-retained-type.ll │ ├── dbg-orphaned-compileunit.ll │ ├── dbg-typerefs.ll │ ├── dbg.ll │ ├── deoptimize-intrinsic.ll │ ├── dereferenceable-md.ll │ ├── diderivedtype-address-space-atomic-type.ll │ ├── diderivedtype-address-space-const-type.ll │ ├── diderivedtype-address-space-friend.ll │ ├── diderivedtype-address-space-inheritance.ll │ ├── diderivedtype-address-space-member.ll │ ├── diderivedtype-address-space-ptr-to-member-type.ll │ ├── diderivedtype-address-space-restrict-type.ll │ ├── diderivedtype-address-space-rvalue-reference-type.ll │ ├── diderivedtype-address-space-typedef.ll │ ├── diderivedtype-address-space-volatile-type.ll │ ├── diexpression-swap.ll │ ├── diglobalvariable.ll │ ├── dominates.ll │ ├── element-wise-atomic-memory-intrinsics.ll │ ├── fnarg-debuginfo.ll │ ├── fnarg-nodebug.ll │ ├── fp-intrinsics.ll │ ├── fpmath.ll │ ├── fragment.ll │ ├── frameescape.ll │ ├── func-dbg.ll │ ├── function-metadata-bad.ll │ ├── function-metadata-good.ll │ ├── gc_relocate_addrspace.ll │ ├── gc_relocate_operand.ll │ ├── gc_relocate_return.ll │ ├── gcread-ptrptr.ll │ ├── gcroot-alloca.ll │ ├── gcroot-meta.ll │ ├── gcroot-ptrptr.ll │ ├── gcwrite-ptrptr.ll │ ├── global-ctors.ll │ ├── guard-intrinsic.ll │ ├── ident-meta1.ll │ ├── ident-meta2.ll │ ├── ident-meta3.ll │ ├── ident-meta4.ll │ ├── inalloca-vararg.ll │ ├── inalloca1.ll │ ├── inalloca2.ll │ ├── inalloca3.ll │ ├── invalid-eh.ll │ ├── invalid-statepoint.ll │ ├── invalid-statepoint2.ll │ ├── invoke.ll │ ├── jumptable.ll │ ├── llvm.compiler_used-invalid-type.ll │ ├── llvm.dbg.declare-address.ll │ ├── llvm.dbg.declare-expression.ll │ ├── llvm.dbg.declare-variable.ll │ ├── llvm.dbg.intrinsic-dbg-attachment.ll │ ├── llvm.dbg.value-expression.ll │ ├── llvm.dbg.value-value.ll │ ├── llvm.dbg.value-variable.ll │ ├── llvm.used-invalid-init.ll │ ├── llvm.used-invalid-init2.ll │ ├── llvm.used-invalid-type.ll │ ├── llvm.used-invalid-type2.ll │ ├── llvm.used-ptr-type.ll │ ├── mdcompositetype-templateparams-tuple.ll │ ├── mdcompositetype-templateparams.ll │ ├── memcpy.ll │ ├── metadata-function-dbg.ll │ ├── metadata-function-prof.ll │ ├── module-flags-1.ll │ ├── module-flags-2.ll │ ├── module-flags-3.ll │ ├── musttail-invalid.ll │ ├── musttail-valid.ll │ ├── non-integer-gep-index.ll │ ├── non-integer-gep-index.ll.bc │ ├── non-integral-pointers.ll │ ├── operand-bundles.ll │ ├── pr34325.ll │ ├── range-1.ll │ ├── range-2.ll │ ├── recursive-struct-param.ll │ ├── recursive-type-1.ll │ ├── recursive-type-2.ll │ ├── recursive-type-3.ll │ ├── resume.ll │ ├── scatter_gather.ll │ ├── speculatable-callsite-invalid.ll │ ├── speculatable-callsite.ll │ ├── sret.ll │ ├── statepoint.ll │ ├── swifterror.ll │ ├── swifterror2.ll │ ├── swifterror3.ll │ ├── swiftself.ll │ ├── tbaa-allowed.ll │ ├── tbaa.ll │ ├── test_g_phi.mir │ ├── token1.ll │ ├── token2.ll │ ├── token3.ll │ ├── token4.ll │ ├── token5.ll │ ├── token6.ll │ ├── token7.ll │ ├── unsized-types.ll │ ├── varargs-intrinsic.ll │ └── writeonly.ll ├── YAMLParser │ ├── LICENSE.txt │ ├── bool.test │ ├── construct-bool.test │ ├── construct-custom.test │ ├── construct-float.test │ ├── construct-int.test │ ├── construct-map.test │ ├── construct-merge.test │ ├── construct-null.test │ ├── construct-omap.test │ ├── construct-pairs.test │ ├── construct-seq.test │ ├── construct-set.test │ ├── construct-str-ascii.test │ ├── construct-str.test │ ├── construct-timestamp.test │ ├── construct-value.test │ ├── duplicate-key.former-loader-error.test │ ├── duplicate-mapping-key.former-loader-error.test │ ├── duplicate-merge-key.former-loader-error.test │ ├── duplicate-value-key.former-loader-error.test │ ├── emit-block-scalar-in-simple-key-context-bug.test │ ├── empty-document-bug.test │ ├── float.test │ ├── int.test │ ├── invalid-single-quote-bug.test │ ├── merge.test │ ├── more-floats.test │ ├── negative-float-bug.test │ ├── null.test │ ├── resolver.test │ ├── run-parser-crash-bug.test │ ├── scan-document-end-bug.test │ ├── scan-line-break-bug.test │ ├── single-dot-is-not-float-bug.test │ ├── sloppy-indentation.test │ ├── spec-02-01.test │ ├── spec-02-02.test │ ├── spec-02-03.test │ ├── spec-02-04.test │ ├── spec-02-05.test │ ├── spec-02-06.test │ ├── spec-02-07.test │ ├── spec-02-08.test │ ├── spec-02-09.test │ ├── spec-02-10.test │ ├── spec-02-11.test │ ├── spec-02-12.test │ ├── spec-02-13.test │ ├── spec-02-14.test │ ├── spec-02-15.test │ ├── spec-02-16.test │ ├── spec-02-17.test │ ├── spec-02-18.test │ ├── spec-02-19.test │ ├── spec-02-20.test │ ├── spec-02-21.test │ ├── spec-02-22.test │ ├── spec-02-23.test │ ├── spec-02-24.test │ ├── spec-02-25.test │ ├── spec-02-26.test │ ├── spec-02-27.test │ ├── spec-02-28.test │ ├── spec-05-01-utf8.test │ ├── spec-05-02-utf8.test │ ├── spec-05-03.test │ ├── spec-05-04.test │ ├── spec-05-05.test │ ├── spec-05-06.test │ ├── spec-05-07.test │ ├── spec-05-08.test │ ├── spec-05-09.test │ ├── spec-05-10.test │ ├── spec-05-11.test │ ├── spec-05-12.test │ ├── spec-05-13.test │ ├── spec-05-14.test │ ├── spec-05-15.test │ ├── spec-06-01.test │ ├── spec-06-02.test │ ├── spec-06-03.test │ ├── spec-06-04.test │ ├── spec-06-05.test │ ├── spec-06-06.test │ ├── spec-06-07.test │ ├── spec-06-08.test │ ├── spec-07-01.test │ ├── spec-07-02.test │ ├── spec-07-03.test │ ├── spec-07-04.test │ ├── spec-07-05.test │ ├── spec-07-06.test │ ├── spec-07-07a.test │ ├── spec-07-07b.test │ ├── spec-07-08.test │ ├── spec-07-09.test │ ├── spec-07-10.test │ ├── spec-07-11.test │ ├── spec-07-12a.test │ ├── spec-07-12b.test │ ├── spec-07-13.test │ ├── spec-08-01.test │ ├── spec-08-02.test │ ├── spec-08-03.test │ ├── spec-08-04.test │ ├── spec-08-05.test │ ├── spec-08-06.test │ ├── spec-08-07.test │ ├── spec-08-08.test │ ├── spec-08-09.test │ ├── spec-08-10.test │ ├── spec-08-11.test │ ├── spec-08-12.test │ ├── spec-08-13.test │ ├── spec-08-14.test │ ├── spec-08-15.test │ ├── spec-09-01.test │ ├── spec-09-02.test │ ├── spec-09-03.test │ ├── spec-09-04.test │ ├── spec-09-05.test │ ├── spec-09-06.test │ ├── spec-09-07.test │ ├── spec-09-08.test │ ├── spec-09-09.test │ ├── spec-09-10.test │ ├── spec-09-11.test │ ├── spec-09-12.test │ ├── spec-09-13.test │ ├── spec-09-14.test │ ├── spec-09-15.test │ ├── spec-09-16.test │ ├── spec-09-17.test │ ├── spec-09-18.test │ ├── spec-09-19.test │ ├── spec-09-20.test │ ├── spec-09-21.test │ ├── spec-09-22.test │ ├── spec-09-23.test │ ├── spec-09-24.test │ ├── spec-09-25.test │ ├── spec-09-26.test │ ├── spec-09-29.test │ ├── spec-09-30.test │ ├── spec-09-31.test │ ├── spec-09-32.test │ ├── spec-09-33.test │ ├── spec-10-01.test │ ├── spec-10-02.test │ ├── spec-10-03.test │ ├── spec-10-04.test │ ├── spec-10-05.test │ ├── spec-10-06.test │ ├── spec-10-07.test │ ├── spec-10-08.test │ ├── spec-10-09.test │ ├── spec-10-10.test │ ├── spec-10-11.test │ ├── spec-10-12.test │ ├── spec-10-13.test │ ├── spec-10-14.test │ ├── spec-10-15.test │ ├── str.test │ ├── timestamp-bugs.test │ ├── timestamp.test │ ├── utf8-implicit.test │ ├── utf8.test │ ├── value.test │ └── yaml.test ├── lit.cfg.py ├── lit.site.cfg.py.in └── tools │ ├── dsymutil │ ├── ARM │ │ ├── dummy-debug-map-amr64.map │ │ ├── dummy-debug-map.map │ │ ├── empty-map.test │ │ ├── fat-arch-name.test │ │ ├── fat-arch-not-found.test │ │ ├── fat-threading.test │ │ ├── inlined-low_pc.c │ │ ├── lit.local.cfg │ │ ├── scattered.c │ │ └── thumb.c │ ├── Inputs │ │ ├── Info.plist │ │ ├── absolute_sym.macho.i386 │ │ ├── absolute_sym.macho.i386.o │ │ ├── alias │ │ │ ├── bar.o │ │ │ ├── foo.o │ │ │ └── foobar │ │ ├── basic-archive.macho.x86_64 │ │ ├── basic-lto-dw4.macho.x86_64 │ │ ├── basic-lto-dw4.macho.x86_64.o │ │ ├── basic-lto.macho.x86_64 │ │ ├── basic-lto.macho.x86_64.o │ │ ├── basic-with-libfat-test.macho.x86_64 │ │ ├── basic.macho.i386 │ │ ├── basic.macho.x86_64 │ │ ├── basic1.c │ │ ├── basic1.macho.x86_64.o │ │ ├── basic2-custom-linetable.macho.x86_64.o │ │ ├── basic2.c │ │ ├── basic2.macho.x86_64.o │ │ ├── basic3.c │ │ ├── basic3.macho.x86_64.o │ │ ├── common.macho.x86_64 │ │ ├── common.macho.x86_64.o │ │ ├── dead-stripped │ │ │ └── 1.o │ │ ├── dwarf4.o │ │ ├── dwarf5.o │ │ ├── empty_range │ │ │ └── 1.o │ │ ├── fat-test.arm.dylib │ │ ├── fat-test.arm.o │ │ ├── fat-test.c │ │ ├── fat-test.dylib │ │ ├── fat-test.o │ │ ├── frame-dw2.ll │ │ ├── frame-dw4.ll │ │ ├── frame.c │ │ ├── inlined-low_pc │ │ │ └── 1.o │ │ ├── libbasic.a │ │ ├── libfat-test.a │ │ ├── mismatch │ │ │ ├── 1.o │ │ │ └── mismatch.pcm │ │ ├── module-warnings │ │ │ ├── 1.o │ │ │ ├── Bar.pcm │ │ │ ├── Foo.pcm │ │ │ └── libstatic.a │ │ ├── modules-dwarf-version │ │ │ └── 1.o │ │ ├── modules-empty │ │ │ ├── 1.o │ │ │ └── Empty.pcm │ │ ├── modules │ │ │ ├── 1.o │ │ │ ├── 2.o │ │ │ ├── Bar.pcm │ │ │ └── Foo.pcm │ │ ├── null_die.o │ │ ├── odr-anon-namespace │ │ │ ├── 1.o │ │ │ └── 2.o │ │ ├── odr-fwd-declaration │ │ │ ├── 1.o │ │ │ ├── 2.o │ │ │ └── 3.o │ │ ├── odr-fwd-declaration2 │ │ │ ├── 1.o │ │ │ ├── 2.o │ │ │ └── 3.o │ │ ├── odr-member-functions │ │ │ ├── 1.o │ │ │ ├── 2.o │ │ │ └── 3.o │ │ ├── odr-uniquing │ │ │ ├── 1.o │ │ │ └── 2.o │ │ ├── scattered-reloc │ │ │ ├── 1.o │ │ │ └── 1.s │ │ ├── submodules │ │ │ ├── 1.o │ │ │ └── Parent.pcm │ │ ├── swift-ast.macho.x86_64 │ │ ├── swift-ast.swiftmodule │ │ ├── swift-dwarf-loc.macho.x86_64 │ │ ├── swift-dwarf-loc.macho.x86_64.o │ │ ├── thumb.armv7m │ │ └── thumb.o │ ├── X86 │ │ ├── alias.test │ │ ├── basic-linking-bundle.test │ │ ├── basic-linking-x86.test │ │ ├── basic-lto-dw4-linking-x86.test │ │ ├── basic-lto-linking-x86.test │ │ ├── basic-with-libfat-test.test │ │ ├── common-sym.test │ │ ├── custom-line-table.test │ │ ├── darwin-bundle.test │ │ ├── dead-stripped.cpp │ │ ├── dsym-companion.test │ │ ├── dummy-debug-map.map │ │ ├── dwarf4-linetable.test │ │ ├── dwarf5-linetable.test │ │ ├── empty_range.s │ │ ├── fat-archive-input-i386.test │ │ ├── fat-object-input-x86_64.test │ │ ├── fat-object-input-x86_64h.test │ │ ├── frame-1.test │ │ ├── frame-2.test │ │ ├── generate-empty-CU.test │ │ ├── lit.local.cfg │ │ ├── mismatch.m │ │ ├── module-warnings.test │ │ ├── modules-dwarf-version.m │ │ ├── modules-empty.m │ │ ├── modules.m │ │ ├── multiple-inputs.test │ │ ├── odr-anon-namespace.cpp │ │ ├── odr-fwd-declaration.cpp │ │ ├── odr-fwd-declaration2.cpp │ │ ├── odr-member-functions.cpp │ │ ├── odr-uniquing.cpp │ │ ├── submodules.m │ │ ├── swift-ast-x86_64.test │ │ ├── swift-dwarf-loc.test │ │ └── verify.test │ ├── absolute_symbol.test │ ├── arch-option.test │ ├── archive-timestamp.test │ ├── basic-linking.test │ ├── cmdline.test │ ├── debug-map-parsing.test │ ├── dump-symtab.test │ ├── fat-binary-output.test │ ├── null-die.test │ └── yaml-object-address-rewrite.test │ ├── gold │ ├── PowerPC │ │ ├── lit.local.cfg │ │ └── mtriple.ll │ ├── X86 │ │ ├── Inputs │ │ │ ├── afdo.prof │ │ │ ├── alias-1.ll │ │ │ ├── available-externally.ll │ │ │ ├── bcsection.s │ │ │ ├── cache.ll │ │ │ ├── comdat.ll │ │ │ ├── comdat2.ll │ │ │ ├── common.ll │ │ │ ├── common2.ll │ │ │ ├── common3.ll │ │ │ ├── common_thinlto.ll │ │ │ ├── ctors2.ll │ │ │ ├── drop-debug.bc │ │ │ ├── drop-linkage.ll │ │ │ ├── global_with_section.ll │ │ │ ├── invalid.bc │ │ │ ├── irmover-error.ll │ │ │ ├── linker-script.export │ │ │ ├── linkonce-weak.ll │ │ │ ├── mixed_lto.ll │ │ │ ├── multiple-data.ll │ │ │ ├── pr19901-1.ll │ │ │ ├── resolve-to-alias.ll │ │ │ ├── start-lib-common.ll │ │ │ ├── thinlto.ll │ │ │ ├── thinlto_alias.ll │ │ │ ├── thinlto_archive1.ll │ │ │ ├── thinlto_archive2.ll │ │ │ ├── thinlto_emit_linked_objects.ll │ │ │ ├── thinlto_empty.ll │ │ │ ├── thinlto_funcimport.ll │ │ │ ├── thinlto_internalize.ll │ │ │ ├── thinlto_linkonceresolution.ll │ │ │ ├── thinlto_weak_library1.ll │ │ │ ├── thinlto_weak_library2.ll │ │ │ ├── thinlto_weak_resolution.ll │ │ │ ├── type-merge.ll │ │ │ ├── type-merge2.ll │ │ │ ├── visibility.ll │ │ │ └── weak.ll │ │ ├── alias.ll │ │ ├── alias2.ll │ │ ├── asm_undefined.ll │ │ ├── asm_undefined2.ll │ │ ├── available-externally.ll │ │ ├── bad-alias.ll │ │ ├── bcsection.ll │ │ ├── cache.ll │ │ ├── coff.ll │ │ ├── comdat.ll │ │ ├── comdat2.ll │ │ ├── common.ll │ │ ├── common_thinlto.ll │ │ ├── ctors.ll │ │ ├── ctors2.ll │ │ ├── disable-verify.ll │ │ ├── drop-debug.ll │ │ ├── drop-linkage.ll │ │ ├── emit-llvm.ll │ │ ├── error-unopenable.ll │ │ ├── global_with_section.ll │ │ ├── invalid.ll │ │ ├── irmover-error.ll │ │ ├── linker-script.ll │ │ ├── linkonce-weak.ll │ │ ├── lit.local.cfg │ │ ├── mixed_lto.ll │ │ ├── module_asm.ll │ │ ├── multiple-data.s │ │ ├── multiple-sections.ll │ │ ├── no-map-whole-file.ll │ │ ├── opt-level.ll │ │ ├── parallel.ll │ │ ├── pr19901.ll │ │ ├── pr19901_thinlto.ll │ │ ├── pr25907.ll │ │ ├── pr25915.ll │ │ ├── relax-relocs.ll │ │ ├── relocatable.ll │ │ ├── relocation-model-pic.ll │ │ ├── remarks.ll │ │ ├── resolve-to-alias.ll │ │ ├── slp-vectorize.ll │ │ ├── start-lib-common.ll │ │ ├── stats.ll │ │ ├── strip_names.ll │ │ ├── thinlto.ll │ │ ├── thinlto_afdo.ll │ │ ├── thinlto_alias.ll │ │ ├── thinlto_archive.ll │ │ ├── thinlto_emit_imports.ll │ │ ├── thinlto_emit_linked_objects.ll │ │ ├── thinlto_funcimport.ll │ │ ├── thinlto_internalize.ll │ │ ├── thinlto_linkonceresolution.ll │ │ ├── thinlto_object_suffix_replace.ll │ │ ├── thinlto_prefix_replace.ll │ │ ├── thinlto_weak_library.ll │ │ ├── thinlto_weak_resolution.ll │ │ ├── type-merge.ll │ │ ├── type-merge2.ll │ │ ├── unnamed-addr.ll │ │ ├── v1.12 │ │ │ ├── Inputs │ │ │ │ ├── start-lib-common.ll │ │ │ │ └── thinlto_emit_linked_objects.ll │ │ │ ├── lit.local.cfg │ │ │ ├── start-lib-common.ll │ │ │ └── thinlto_emit_linked_objects.ll │ │ ├── vectorize.ll │ │ ├── visibility.ll │ │ └── weak.ll │ ├── invalid-dir.ll │ └── lit.local.cfg │ ├── llvm-ar │ ├── Inputs │ │ ├── absolute-paths.lib │ │ ├── coff.yaml │ │ ├── elf.yaml │ │ ├── macho.yaml │ │ └── msvc-import.lib │ ├── absolute-paths.test │ ├── default-add.test │ ├── default-coff.test │ ├── default-elf.test │ ├── default-macho.test │ ├── empty-uid-gid.test │ ├── invalid-command-line.test │ └── override.test │ ├── llvm-cfi-verify │ └── X86 │ │ ├── Inputs │ │ ├── protected-lineinfo.s │ │ ├── unprotected-fullinfo.s │ │ ├── unprotected-lineinfo.s │ │ └── unprotected-nolineinfo.s │ │ ├── blacklist-expected-unprotected.s │ │ ├── blacklist-match-fun.s │ │ ├── blacklist-unexpected-protected.s │ │ ├── dot-printing.s │ │ ├── indirect-cf-elimination.s │ │ ├── lit.local.cfg │ │ ├── protected-lineinfo.s │ │ ├── unprotected-lineinfo.s │ │ └── unprotected-nolineinfo.s │ ├── llvm-config │ ├── booleans.test │ ├── cflags.test │ ├── ldflags.test │ ├── libs.test │ ├── paths.test │ ├── system-libs.test │ └── system-libs.windows.test │ ├── llvm-cov │ ├── Inputs │ │ ├── README │ │ ├── binary-formats.canonical.json │ │ ├── binary-formats.macho32b │ │ ├── binary-formats.macho32l │ │ ├── binary-formats.macho64l │ │ ├── binary-formats.proftext │ │ ├── binary-formats.v1.linux64l │ │ ├── binary-formats.v2.linux32l │ │ ├── binary-formats.v2.linux64l │ │ ├── combine_expansions.covmapping │ │ ├── combine_expansions.proftext │ │ ├── copy_block_helper.gcda │ │ ├── copy_block_helper.gcno │ │ ├── deferred-regions.covmapping │ │ ├── deferred-regions.profdata │ │ ├── dir-with-filtering.covmapping │ │ ├── dir-with-filtering.proftext │ │ ├── dir-with-filtering1.cpp │ │ ├── dir-with-filtering2.cpp │ │ ├── double_dots.covmapping │ │ ├── double_dots.proftext │ │ ├── elf_binary_comdat.profdata │ │ ├── gcov47_compatibility.gcda │ │ ├── gcov47_compatibility.gcno │ │ ├── hideUnexecutedSubviews.proftext │ │ ├── highlightedRanges.covmapping │ │ ├── highlightedRanges.json │ │ ├── highlightedRanges.profdata │ │ ├── ifdef.covmapping │ │ ├── ifdef.profdata │ │ ├── instrprof-comdat.h │ │ ├── lineExecutionCounts.covmapping │ │ ├── lineExecutionCounts.json │ │ ├── lineExecutionCounts.proftext │ │ ├── malformedRegions.covmapping │ │ ├── multiple-files.covmapping │ │ ├── multiple-files.proftext │ │ ├── multiple-files2.covmapping │ │ ├── multiple_objects │ │ │ ├── header.h │ │ │ ├── merged.profdata │ │ │ ├── use_1.cc │ │ │ ├── use_1.covmapping │ │ │ ├── use_2.cc │ │ │ └── use_2.covmapping │ │ ├── name_whitelist.covmapping │ │ ├── name_whitelist.cpp │ │ ├── name_whitelist.proftext │ │ ├── native_separators.covmapping │ │ ├── path_equivalence.covmapping │ │ ├── path_equivalence.proftext │ │ ├── prefer_used_to_unused.covmapping │ │ ├── prefer_used_to_unused.cpp │ │ ├── prefer_used_to_unused.proftext │ │ ├── prevent_false_instantiations.covmapping │ │ ├── prevent_false_instantiations.cpp │ │ ├── prevent_false_instantiations.proftext │ │ ├── range_based_for.gcda │ │ ├── range_based_for.gcno │ │ ├── regionMarkers.covmapping │ │ ├── regionMarkers.json │ │ ├── regionMarkers.proftext │ │ ├── report.covmapping │ │ ├── report.profdata │ │ ├── showExpansions.covmapping │ │ ├── showExpansions.json │ │ ├── showExpansions.profdata │ │ ├── showProjectSummary.covmapping │ │ ├── showProjectSummary.proftext │ │ ├── showProjectSummary.test │ │ ├── showTabsHTML.covmapping │ │ ├── showTabsHTML.proftext │ │ ├── sources_specified │ │ │ ├── abs.h │ │ │ ├── extra │ │ │ │ ├── dec.h │ │ │ │ └── inc.h │ │ │ ├── main.cc │ │ │ ├── main.covmapping │ │ │ └── main.profdata │ │ ├── templateInstantiations.covmapping │ │ ├── templateInstantiations.profdata │ │ ├── test.cpp │ │ ├── test.gcda │ │ ├── test.gcno │ │ ├── test.h │ │ ├── test_-a.cpp.gcov │ │ ├── test_-a.h.gcov │ │ ├── test_-a_-b.cpp.gcov │ │ ├── test_-a_-b.h.gcov │ │ ├── test_-a_-b_-c_-u.cpp.gcov │ │ ├── test_-a_-b_-c_-u.h.gcov │ │ ├── test_-a_-b_-u.cpp.gcov │ │ ├── test_-a_-b_-u.h.gcov │ │ ├── test_-b.output │ │ ├── test_-b_-f.output │ │ ├── test_-f.output │ │ ├── test_exit_block_arcs.gcda │ │ ├── test_exit_block_arcs.gcno │ │ ├── test_file_checksum_fail.gcda │ │ ├── test_func_checksum_fail.gcda │ │ ├── test_long_file_names.output │ │ ├── test_long_paths.output │ │ ├── test_missing.cpp.gcov │ │ ├── test_missing.h.gcov │ │ ├── test_missing.output │ │ ├── test_no_gcda.cpp.gcov │ │ ├── test_no_gcda.h.gcov │ │ ├── test_no_gcda.output │ │ ├── test_no_options.cpp.gcov │ │ ├── test_no_options.h.gcov │ │ ├── test_no_options.output │ │ ├── test_no_output.output │ │ ├── test_no_preserve_paths.output │ │ ├── test_objdir.cpp.gcov │ │ ├── test_objdir.h.gcov │ │ ├── test_paths.cpp.gcov │ │ ├── test_paths.gcda │ │ ├── test_paths.gcno │ │ ├── test_paths.h.gcov │ │ ├── test_preserve_paths.output │ │ ├── test_read_fail.gcno │ │ ├── universal-binary │ │ ├── universal-binary.json │ │ ├── universal-binary.proftext │ │ ├── whitelist1.txt │ │ ├── whitelist2.txt │ │ ├── zeroFunctionFile.covmapping │ │ ├── zeroFunctionFile.h │ │ └── zeroFunctionFile.proftext │ ├── binary-formats.c │ ├── combine_expansions.cpp │ ├── copy_block_helper.m │ ├── cov-comdat.test │ ├── deferred-region.cpp │ ├── demangle.test │ ├── dir-with-filtering.test │ ├── double_dots.c │ ├── gcov47_compatibility.cpp │ ├── hideUnexecutedSubviews.test │ ├── ifdef.c │ ├── lit.local.cfg │ ├── llvm-cov.test │ ├── load-multiple-objects.test │ ├── multiple-files.test │ ├── multiple-objects.test │ ├── name_whitelist.test │ ├── native_separators.c │ ├── path_equivalence.c │ ├── prefer_used_to_unused.h │ ├── prevent_false_instantiations.h │ ├── range_based_for.cpp │ ├── report.cpp │ ├── scan-directory.test │ ├── showExpansions.cpp │ ├── showHighlightedRanges.cpp │ ├── showLineExecutionCounts.cpp │ ├── showProjectSummary.cpp │ ├── showRegionMarkers.cpp │ ├── showTabsHTML.cpp │ ├── showTemplateInstantiations.cpp │ ├── sources-specified.test │ ├── style.test │ ├── threads.c │ ├── universal-binary.c │ ├── warnings.h │ └── zeroFunctionFile.c │ ├── llvm-cvtres │ ├── Inputs │ │ ├── combined.obj.coff │ │ ├── cursor_small.bmp │ │ ├── languages.rc │ │ ├── languages.res │ │ ├── okay_small.bmp │ │ ├── test_resource.obj.coff │ │ ├── test_resource.obj.coff.arm │ │ ├── test_resource.obj.coff.x64 │ │ ├── test_resource.rc │ │ └── test_resource.res │ ├── combined.test │ ├── help.test │ ├── machine.test │ ├── object.test │ ├── parse.test │ └── symbols.test │ ├── llvm-cxxdump │ ├── Inputs │ │ ├── eh.obj.coff-i386 │ │ ├── mixed-archive.coff-i386 │ │ ├── trivial.obj.coff-i386 │ │ └── trivial.obj.elf-i386 │ ├── X86 │ │ ├── lit.local.cfg │ │ └── sym-size.s │ ├── eh.test │ └── trivial.test │ ├── llvm-cxxfilt │ ├── coff-import.test │ ├── invalid.test │ ├── noargs.test │ ├── simple.test │ ├── types.test │ └── underscore.test │ ├── llvm-dlltool │ ├── coff-decorated.def │ ├── coff-exports.def │ ├── coff-weak-exports.def │ └── lit.local.cfg │ ├── llvm-dwarfdump │ ├── X86 │ │ ├── Inputs │ │ │ ├── empty.dSYM │ │ │ └── typeunit-header.s │ │ ├── apple_names_verify_data.s │ │ ├── apple_names_verify_form.s │ │ ├── apple_names_verify_num_atoms.s │ │ ├── apple_types_verify_tag.s │ │ ├── archive.test │ │ ├── brief.s │ │ ├── debug_frame_GNU_args_size.s │ │ ├── debug_frame_offset.test │ │ ├── debug_info_offset.test │ │ ├── debug_line_offset.test │ │ ├── debug_loc_offset.test │ │ ├── debug_type_offset.test │ │ ├── debugloc.s │ │ ├── diff.test │ │ ├── empty-CU.s │ │ ├── find.test │ │ ├── form.test │ │ ├── gnu_call_site.s │ │ ├── lit.local.cfg │ │ ├── lookup.s │ │ ├── multiple-sections.test │ │ ├── name.test │ │ ├── no_apple_names_verify.s │ │ ├── statistics.ll │ │ ├── stripped.test │ │ ├── verbose.test │ │ ├── verify_broken_exprloc.s │ │ ├── verify_debug_abbrev.s │ │ ├── verify_debug_info.s │ │ ├── verify_debug_info2.s │ │ ├── verify_die_ranges.s │ │ └── verify_unit_header_chain.s │ ├── cmdline.test │ ├── lit.local.cfg │ ├── uuid.yaml │ └── uuid32.yaml │ ├── llvm-dwp │ ├── Inputs │ │ ├── compress │ │ │ └── a.dwo │ │ ├── compressfail │ │ │ ├── a.dwo │ │ │ ├── compress.dwo │ │ │ └── compress.o │ │ ├── duplicate │ │ │ ├── ac.dwp │ │ │ ├── bc.dwp │ │ │ └── c.dwo │ │ ├── duplicate_dwo_name │ │ │ ├── ac.dwp │ │ │ ├── bc.dwp │ │ │ └── c.dwo │ │ ├── dwos_list_from_exec │ │ │ ├── a.dwo │ │ │ ├── b.dwo │ │ │ ├── c.dwo │ │ │ ├── d.dwo │ │ │ ├── e.dwo │ │ │ ├── libd.so │ │ │ └── main │ │ ├── empty.dwo │ │ ├── empty_compressed_section.dwo │ │ ├── gcc_type │ │ │ └── a.dwo │ │ ├── invalid_compressed.dwo │ │ ├── invalid_cu_index │ │ │ └── x.dwp │ │ ├── invalid_string_form.dwo │ │ ├── merge │ │ │ └── notypes │ │ │ │ ├── ab.dwp │ │ │ │ └── c.dwo │ │ ├── missing_tu_index │ │ │ └── x.dwp │ │ ├── multiple_type_sections.dwp │ │ ├── non_cu_top_level.dwo │ │ ├── simple │ │ │ ├── notypes │ │ │ │ ├── a.dwo │ │ │ │ └── b.dwo │ │ │ └── types │ │ │ │ ├── a.dwo │ │ │ │ └── b.dwo │ │ └── type_dedup │ │ │ ├── a.dwo │ │ │ └── b.dwo │ └── X86 │ │ ├── compress.test │ │ ├── compressfail.test │ │ ├── duplicate.test │ │ ├── dwos_list_from_exec_simple.test │ │ ├── empty.test │ │ ├── gcc_type.test │ │ ├── invalid_cu_index.test │ │ ├── invalid_string_form.test │ │ ├── lit.local.cfg │ │ ├── merge.test │ │ ├── missing_tu_index.test │ │ ├── multiple_type_sections.test │ │ ├── nocompress.test │ │ ├── non_cu_top_level.test │ │ ├── simple.test │ │ └── type_dedup.test │ ├── llvm-extract │ └── recursive.ll │ ├── llvm-isel-fuzzer │ ├── aarch64-empty-bc.ll │ ├── aarch64-empty.ll │ ├── aarch64-execname-options.ll │ ├── execname-options.ll │ ├── missing-triple.ll │ ├── x86-empty-bc.ll │ └── x86-empty.ll │ ├── llvm-lib │ ├── Inputs │ │ ├── a.s │ │ ├── b.s │ │ ├── cl-gl.obj │ │ └── resource.res │ ├── infer-output-path.test │ ├── invalid.test │ ├── libpath.test │ ├── lit.local.cfg │ ├── no-inputs.test │ ├── resource.test │ ├── thin.test │ └── use-paths.test │ ├── llvm-lit │ └── chain.c │ ├── llvm-lto │ ├── Inputs │ │ ├── empty.bc │ │ └── thinlto.ll │ ├── error.ll │ └── thinlto.ll │ ├── llvm-lto2 │ ├── X86 │ │ ├── lit.local.cfg │ │ ├── nodatalayout.ll │ │ └── pipeline.ll │ └── errors.ll │ ├── llvm-mc │ ├── basic.test │ ├── fatal_warnings.test │ ├── line_end_with_space.test │ ├── lit.local.cfg │ └── no_warnings.test │ ├── llvm-modextract │ └── single.ll │ ├── llvm-mt │ ├── Inputs │ │ ├── additional.manifest │ │ ├── assembly_identity.manifest │ │ ├── bad.manifest │ │ ├── compatibility.manifest │ │ ├── conflicting.manifest │ │ ├── empty.manifest │ │ ├── expected_big.manifest │ │ ├── test_manifest.manifest │ │ ├── trust_and_identity.manifest │ │ ├── trust_info.manifest │ │ └── windows_settings.manifest │ ├── big_merge.test │ ├── conflicting.test │ ├── help.test │ ├── simple_merge.test │ ├── single_file.test │ └── xml_error.test │ ├── llvm-nm │ ├── ARM │ │ ├── Inputs │ │ │ └── print-size.macho-armv7m │ │ ├── lit.local.cfg │ │ └── macho-print-size.test │ ├── X86 │ │ ├── IRobj.test │ │ ├── Inputs │ │ │ ├── Strip-ST.dylib.macho-x86_64 │ │ │ ├── example.lib │ │ │ ├── hello.obj.elf-i386 │ │ │ ├── hello.obj.elf-x86_64 │ │ │ ├── hello.obj.macho-x86_64 │ │ │ ├── init-fini.out.elf-x86_64 │ │ │ ├── libExample.a.macho-x86_64 │ │ │ ├── macho-bad-zero-nsect-for-N_SECT │ │ │ ├── test.IRobj-x86_64 │ │ │ └── weak.obj.elf-x86_64 │ │ ├── demangle.ll │ │ ├── dyldinfo.test │ │ ├── externalonly.test │ │ ├── groupingflags.test │ │ ├── importlibrary.test │ │ ├── init-fini.test │ │ ├── macho-bad-zero-nsect-for-N_SECT.test │ │ ├── posixArchiveMachO.test │ │ ├── posixELF.test │ │ ├── posixMachO.test │ │ ├── radix.s │ │ ├── sysv-i386.test │ │ ├── sysv-x86_64.test │ │ └── weak.test │ ├── invalid-input.test │ ├── lit.local.cfg │ └── wasm │ │ ├── exports.yaml │ │ ├── imports.yaml │ │ ├── local-symbols.ll │ │ └── weak-symbols.yaml │ ├── llvm-objcopy │ ├── Inputs │ │ ├── dwarf.dwo │ │ ├── dynamic.so │ │ ├── dynrel.elf │ │ ├── dynsym.so │ │ └── pt-phdr.elf │ ├── abs-symbol.test │ ├── add-section-remove.test │ ├── add-section.test │ ├── adjacent-segments.test │ ├── basic-align-copy.test │ ├── basic-binary-copy.test │ ├── basic-copy.test │ ├── basic-keep.test │ ├── basic-only-keep.test │ ├── basic-relocations.test │ ├── binary-first-seg-offset-zero.test │ ├── binary-remove-all-but-one.test │ ├── binary-remove-end.test │ ├── binary-remove-middle.test │ ├── cannot-delete-dest.test │ ├── check-addr-offset-align-binary.test │ ├── check-addr-offset-align.test │ ├── common-symbol.test │ ├── drawf-fission.test │ ├── dump-section.test │ ├── dynamic-relocations.test │ ├── dynamic.test │ ├── dynstr.test │ ├── dynsym-error-remove-strtab.test │ ├── dynsym.test │ ├── elf32be.test │ ├── elf32le.test │ ├── elf64be.test │ ├── empty-section.test │ ├── explicit-keep-remove.test │ ├── explicit-only-keep-remove.test │ ├── fail-no-output-directory.test │ ├── hexagon-unsupported-on-x86.test │ ├── identical-segments.test │ ├── keep-many.test │ ├── keep-only-keep.test │ ├── no-symbol-relocation.test │ ├── only-keep-many.test │ ├── only-keep-remove-strtab.test │ ├── only-keep-strip-non-alloc.test │ ├── overlap-chain.test │ ├── parent-loop-check.test │ ├── program-headers.test │ ├── pt-phdr.test │ ├── reloc-error-remove-symtab.test │ ├── remove-multiple-sections.test │ ├── remove-section-with-symbol.test │ ├── remove-section.test │ ├── remove-shstrtab-error.test │ ├── remove-symtab.test │ ├── section-index-unsupported.test │ ├── sectionless-segment.test │ ├── segment-shift-section-remove.test │ ├── segment-shift.test │ ├── segment-test-remove-section.test │ ├── strip-all-gnu.test │ ├── strip-all.test │ ├── strip-debug.test │ ├── strip-non-alloc.test │ ├── strip-sections-keep.test │ ├── strip-sections-only-keep.test │ ├── strip-sections.test │ ├── symbol-copy.test │ ├── symtab-error-on-remove-strtab.test │ ├── triple-overlap.test │ ├── two-seg-remove-end.test │ ├── two-seg-remove-first.test │ └── two-seg-remove-third-sec.test │ ├── llvm-objdump │ ├── AArch64 │ │ ├── Inputs │ │ │ ├── ObjC.exe.macho-aarch64 │ │ │ ├── ObjC.obj.macho-aarch64 │ │ │ ├── fat.macho-armv7s-arm64 │ │ │ ├── hello.exe.macho-aarch64 │ │ │ ├── hello.obj.macho-aarch64 │ │ │ ├── kextbundle.macho-aarch64 │ │ │ ├── link-opt-hints.macho-aarch64 │ │ │ ├── print-armv8crypto.obj.macho-aarch64 │ │ │ ├── print-mrs.obj.macho-aarch64 │ │ │ ├── reloc-addend.obj.macho-aarch64 │ │ │ └── thread.macho-aarch64 │ │ ├── elf-aarch64-mapping-symbols.test │ │ ├── lit.local.cfg │ │ ├── mach-print-armv8crypto.test │ │ ├── macho-fat-arm-disasm.test │ │ ├── macho-kextbundle.test │ │ ├── macho-link-opt-hints.test │ │ ├── macho-print-mrs.test │ │ ├── macho-print-thread.test │ │ ├── macho-private-headers.test │ │ ├── macho-reloc-addend.test │ │ └── macho-symbolized-disassembly.test │ ├── AMDGPU │ │ ├── Inputs │ │ │ └── source-lines.cl │ │ ├── lit.local.cfg │ │ └── source-lines.ll │ ├── ARM │ │ ├── Inputs │ │ │ ├── data-in-code.macho-arm │ │ │ ├── divs.macho-armv7s │ │ │ ├── fat-armv7m.o │ │ │ ├── hello.exe.macho-arm │ │ │ ├── hello.obj.macho-arm │ │ │ ├── mh_dylib_header.macho-arm │ │ │ ├── reloc-half.obj.macho-arm │ │ │ └── thumb.armv7m │ │ ├── disassemble-code-data-mix.s │ │ ├── invalid-instruction.s │ │ ├── lit.local.cfg │ │ ├── macho-arch-armv7m-flag.test │ │ ├── macho-arm-and-thumb.test │ │ ├── macho-data-in-code.test │ │ ├── macho-mattr-arm.test │ │ ├── macho-mcpu-arm.test │ │ ├── macho-nomcpu-armv7s.test │ │ ├── macho-private-headers.test │ │ ├── macho-reloc-half.test │ │ ├── macho-symbolized-disassembly.test │ │ ├── macho-symbolized-subtractor.test │ │ ├── macho-v7m.test │ │ ├── mh_dylib_header.test │ │ ├── v5t-subarch.s │ │ ├── v5te-subarch.s │ │ ├── v5tej-subarch.s │ │ ├── v6-neg-subfeatures.s │ │ ├── v6-subarch.s │ │ ├── v6-subfeatures.s │ │ ├── v6k-subarch.s │ │ ├── v6m-subarch.s │ │ ├── v6t2-subarch.s │ │ ├── v7a-neg-subfeature.s │ │ ├── v7a-subfeature.s │ │ ├── v7m-neg-subfeatures.s │ │ ├── v7m-subarch.s │ │ ├── v7m-subfeatures.s │ │ └── v7r-subfeatures.s │ ├── Hexagon │ │ ├── Inputs │ │ │ └── source-interleave-hexagon.c │ │ ├── lit.local.cfg │ │ └── source-interleave-hexagon.ll │ ├── Inputs │ │ ├── LLVM-bundle.macho-x86_64 │ │ ├── bad-ordinal.macho-x86_64 │ │ ├── bind.macho-x86_64 │ │ ├── bind2.macho-x86_64 │ │ ├── common-symbol-elf │ │ ├── compact-unwind.macho-i386 │ │ ├── compact-unwind.macho-x86_64 │ │ ├── corrupt-section.wasm │ │ ├── eh_frame.elf-mipsel │ │ ├── eh_frame.macho-arm64 │ │ ├── eh_frame_zero_cie.o │ │ ├── empty.macho-armv7 │ │ ├── export.dll.coff-i386 │ │ ├── exports-trie.macho-x86_64 │ │ ├── file-aux-record.yaml │ │ ├── file.obj.coff-arm │ │ ├── large-bss.obj.coff-i386 │ │ ├── lazy-bind.macho-x86_64 │ │ ├── libbogus1.a │ │ ├── libbogus10.a │ │ ├── libbogus11.a │ │ ├── libbogus12.a │ │ ├── libbogus13.a │ │ ├── libbogus14.a │ │ ├── libbogus2.a │ │ ├── libbogus3.a │ │ ├── libbogus4.a │ │ ├── libbogus5.a │ │ ├── libbogus6.a │ │ ├── libbogus7.a │ │ ├── libbogus8.a │ │ ├── libbogus9.a │ │ ├── library.lib │ │ ├── macho-bind-add-addr-imm-scaled │ │ ├── macho-bind-add_addr_uleb │ │ ├── macho-bind-bad-opcode-value │ │ ├── macho-bind-bind-add-addr-uleb │ │ ├── macho-bind-do-bind-no-segIndex │ │ ├── macho-bind-dylib-ordinal-uleb │ │ ├── macho-bind-dylib-ordinal-uleb-malformed-uleb128 │ │ ├── macho-bind-dylib-ordinal-uleb-too-big │ │ ├── macho-bind-dylib-special-imm │ │ ├── macho-bind-seg-too-big │ │ ├── macho-bind-segoff-too-big │ │ ├── macho-bind-set-addend-sleb │ │ ├── macho-bind-set-symbol │ │ ├── macho-bind-set-type-imm │ │ ├── macho-bind-uleb-times-skipping-uleb │ │ ├── macho-do-bind-no-dylib-ordinal │ │ ├── macho-do-bind-no-symbol │ │ ├── macho-inconsistant-export │ │ ├── macho-lazy-do-bind-add-addr-imm-scaled │ │ ├── macho-lazy-do-bind-uleb-times-skipping-uleb │ │ ├── macho-lazy-do_bind_add_addr_uleb │ │ ├── macho-rebase-add-addr-imm-scaled │ │ ├── macho-rebase-add-addr-uleb │ │ ├── macho-rebase-add-addr-uleb-too-big │ │ ├── macho-rebase-bad-opcode-value │ │ ├── macho-rebase-imm-times │ │ ├── macho-rebase-seg-too-big │ │ ├── macho-rebase-segoff-too-big │ │ ├── macho-rebase-set-type-imm │ │ ├── macho-rebase-uleb-malformed-uleb128 │ │ ├── macho-rebase-uleb-times │ │ ├── macho-rebase-uleb-times-skipping-uleb │ │ ├── macho-trie-bad-export-info-malformed-uleb128 │ │ ├── macho-trie-bad-export-info-malformed-uleb128_too_big │ │ ├── macho-trie-bad-kind │ │ ├── macho-trie-bad-library-ordinal │ │ ├── macho-trie-children-count-byte │ │ ├── macho-trie-edge-string-end │ │ ├── macho-trie-export-info-size-too-big │ │ ├── macho-trie-import-name-end │ │ ├── macho-trie-import-name-start │ │ ├── macho-trie-node-loop │ │ ├── macho-trie-not-export-node │ │ ├── macho-weak-bind-set-dylib-ordinal-imm │ │ ├── macho-weak-bind-set-dylib-ordinal-uleb │ │ ├── macho-weak-bind-set-dylib-special-imm │ │ ├── malformed-macho.bin │ │ ├── malformed-unwind.macho-x86_64 │ │ ├── many-relocs.obj-i386 │ │ ├── nop.exe.coff-i386 │ │ ├── out-of-section-sym.s │ │ ├── proc-specific-section-elf │ │ ├── rebase.macho-x86_64 │ │ ├── section-filter.obj │ │ ├── section.macho-armv7 │ │ ├── tls.exe.coff-x86_64 │ │ ├── trivial.ll │ │ ├── trivial.obj.wasm │ │ ├── unwind-info-no-relocs.macho-x86_64 │ │ ├── unwind-info.macho-arm64 │ │ ├── unwind-info.macho-x86_64 │ │ ├── weak-bind.macho-x86_64 │ │ ├── win64-unwind.exe.coff-x86_64.asm │ │ ├── win64-unwind.exe.coff-x86_64.exe │ │ └── win64-unwind.exe.coff-x86_64.obj │ ├── Mips │ │ ├── disassemble-all.test │ │ └── lit.local.cfg │ ├── WebAssembly │ │ ├── lit.local.cfg │ │ ├── relocations.test │ │ └── symbol-table.test │ ├── X86 │ │ ├── Inputs │ │ │ ├── ObjC.exe.macho-x86_64 │ │ │ ├── ObjC.obj.macho-x86_64 │ │ │ ├── Objc1.32bit.exe.macho-i386 │ │ │ ├── Objc1.32bit.obj.macho-i386 │ │ │ ├── Objc2.32bit.exe.macho-i386 │ │ │ ├── Objc2.32bit.obj.macho-i386 │ │ │ ├── Objc2.64bit.exe.macho-x86_64 │ │ │ ├── Objc2.64bit.obj.dylib-x86_64 │ │ │ ├── Objc2.64bit.obj.macho-x86_64 │ │ │ ├── codesig.macho-x86_64 │ │ │ ├── debug-info-fileinfo.exe.elf-x86_64 │ │ │ ├── disassemble-data.obj │ │ │ ├── disassemble.dll.coff-i386 │ │ │ ├── dylibLoadKinds.macho-x86_64 │ │ │ ├── dylibModInit.macho-x86_64 │ │ │ ├── dylibRoutines.macho-x86_64 │ │ │ ├── dylibSubClient.macho-x86_64 │ │ │ ├── dylibSubFramework.macho-x86_64 │ │ │ ├── dylibSubLibrary.macho-x86_64 │ │ │ ├── dylibSubUmbrella.macho-x86_64 │ │ │ ├── exeThread.macho-x86_64 │ │ │ ├── hello.exe.macho-i386 │ │ │ ├── hello.exe.macho-x86_64 │ │ │ ├── hello.exe.stripped.macho-x86_64 │ │ │ ├── hello.obj.macho-i386 │ │ │ ├── hello.obj.macho-x86_64 │ │ │ ├── hello_cpp.exe.macho-x86_64 │ │ │ ├── internal.exe.coff-x86_64 │ │ │ ├── kextbundle.macho-x86_64 │ │ │ ├── linkerOption.macho-x86_64 │ │ │ ├── macho-invalid-bind-entry │ │ │ ├── macho-invalid-reloc-section-index │ │ │ ├── macho-invalid-symbol-indr │ │ │ ├── macho-invalid-symbol-indr-archive-universal │ │ │ ├── macho-invalid-symbol-lib_ordinal │ │ │ ├── macho-invalid-symbol-nsect │ │ │ ├── macho-invalid-symbol-nsect-archive │ │ │ ├── macho-invalid-symbol-strx │ │ │ ├── macho-invalid-symbol-strx-universal │ │ │ ├── macho-preload-x86_64 │ │ │ ├── macho-universal-archive.x86_64.i386 │ │ │ ├── macho-universal.x86_64.i386 │ │ │ ├── macho-universal64.x86_64.i386 │ │ │ ├── malformed-machos │ │ │ │ ├── 00000031.a │ │ │ │ ├── mem-crup-0001.macho │ │ │ │ ├── mem-crup-0006.macho │ │ │ │ ├── mem-crup-0010.macho │ │ │ │ ├── mem-crup-0040.macho │ │ │ │ ├── mem-crup-0080.macho │ │ │ │ ├── mem-crup-0261.macho │ │ │ │ └── mem-crup-0337.macho │ │ │ ├── nofirst-symbol.macho-x86_64 │ │ │ ├── note.macho-x86 │ │ │ ├── openbsd-phdrs.elf-x86-64 │ │ │ ├── out-of-section-sym.elf-i386 │ │ │ ├── phdr-note.elf-x86-64 │ │ │ ├── phdrs.elf-x86-64 │ │ │ ├── simple-executable-x86_64.yaml │ │ │ ├── source-interleave-x86_64.c │ │ │ ├── stripped-elf.so │ │ │ ├── stub-nosyms.macho-x86_64 │ │ │ ├── stubbed.dylib.macho-x86_64 │ │ │ ├── thread.macho-i386 │ │ │ ├── trivial.obj.elf-i386 │ │ │ └── truncated-section.dylib.macho-x86_64 │ │ ├── coff-dis-internal.test │ │ ├── coff-disassemble-export.test │ │ ├── debug-info-fileinfo.test │ │ ├── disassemble-code-data-mix.s │ │ ├── disassemble-data.test │ │ ├── disassembly-show-raw.test │ │ ├── hex-displacement.test │ │ ├── invalid-macho-build-version.yaml │ │ ├── lit.local.cfg │ │ ├── macho-archive-headers.test │ │ ├── macho-build-version.yaml │ │ ├── macho-cstring-dump.test │ │ ├── macho-dis-no-leading-addr.test │ │ ├── macho-dis-symname.test │ │ ├── macho-disassembly-kextbundle.test │ │ ├── macho-disassembly-stripped.test │ │ ├── macho-dylib.test │ │ ├── macho-indirect-symbols.test │ │ ├── macho-info-plist-nofollow.test │ │ ├── macho-info-plist.test │ │ ├── macho-literal-pointers-i386.test │ │ ├── macho-literal-pointers-x86_64.test │ │ ├── macho-literals.test │ │ ├── macho-nofirst-symbol-disassembly.test │ │ ├── macho-nontext-disasm.test │ │ ├── macho-objc-meta-data.test │ │ ├── macho-preload-relocations.test │ │ ├── macho-print-thread.test │ │ ├── macho-private-header.test │ │ ├── macho-private-headers.test │ │ ├── macho-relocations.test │ │ ├── macho-section-contents.test │ │ ├── macho-section-headers.test │ │ ├── macho-section.test │ │ ├── macho-stub-nosyms-disassembly.test │ │ ├── macho-symbol-table.test │ │ ├── macho-symbolized-disassembly.test │ │ ├── macho-symbolized-subtractor-i386.test │ │ ├── macho-symbolized-subtractor.test │ │ ├── macho-universal-x86_64.i386.test │ │ ├── macho-unwind-info.test │ │ ├── malformed-machos.test │ │ ├── openbsd-headers.test │ │ ├── out-of-section-sym.test │ │ ├── phdrs.test │ │ ├── source-interleave-x86_64.ll │ │ ├── start-stop-address.test │ │ ├── stripped-shared.test │ │ ├── stubbed-dylib.test │ │ └── truncated-section.test │ ├── coff-file.test │ ├── coff-import-library.test │ ├── coff-large-bss.test │ ├── coff-many-relocs.test │ ├── coff-non-null-terminated-file.test │ ├── coff-private-headers.test │ ├── common-symbol-elf.test │ ├── eh_frame-arm64.test │ ├── eh_frame-mipsel.test │ ├── eh_frame_zero_cie.test │ ├── hex-relocation-addr.test │ ├── invalid-input.test │ ├── macho-LLVM-bundle.test │ ├── macho-bad-bind.test │ ├── macho-bad-ordinal.test │ ├── macho-bad-trie.test │ ├── macho-bind.test │ ├── macho-bind2.test │ ├── macho-compact-unwind-i386.test │ ├── macho-compact-unwind-x86_64.test │ ├── macho-exports-trie.test │ ├── macho-lazy-bind.test │ ├── macho-objc-meta-data.test │ ├── macho-rebase.test │ ├── macho-sections.test │ ├── macho-unwind-info-arm64.test │ ├── macho-unwind-info-no-relocs.test │ ├── macho-unwind-info-x86_64.test │ ├── macho-weak-bind.test │ ├── malformed-archives.test │ ├── malformed-macho.test │ ├── malformed-unwind-x86_64.test │ ├── proc-specific-section-elf.test │ ├── section-filter.test │ ├── wasm-corrupt-section.test │ ├── wasm.txt │ └── win64-unwind-data.test │ ├── llvm-opt-fuzzer │ ├── command-line.ll │ ├── exec-options.ll │ ├── simple-fail.ll │ └── simple-run.ll │ ├── llvm-opt-report │ ├── Inputs │ │ ├── dm.c │ │ ├── dm.yaml │ │ ├── or.c │ │ ├── or.h │ │ ├── or.yaml │ │ ├── q.c │ │ ├── q.cpp │ │ ├── q.yaml │ │ ├── q2.c │ │ ├── q2.yaml │ │ ├── q3.c │ │ ├── q3.yaml │ │ ├── qx.yaml │ │ ├── sr2.c │ │ ├── sr2.yaml │ │ ├── unrl.c │ │ └── unrl.yaml │ ├── basic.test │ ├── func-2.test │ ├── func-3.test │ ├── func-dm.test │ ├── func-x.test │ ├── func.test │ ├── mlineopt.test │ └── unrl.test │ ├── llvm-pdbdump │ ├── Inputs │ │ ├── ClassLayoutTest.cpp │ │ ├── ClassLayoutTest.pdb │ │ ├── ComplexPaddingTest.cpp │ │ ├── ComplexPaddingTest.pdb │ │ ├── FilterTest.cpp │ │ ├── FilterTest.pdb │ │ ├── LoadAddressTest.cpp │ │ ├── LoadAddressTest.pdb │ │ ├── SimplePaddingTest.cpp │ │ └── SimplePaddingTest.pdb │ ├── class-layout.test │ ├── complex-padding-graphical.test │ ├── enum-layout.test │ ├── lit.local.cfg │ ├── load-address.test │ ├── partial-type-stream.test │ ├── regex-filter.test │ ├── simple-padding-graphical.test │ └── symbol-filters.test │ ├── llvm-profdata │ ├── Inputs │ │ ├── IR_profile.proftext │ │ ├── bad-hash.proftext │ │ ├── bar3-1.proftext │ │ ├── basic.proftext │ │ ├── c-general.profraw │ │ ├── clang_profile.proftext │ │ ├── compat.profdata.v1 │ │ ├── compat.profdata.v2 │ │ ├── compat.profdata.v4 │ │ ├── compressed.profraw │ │ ├── counter-mismatch-1.proftext │ │ ├── counter-mismatch-2.proftext │ │ ├── counter-mismatch-3.proftext │ │ ├── counter-mismatch-4.proftext │ │ ├── empty.proftext │ │ ├── extra-word.proftext │ │ ├── foo3-1.proftext │ │ ├── foo3-2.proftext │ │ ├── foo3bar3-1.proftext │ │ ├── gcc-sample-profile.gcov │ │ ├── inline-samples.afdo │ │ ├── invalid-count-later.proftext │ │ ├── multiple-profdata-merge.proftext │ │ ├── no-counts.proftext │ │ ├── overflow-instr.proftext │ │ ├── overflow-sample.proftext │ │ ├── sample-profile.proftext │ │ ├── text-format-errors.text.bin │ │ ├── vp-malform.proftext │ │ ├── vp-malform2.proftext │ │ ├── vp-truncate.proftext │ │ ├── weight-instr-bar.profdata │ │ ├── weight-instr-foo.profdata │ │ ├── weight-sample-bar.proftext │ │ └── weight-sample-foo.proftext │ ├── c-general.test │ ├── compat.proftext │ ├── count-mismatch.proftext │ ├── gcc-gcov-sample-profile.test │ ├── general.proftext │ ├── hash-mismatch.proftext │ ├── inline-samples.test │ ├── input-dir.test │ ├── input-filenames.test │ ├── lit.local.cfg │ ├── memop-size-prof.proftext │ ├── merge_empty_profile.test │ ├── multiple-inputs.test │ ├── multiple-profdata-merge.test │ ├── nocompress.test │ ├── overflow-instr.test │ ├── overflow-sample.test │ ├── raw-32-bits-be.test │ ├── raw-32-bits-le.test │ ├── raw-64-bits-be.test │ ├── raw-64-bits-le.test │ ├── raw-magic-but-no-header.test │ ├── raw-two-profiles.test │ ├── sample-profile-basic.test │ ├── show-instr-level.test │ ├── text-dump.test │ ├── text-format-errors.test │ ├── threaded-count-mismatch.test │ ├── value-prof.proftext │ ├── weight-instr.test │ └── weight-sample.test │ ├── llvm-rc │ ├── Inputs │ │ ├── bitmap.bmp │ │ ├── deep-include.rc │ │ ├── include.rc │ │ ├── nested │ │ │ └── nested-bitmap.bmp │ │ ├── parser-accelerators-bad-flag.rc │ │ ├── parser-accelerators-bad-int-or-string.rc │ │ ├── parser-accelerators-no-comma-2.rc │ │ ├── parser-accelerators-no-comma.rc │ │ ├── parser-correct-everything.rc │ │ ├── parser-dialog-cant-give-helpid.rc │ │ ├── parser-dialog-simple-font.rc │ │ ├── parser-dialog-too-few-args.rc │ │ ├── parser-dialog-too-many-args.rc │ │ ├── parser-dialog-unknown-type.rc │ │ ├── parser-dialog-unnecessary-string.rc │ │ ├── parser-eof.rc │ │ ├── parser-expr-bad-binary-1.rc │ │ ├── parser-expr-bad-binary-2.rc │ │ ├── parser-expr-bad-binary-3.rc │ │ ├── parser-expr-bad-unary.rc │ │ ├── parser-expr-unbalanced-1.rc │ │ ├── parser-expr-unbalanced-2.rc │ │ ├── parser-expr-unbalanced-3.rc │ │ ├── parser-expr.rc │ │ ├── parser-html-bad-string.rc │ │ ├── parser-html-extra-comma.rc │ │ ├── parser-language-no-comma.rc │ │ ├── parser-language-too-many-commas.rc │ │ ├── parser-menu-bad-flag.rc │ │ ├── parser-menu-bad-id.rc │ │ ├── parser-menu-missing-block.rc │ │ ├── parser-menu-misspelled-separator.rc │ │ ├── parser-no-characteristics-arg.rc │ │ ├── parser-nonsense-token.rc │ │ ├── parser-nonsense-type-eof.rc │ │ ├── parser-nonsense-type.rc │ │ ├── parser-stringtable-no-string.rc │ │ ├── parser-stringtable-weird-option.rc │ │ ├── parser-user-invalid-contents.rc │ │ ├── parser-versioninfo-bad-type.rc │ │ ├── parser-versioninfo-named-main-block.rc │ │ ├── parser-versioninfo-repeated-fixed.rc │ │ ├── parser-versioninfo-unnamed-inner-block.rc │ │ ├── parser-versioninfo-unnamed-value.rc │ │ ├── parser-versioninfo-wrong-fixed.rc │ │ ├── tag-accelerators-ascii-alt.rc │ │ ├── tag-accelerators-ascii-control.rc │ │ ├── tag-accelerators-ascii-shift.rc │ │ ├── tag-accelerators-ascii-virtkey.rc │ │ ├── tag-accelerators-bad-id.rc │ │ ├── tag-accelerators-bad-key-id.rc │ │ ├── tag-accelerators-control-nonalpha.rc │ │ ├── tag-accelerators-long-virtkey.rc │ │ ├── tag-accelerators-no-caret.rc │ │ ├── tag-accelerators-no-type.rc │ │ ├── tag-accelerators-only-caret.rc │ │ ├── tag-accelerators-too-long.rc │ │ ├── tag-accelerators-too-short.rc │ │ ├── tag-accelerators-virtual-nonalpha.rc │ │ ├── tag-accelerators.rc │ │ ├── tag-dialog-bad-style.rc │ │ ├── tag-dialog-ctl-large-coord-neg.rc │ │ ├── tag-dialog-ctl-large-coord.rc │ │ ├── tag-dialog-ctl-large-id.rc │ │ ├── tag-dialog-ctl-large-ref-id.rc │ │ ├── tag-dialog-ctl-large-size.rc │ │ ├── tag-dialog-ctl-negative-size.rc │ │ ├── tag-dialog-headers.rc │ │ ├── tag-dialog-large-coord-neg.rc │ │ ├── tag-dialog-large-coord.rc │ │ ├── tag-dialog-large-size.rc │ │ ├── tag-dialog-negative-size.rc │ │ ├── tag-dialog.rc │ │ ├── tag-escape.rc │ │ ├── tag-html-wrong.rc │ │ ├── tag-html.rc │ │ ├── tag-icon-cursor-bad-offset.rc │ │ ├── tag-icon-cursor-bad-type.rc │ │ ├── tag-icon-cursor-eof.rc │ │ ├── tag-icon-cursor-nonexistent.rc │ │ ├── tag-icon-cursor-nonsense.rc │ │ ├── tag-icon-cursor.rc │ │ ├── tag-menu-bad-menuitem-id.rc │ │ ├── tag-menu.rc │ │ ├── tag-stringtable-basic.rc │ │ ├── tag-stringtable-same-ids.rc │ │ ├── tag-user.rc │ │ ├── tag-versioninfo-mixed-ints-strings.rc │ │ ├── tag-versioninfo-word-too-large.rc │ │ ├── tag-versioninfo.rc │ │ ├── tokens.rc │ │ ├── webpage1.html │ │ └── webpage2.html │ ├── helpmsg.test │ ├── include-paths.test │ ├── parser-expr.test │ ├── parser.test │ ├── tag-accelerators.test │ ├── tag-dialog.test │ ├── tag-escape.test │ ├── tag-html.test │ ├── tag-icon-cursor.test │ ├── tag-menu.test │ ├── tag-stringtable.test │ ├── tag-user.test │ ├── tag-versioninfo.test │ └── tokenizer.test │ ├── llvm-readobj │ ├── ARM │ │ ├── attribute-0.s │ │ ├── attribute-1.s │ │ ├── attribute-10.s │ │ ├── attribute-11.s │ │ ├── attribute-12.s │ │ ├── attribute-13.s │ │ ├── attribute-136.s │ │ ├── attribute-14.s │ │ ├── attribute-15.s │ │ ├── attribute-2.s │ │ ├── attribute-3.s │ │ ├── attribute-4.s │ │ ├── attribute-5.s │ │ ├── attribute-6.s │ │ ├── attribute-7.s │ │ ├── attribute-8.s │ │ ├── attribute-9.s │ │ ├── attribute-A.s │ │ ├── attribute-M.s │ │ ├── attribute-R.s │ │ ├── attribute-S.s │ │ ├── attribute-conformance-1.s │ │ ├── attribute-conformance-2.s │ │ ├── lit.local.cfg │ │ └── unwind.s │ ├── Inputs │ │ ├── abiflags.obj.elf-mips │ │ ├── abiflags.obj.elf-mipsel │ │ ├── bad-relocs.obj.coff-i386 │ │ ├── basereloc.obj.coff-i386 │ │ ├── bigobj.coff-x86-64 │ │ ├── codeview-cycle.obj │ │ ├── codeview-inlinees.obj │ │ ├── codeview-inlining.obj.coff │ │ ├── codeview-label.obj │ │ ├── codeview-merging-1.obj │ │ ├── codeview-merging-2.obj │ │ ├── codeview-merging-anon.obj │ │ ├── codeview-types.obj │ │ ├── codeview-unsorted.obj │ │ ├── codeview-vftable.obj.coff │ │ ├── coff-load-config-data-end.exe │ │ ├── coff-load-config-x64.dll │ │ ├── coff-load-config-x86.dll │ │ ├── coff-no-load-config.exe │ │ ├── comdat-function-linetables.obj.coff-2012-i386 │ │ ├── comdat-function-linetables.obj.coff-2013-i386 │ │ ├── compression.zlib.style.elf-x86-64 │ │ ├── const-import.lib │ │ ├── cxx-cli-aux.cpp │ │ ├── cxx-cli-aux.obj.coff-i386 │ │ ├── directives.obj.coff-x86_64 │ │ ├── dtflags.elf-x86-64 │ │ ├── dynamic-table-exe.mips │ │ ├── dynamic-table-exe.x86 │ │ ├── dynamic-table-so.aarch64 │ │ ├── dynamic-table-so.mips │ │ ├── dynamic-table-so.x86 │ │ ├── dynamic-table.c │ │ ├── elf-groups.x86_64 │ │ ├── elf-packed-relocs1.s │ │ ├── elf-packed-relocs2.s │ │ ├── export-arm.dll │ │ ├── export-x64.dll │ │ ├── export-x86.dll │ │ ├── file-aux-record.yaml │ │ ├── file-multiple-aux-records.yaml │ │ ├── gnuhash.so.elf-i386 │ │ ├── gnuhash.so.elf-ppc │ │ ├── gnuhash.so.elf-ppc64 │ │ ├── gnuhash.so.elf-x86_64 │ │ ├── got-empty.exe.mipsel │ │ ├── got-over.exe.elf-mips │ │ ├── got-plt.exe.elf-mipsel │ │ ├── got-static.exe.mips │ │ ├── got-tls.so.elf-mips64el │ │ ├── has_pdb.exe │ │ ├── imports.exe.coff-i386 │ │ ├── imports.exe.coff-x86-64 │ │ ├── library.lib │ │ ├── macho-universal-archive.x86_64.i386 │ │ ├── macho-universal.x86_64.i386 │ │ ├── magic.coff-importlib │ │ ├── magic.coff-unknown │ │ ├── mips-options.elf-mips64el │ │ ├── mips-rld-map-rel.elf-mipsel │ │ ├── multifile-linetables.obj.coff-2012-i368 │ │ ├── multifile-linetables.obj.coff-2012-x86_64 │ │ ├── multifile-linetables.obj.coff-2013-i368 │ │ ├── multifile-linetables.obj.coff-2013-x86_64 │ │ ├── multifunction-linetables.obj.coff-2012-i368 │ │ ├── multifunction-linetables.obj.coff-2012-x86_64 │ │ ├── multifunction-linetables.obj.coff-2013-i368 │ │ ├── multifunction-linetables.obj.coff-2013-x86_64 │ │ ├── needed-libs.obj.coff-am64 │ │ ├── nop.exe.coff-x86-64 │ │ ├── options.obj.elf-mipsel │ │ ├── phdrs-elf.exe-i386 │ │ ├── phdrs-elf.exe-x86_64 │ │ ├── reginfo.obj.elf-mipsel │ │ ├── relocs-no-symtab.obj.coff-i386 │ │ ├── relocs.obj.coff-i386 │ │ ├── relocs.obj.coff-x86_64 │ │ ├── relocs.obj.elf-aarch64 │ │ ├── relocs.obj.elf-aarch64-ilp32 │ │ ├── relocs.obj.elf-arm │ │ ├── relocs.obj.elf-i386 │ │ ├── relocs.obj.elf-lanai │ │ ├── relocs.obj.elf-mips │ │ ├── relocs.obj.elf-mips64el │ │ ├── relocs.obj.elf-ppc64 │ │ ├── relocs.obj.elf-x86_64 │ │ ├── relocs.obj.macho-arm │ │ ├── relocs.obj.macho-i386 │ │ ├── relocs.obj.macho-x86_64 │ │ ├── relocs.py │ │ ├── resources │ │ │ ├── cursor_small.bmp │ │ │ ├── okay_small.bmp │ │ │ ├── test_resource.obj.coff │ │ │ ├── test_resource.rc │ │ │ └── test_resource.res │ │ ├── rpath.exe.elf-x86_64 │ │ ├── st-other.obj.elf-mips │ │ ├── st-other.obj.elf-mips16 │ │ ├── symbols-proc-specific.elf-hexagon │ │ ├── trivial.exe.coff-arm │ │ ├── trivial.exe.coff-i386 │ │ ├── trivial.ll │ │ ├── trivial.obj.coff-arm │ │ ├── trivial.obj.coff-arm64 │ │ ├── trivial.obj.coff-i386 │ │ ├── trivial.obj.coff-x86-64 │ │ ├── trivial.obj.elf-amdhsa-gfx803 │ │ ├── trivial.obj.elf-i386 │ │ ├── trivial.obj.elf-lanai │ │ ├── trivial.obj.elf-mipsel │ │ ├── trivial.obj.elf-x86-64 │ │ ├── trivial.obj.macho-arm │ │ ├── trivial.obj.macho-i386 │ │ ├── trivial.obj.macho-ppc │ │ ├── trivial.obj.macho-ppc64 │ │ ├── trivial.obj.macho-x86-64 │ │ ├── trivial.obj.wasm │ │ ├── verdef.elf-x86-64 │ │ ├── verneed.elf-x86-64 │ │ └── zero-string-table.obj.coff-i386 │ ├── amdgpu-elf-definitions.test │ ├── basic.test │ ├── bigobj.test │ ├── broken-group.test │ ├── codeview-inlinees.test │ ├── codeview-inlining.test │ ├── codeview-label.test │ ├── codeview-linetables.test │ ├── codeview-merging-anon.test │ ├── codeview-merging-cycle.test │ ├── codeview-merging-unsorted.test │ ├── codeview-merging.test │ ├── codeview-types.test │ ├── codeview-vftable.test │ ├── coff-arm-baserelocs.test │ ├── coff-basereloc.test │ ├── coff-const-import.test │ ├── coff-debug-directory.test │ ├── coff-directives.test │ ├── coff-exports-implib.test │ ├── coff-exports.test │ ├── coff-file-sections-reading.test │ ├── coff-load-config.test │ ├── coff-needed-libs.test │ ├── coff-non-null-terminated-file.test │ ├── coff-resources.test │ ├── coff-zero-string-table.test │ ├── cxx-cli-aux.test │ ├── dynamic.test │ ├── elf-dtflags.test │ ├── elf-gnuhash.test │ ├── elf-groups.test │ ├── elf-hash-histogram.test │ ├── elf-packed-relocs-empty.s │ ├── elf-packed-relocs-error1.s │ ├── elf-packed-relocs-error2.s │ ├── elf-packed-relocs-error3.s │ ├── elf-packed-relocs-error4.s │ ├── elf-packed-relocs-error5.s │ ├── elf-packed-relocs.test │ ├── elf-sec-compressed.test │ ├── elf-sec-flags.test │ ├── elf-versioninfo.test │ ├── file-headers.test │ ├── gnu-file-headers.test │ ├── gnu-notes.test │ ├── gnu-phdrs.test │ ├── gnu-relocations.test │ ├── gnu-sections.test │ ├── gnu-symbols.test │ ├── imports.test │ ├── macho-needed-libs.test │ ├── macho-universal-x86_64.i386.test │ ├── mips-abiflags.test │ ├── mips-got-overlapped.test │ ├── mips-got.test │ ├── mips-options-sec.test │ ├── mips-options.test │ ├── mips-plt.test │ ├── mips-reginfo.test │ ├── mips-rld-map-rel.test │ ├── mips-st-other.test │ ├── peplus.test │ ├── program-headers.test │ ├── reloc-types.test │ ├── relocations.test │ ├── res-resources.test │ ├── rpath.test │ ├── sections-ext.test │ ├── sections.test │ ├── symbols.test │ └── wasm-invalid.test │ ├── llvm-size │ ├── Inputs │ │ ├── darwin-m.o │ │ └── darwin-m1.o │ ├── X86 │ │ ├── ignore-sections.s │ │ ├── lit.local.cfg │ │ └── test-common.s │ ├── basic.test │ └── darwin-m.test │ ├── llvm-split │ ├── alias.ll │ ├── blockaddress.ll │ ├── comdat.ll │ ├── extern_linkage.ll │ ├── function.ll │ ├── global.ll │ ├── internal.ll │ ├── personality.ll │ ├── preserve-locals.ll │ ├── scc-alias.ll │ ├── scc-callchain.ll │ ├── scc-comdat.ll │ ├── scc-const-alias.ll │ ├── scc-constants.ll │ ├── scc-cycle.ll │ ├── scc-global-alias.ll │ ├── scc-global2global.ll │ └── unnamed.ll │ ├── llvm-strings │ ├── Inputs │ │ ├── abcd │ │ ├── numbers │ │ └── variable-length │ ├── all-sections.test │ ├── archive-filename.test │ ├── file-filename.test │ ├── length.test │ ├── nested-archives.test │ ├── radix.test │ ├── stdin-filename.test │ ├── terminator-neg.test │ └── terminator.test │ ├── llvm-symbolizer │ ├── Inputs │ │ ├── addr.exe │ │ ├── addr.inp │ │ ├── coff-dwarf.cpp │ │ ├── coff-dwarf.exe │ │ ├── coff-exports.cpp │ │ ├── coff-exports.exe │ │ ├── discrim │ │ ├── discrim.c │ │ ├── discrim.inp │ │ ├── dsym-test-exe │ │ ├── dsym-test-exe-differentname.dSYM │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ └── DWARF │ │ │ │ └── dsym-test-exe-second │ │ ├── dsym-test-exe-second │ │ ├── dsym-test-exe.dSYM │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ └── DWARF │ │ │ │ └── dsym-test-exe │ │ ├── dsym-test.c │ │ ├── fat.c │ │ ├── fat.o │ │ ├── ppc64 │ │ └── print_context.o │ ├── coff-dwarf.test │ ├── coff-exports.test │ ├── dsym.test │ ├── fat.test │ ├── padding-x86_64.ll │ ├── pdb │ │ ├── Inputs │ │ │ ├── missing_pdb.exe │ │ │ ├── test.cpp │ │ │ ├── test.exe │ │ │ └── test.pdb │ │ ├── lit.local.cfg │ │ ├── missing_pdb.test │ │ └── pdb.test │ ├── ppc64.test │ ├── print_context.c │ ├── sym-verbose.test │ └── sym.test │ ├── llvm-xray │ └── X86 │ │ ├── Inputs │ │ ├── all-sleds.o │ │ ├── elf32-noxray.bin │ │ ├── elf64-badentrysizes.bin │ │ ├── elf64-example.bin │ │ ├── elf64-noinstr-map.bin │ │ ├── elf64-objcopied-instrmap.bin │ │ ├── elf64-sample-o2.bin │ │ ├── empty-file.bin │ │ ├── fdr-log-arg1.xray │ │ ├── fdr-log-version-1.xray │ │ ├── graph-diff-A.yaml │ │ ├── graph-diff-B.yaml │ │ ├── naive-log-simple.xray │ │ ├── naive-with-arg1-entries.xray │ │ ├── simple-instrmap.yaml │ │ └── simple-xray-instrmap.yaml │ │ ├── account-deduce-tail-call.yaml │ │ ├── account-empty-stack-error.yaml │ │ ├── account-keep-going.yaml │ │ ├── account-simple-case.yaml │ │ ├── account-simple-sorting.yaml │ │ ├── bad-instrmap-sizes.txt │ │ ├── convert-basic-arg1-to-yaml.txt │ │ ├── convert-fdr-arg1-to-yaml.txt │ │ ├── convert-fdr-to-yaml.txt │ │ ├── convert-roundtrip.yaml │ │ ├── convert-to-yaml.txt │ │ ├── convert-with-debug-syms.txt │ │ ├── convert-with-standalone-instrmap.txt │ │ ├── convert-with-yaml-instrmap.txt │ │ ├── empty.txt │ │ ├── extract-all-sledtypes.txt │ │ ├── extract-instrmap-symbolize.ll │ │ ├── extract-instrmap.ll │ │ ├── graph-color-simple-case.yaml │ │ ├── graph-deduce-tail-call.yaml │ │ ├── graph-diff-simple.txt │ │ ├── graph-simple-case.yaml │ │ ├── graph-zero-latency-calls.yaml │ │ ├── lit.local.cfg │ │ ├── no-instr-map.txt │ │ ├── no-subcommand-noassert.txt │ │ ├── no-such-file.txt │ │ ├── stack-empty-case.yaml │ │ ├── stack-keep-going.yaml │ │ ├── stack-multithread.yaml │ │ ├── stack-simple-case.yaml │ │ └── unsupported-elf32.txt │ ├── lto │ ├── hide-linkonce-odr.ll │ ├── lit.local.cfg │ ├── no-bitcode.s │ ├── opt-level.ll │ └── print-stats.ll │ ├── obj2yaml │ ├── Inputs │ │ └── crt1.o │ ├── invalid_input_file.test │ └── missing_symtab.test │ ├── opt-viewer │ ├── Inputs │ │ ├── basic │ │ │ ├── or.c │ │ │ ├── or.h │ │ │ └── or.yaml │ │ ├── suppress │ │ │ ├── s.opt.yaml │ │ │ └── s.swift │ │ └── unicode-function-name │ │ │ ├── s.opt.yaml │ │ │ └── s.swift │ ├── Outputs │ │ ├── basic │ │ │ ├── basic_or.c.html │ │ │ ├── basic_or.h.html │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── suppress │ │ │ ├── index.html │ │ │ └── s.swift.html │ │ └── unicode-function-name │ │ │ ├── index.html │ │ │ └── s.swift.html │ ├── basic.test │ ├── lit.local.cfg │ ├── suppress.test │ └── unicode-function-name.test │ ├── sancov │ ├── AArch64 │ │ └── print_coverage_pcs.test │ ├── Inputs │ │ ├── foo.cpp │ │ ├── fun_blacklist.txt │ │ ├── src_blacklist.txt │ │ ├── test-darwin_x86_64 │ │ ├── test-linux_android_aarch64 │ │ ├── test-linux_x86_64 │ │ ├── test-linux_x86_64.0.sancov │ │ ├── test-linux_x86_64.0.symcov │ │ ├── test-linux_x86_64.1.sancov │ │ ├── test-linux_x86_64.1.symcov │ │ ├── test-windows_x86_64 │ │ └── test.cpp │ ├── blacklist.test │ ├── covered_functions.test │ ├── lit.local.cfg │ ├── merge.test │ ├── not_covered_functions.test │ ├── print.test │ ├── print_coverage_pcs.test │ ├── stats.test │ ├── symbolize.test │ ├── symbolize_noskip_dead_files.test │ └── validation.test │ ├── sanstats │ └── elf.test │ └── yaml2obj │ ├── dynamic-symbols.yaml │ ├── empty-symbols.yaml │ ├── invalid-symboless-relocation.yaml │ ├── invalid_output_file.test │ ├── lit.local.cfg │ ├── missing_document_tag.yaml │ ├── program-header-align.yaml │ ├── program-header-nobits.yaml │ ├── program-header.yaml │ ├── section-ordering.yaml │ ├── symbol-index-invalid.yaml │ ├── symbol-index.yaml │ ├── symboless-relocation.yaml │ ├── unnamed-section.yaml │ └── unsupported_document_tag.yaml ├── tools ├── CMakeLists.txt ├── LLVMBuild.txt ├── bugpoint-passes │ ├── CMakeLists.txt │ ├── TestPasses.cpp │ └── bugpoint.exports ├── bugpoint │ ├── BugDriver.cpp │ ├── BugDriver.h │ ├── CMakeLists.txt │ ├── CrashDebugger.cpp │ ├── ExecutionDriver.cpp │ ├── ExtractFunction.cpp │ ├── FindBugs.cpp │ ├── LLVMBuild.txt │ ├── ListReducer.h │ ├── Miscompilation.cpp │ ├── OptimizerDriver.cpp │ ├── ToolRunner.cpp │ ├── ToolRunner.h │ └── bugpoint.cpp ├── dsymutil │ ├── BinaryHolder.cpp │ ├── BinaryHolder.h │ ├── CFBundle.cpp │ ├── CFBundle.h │ ├── CMakeLists.txt │ ├── DebugMap.cpp │ ├── DebugMap.h │ ├── DwarfLinker.cpp │ ├── LLVMBuild.txt │ ├── MachODebugMapParser.cpp │ ├── MachOUtils.cpp │ ├── MachOUtils.h │ ├── NonRelocatableStringpool.h │ ├── dsymutil.cpp │ └── dsymutil.h ├── gold │ ├── CMakeLists.txt │ ├── README.txt │ ├── gold-plugin.cpp │ └── gold.exports ├── llc │ ├── CMakeLists.txt │ ├── LLVMBuild.txt │ └── llc.cpp ├── lli │ ├── CMakeLists.txt │ ├── ChildTarget │ │ ├── CMakeLists.txt │ │ ├── ChildTarget.cpp │ │ └── LLVMBuild.txt │ ├── LLVMBuild.txt │ ├── OrcLazyJIT.cpp │ ├── OrcLazyJIT.h │ ├── RemoteJITUtils.h │ └── lli.cpp ├── llvm-ar │ ├── CMakeLists.txt │ ├── LLVMBuild.txt │ └── llvm-ar.cpp ├── llvm-as-fuzzer │ ├── CMakeLists.txt │ └── llvm-as-fuzzer.cpp ├── llvm-as │ ├── CMakeLists.txt │ ├── LLVMBuild.txt │ └── llvm-as.cpp ├── llvm-bcanalyzer │ ├── CMakeLists.txt │ ├── LLVMBuild.txt │ └── llvm-bcanalyzer.cpp ├── llvm-c-test │ ├── CMakeLists.txt │ ├── attributes.c │ ├── calc.c │ ├── debuginfo.c │ ├── diagnostic.c │ ├── disassemble.c │ ├── echo.cpp │ ├── helpers.c │ ├── include-all.c │ ├── llvm-c-test.h │ ├── main.c │ ├── metadata.c │ ├── module.c │ ├── object.c │ └── targets.c ├── llvm-cat │ ├── CMakeLists.txt │ ├── LLVMBuild.txt │ └── llvm-cat.cpp ├── llvm-cfi-verify │ ├── CMakeLists.txt │ ├── LLVMBuild.txt │ ├── lib │ │ ├── CMakeLists.txt │ │ ├── FileAnalysis.cpp │ │ ├── FileAnalysis.h │ │ ├── GraphBuilder.cpp │ │ ├── GraphBuilder.h │ │ └── LLVMBuild.txt │ └── llvm-cfi-verify.cpp ├── llvm-config │ ├── BuildVariables.inc.in │ ├── CMakeLists.txt │ └── llvm-config.cpp ├── llvm-cov │ ├── CMakeLists.txt │ ├── CodeCoverage.cpp │ ├── CoverageExporterJson.cpp │ ├── CoverageFilters.cpp │ ├── CoverageFilters.h │ ├── CoverageReport.cpp │ ├── CoverageReport.h │ ├── CoverageSummaryInfo.cpp │ ├── CoverageSummaryInfo.h │ ├── CoverageViewOptions.h │ ├── LLVMBuild.txt │ ├── RenderingSupport.h │ ├── SourceCoverageView.cpp │ ├── SourceCoverageView.h │ ├── SourceCoverageViewHTML.cpp │ ├── SourceCoverageViewHTML.h │ ├── SourceCoverageViewText.cpp │ ├── SourceCoverageViewText.h │ ├── TestingSupport.cpp │ ├── gcov.cpp │ └── llvm-cov.cpp ├── llvm-cvtres │ ├── CMakeLists.txt │ ├── LLVMBuild.txt │ ├── Opts.td │ └── llvm-cvtres.cpp ├── llvm-cxxdump │ ├── CMakeLists.txt │ ├── Error.cpp │ ├── Error.h │ ├── LLVMBuild.txt │ ├── llvm-cxxdump.cpp │ └── llvm-cxxdump.h ├── llvm-cxxfilt │ ├── CMakeLists.txt │ └── llvm-cxxfilt.cpp ├── llvm-demangle-fuzzer │ ├── CMakeLists.txt │ ├── DummyDemanglerFuzzer.cpp │ └── llvm-demangle-fuzzer.cpp ├── llvm-diff │ ├── CMakeLists.txt │ ├── DiffConsumer.cpp │ ├── DiffConsumer.h │ ├── DiffLog.cpp │ ├── DiffLog.h │ ├── DifferenceEngine.cpp │ ├── DifferenceEngine.h │ ├── LLVMBuild.txt │ └── llvm-diff.cpp ├── llvm-dis │ ├── CMakeLists.txt │ ├── LLVMBuild.txt │ └── llvm-dis.cpp ├── llvm-dwarfdump │ ├── CMakeLists.txt │ ├── LLVMBuild.txt │ ├── Statistics.cpp │ ├── fuzzer │ │ ├── CMakeLists.txt │ │ └── llvm-dwarfdump-fuzzer.cpp │ └── llvm-dwarfdump.cpp ├── llvm-dwp │ ├── CMakeLists.txt │ ├── DWPError.cpp │ ├── DWPError.h │ ├── DWPStringPool.h │ ├── LLVMBuild.txt │ └── llvm-dwp.cpp ├── llvm-extract │ ├── CMakeLists.txt │ ├── LLVMBuild.txt │ └── llvm-extract.cpp ├── llvm-go │ ├── CMakeLists.txt │ └── llvm-go.go ├── llvm-isel-fuzzer │ ├── CMakeLists.txt │ ├── DummyISelFuzzer.cpp │ └── llvm-isel-fuzzer.cpp ├── llvm-jitlistener │ ├── CMakeLists.txt │ ├── LLVMBuild.txt │ └── llvm-jitlistener.cpp ├── llvm-link │ ├── CMakeLists.txt │ ├── LLVMBuild.txt │ └── llvm-link.cpp ├── llvm-lto │ ├── CMakeLists.txt │ ├── LLVMBuild.txt │ └── llvm-lto.cpp ├── llvm-lto2 │ ├── CMakeLists.txt │ ├── LLVMBuild.txt │ └── llvm-lto2.cpp ├── llvm-mc-assemble-fuzzer │ ├── CMakeLists.txt │ └── llvm-mc-assemble-fuzzer.cpp ├── llvm-mc-disassemble-fuzzer │ ├── CMakeLists.txt │ └── llvm-mc-disassemble-fuzzer.cpp ├── llvm-mc │ ├── CMakeLists.txt │ ├── Disassembler.cpp │ ├── Disassembler.h │ ├── LLVMBuild.txt │ └── llvm-mc.cpp ├── llvm-mcmarkup │ ├── CMakeLists.txt │ ├── LLVMBuild.txt │ └── llvm-mcmarkup.cpp ├── llvm-modextract │ ├── CMakeLists.txt │ ├── LLVMBuild.txt │ └── llvm-modextract.cpp ├── llvm-mt │ ├── CMakeLists.txt │ ├── LLVMBuild.txt │ ├── Opts.td │ └── llvm-mt.cpp ├── llvm-nm │ ├── CMakeLists.txt │ ├── LLVMBuild.txt │ └── llvm-nm.cpp ├── llvm-objcopy │ ├── CMakeLists.txt │ ├── LLVMBuild.txt │ ├── Object.cpp │ ├── Object.h │ ├── llvm-objcopy.cpp │ └── llvm-objcopy.h ├── llvm-objdump │ ├── CMakeLists.txt │ ├── COFFDump.cpp │ ├── ELFDump.cpp │ ├── LLVMBuild.txt │ ├── MachODump.cpp │ ├── WasmDump.cpp │ ├── llvm-objdump.cpp │ └── llvm-objdump.h ├── llvm-opt-fuzzer │ ├── CMakeLists.txt │ ├── DummyOptFuzzer.cpp │ └── llvm-opt-fuzzer.cpp ├── llvm-opt-report │ ├── CMakeLists.txt │ └── OptReport.cpp ├── llvm-pdbutil │ ├── Analyze.cpp │ ├── Analyze.h │ ├── BytesOutputStyle.cpp │ ├── BytesOutputStyle.h │ ├── CMakeLists.txt │ ├── Diff.cpp │ ├── Diff.h │ ├── DiffPrinter.cpp │ ├── DiffPrinter.h │ ├── DumpOutputStyle.cpp │ ├── DumpOutputStyle.h │ ├── FormatUtil.cpp │ ├── FormatUtil.h │ ├── InputFile.cpp │ ├── InputFile.h │ ├── LLVMBuild.txt │ ├── LinePrinter.cpp │ ├── LinePrinter.h │ ├── MinimalSymbolDumper.cpp │ ├── MinimalSymbolDumper.h │ ├── MinimalTypeDumper.cpp │ ├── MinimalTypeDumper.h │ ├── OutputStyle.h │ ├── PdbYaml.cpp │ ├── PdbYaml.h │ ├── PrettyBuiltinDumper.cpp │ ├── PrettyBuiltinDumper.h │ ├── PrettyClassDefinitionDumper.cpp │ ├── PrettyClassDefinitionDumper.h │ ├── PrettyClassLayoutGraphicalDumper.cpp │ ├── PrettyClassLayoutGraphicalDumper.h │ ├── PrettyCompilandDumper.cpp │ ├── PrettyCompilandDumper.h │ ├── PrettyEnumDumper.cpp │ ├── PrettyEnumDumper.h │ ├── PrettyExternalSymbolDumper.cpp │ ├── PrettyExternalSymbolDumper.h │ ├── PrettyFunctionDumper.cpp │ ├── PrettyFunctionDumper.h │ ├── PrettyTypeDumper.cpp │ ├── PrettyTypeDumper.h │ ├── PrettyTypedefDumper.cpp │ ├── PrettyTypedefDumper.h │ ├── PrettyVariableDumper.cpp │ ├── PrettyVariableDumper.h │ ├── StreamUtil.cpp │ ├── StreamUtil.h │ ├── YAMLOutputStyle.cpp │ ├── YAMLOutputStyle.h │ ├── llvm-pdbutil.cpp │ └── llvm-pdbutil.h ├── llvm-profdata │ ├── CMakeLists.txt │ ├── LLVMBuild.txt │ └── llvm-profdata.cpp ├── llvm-rc │ ├── CMakeLists.txt │ ├── LLVMBuild.txt │ ├── Opts.td │ ├── ResourceFileWriter.cpp │ ├── ResourceFileWriter.h │ ├── ResourceScriptParser.cpp │ ├── ResourceScriptParser.h │ ├── ResourceScriptStmt.cpp │ ├── ResourceScriptStmt.h │ ├── ResourceScriptToken.cpp │ ├── ResourceScriptToken.h │ ├── ResourceScriptTokenList.def │ ├── ResourceVisitor.h │ └── llvm-rc.cpp ├── llvm-readobj │ ├── ARMEHABIPrinter.h │ ├── ARMWinEHPrinter.cpp │ ├── ARMWinEHPrinter.h │ ├── CMakeLists.txt │ ├── COFFDumper.cpp │ ├── COFFImportDumper.cpp │ ├── ELFDumper.cpp │ ├── Error.cpp │ ├── Error.h │ ├── LLVMBuild.txt │ ├── MachODumper.cpp │ ├── ObjDumper.cpp │ ├── ObjDumper.h │ ├── StackMapPrinter.h │ ├── WasmDumper.cpp │ ├── Win64EHDumper.cpp │ ├── Win64EHDumper.h │ ├── WindowsResourceDumper.cpp │ ├── WindowsResourceDumper.h │ ├── llvm-readobj.cpp │ └── llvm-readobj.h ├── llvm-rtdyld │ ├── CMakeLists.txt │ ├── LLVMBuild.txt │ └── llvm-rtdyld.cpp ├── llvm-shlib │ ├── CMakeLists.txt │ ├── libllvm.cpp │ └── simple_version_script.map.in ├── llvm-size │ ├── CMakeLists.txt │ ├── LLVMBuild.txt │ └── llvm-size.cpp ├── llvm-special-case-list-fuzzer │ ├── CMakeLists.txt │ ├── DummySpecialCaseListFuzzer.cpp │ └── special-case-list-fuzzer.cpp ├── llvm-split │ ├── CMakeLists.txt │ ├── LLVMBuild.txt │ └── llvm-split.cpp ├── llvm-stress │ ├── CMakeLists.txt │ ├── LLVMBuild.txt │ └── llvm-stress.cpp ├── llvm-strings │ ├── CMakeLists.txt │ ├── LLVMBuild.txt │ └── llvm-strings.cpp ├── llvm-symbolizer │ ├── CMakeLists.txt │ └── llvm-symbolizer.cpp ├── llvm-xray │ ├── CMakeLists.txt │ ├── func-id-helper.cc │ ├── func-id-helper.h │ ├── llvm-xray.cc │ ├── trie-node.h │ ├── xray-account.cc │ ├── xray-account.h │ ├── xray-color-helper.cc │ ├── xray-color-helper.h │ ├── xray-converter.cc │ ├── xray-converter.h │ ├── xray-extract.cc │ ├── xray-graph-diff.cc │ ├── xray-graph-diff.h │ ├── xray-graph.cc │ ├── xray-graph.h │ ├── xray-registry.cc │ ├── xray-registry.h │ └── xray-stacks.cc ├── lto │ ├── CMakeLists.txt │ ├── LTODisassembler.cpp │ ├── lto.cpp │ └── lto.exports ├── msbuild │ ├── CMakeLists.txt │ ├── Microsoft.Cpp.Win32.LLVM-vs2010.targets │ ├── Microsoft.Cpp.Win32.LLVM-vs2012.targets │ ├── Microsoft.Cpp.Win32.LLVM-vs2012_xp.targets │ ├── Microsoft.Cpp.Win32.llvm.props.in │ ├── install.bat │ ├── toolset-vs2013.targets │ ├── toolset-vs2013_xp.targets │ ├── toolset-vs2014.targets │ ├── toolset-vs2014_xp.targets │ └── uninstall.bat ├── obj2yaml │ ├── CMakeLists.txt │ ├── Error.cpp │ ├── Error.h │ ├── coff2yaml.cpp │ ├── dwarf2yaml.cpp │ ├── elf2yaml.cpp │ ├── macho2yaml.cpp │ ├── obj2yaml.cpp │ ├── obj2yaml.h │ └── wasm2yaml.cpp ├── opt-viewer │ ├── CMakeLists.txt │ ├── opt-diff.py │ ├── opt-stats.py │ ├── opt-viewer.py │ ├── optpmap.py │ ├── optrecord.py │ └── style.css ├── opt │ ├── AnalysisWrappers.cpp │ ├── BreakpointPrinter.cpp │ ├── BreakpointPrinter.h │ ├── CMakeLists.txt │ ├── Debugify.cpp │ ├── GraphPrinters.cpp │ ├── LLVMBuild.txt │ ├── NewPMDriver.cpp │ ├── NewPMDriver.h │ ├── PassPrinters.cpp │ ├── PassPrinters.h │ ├── PrintSCC.cpp │ └── opt.cpp ├── sancov │ ├── CMakeLists.txt │ ├── coverage-report-server.py │ └── sancov.cc ├── sanstats │ ├── CMakeLists.txt │ └── sanstats.cpp ├── verify-uselistorder │ ├── CMakeLists.txt │ ├── LLVMBuild.txt │ └── verify-uselistorder.cpp ├── xcode-toolchain │ └── CMakeLists.txt └── yaml2obj │ ├── CMakeLists.txt │ ├── yaml2coff.cpp │ ├── yaml2elf.cpp │ ├── yaml2macho.cpp │ ├── yaml2obj.cpp │ ├── yaml2obj.h │ └── yaml2wasm.cpp ├── unittests ├── ADT │ ├── APFloatTest.cpp │ ├── APIntTest.cpp │ ├── APSIntTest.cpp │ ├── ArrayRefTest.cpp │ ├── BitVectorTest.cpp │ ├── BitmaskEnumTest.cpp │ ├── BreadthFirstIteratorTest.cpp │ ├── BumpPtrListTest.cpp │ ├── CMakeLists.txt │ ├── DAGDeltaAlgorithmTest.cpp │ ├── DeltaAlgorithmTest.cpp │ ├── DenseMapTest.cpp │ ├── DenseSetTest.cpp │ ├── DepthFirstIteratorTest.cpp │ ├── EquivalenceClassesTest.cpp │ ├── FoldingSet.cpp │ ├── FunctionRefTest.cpp │ ├── HashingTest.cpp │ ├── IListBaseTest.cpp │ ├── IListIteratorTest.cpp │ ├── IListNodeBaseTest.cpp │ ├── IListNodeTest.cpp │ ├── IListSentinelTest.cpp │ ├── IListTest.cpp │ ├── ImmutableMapTest.cpp │ ├── ImmutableSetTest.cpp │ ├── IntEqClassesTest.cpp │ ├── IntervalMapTest.cpp │ ├── IntrusiveRefCntPtrTest.cpp │ ├── IteratorTest.cpp │ ├── MakeUniqueTest.cpp │ ├── MapVectorTest.cpp │ ├── MappedIteratorTest.cpp │ ├── OptionalTest.cpp │ ├── PackedVectorTest.cpp │ ├── PointerEmbeddedIntTest.cpp │ ├── PointerIntPairTest.cpp │ ├── PointerSumTypeTest.cpp │ ├── PointerUnionTest.cpp │ ├── PostOrderIteratorTest.cpp │ ├── PriorityWorklistTest.cpp │ ├── RangeAdapterTest.cpp │ ├── SCCIteratorTest.cpp │ ├── STLExtrasTest.cpp │ ├── ScopeExitTest.cpp │ ├── SequenceTest.cpp │ ├── SetVectorTest.cpp │ ├── SimpleIListTest.cpp │ ├── SmallPtrSetTest.cpp │ ├── SmallStringTest.cpp │ ├── SmallVectorTest.cpp │ ├── SparseBitVectorTest.cpp │ ├── SparseMultiSetTest.cpp │ ├── SparseSetTest.cpp │ ├── StringExtrasTest.cpp │ ├── StringMapTest.cpp │ ├── StringRefTest.cpp │ ├── StringSwitchTest.cpp │ ├── TestGraph.h │ ├── TinyPtrVectorTest.cpp │ ├── TripleTest.cpp │ ├── TwineTest.cpp │ └── VariadicFunctionTest.cpp ├── Analysis │ ├── AliasAnalysisTest.cpp │ ├── AliasSetTrackerTest.cpp │ ├── BlockFrequencyInfoTest.cpp │ ├── BranchProbabilityInfoTest.cpp │ ├── CFGTest.cpp │ ├── CGSCCPassManagerTest.cpp │ ├── CMakeLists.txt │ ├── CallGraphTest.cpp │ ├── GlobalsModRefTest.cpp │ ├── LazyCallGraphTest.cpp │ ├── LoopInfoTest.cpp │ ├── MemoryBuiltinsTest.cpp │ ├── MemorySSA.cpp │ ├── OrderedBasicBlockTest.cpp │ ├── ProfileSummaryInfoTest.cpp │ ├── ScalarEvolutionTest.cpp │ ├── SparsePropagation.cpp │ ├── TBAATest.cpp │ ├── TargetLibraryInfoTest.cpp │ ├── UnrollAnalyzer.cpp │ ├── ValueLatticeTest.cpp │ └── ValueTrackingTest.cpp ├── AsmParser │ ├── AsmParserTest.cpp │ └── CMakeLists.txt ├── BinaryFormat │ ├── CMakeLists.txt │ ├── DwarfTest.cpp │ └── TestFileMagic.cpp ├── Bitcode │ ├── BitReaderTest.cpp │ ├── BitstreamReaderTest.cpp │ ├── BitstreamWriterTest.cpp │ └── CMakeLists.txt ├── CMakeLists.txt ├── CodeGen │ ├── CMakeLists.txt │ ├── DIEHashTest.cpp │ ├── GlobalISel │ │ ├── CMakeLists.txt │ │ └── LegalizerInfoTest.cpp │ ├── LowLevelTypeTest.cpp │ ├── MachineInstrBundleIteratorTest.cpp │ ├── MachineInstrTest.cpp │ ├── MachineOperandTest.cpp │ └── ScalableVectorMVTsTest.cpp ├── DebugInfo │ ├── CMakeLists.txt │ ├── CodeView │ │ ├── CMakeLists.txt │ │ ├── RandomAccessVisitorTest.cpp │ │ ├── TypeHashingTest.cpp │ │ └── TypeIndexDiscoveryTest.cpp │ ├── DWARF │ │ ├── CMakeLists.txt │ │ ├── DWARFDebugInfoTest.cpp │ │ ├── DWARFFormValueTest.cpp │ │ ├── DwarfGenerator.cpp │ │ └── DwarfGenerator.h │ ├── MSF │ │ ├── CMakeLists.txt │ │ ├── MSFBuilderTest.cpp │ │ ├── MSFCommonTest.cpp │ │ └── MappedBlockStreamTest.cpp │ └── PDB │ │ ├── CMakeLists.txt │ │ ├── HashTableTest.cpp │ │ ├── PDBApiTest.cpp │ │ └── StringTableBuilderTest.cpp ├── ExecutionEngine │ ├── CMakeLists.txt │ ├── ExecutionEngineTest.cpp │ ├── MCJIT │ │ ├── CMakeLists.txt │ │ ├── MCJITCAPITest.cpp │ │ ├── MCJITMemoryManagerTest.cpp │ │ ├── MCJITMultipleModuleTest.cpp │ │ ├── MCJITObjectCacheTest.cpp │ │ ├── MCJITTest.cpp │ │ ├── MCJITTestAPICommon.h │ │ ├── MCJITTestBase.h │ │ └── MCJITTests.def │ └── Orc │ │ ├── CMakeLists.txt │ │ ├── CompileOnDemandLayerTest.cpp │ │ ├── GlobalMappingLayerTest.cpp │ │ ├── IndirectionUtilsTest.cpp │ │ ├── LazyEmittingLayerTest.cpp │ │ ├── ObjectTransformLayerTest.cpp │ │ ├── OrcCAPITest.cpp │ │ ├── OrcTestCommon.cpp │ │ ├── OrcTestCommon.h │ │ ├── QueueChannel.cpp │ │ ├── QueueChannel.h │ │ ├── RPCUtilsTest.cpp │ │ ├── RTDyldObjectLinkingLayerTest.cpp │ │ ├── RemoteObjectLayerTest.cpp │ │ └── SymbolStringPoolTest.cpp ├── FuzzMutate │ ├── CMakeLists.txt │ ├── OperationsTest.cpp │ ├── RandomIRBuilderTest.cpp │ ├── ReservoirSamplerTest.cpp │ └── StrategiesTest.cpp ├── IR │ ├── AsmWriterTest.cpp │ ├── AttributesTest.cpp │ ├── BasicBlockTest.cpp │ ├── CFGBuilder.cpp │ ├── CFGBuilder.h │ ├── CMakeLists.txt │ ├── ConstantRangeTest.cpp │ ├── ConstantsTest.cpp │ ├── DebugInfoTest.cpp │ ├── DebugTypeODRUniquingTest.cpp │ ├── DominatorTreeBatchUpdatesTest.cpp │ ├── DominatorTreeTest.cpp │ ├── FunctionTest.cpp │ ├── IRBuilderTest.cpp │ ├── InstructionsTest.cpp │ ├── IntrinsicsTest.cpp │ ├── LegacyPassManagerTest.cpp │ ├── MDBuilderTest.cpp │ ├── MetadataTest.cpp │ ├── ModuleTest.cpp │ ├── PassBuilderCallbacksTest.cpp │ ├── PassManagerTest.cpp │ ├── PatternMatch.cpp │ ├── TypeBuilderTest.cpp │ ├── TypesTest.cpp │ ├── UseTest.cpp │ ├── UserTest.cpp │ ├── ValueHandleTest.cpp │ ├── ValueMapTest.cpp │ ├── ValueTest.cpp │ ├── VerifierTest.cpp │ └── WaymarkTest.cpp ├── LineEditor │ ├── CMakeLists.txt │ └── LineEditor.cpp ├── Linker │ ├── CMakeLists.txt │ └── LinkModulesTest.cpp ├── MC │ ├── CMakeLists.txt │ ├── Disassembler.cpp │ ├── DwarfLineTables.cpp │ ├── StringTableBuilderTest.cpp │ └── TargetRegistry.cpp ├── MI │ ├── CMakeLists.txt │ └── LiveIntervalTest.cpp ├── Object │ ├── CMakeLists.txt │ ├── SymbolSizeTest.cpp │ └── SymbolicFileTest.cpp ├── ObjectYAML │ ├── CMakeLists.txt │ └── YAMLTest.cpp ├── Option │ ├── CMakeLists.txt │ ├── OptionParsingTest.cpp │ └── Opts.td ├── ProfileData │ ├── CMakeLists.txt │ ├── CoverageMappingTest.cpp │ ├── InstrProfTest.cpp │ └── SampleProfTest.cpp ├── Support │ ├── ARMAttributeParser.cpp │ ├── AlignOfTest.cpp │ ├── AllocatorTest.cpp │ ├── ArrayRecyclerTest.cpp │ ├── BinaryStreamTest.cpp │ ├── BlockFrequencyTest.cpp │ ├── BranchProbabilityTest.cpp │ ├── CMakeLists.txt │ ├── CachePruningTest.cpp │ ├── Casting.cpp │ ├── Chrono.cpp │ ├── CommandLineTest.cpp │ ├── CompressionTest.cpp │ ├── ConvertUTFTest.cpp │ ├── CrashRecoveryTest.cpp │ ├── DataExtractorTest.cpp │ ├── DebugTest.cpp │ ├── DynamicLibrary │ │ ├── CMakeLists.txt │ │ ├── DynamicLibraryTest.cpp │ │ ├── ExportedFuncs.cxx │ │ ├── PipSqueak.cxx │ │ └── PipSqueak.h │ ├── EndianStreamTest.cpp │ ├── EndianTest.cpp │ ├── ErrnoTest.cpp │ ├── ErrorOrTest.cpp │ ├── ErrorTest.cpp │ ├── FileOutputBufferTest.cpp │ ├── FormatVariadicTest.cpp │ ├── GlobPatternTest.cpp │ ├── Host.cpp │ ├── LEB128Test.cpp │ ├── LineIteratorTest.cpp │ ├── LockFileManagerTest.cpp │ ├── MD5Test.cpp │ ├── ManagedStatic.cpp │ ├── MathExtrasTest.cpp │ ├── MemoryBufferTest.cpp │ ├── MemoryTest.cpp │ ├── NativeFormatTests.cpp │ ├── ParallelTest.cpp │ ├── Path.cpp │ ├── ProcessTest.cpp │ ├── ProgramTest.cpp │ ├── RegexTest.cpp │ ├── ReplaceFileTest.cpp │ ├── ReverseIterationTest.cpp │ ├── ScaledNumberTest.cpp │ ├── SourceMgrTest.cpp │ ├── SpecialCaseListTest.cpp │ ├── StringPool.cpp │ ├── SwapByteOrderTest.cpp │ ├── TarWriterTest.cpp │ ├── TargetParserTest.cpp │ ├── ThreadLocalTest.cpp │ ├── ThreadPool.cpp │ ├── Threading.cpp │ ├── TimerTest.cpp │ ├── TrailingObjectsTest.cpp │ ├── TrigramIndexTest.cpp │ ├── TypeNameTest.cpp │ ├── UnicodeTest.cpp │ ├── YAMLIOTest.cpp │ ├── YAMLParserTest.cpp │ ├── formatted_raw_ostream_test.cpp │ ├── raw_ostream_test.cpp │ ├── raw_pwrite_stream_test.cpp │ ├── raw_sha1_ostream_test.cpp │ └── xxhashTest.cpp ├── Target │ ├── AArch64 │ │ ├── CMakeLists.txt │ │ └── InstSizes.cpp │ └── CMakeLists.txt ├── Transforms │ ├── CMakeLists.txt │ ├── IPO │ │ ├── CMakeLists.txt │ │ ├── LowerTypeTests.cpp │ │ └── WholeProgramDevirt.cpp │ ├── Scalar │ │ ├── CMakeLists.txt │ │ └── LoopPassManagerTest.cpp │ └── Utils │ │ ├── ASanStackFrameLayoutTest.cpp │ │ ├── CMakeLists.txt │ │ ├── Cloning.cpp │ │ ├── CodeExtractor.cpp │ │ ├── FunctionComparator.cpp │ │ ├── IntegerDivision.cpp │ │ ├── Local.cpp │ │ ├── OrderedInstructions.cpp │ │ └── ValueMapperTest.cpp ├── XRay │ ├── CMakeLists.txt │ └── GraphTest.cpp └── tools │ ├── CMakeLists.txt │ └── llvm-cfi-verify │ ├── CMakeLists.txt │ ├── FileAnalysis.cpp │ └── GraphBuilder.cpp └── utils ├── DSAclean.py ├── DSAextract.py ├── FileCheck ├── CMakeLists.txt └── FileCheck.cpp ├── GenLibDeps.pl ├── GetRepositoryPath ├── GetSourceVersion ├── KillTheDoctor ├── CMakeLists.txt └── KillTheDoctor.cpp ├── LLVMBuild.txt ├── LLVMVisualizers ├── CMakeLists.txt └── llvm.natvis ├── Misc └── zkill ├── PerfectShuffle ├── CMakeLists.txt └── PerfectShuffle.cpp ├── TableGen ├── AsmMatcherEmitter.cpp ├── AsmWriterEmitter.cpp ├── AsmWriterInst.cpp ├── AsmWriterInst.h ├── Attributes.cpp ├── CMakeLists.txt ├── CTagsEmitter.cpp ├── CallingConvEmitter.cpp ├── CodeEmitterGen.cpp ├── CodeGenDAGPatterns.cpp ├── CodeGenDAGPatterns.h ├── CodeGenHwModes.cpp ├── CodeGenHwModes.h ├── CodeGenInstruction.cpp ├── CodeGenInstruction.h ├── CodeGenIntrinsics.h ├── CodeGenMapTable.cpp ├── CodeGenRegisters.cpp ├── CodeGenRegisters.h ├── CodeGenSchedule.cpp ├── CodeGenSchedule.h ├── CodeGenTarget.cpp ├── CodeGenTarget.h ├── DAGISelEmitter.cpp ├── DAGISelMatcher.cpp ├── DAGISelMatcher.h ├── DAGISelMatcherEmitter.cpp ├── DAGISelMatcherGen.cpp ├── DAGISelMatcherOpt.cpp ├── DFAPacketizerEmitter.cpp ├── DisassemblerEmitter.cpp ├── FastISelEmitter.cpp ├── FixedLenDecoderEmitter.cpp ├── GlobalISelEmitter.cpp ├── InfoByHwMode.cpp ├── InfoByHwMode.h ├── InstrDocsEmitter.cpp ├── InstrInfoEmitter.cpp ├── IntrinsicEmitter.cpp ├── LLVMBuild.txt ├── OptParserEmitter.cpp ├── PseudoLoweringEmitter.cpp ├── RegisterBankEmitter.cpp ├── RegisterInfoEmitter.cpp ├── SDNodeProperties.cpp ├── SDNodeProperties.h ├── SearchableTableEmitter.cpp ├── SequenceToOffsetTable.h ├── SubtargetEmitter.cpp ├── SubtargetFeatureInfo.cpp ├── SubtargetFeatureInfo.h ├── TableGen.cpp ├── TableGenBackends.h ├── Types.cpp ├── Types.h ├── X86DisassemblerShared.h ├── X86DisassemblerTables.cpp ├── X86DisassemblerTables.h ├── X86EVEX2VEXTablesEmitter.cpp ├── X86FoldTablesEmitter.cpp ├── X86ModRMFilters.cpp ├── X86ModRMFilters.h ├── X86RecognizableInstr.cpp ├── X86RecognizableInstr.h └── tdtags ├── Target └── ARM │ └── analyze-match-table.py ├── UpdateCMakeLists.pl ├── abtest.py ├── bisect ├── bisect-skip-count ├── bugpoint └── RemoteRunSafely.sh ├── check-each-file ├── clang-parse-diagnostics-file ├── codegen-diff ├── count ├── CMakeLists.txt └── count.c ├── countloc.sh ├── create_ladder_graph.py ├── crosstool ├── ARM │ ├── README │ └── build-install-linux.sh └── create-snapshots.sh ├── docker ├── README ├── build_docker_image.sh ├── debian8 │ ├── build │ │ └── Dockerfile │ └── release │ │ └── Dockerfile ├── example │ ├── build │ │ └── Dockerfile │ └── release │ │ └── Dockerfile ├── nvidia-cuda │ ├── build │ │ └── Dockerfile │ └── release │ │ └── Dockerfile └── scripts │ ├── build_install_llvm.sh │ └── llvm_checksum │ ├── llvm_checksum.py │ └── project_tree.py ├── emacs ├── README ├── emacs.el ├── llvm-mode.el └── tablegen-mode.el ├── extract_symbols.py ├── findmisopt ├── findoptdiff ├── findsym.pl ├── fpcmp └── fpcmp.cpp ├── gdb-scripts └── prettyprinters.py ├── getsrcs.sh ├── git-svn ├── git-llvm ├── git-svnrevert └── git-svnup ├── git └── find-rev ├── jedit ├── README └── tablegen.xml ├── kate ├── README └── llvm.xml ├── lint ├── common_lint.py ├── cpp_lint.py ├── generic_lint.py └── remove_trailing_whitespace.sh ├── lit ├── CMakeLists.txt ├── MANIFEST.in ├── README.txt ├── examples │ ├── README.txt │ └── many-tests │ │ ├── README.txt │ │ └── lit.cfg ├── lit.py ├── lit │ ├── BooleanExpression.py │ ├── ExampleTests.ObjDir │ │ └── lit.site.cfg │ ├── LitConfig.py │ ├── LitTestCase.py │ ├── ProgressBar.py │ ├── ShCommands.py │ ├── ShUtil.py │ ├── Test.py │ ├── TestRunner.py │ ├── TestingConfig.py │ ├── __init__.py │ ├── discovery.py │ ├── formats │ │ ├── __init__.py │ │ ├── base.py │ │ ├── googletest.py │ │ └── shtest.py │ ├── llvm │ │ ├── __init__.py │ │ ├── config.py │ │ └── subst.py │ ├── main.py │ ├── run.py │ └── util.py ├── setup.py ├── tests │ ├── .coveragerc │ ├── Inputs │ │ ├── config-map-discovery │ │ │ ├── driver.py │ │ │ ├── invalid-test.txt │ │ │ ├── lit.alt.cfg │ │ │ ├── main-config │ │ │ │ └── lit.cfg │ │ │ └── tests │ │ │ │ ├── test1.txt │ │ │ │ └── test2.txt │ │ ├── discovery │ │ │ ├── lit.cfg │ │ │ ├── subdir │ │ │ │ ├── lit.local.cfg │ │ │ │ └── test-three.py │ │ │ ├── subsuite │ │ │ │ ├── lit.cfg │ │ │ │ ├── test-one.txt │ │ │ │ └── test-two.txt │ │ │ ├── test-one.txt │ │ │ └── test-two.txt │ │ ├── exec-discovery-in-tree │ │ │ ├── lit.cfg │ │ │ ├── obj │ │ │ │ └── lit.site.cfg │ │ │ └── test-one.txt │ │ ├── exec-discovery │ │ │ └── lit.site.cfg │ │ ├── googletest-format │ │ │ ├── DummySubDir │ │ │ │ └── OneTest.py │ │ │ └── lit.cfg │ │ ├── googletest-timeout │ │ │ ├── DummySubDir │ │ │ │ └── OneTest.py │ │ │ └── lit.cfg │ │ ├── googletest-upstream-format │ │ │ ├── DummySubDir │ │ │ │ └── OneTest.py │ │ │ └── lit.cfg │ │ ├── max-failures │ │ │ └── lit.cfg │ │ ├── progress-bar │ │ │ ├── lit.cfg │ │ │ ├── test-1.txt │ │ │ ├── test-2.txt │ │ │ ├── test-3.txt │ │ │ └── test-4.txt │ │ ├── py-config-discovery │ │ │ └── lit.site.cfg.py │ │ ├── shtest-env │ │ │ ├── env-u.txt │ │ │ ├── env.txt │ │ │ ├── lit.cfg │ │ │ ├── mixed.txt │ │ │ ├── print_environment.py │ │ │ └── shtest-env.py │ │ ├── shtest-format │ │ │ ├── argv0.txt │ │ │ ├── external_shell │ │ │ │ ├── fail.txt │ │ │ │ ├── fail_with_bad_encoding.txt │ │ │ │ ├── lit.local.cfg │ │ │ │ ├── pass.txt │ │ │ │ └── write-bad-encoding.py │ │ │ ├── fail.txt │ │ │ ├── lit.cfg │ │ │ ├── no-test-line.txt │ │ │ ├── pass.txt │ │ │ ├── requires-any-missing.txt │ │ │ ├── requires-any-present.txt │ │ │ ├── requires-missing.txt │ │ │ ├── requires-present.txt │ │ │ ├── requires-star.txt │ │ │ ├── requires-triple.txt │ │ │ ├── unsupported-expr-false.txt │ │ │ ├── unsupported-expr-true.txt │ │ │ ├── unsupported-star.txt │ │ │ ├── unsupported_dir │ │ │ │ ├── lit.local.cfg │ │ │ │ └── some-test.txt │ │ │ ├── xfail-expr-false.txt │ │ │ ├── xfail-expr-true.txt │ │ │ ├── xfail-feature.txt │ │ │ ├── xfail-target.txt │ │ │ ├── xfail.txt │ │ │ └── xpass.txt │ │ ├── shtest-output-printing │ │ │ ├── basic.txt │ │ │ └── lit.cfg │ │ ├── shtest-shell │ │ │ ├── check_path.py │ │ │ ├── diff-error-0.txt │ │ │ ├── diff-error-1.txt │ │ │ ├── diff-error-2.txt │ │ │ ├── diff-error-3.txt │ │ │ ├── diff-error-4.txt │ │ │ ├── diff-error-5.txt │ │ │ ├── diff-error-6.txt │ │ │ ├── error-0.txt │ │ │ ├── error-1.txt │ │ │ ├── error-2.txt │ │ │ ├── lit.cfg │ │ │ ├── mkdir-error-0.txt │ │ │ ├── mkdir-error-1.txt │ │ │ ├── mkdir-error-2.txt │ │ │ ├── redirects.txt │ │ │ ├── rm-error-0.txt │ │ │ ├── rm-error-1.txt │ │ │ ├── rm-error-2.txt │ │ │ ├── rm-error-3.txt │ │ │ ├── sequencing-0.txt │ │ │ ├── sequencing-1.txt │ │ │ ├── valid-shell.txt │ │ │ ├── write-to-stderr.py │ │ │ └── write-to-stdout-and-stderr.py │ │ ├── shtest-timeout │ │ │ ├── infinite_loop.py │ │ │ ├── lit.cfg │ │ │ ├── quick_then_slow.py │ │ │ ├── short.py │ │ │ └── slow.py │ │ ├── test-data │ │ │ ├── dummy_format.py │ │ │ ├── lit.cfg │ │ │ └── metrics.ini │ │ ├── testrunner-custom-parsers │ │ │ ├── lit.cfg │ │ │ └── test.txt │ │ └── unittest-adaptor │ │ │ ├── lit.cfg │ │ │ ├── test-one.txt │ │ │ └── test-two.txt │ ├── boolean-parsing.py │ ├── discovery.py │ ├── googletest-format.py │ ├── googletest-timeout.py │ ├── googletest-upstream-format.py │ ├── lit.cfg │ ├── lit.site.cfg.in │ ├── max-failures.py │ ├── progress-bar.py │ ├── selecting.py │ ├── shell-parsing.py │ ├── shtest-encoding.py │ ├── shtest-format.py │ ├── shtest-output-printing.py │ ├── shtest-shell.py │ ├── shtest-timeout.py │ ├── test-data.py │ ├── test-output.py │ ├── unit │ │ ├── ShUtil.py │ │ └── TestRunner.py │ ├── unittest-adaptor.py │ ├── usage.py │ └── xunit-output.py └── utils │ ├── README.txt │ ├── check-coverage │ └── check-sdist ├── lldbDataFormatters.py ├── llvm-build ├── README.txt ├── llvm-build └── llvmbuild │ ├── __init__.py │ ├── componentinfo.py │ ├── configutil.py │ ├── main.py │ └── util.py ├── llvm-compilers-check ├── llvm-gisel-cov.py ├── llvm-lit ├── CMakeLists.txt └── llvm-lit.in ├── llvm-native-gxx ├── llvm.grm ├── llvmdo ├── llvmgrep ├── makellvm ├── not ├── CMakeLists.txt └── not.cpp ├── prepare-code-coverage-artifact.py ├── release ├── build_llvm_package.bat ├── export.sh ├── findRegressions-nightly.py ├── findRegressions-simple.py ├── merge-request.sh ├── merge.sh ├── tag.sh └── test-release.sh ├── sanitizers └── ubsan_blacklist.txt ├── schedcover.py ├── shuffle_fuzz.py ├── shuffle_select_fuzz_tester.py ├── sort_includes.py ├── testgen └── mc-bundling-x86-gen.py ├── textmate ├── README └── TableGen.tmbundle │ ├── Syntaxes │ └── TableGen.tmLanguage │ └── info.plist ├── unittest ├── CMakeLists.txt ├── LLVMBuild.txt ├── UnitTestMain │ ├── CMakeLists.txt │ └── TestMain.cpp ├── googlemock │ ├── LICENSE.txt │ ├── README.LLVM │ ├── include │ │ └── gmock │ │ │ ├── gmock-actions.h │ │ │ ├── gmock-cardinalities.h │ │ │ ├── gmock-generated-actions.h │ │ │ ├── gmock-generated-function-mockers.h │ │ │ ├── gmock-generated-matchers.h │ │ │ ├── gmock-generated-nice-strict.h │ │ │ ├── gmock-matchers.h │ │ │ ├── gmock-more-actions.h │ │ │ ├── gmock-more-matchers.h │ │ │ ├── gmock-spec-builders.h │ │ │ ├── gmock.h │ │ │ └── internal │ │ │ ├── custom │ │ │ ├── gmock-generated-actions.h │ │ │ ├── gmock-matchers.h │ │ │ └── gmock-port.h │ │ │ ├── gmock-generated-internal-utils.h │ │ │ ├── gmock-internal-utils.h │ │ │ └── gmock-port.h │ └── src │ │ ├── gmock-all.cc │ │ ├── gmock-cardinalities.cc │ │ ├── gmock-internal-utils.cc │ │ ├── gmock-matchers.cc │ │ ├── gmock-spec-builders.cc │ │ └── gmock.cc └── googletest │ ├── LICENSE.TXT │ ├── README.LLVM │ ├── include │ └── gtest │ │ ├── gtest-death-test.h │ │ ├── gtest-message.h │ │ ├── gtest-param-test.h │ │ ├── gtest-printers.h │ │ ├── gtest-spi.h │ │ ├── gtest-test-part.h │ │ ├── gtest-typed-test.h │ │ ├── gtest.h │ │ ├── gtest_pred_impl.h │ │ ├── gtest_prod.h │ │ └── internal │ │ ├── custom │ │ ├── gtest-port.h │ │ ├── gtest-printers.h │ │ └── gtest.h │ │ ├── gtest-death-test-internal.h │ │ ├── gtest-filepath.h │ │ ├── gtest-internal.h │ │ ├── gtest-linked_ptr.h │ │ ├── gtest-param-util-generated.h │ │ ├── gtest-param-util.h │ │ ├── gtest-port-arch.h │ │ ├── gtest-port.h │ │ ├── gtest-string.h │ │ ├── gtest-tuple.h │ │ └── gtest-type-util.h │ └── src │ ├── gtest-all.cc │ ├── gtest-death-test.cc │ ├── gtest-filepath.cc │ ├── gtest-internal-inl.h │ ├── gtest-port.cc │ ├── gtest-printers.cc │ ├── gtest-test-part.cc │ ├── gtest-typed-test.cc │ └── gtest.cc ├── update_llc_test_checks.py ├── update_mir_test_checks.py ├── update_test_checks.py ├── valgrind ├── i386-pc-linux-gnu.supp └── x86_64-pc-linux-gnu.supp ├── vim ├── README ├── ftdetect │ ├── llvm-lit.vim │ ├── llvm.vim │ └── tablegen.vim ├── ftplugin │ ├── llvm.vim │ └── tablegen.vim ├── indent │ └── llvm.vim ├── syntax │ ├── llvm.vim │ └── tablegen.vim └── vimrc ├── vscode ├── README └── tablegen │ ├── .vscode │ └── launch.json │ ├── CHANGELOG.md │ ├── README.md │ ├── language-configuration.json │ ├── package.json │ ├── syntaxes │ └── TableGen.tmLanguage │ └── vsc-extension-quickstart.md ├── wciia.py └── yaml-bench ├── CMakeLists.txt └── YAMLBench.cpp /.arcconfig: -------------------------------------------------------------------------------- 1 | { 2 | "conduit_uri" : "https://reviews.llvm.org/" 3 | } 4 | -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | 3 | -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OWNERS.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/CODE_OWNERS.TXT -------------------------------------------------------------------------------- /CREDITS.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/CREDITS.TXT -------------------------------------------------------------------------------- /LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/LICENSE.TXT -------------------------------------------------------------------------------- /LLVMBuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/LLVMBuild.txt -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/README.txt -------------------------------------------------------------------------------- /RELEASE_TESTERS.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/RELEASE_TESTERS.TXT -------------------------------------------------------------------------------- /bindings/LLVMBuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/bindings/LLVMBuild.txt -------------------------------------------------------------------------------- /bindings/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/bindings/README.txt -------------------------------------------------------------------------------- /bindings/go/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/bindings/go/README.txt -------------------------------------------------------------------------------- /bindings/go/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/bindings/go/build.sh -------------------------------------------------------------------------------- /bindings/go/conftest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/bindings/go/conftest.go -------------------------------------------------------------------------------- /bindings/go/llvm/ir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/bindings/go/llvm/ir.go -------------------------------------------------------------------------------- /bindings/python/llvm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bindings/python/llvm/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmake/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/cmake/README -------------------------------------------------------------------------------- /cmake/config-ix.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/cmake/config-ix.cmake -------------------------------------------------------------------------------- /cmake/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/cmake/config.guess -------------------------------------------------------------------------------- /cmake/dummy.cpp: -------------------------------------------------------------------------------- 1 | typedef int dummy; 2 | -------------------------------------------------------------------------------- /cmake/nsis_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/cmake/nsis_icon.ico -------------------------------------------------------------------------------- /cmake/nsis_logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/cmake/nsis_logo.bmp -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/configure -------------------------------------------------------------------------------- /docs/AMDGPUUsage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/AMDGPUUsage.rst -------------------------------------------------------------------------------- /docs/ARM-BE-ld1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/ARM-BE-ld1.png -------------------------------------------------------------------------------- /docs/ARM-BE-ldr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/ARM-BE-ldr.png -------------------------------------------------------------------------------- /docs/AdvancedBuilds.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/AdvancedBuilds.rst -------------------------------------------------------------------------------- /docs/AliasAnalysis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/AliasAnalysis.rst -------------------------------------------------------------------------------- /docs/Atomics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/Atomics.rst -------------------------------------------------------------------------------- /docs/Benchmarking.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/Benchmarking.rst -------------------------------------------------------------------------------- /docs/BigEndianNEON.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/BigEndianNEON.rst -------------------------------------------------------------------------------- /docs/BitCodeFormat.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/BitCodeFormat.rst -------------------------------------------------------------------------------- /docs/Bugpoint.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/Bugpoint.rst -------------------------------------------------------------------------------- /docs/CFIVerify.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/CFIVerify.rst -------------------------------------------------------------------------------- /docs/CMake.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/CMake.rst -------------------------------------------------------------------------------- /docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/CMakeLists.txt -------------------------------------------------------------------------------- /docs/CMakePrimer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/CMakePrimer.rst -------------------------------------------------------------------------------- /docs/CodeGenerator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/CodeGenerator.rst -------------------------------------------------------------------------------- /docs/CodeOfConduct.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/CodeOfConduct.rst -------------------------------------------------------------------------------- /docs/CodingStandards.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/CodingStandards.rst -------------------------------------------------------------------------------- /docs/CommandLine.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/CommandLine.rst -------------------------------------------------------------------------------- /docs/Coroutines.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/Coroutines.rst -------------------------------------------------------------------------------- /docs/DeveloperPolicy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/DeveloperPolicy.rst -------------------------------------------------------------------------------- /docs/Docker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/Docker.rst -------------------------------------------------------------------------------- /docs/ExtendingLLVM.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/ExtendingLLVM.rst -------------------------------------------------------------------------------- /docs/Extensions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/Extensions.rst -------------------------------------------------------------------------------- /docs/FAQ.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/FAQ.rst -------------------------------------------------------------------------------- /docs/FaultMaps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/FaultMaps.rst -------------------------------------------------------------------------------- /docs/FuzzingLLVM.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/FuzzingLLVM.rst -------------------------------------------------------------------------------- /docs/GetElementPtr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/GetElementPtr.rst -------------------------------------------------------------------------------- /docs/GettingStarted.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/GettingStarted.rst -------------------------------------------------------------------------------- /docs/GlobalISel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/GlobalISel.rst -------------------------------------------------------------------------------- /docs/GoldPlugin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/GoldPlugin.rst -------------------------------------------------------------------------------- /docs/HowToBuildOnARM.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/HowToBuildOnARM.rst -------------------------------------------------------------------------------- /docs/HowToSubmitABug.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/HowToSubmitABug.rst -------------------------------------------------------------------------------- /docs/InAlloca.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/InAlloca.rst -------------------------------------------------------------------------------- /docs/LLVMBuild.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/LLVMBuild.rst -------------------------------------------------------------------------------- /docs/LLVMBuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/LLVMBuild.txt -------------------------------------------------------------------------------- /docs/LangRef.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/LangRef.rst -------------------------------------------------------------------------------- /docs/Lexicon.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/Lexicon.rst -------------------------------------------------------------------------------- /docs/LibFuzzer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/LibFuzzer.rst -------------------------------------------------------------------------------- /docs/MCJIT-creation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/MCJIT-creation.png -------------------------------------------------------------------------------- /docs/MCJIT-dyld-load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/MCJIT-dyld-load.png -------------------------------------------------------------------------------- /docs/MCJIT-load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/MCJIT-load.png -------------------------------------------------------------------------------- /docs/MIRLangRef.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/MIRLangRef.rst -------------------------------------------------------------------------------- /docs/Makefile.sphinx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/Makefile.sphinx -------------------------------------------------------------------------------- /docs/MemorySSA.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/MemorySSA.rst -------------------------------------------------------------------------------- /docs/MergeFunctions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/MergeFunctions.rst -------------------------------------------------------------------------------- /docs/NVPTXUsage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/NVPTXUsage.rst -------------------------------------------------------------------------------- /docs/OptBisect.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/OptBisect.rst -------------------------------------------------------------------------------- /docs/PDB/DbiStream.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/PDB/DbiStream.rst -------------------------------------------------------------------------------- /docs/PDB/HashStream.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/PDB/HashStream.rst -------------------------------------------------------------------------------- /docs/PDB/ModiStream.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/PDB/ModiStream.rst -------------------------------------------------------------------------------- /docs/PDB/MsfFile.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/PDB/MsfFile.rst -------------------------------------------------------------------------------- /docs/PDB/PdbStream.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/PDB/PdbStream.rst -------------------------------------------------------------------------------- /docs/PDB/TpiStream.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/PDB/TpiStream.rst -------------------------------------------------------------------------------- /docs/PDB/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/PDB/index.rst -------------------------------------------------------------------------------- /docs/Packaging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/Packaging.rst -------------------------------------------------------------------------------- /docs/Passes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/Passes.rst -------------------------------------------------------------------------------- /docs/Phabricator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/Phabricator.rst -------------------------------------------------------------------------------- /docs/Projects.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/Projects.rst -------------------------------------------------------------------------------- /docs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/README.txt -------------------------------------------------------------------------------- /docs/ReleaseNotes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/ReleaseNotes.rst -------------------------------------------------------------------------------- /docs/ReleaseProcess.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/ReleaseProcess.rst -------------------------------------------------------------------------------- /docs/ReportingGuide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/ReportingGuide.rst -------------------------------------------------------------------------------- /docs/SegmentedStacks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/SegmentedStacks.rst -------------------------------------------------------------------------------- /docs/StackMaps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/StackMaps.rst -------------------------------------------------------------------------------- /docs/Statepoints.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/Statepoints.rst -------------------------------------------------------------------------------- /docs/SystemLibrary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/SystemLibrary.rst -------------------------------------------------------------------------------- /docs/TableGen/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/TableGen/index.rst -------------------------------------------------------------------------------- /docs/TestingGuide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/TestingGuide.rst -------------------------------------------------------------------------------- /docs/TypeMetadata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/TypeMetadata.rst -------------------------------------------------------------------------------- /docs/Vectorizers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/Vectorizers.rst -------------------------------------------------------------------------------- /docs/XRay.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/XRay.rst -------------------------------------------------------------------------------- /docs/XRayExample.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/XRayExample.rst -------------------------------------------------------------------------------- /docs/XRayFDRFormat.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/XRayFDRFormat.rst -------------------------------------------------------------------------------- /docs/YamlIO.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/YamlIO.rst -------------------------------------------------------------------------------- /docs/_ocamldoc/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/_ocamldoc/style.css -------------------------------------------------------------------------------- /docs/_static/lines.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/_static/lines.gif -------------------------------------------------------------------------------- /docs/_static/llvm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/_static/llvm.css -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/doxygen.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/doxygen.cfg.in -------------------------------------------------------------------------------- /docs/gcc-loops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/gcc-loops.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/linpack-pc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/linpack-pc.png -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/re_format.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/re_format.7 -------------------------------------------------------------------------------- /docs/tutorial/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/tutorial/index.rst -------------------------------------------------------------------------------- /docs/yaml2obj.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/docs/yaml2obj.rst -------------------------------------------------------------------------------- /examples/BrainF/BrainF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/examples/BrainF/BrainF.h -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/LLVMBuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/examples/LLVMBuild.txt -------------------------------------------------------------------------------- /include/llvm-c/Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/include/llvm-c/Core.h -------------------------------------------------------------------------------- /include/llvm-c/Linker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/include/llvm-c/Linker.h -------------------------------------------------------------------------------- /include/llvm-c/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/include/llvm-c/Object.h -------------------------------------------------------------------------------- /include/llvm-c/Support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/include/llvm-c/Support.h -------------------------------------------------------------------------------- /include/llvm-c/Target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/include/llvm-c/Target.h -------------------------------------------------------------------------------- /include/llvm-c/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/include/llvm-c/Types.h -------------------------------------------------------------------------------- /include/llvm-c/lto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/include/llvm-c/lto.h -------------------------------------------------------------------------------- /include/llvm/ADT/APInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/include/llvm/ADT/APInt.h -------------------------------------------------------------------------------- /include/llvm/ADT/None.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/include/llvm/ADT/None.h -------------------------------------------------------------------------------- /include/llvm/ADT/Twine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/include/llvm/ADT/Twine.h -------------------------------------------------------------------------------- /include/llvm/ADT/ilist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/include/llvm/ADT/ilist.h -------------------------------------------------------------------------------- /include/llvm/IR/CFG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/include/llvm/IR/CFG.h -------------------------------------------------------------------------------- /include/llvm/IR/Comdat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/include/llvm/IR/Comdat.h -------------------------------------------------------------------------------- /include/llvm/IR/Module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/include/llvm/IR/Module.h -------------------------------------------------------------------------------- /include/llvm/IR/Type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/include/llvm/IR/Type.h -------------------------------------------------------------------------------- /include/llvm/IR/Use.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/include/llvm/IR/Use.h -------------------------------------------------------------------------------- /include/llvm/IR/User.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/include/llvm/IR/User.h -------------------------------------------------------------------------------- /include/llvm/IR/Value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/include/llvm/IR/Value.h -------------------------------------------------------------------------------- /include/llvm/LTO/LTO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/include/llvm/LTO/LTO.h -------------------------------------------------------------------------------- /include/llvm/LinkAllIR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/include/llvm/LinkAllIR.h -------------------------------------------------------------------------------- /include/llvm/MC/MCExpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/include/llvm/MC/MCExpr.h -------------------------------------------------------------------------------- /include/llvm/MC/MCInst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/include/llvm/MC/MCInst.h -------------------------------------------------------------------------------- /include/llvm/Pass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/include/llvm/Pass.h -------------------------------------------------------------------------------- /include/llvm/PassInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/include/llvm/PassInfo.h -------------------------------------------------------------------------------- /lib/Analysis/CFG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Analysis/CFG.cpp -------------------------------------------------------------------------------- /lib/Analysis/CFLGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Analysis/CFLGraph.h -------------------------------------------------------------------------------- /lib/Analysis/IVUsers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Analysis/IVUsers.cpp -------------------------------------------------------------------------------- /lib/Analysis/Lint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Analysis/Lint.cpp -------------------------------------------------------------------------------- /lib/Analysis/Loads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Analysis/Loads.cpp -------------------------------------------------------------------------------- /lib/Analysis/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Analysis/README.txt -------------------------------------------------------------------------------- /lib/Analysis/Trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Analysis/Trace.cpp -------------------------------------------------------------------------------- /lib/AsmParser/LLLexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/AsmParser/LLLexer.h -------------------------------------------------------------------------------- /lib/AsmParser/LLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/AsmParser/LLParser.h -------------------------------------------------------------------------------- /lib/AsmParser/LLToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/AsmParser/LLToken.h -------------------------------------------------------------------------------- /lib/AsmParser/Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/AsmParser/Parser.cpp -------------------------------------------------------------------------------- /lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/CMakeLists.txt -------------------------------------------------------------------------------- /lib/CodeGen/Analysis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/CodeGen/Analysis.cpp -------------------------------------------------------------------------------- /lib/CodeGen/CodeGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/CodeGen/CodeGen.cpp -------------------------------------------------------------------------------- /lib/CodeGen/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/CodeGen/README.txt -------------------------------------------------------------------------------- /lib/CodeGen/Spiller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/CodeGen/Spiller.h -------------------------------------------------------------------------------- /lib/CodeGen/SplitKit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/CodeGen/SplitKit.cpp -------------------------------------------------------------------------------- /lib/CodeGen/SplitKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/CodeGen/SplitKit.h -------------------------------------------------------------------------------- /lib/Fuzzer/README.txt: -------------------------------------------------------------------------------- 1 | libFuzzer was moved to compiler-rt in https://reviews.llvm.org/D36908. 2 | -------------------------------------------------------------------------------- /lib/IR/AsmWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/AsmWriter.cpp -------------------------------------------------------------------------------- /lib/IR/AttributeImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/AttributeImpl.h -------------------------------------------------------------------------------- /lib/IR/Attributes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/Attributes.cpp -------------------------------------------------------------------------------- /lib/IR/AttributesCompatFunc.td: -------------------------------------------------------------------------------- 1 | include "llvm/IR/Attributes.td" 2 | -------------------------------------------------------------------------------- /lib/IR/AutoUpgrade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/AutoUpgrade.cpp -------------------------------------------------------------------------------- /lib/IR/BasicBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/BasicBlock.cpp -------------------------------------------------------------------------------- /lib/IR/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/CMakeLists.txt -------------------------------------------------------------------------------- /lib/IR/Comdat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/Comdat.cpp -------------------------------------------------------------------------------- /lib/IR/ConstantFold.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/ConstantFold.cpp -------------------------------------------------------------------------------- /lib/IR/ConstantFold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/ConstantFold.h -------------------------------------------------------------------------------- /lib/IR/ConstantRange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/ConstantRange.cpp -------------------------------------------------------------------------------- /lib/IR/Constants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/Constants.cpp -------------------------------------------------------------------------------- /lib/IR/Core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/Core.cpp -------------------------------------------------------------------------------- /lib/IR/DIBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/DIBuilder.cpp -------------------------------------------------------------------------------- /lib/IR/DataLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/DataLayout.cpp -------------------------------------------------------------------------------- /lib/IR/DebugInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/DebugInfo.cpp -------------------------------------------------------------------------------- /lib/IR/DebugLoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/DebugLoc.cpp -------------------------------------------------------------------------------- /lib/IR/Dominators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/Dominators.cpp -------------------------------------------------------------------------------- /lib/IR/Function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/Function.cpp -------------------------------------------------------------------------------- /lib/IR/Globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/Globals.cpp -------------------------------------------------------------------------------- /lib/IR/IRBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/IRBuilder.cpp -------------------------------------------------------------------------------- /lib/IR/InlineAsm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/InlineAsm.cpp -------------------------------------------------------------------------------- /lib/IR/Instruction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/Instruction.cpp -------------------------------------------------------------------------------- /lib/IR/Instructions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/Instructions.cpp -------------------------------------------------------------------------------- /lib/IR/IntrinsicInst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/IntrinsicInst.cpp -------------------------------------------------------------------------------- /lib/IR/LLVMBuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/LLVMBuild.txt -------------------------------------------------------------------------------- /lib/IR/LLVMContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/LLVMContext.cpp -------------------------------------------------------------------------------- /lib/IR/LLVMContextImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/LLVMContextImpl.h -------------------------------------------------------------------------------- /lib/IR/MDBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/MDBuilder.cpp -------------------------------------------------------------------------------- /lib/IR/Mangler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/Mangler.cpp -------------------------------------------------------------------------------- /lib/IR/Metadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/Metadata.cpp -------------------------------------------------------------------------------- /lib/IR/MetadataImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/MetadataImpl.h -------------------------------------------------------------------------------- /lib/IR/Module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/Module.cpp -------------------------------------------------------------------------------- /lib/IR/Operator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/Operator.cpp -------------------------------------------------------------------------------- /lib/IR/OptBisect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/OptBisect.cpp -------------------------------------------------------------------------------- /lib/IR/Pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/Pass.cpp -------------------------------------------------------------------------------- /lib/IR/PassManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/PassManager.cpp -------------------------------------------------------------------------------- /lib/IR/PassRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/PassRegistry.cpp -------------------------------------------------------------------------------- /lib/IR/Statepoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/Statepoint.cpp -------------------------------------------------------------------------------- /lib/IR/Type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/Type.cpp -------------------------------------------------------------------------------- /lib/IR/TypeFinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/TypeFinder.cpp -------------------------------------------------------------------------------- /lib/IR/Use.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/Use.cpp -------------------------------------------------------------------------------- /lib/IR/User.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/User.cpp -------------------------------------------------------------------------------- /lib/IR/Value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/Value.cpp -------------------------------------------------------------------------------- /lib/IR/ValueTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/ValueTypes.cpp -------------------------------------------------------------------------------- /lib/IR/Verifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/IR/Verifier.cpp -------------------------------------------------------------------------------- /lib/LLVMBuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/LLVMBuild.txt -------------------------------------------------------------------------------- /lib/LTO/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/LTO/CMakeLists.txt -------------------------------------------------------------------------------- /lib/LTO/Caching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/LTO/Caching.cpp -------------------------------------------------------------------------------- /lib/LTO/LLVMBuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/LTO/LLVMBuild.txt -------------------------------------------------------------------------------- /lib/LTO/LTO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/LTO/LTO.cpp -------------------------------------------------------------------------------- /lib/LTO/LTOBackend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/LTO/LTOBackend.cpp -------------------------------------------------------------------------------- /lib/LTO/LTOModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/LTO/LTOModule.cpp -------------------------------------------------------------------------------- /lib/Linker/IRMover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Linker/IRMover.cpp -------------------------------------------------------------------------------- /lib/Linker/LLVMBuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Linker/LLVMBuild.txt -------------------------------------------------------------------------------- /lib/MC/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/MC/CMakeLists.txt -------------------------------------------------------------------------------- /lib/MC/ConstantPools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/MC/ConstantPools.cpp -------------------------------------------------------------------------------- /lib/MC/LLVMBuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/MC/LLVMBuild.txt -------------------------------------------------------------------------------- /lib/MC/MCAsmBackend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/MC/MCAsmBackend.cpp -------------------------------------------------------------------------------- /lib/MC/MCAsmInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/MC/MCAsmInfo.cpp -------------------------------------------------------------------------------- /lib/MC/MCAsmInfoCOFF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/MC/MCAsmInfoCOFF.cpp -------------------------------------------------------------------------------- /lib/MC/MCAsmInfoELF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/MC/MCAsmInfoELF.cpp -------------------------------------------------------------------------------- /lib/MC/MCAsmInfoWasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/MC/MCAsmInfoWasm.cpp -------------------------------------------------------------------------------- /lib/MC/MCAsmStreamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/MC/MCAsmStreamer.cpp -------------------------------------------------------------------------------- /lib/MC/MCAssembler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/MC/MCAssembler.cpp -------------------------------------------------------------------------------- /lib/MC/MCCodeEmitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/MC/MCCodeEmitter.cpp -------------------------------------------------------------------------------- /lib/MC/MCCodePadder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/MC/MCCodePadder.cpp -------------------------------------------------------------------------------- /lib/MC/MCCodeView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/MC/MCCodeView.cpp -------------------------------------------------------------------------------- /lib/MC/MCContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/MC/MCContext.cpp -------------------------------------------------------------------------------- /lib/MC/MCDwarf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/MC/MCDwarf.cpp -------------------------------------------------------------------------------- /lib/MC/MCELFStreamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/MC/MCELFStreamer.cpp -------------------------------------------------------------------------------- /lib/MC/MCExpr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/MC/MCExpr.cpp -------------------------------------------------------------------------------- /lib/MC/MCFragment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/MC/MCFragment.cpp -------------------------------------------------------------------------------- /lib/MC/MCInst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/MC/MCInst.cpp -------------------------------------------------------------------------------- /lib/MC/MCInstPrinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/MC/MCInstPrinter.cpp -------------------------------------------------------------------------------- /lib/MC/MCInstrDesc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/MC/MCInstrDesc.cpp -------------------------------------------------------------------------------- /lib/MC/MCLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/MC/MCLabel.cpp -------------------------------------------------------------------------------- /lib/MC/MCSchedule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/MC/MCSchedule.cpp -------------------------------------------------------------------------------- /lib/MC/MCSection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/MC/MCSection.cpp -------------------------------------------------------------------------------- /lib/MC/MCSectionCOFF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/MC/MCSectionCOFF.cpp -------------------------------------------------------------------------------- /lib/MC/MCSectionELF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/MC/MCSectionELF.cpp -------------------------------------------------------------------------------- /lib/MC/MCSectionWasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/MC/MCSectionWasm.cpp -------------------------------------------------------------------------------- /lib/MC/MCStreamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/MC/MCStreamer.cpp -------------------------------------------------------------------------------- /lib/MC/MCSymbol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/MC/MCSymbol.cpp -------------------------------------------------------------------------------- /lib/MC/MCSymbolELF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/MC/MCSymbolELF.cpp -------------------------------------------------------------------------------- /lib/MC/MCValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/MC/MCValue.cpp -------------------------------------------------------------------------------- /lib/MC/MCWin64EH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/MC/MCWin64EH.cpp -------------------------------------------------------------------------------- /lib/MC/MCWinEH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/MC/MCWinEH.cpp -------------------------------------------------------------------------------- /lib/Object/Archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Object/Archive.cpp -------------------------------------------------------------------------------- /lib/Object/Binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Object/Binary.cpp -------------------------------------------------------------------------------- /lib/Object/ELF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Object/ELF.cpp -------------------------------------------------------------------------------- /lib/Object/Error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Object/Error.cpp -------------------------------------------------------------------------------- /lib/Object/IRSymtab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Object/IRSymtab.cpp -------------------------------------------------------------------------------- /lib/Object/LLVMBuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Object/LLVMBuild.txt -------------------------------------------------------------------------------- /lib/Object/Object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Object/Object.cpp -------------------------------------------------------------------------------- /lib/ObjectYAML/YAML.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/ObjectYAML/YAML.cpp -------------------------------------------------------------------------------- /lib/Option/Arg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Option/Arg.cpp -------------------------------------------------------------------------------- /lib/Option/ArgList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Option/ArgList.cpp -------------------------------------------------------------------------------- /lib/Option/LLVMBuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Option/LLVMBuild.txt -------------------------------------------------------------------------------- /lib/Option/OptTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Option/OptTable.cpp -------------------------------------------------------------------------------- /lib/Option/Option.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Option/Option.cpp -------------------------------------------------------------------------------- /lib/Passes/LLVMBuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Passes/LLVMBuild.txt -------------------------------------------------------------------------------- /lib/ProfileData/GCOV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/ProfileData/GCOV.cpp -------------------------------------------------------------------------------- /lib/Support/APFloat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/APFloat.cpp -------------------------------------------------------------------------------- /lib/Support/APInt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/APInt.cpp -------------------------------------------------------------------------------- /lib/Support/APSInt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/APSInt.cpp -------------------------------------------------------------------------------- /lib/Support/ARMWinEH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/ARMWinEH.cpp -------------------------------------------------------------------------------- /lib/Support/Atomic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/Atomic.cpp -------------------------------------------------------------------------------- /lib/Support/COM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/COM.cpp -------------------------------------------------------------------------------- /lib/Support/Chrono.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/Chrono.cpp -------------------------------------------------------------------------------- /lib/Support/Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/Debug.cpp -------------------------------------------------------------------------------- /lib/Support/Errno.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/Errno.cpp -------------------------------------------------------------------------------- /lib/Support/Error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/Error.cpp -------------------------------------------------------------------------------- /lib/Support/Hashing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/Hashing.cpp -------------------------------------------------------------------------------- /lib/Support/Host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/Host.cpp -------------------------------------------------------------------------------- /lib/Support/JamCRC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/JamCRC.cpp -------------------------------------------------------------------------------- /lib/Support/LEB128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/LEB128.cpp -------------------------------------------------------------------------------- /lib/Support/Locale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/Locale.cpp -------------------------------------------------------------------------------- /lib/Support/MD5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/MD5.cpp -------------------------------------------------------------------------------- /lib/Support/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/Memory.cpp -------------------------------------------------------------------------------- /lib/Support/Mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/Mutex.cpp -------------------------------------------------------------------------------- /lib/Support/Options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/Options.cpp -------------------------------------------------------------------------------- /lib/Support/Parallel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/Parallel.cpp -------------------------------------------------------------------------------- /lib/Support/Path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/Path.cpp -------------------------------------------------------------------------------- /lib/Support/Process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/Process.cpp -------------------------------------------------------------------------------- /lib/Support/Program.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/Program.cpp -------------------------------------------------------------------------------- /lib/Support/RWMutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/RWMutex.cpp -------------------------------------------------------------------------------- /lib/Support/Regex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/Regex.cpp -------------------------------------------------------------------------------- /lib/Support/SHA1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/SHA1.cpp -------------------------------------------------------------------------------- /lib/Support/Signals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/Signals.cpp -------------------------------------------------------------------------------- /lib/Support/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/Timer.cpp -------------------------------------------------------------------------------- /lib/Support/Triple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/Triple.cpp -------------------------------------------------------------------------------- /lib/Support/Twine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/Twine.cpp -------------------------------------------------------------------------------- /lib/Support/Unicode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/Unicode.cpp -------------------------------------------------------------------------------- /lib/Support/Unix/COM.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/Unix/COM.inc -------------------------------------------------------------------------------- /lib/Support/Unix/Unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/Unix/Unix.h -------------------------------------------------------------------------------- /lib/Support/Valgrind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/Valgrind.cpp -------------------------------------------------------------------------------- /lib/Support/Watchdog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/Watchdog.cpp -------------------------------------------------------------------------------- /lib/Support/regcomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/regcomp.c -------------------------------------------------------------------------------- /lib/Support/regerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/regerror.c -------------------------------------------------------------------------------- /lib/Support/regex2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/regex2.h -------------------------------------------------------------------------------- /lib/Support/regex_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/regex_impl.h -------------------------------------------------------------------------------- /lib/Support/regexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/regexec.c -------------------------------------------------------------------------------- /lib/Support/regfree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/regfree.c -------------------------------------------------------------------------------- /lib/Support/regstrlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/regstrlcpy.c -------------------------------------------------------------------------------- /lib/Support/regutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/regutils.h -------------------------------------------------------------------------------- /lib/Support/xxhash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Support/xxhash.cpp -------------------------------------------------------------------------------- /lib/TableGen/Error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/TableGen/Error.cpp -------------------------------------------------------------------------------- /lib/TableGen/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/TableGen/Main.cpp -------------------------------------------------------------------------------- /lib/TableGen/Record.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/TableGen/Record.cpp -------------------------------------------------------------------------------- /lib/TableGen/TGLexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/TableGen/TGLexer.cpp -------------------------------------------------------------------------------- /lib/TableGen/TGLexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/TableGen/TGLexer.h -------------------------------------------------------------------------------- /lib/TableGen/TGParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/TableGen/TGParser.h -------------------------------------------------------------------------------- /lib/Target/ARC/ARC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Target/ARC/ARC.h -------------------------------------------------------------------------------- /lib/Target/ARC/ARC.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Target/ARC/ARC.td -------------------------------------------------------------------------------- /lib/Target/ARM/ARM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Target/ARM/ARM.h -------------------------------------------------------------------------------- /lib/Target/ARM/ARM.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Target/ARM/ARM.td -------------------------------------------------------------------------------- /lib/Target/AVR/AVR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Target/AVR/AVR.h -------------------------------------------------------------------------------- /lib/Target/AVR/AVR.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Target/AVR/AVR.td -------------------------------------------------------------------------------- /lib/Target/AVR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Target/AVR/README.md -------------------------------------------------------------------------------- /lib/Target/AVR/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Target/AVR/TODO.md -------------------------------------------------------------------------------- /lib/Target/BPF/BPF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Target/BPF/BPF.h -------------------------------------------------------------------------------- /lib/Target/BPF/BPF.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Target/BPF/BPF.td -------------------------------------------------------------------------------- /lib/Target/LLVMBuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Target/LLVMBuild.txt -------------------------------------------------------------------------------- /lib/Target/Lanai/Lanai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Target/Lanai/Lanai.h -------------------------------------------------------------------------------- /lib/Target/M6502/M6502.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Target/M6502/M6502.h -------------------------------------------------------------------------------- /lib/Target/Mips/MSA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Target/Mips/MSA.txt -------------------------------------------------------------------------------- /lib/Target/Mips/Mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Target/Mips/Mips.h -------------------------------------------------------------------------------- /lib/Target/Mips/Mips.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Target/Mips/Mips.td -------------------------------------------------------------------------------- /lib/Target/NVPTX/NVPTX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Target/NVPTX/NVPTX.h -------------------------------------------------------------------------------- /lib/Target/Nios2/Nios2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Target/Nios2/Nios2.h -------------------------------------------------------------------------------- /lib/Target/PowerPC/PPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Target/PowerPC/PPC.h -------------------------------------------------------------------------------- /lib/Target/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Target/README.txt -------------------------------------------------------------------------------- /lib/Target/RISCV/RISCV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Target/RISCV/RISCV.h -------------------------------------------------------------------------------- /lib/Target/Sparc/Sparc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Target/Sparc/Sparc.h -------------------------------------------------------------------------------- /lib/Target/Target.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Target/Target.cpp -------------------------------------------------------------------------------- /lib/Target/X86/X86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Target/X86/X86.h -------------------------------------------------------------------------------- /lib/Target/X86/X86.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Target/X86/X86.td -------------------------------------------------------------------------------- /lib/Target/XCore/XCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/Target/XCore/XCore.h -------------------------------------------------------------------------------- /lib/Testing/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(Support) 2 | -------------------------------------------------------------------------------- /lib/Transforms/Hello/Hello.exports: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/XRay/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/XRay/CMakeLists.txt -------------------------------------------------------------------------------- /lib/XRay/Trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/lib/XRay/Trace.cpp -------------------------------------------------------------------------------- /llvm.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/llvm.spec.in -------------------------------------------------------------------------------- /projects/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/projects/CMakeLists.txt -------------------------------------------------------------------------------- /projects/LLVMBuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/projects/LLVMBuild.txt -------------------------------------------------------------------------------- /runtimes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/runtimes/CMakeLists.txt -------------------------------------------------------------------------------- /test/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: LLVM 2 | ColumnLimit: 0 3 | -------------------------------------------------------------------------------- /test/Analysis/Delinearization/lit.local.cfg: -------------------------------------------------------------------------------- 1 | config.suffixes = ['.ll'] 2 | -------------------------------------------------------------------------------- /test/Analysis/Lint/lit.local.cfg: -------------------------------------------------------------------------------- 1 | config.suffixes = ['.ll'] 2 | -------------------------------------------------------------------------------- /test/Assembler/atomic.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Assembler/atomic.ll -------------------------------------------------------------------------------- /test/Assembler/bcwrap.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Assembler/bcwrap.ll -------------------------------------------------------------------------------- /test/Assembler/flags.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Assembler/flags.ll -------------------------------------------------------------------------------- /test/Assembler/getInt.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Assembler/getInt.ll -------------------------------------------------------------------------------- /test/Assembler/half.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Assembler/half.ll -------------------------------------------------------------------------------- /test/Assembler/select.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Assembler/select.ll -------------------------------------------------------------------------------- /test/Assembler/token.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Assembler/token.ll -------------------------------------------------------------------------------- /test/Assembler/x86mmx.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Assembler/x86mmx.ll -------------------------------------------------------------------------------- /test/Bindings/Go/go.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Bindings/Go/go.test -------------------------------------------------------------------------------- /test/Bitcode/Inputs/invalid-empty.bc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Bitcode/atomic.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Bitcode/atomic.ll -------------------------------------------------------------------------------- /test/Bitcode/flags.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Bitcode/flags.ll -------------------------------------------------------------------------------- /test/Bitcode/inalloca.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Bitcode/inalloca.ll -------------------------------------------------------------------------------- /test/Bitcode/invalid.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Bitcode/invalid.ll -------------------------------------------------------------------------------- /test/Bitcode/metadata.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Bitcode/metadata.ll -------------------------------------------------------------------------------- /test/Bitcode/pr18704.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Bitcode/pr18704.ll -------------------------------------------------------------------------------- /test/Bitcode/select.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Bitcode/select.ll -------------------------------------------------------------------------------- /test/Bitcode/shuffle.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Bitcode/shuffle.ll -------------------------------------------------------------------------------- /test/Bitcode/tailcall.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Bitcode/tailcall.ll -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/CodeGen/ARC/alu.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARC/alu.ll -------------------------------------------------------------------------------- /test/CodeGen/ARC/brcc.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARC/brcc.ll -------------------------------------------------------------------------------- /test/CodeGen/ARC/call.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARC/call.ll -------------------------------------------------------------------------------- /test/CodeGen/ARC/ldst.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARC/ldst.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/a15.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/a15.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/bfc.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/bfc.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/bfi.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/bfi.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/bfx.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/bfx.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/bic.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/bic.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/bits.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/bits.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/call.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/call.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/cdp.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/cdp.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/cdp2.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/cdp2.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/clz.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/clz.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/cmn.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/cmn.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/cmp.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/cmp.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/cttz.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/cttz.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/dbg.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/dbg.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/div.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/div.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/fp.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/fp.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/fp16.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/fp16.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/fpow.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/fpow.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/half.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/half.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/i1.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/i1.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/iabs.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/iabs.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/imm.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/imm.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/ldm.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/ldm.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/ldr.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/ldr.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/ldrd.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/ldrd.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/load.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/load.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/long.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/long.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/mem.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/mem.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/mls.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/mls.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/movt.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/movt.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/mul.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/mul.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/mvn.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/mvn.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/pack.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/pack.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/phi.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/phi.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/pic.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/pic.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/pie.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/pie.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/rbit.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/rbit.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/ret0.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/ret0.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/rev.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/rev.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/ror.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/ror.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/sbfx.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/sbfx.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/smml.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/smml.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/smul.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/smul.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/ssat.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/ssat.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/stc2.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/stc2.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/stm.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/stm.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/sub.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/sub.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/tls1.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/tls1.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/tls2.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/tls2.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/tls3.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/tls3.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/trap.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/trap.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/usat.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/usat.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/uxtb.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/uxtb.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/vaba.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/vaba.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/vabd.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/vabd.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/vabs.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/vabs.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/vadd.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/vadd.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/vbsl.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/vbsl.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/vceq.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/vceq.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/vcge.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/vcge.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/vcgt.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/vcgt.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/vcnt.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/vcnt.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/vcvt.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/vcvt.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/vdup.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/vdup.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/vext.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/vext.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/vfp.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/vfp.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/vld1.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/vld1.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/vld2.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/vld2.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/vld3.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/vld3.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/vld4.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/vld4.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/vmla.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/vmla.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/vmls.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/vmls.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/vmov.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/vmov.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/vmul.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/vmul.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/vneg.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/vneg.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/vrec.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/vrec.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/vrev.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/vrev.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/vsel.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/vsel.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/vshl.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/vshl.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/vsra.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/vsra.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/vst1.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/vst1.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/vst2.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/vst2.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/vst3.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/vst3.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/vst4.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/vst4.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/vsub.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/vsub.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/vtbl.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/vtbl.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/vtrn.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/vtrn.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/vuzp.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/vuzp.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/vzip.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/vzip.ll -------------------------------------------------------------------------------- /test/CodeGen/ARM/weak.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/ARM/weak.ll -------------------------------------------------------------------------------- /test/CodeGen/AVR/add.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/AVR/add.ll -------------------------------------------------------------------------------- /test/CodeGen/AVR/and.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/AVR/and.ll -------------------------------------------------------------------------------- /test/CodeGen/AVR/call.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/AVR/call.ll -------------------------------------------------------------------------------- /test/CodeGen/AVR/cmp.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/AVR/cmp.ll -------------------------------------------------------------------------------- /test/CodeGen/AVR/com.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/AVR/com.ll -------------------------------------------------------------------------------- /test/CodeGen/AVR/ctlz.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/AVR/ctlz.ll -------------------------------------------------------------------------------- /test/CodeGen/AVR/cttz.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/AVR/cttz.ll -------------------------------------------------------------------------------- /test/CodeGen/AVR/div.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/AVR/div.ll -------------------------------------------------------------------------------- /test/CodeGen/AVR/eor.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/AVR/eor.ll -------------------------------------------------------------------------------- /test/CodeGen/AVR/io.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/AVR/io.ll -------------------------------------------------------------------------------- /test/CodeGen/AVR/load.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/AVR/load.ll -------------------------------------------------------------------------------- /test/CodeGen/AVR/mul.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/AVR/mul.ll -------------------------------------------------------------------------------- /test/CodeGen/AVR/neg.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/AVR/neg.ll -------------------------------------------------------------------------------- /test/CodeGen/AVR/or.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/AVR/or.ll -------------------------------------------------------------------------------- /test/CodeGen/AVR/rem.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/AVR/rem.ll -------------------------------------------------------------------------------- /test/CodeGen/AVR/rot.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/AVR/rot.ll -------------------------------------------------------------------------------- /test/CodeGen/AVR/sext.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/AVR/sext.ll -------------------------------------------------------------------------------- /test/CodeGen/AVR/sub.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/AVR/sub.ll -------------------------------------------------------------------------------- /test/CodeGen/AVR/xor.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/AVR/xor.ll -------------------------------------------------------------------------------- /test/CodeGen/AVR/zext.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/AVR/zext.ll -------------------------------------------------------------------------------- /test/CodeGen/BPF/alu8.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/BPF/alu8.ll -------------------------------------------------------------------------------- /test/CodeGen/BPF/cmp.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/BPF/cmp.ll -------------------------------------------------------------------------------- /test/CodeGen/BPF/ex1.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/BPF/ex1.ll -------------------------------------------------------------------------------- /test/CodeGen/BPF/load.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/BPF/load.ll -------------------------------------------------------------------------------- /test/CodeGen/MIR/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/MIR/README -------------------------------------------------------------------------------- /test/CodeGen/Mips/ci2.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/Mips/ci2.ll -------------------------------------------------------------------------------- /test/CodeGen/Mips/div.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/Mips/div.ll -------------------------------------------------------------------------------- /test/CodeGen/Mips/eh.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/Mips/eh.ll -------------------------------------------------------------------------------- /test/CodeGen/Mips/ex2.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/Mips/ex2.ll -------------------------------------------------------------------------------- /test/CodeGen/Mips/imm.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/Mips/imm.ll -------------------------------------------------------------------------------- /test/CodeGen/Mips/lb1.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/Mips/lb1.ll -------------------------------------------------------------------------------- /test/CodeGen/Mips/lh1.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/Mips/lh1.ll -------------------------------------------------------------------------------- /test/CodeGen/Mips/mul.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/Mips/mul.ll -------------------------------------------------------------------------------- /test/CodeGen/Mips/or1.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/Mips/or1.ll -------------------------------------------------------------------------------- /test/CodeGen/Mips/rem.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/Mips/rem.ll -------------------------------------------------------------------------------- /test/CodeGen/Mips/sb1.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/Mips/sb1.ll -------------------------------------------------------------------------------- /test/CodeGen/Mips/sh1.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/Mips/sh1.ll -------------------------------------------------------------------------------- /test/CodeGen/Mips/slt.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/Mips/slt.ll -------------------------------------------------------------------------------- /test/CodeGen/Mips/sr1.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/Mips/sr1.ll -------------------------------------------------------------------------------- /test/CodeGen/Mips/tls.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/Mips/tls.ll -------------------------------------------------------------------------------- /test/CodeGen/Mips/ul1.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/Mips/ul1.ll -------------------------------------------------------------------------------- /test/CodeGen/X86/9601.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/X86/9601.ll -------------------------------------------------------------------------------- /test/CodeGen/X86/add.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/X86/add.ll -------------------------------------------------------------------------------- /test/CodeGen/X86/apm.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/X86/apm.ll -------------------------------------------------------------------------------- /test/CodeGen/X86/avg.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/X86/avg.ll -------------------------------------------------------------------------------- /test/CodeGen/X86/avx.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/X86/avx.ll -------------------------------------------------------------------------------- /test/CodeGen/X86/bmi.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/X86/bmi.ll -------------------------------------------------------------------------------- /test/CodeGen/X86/bmi2.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/X86/bmi2.ll -------------------------------------------------------------------------------- /test/CodeGen/X86/bt.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/X86/bt.ll -------------------------------------------------------------------------------- /test/CodeGen/X86/btq.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/X86/btq.ll -------------------------------------------------------------------------------- /test/CodeGen/X86/cas.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/X86/cas.ll -------------------------------------------------------------------------------- /test/CodeGen/X86/cfi.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/X86/cfi.ll -------------------------------------------------------------------------------- /test/CodeGen/X86/clwb.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/X86/clwb.ll -------------------------------------------------------------------------------- /test/CodeGen/X86/clz.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/X86/clz.ll -------------------------------------------------------------------------------- /test/CodeGen/X86/cmov.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/X86/cmov.ll -------------------------------------------------------------------------------- /test/CodeGen/X86/cmp.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/X86/cmp.ll -------------------------------------------------------------------------------- /test/CodeGen/X86/cpus.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/X86/cpus.ll -------------------------------------------------------------------------------- /test/CodeGen/X86/div8.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/X86/div8.ll -------------------------------------------------------------------------------- /test/CodeGen/X86/fabs.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/X86/fabs.ll -------------------------------------------------------------------------------- /test/CodeGen/X86/fdiv.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/X86/fdiv.ll -------------------------------------------------------------------------------- /test/CodeGen/X86/fma.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/X86/fma.ll -------------------------------------------------------------------------------- /test/CodeGen/X86/half.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/CodeGen/X86/half.ll -------------------------------------------------------------------------------- /test/DebugInfo/Inputs/dwarfdump-macro-cmd.h: -------------------------------------------------------------------------------- 1 | #define M4 Value4 2 | -------------------------------------------------------------------------------- /test/DebugInfo/Inputs/dwarfdump-test2-helper.cc: -------------------------------------------------------------------------------- 1 | extern "C" int a() { 2 | return 0; 3 | } 4 | -------------------------------------------------------------------------------- /test/DebugInfo/Inputs/dwarfdump-test3-decl2.h: -------------------------------------------------------------------------------- 1 | void do2() { } 2 | -------------------------------------------------------------------------------- /test/DebugInfo/Inputs/dwarfdump-test4-decl.h: -------------------------------------------------------------------------------- 1 | inline void a(){} 2 | -------------------------------------------------------------------------------- /test/DebugInfo/Inputs/dwarfdump-test4-part2.cc: -------------------------------------------------------------------------------- 1 | #include "dwarfdump-test4-decl.h" 2 | int d(){a();} 3 | -------------------------------------------------------------------------------- /test/DebugInfo/MIR/lit.local.cfg: -------------------------------------------------------------------------------- 1 | config.suffixes = ['.mir'] 2 | 3 | -------------------------------------------------------------------------------- /test/DebugInfo/PDB/Inputs/bad-block-size.pdb: -------------------------------------------------------------------------------- 1 | Microsoft C/C++ MSF 7.00 2 | DS -------------------------------------------------------------------------------- /test/DebugInfo/dwo.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/DebugInfo/dwo.ll -------------------------------------------------------------------------------- /test/DebugInfo/member-pointers.o: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/DebugInfo/missing-abstract-variable.o: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Examples/lit.local.cfg: -------------------------------------------------------------------------------- 1 | config.unsupported = True 2 | -------------------------------------------------------------------------------- /test/ExecutionEngine/RuntimeDyld/SystemZ/Inputs/rtdyld-globals.ll: -------------------------------------------------------------------------------- 1 | @foo = global i8 0 2 | -------------------------------------------------------------------------------- /test/Feature/cold.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Feature/cold.ll -------------------------------------------------------------------------------- /test/Feature/float.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Feature/float.ll -------------------------------------------------------------------------------- /test/Feature/ppcld.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Feature/ppcld.ll -------------------------------------------------------------------------------- /test/Feature/small.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Feature/small.ll -------------------------------------------------------------------------------- /test/Feature/x86ld.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Feature/x86ld.ll -------------------------------------------------------------------------------- /test/LTO/X86/attrs.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/LTO/X86/attrs.ll -------------------------------------------------------------------------------- /test/Linker/Inputs/PR8300.a.ll: -------------------------------------------------------------------------------- 1 | %foo2 = type { [8 x i8] } 2 | declare void @zed(%foo2*) 3 | -------------------------------------------------------------------------------- /test/Linker/Inputs/apple-version/2.ll: -------------------------------------------------------------------------------- 1 | target triple = "x86_64-apple-macosx10.8.0" 2 | -------------------------------------------------------------------------------- /test/Linker/Inputs/apple-version/3.ll: -------------------------------------------------------------------------------- 1 | target triple = "i386-apple-macosx10.9.0" 2 | -------------------------------------------------------------------------------- /test/Linker/Inputs/apple-version/4.ll: -------------------------------------------------------------------------------- 1 | target triple = "x86_64h-apple-macosx10.9.0" 2 | -------------------------------------------------------------------------------- /test/Linker/Inputs/datalayout-a.ll: -------------------------------------------------------------------------------- 1 | target datalayout = "e" 2 | -------------------------------------------------------------------------------- /test/Linker/Inputs/datalayout-b.ll: -------------------------------------------------------------------------------- 1 | target datalayout = "e-p:16:16" 2 | -------------------------------------------------------------------------------- /test/Linker/Inputs/module-flags-pic-1-b.ll: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/Linker/Inputs/targettriple-a.ll: -------------------------------------------------------------------------------- 1 | target triple = "x86_64-unknown-linux-gnu" 2 | -------------------------------------------------------------------------------- /test/Linker/Inputs/targettriple-b.ll: -------------------------------------------------------------------------------- 1 | target triple = "i386-unknown-linux-gnu" 2 | -------------------------------------------------------------------------------- /test/Linker/Inputs/targettriple-c.ll: -------------------------------------------------------------------------------- 1 | target triple = "x86_64h-unknown-linux-gnu" 2 | -------------------------------------------------------------------------------- /test/Linker/PR8300.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Linker/PR8300.ll -------------------------------------------------------------------------------- /test/Linker/alias.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Linker/alias.ll -------------------------------------------------------------------------------- /test/Linker/broken.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Linker/broken.ll -------------------------------------------------------------------------------- /test/Linker/comdat.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Linker/comdat.ll -------------------------------------------------------------------------------- /test/Linker/ctors.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Linker/ctors.ll -------------------------------------------------------------------------------- /test/Linker/ctors2.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Linker/ctors2.ll -------------------------------------------------------------------------------- /test/Linker/ctors3.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Linker/ctors3.ll -------------------------------------------------------------------------------- /test/Linker/ctors4.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Linker/ctors4.ll -------------------------------------------------------------------------------- /test/Linker/ctors5.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Linker/ctors5.ll -------------------------------------------------------------------------------- /test/Linker/dllstorage-b.ll: -------------------------------------------------------------------------------- 1 | ; RUN: true 2 | 3 | @foo = dllexport global i32 42 4 | -------------------------------------------------------------------------------- /test/Linker/ident.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Linker/ident.ll -------------------------------------------------------------------------------- /test/Linker/odr.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Linker/odr.ll -------------------------------------------------------------------------------- /test/Linker/opaque.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Linker/opaque.ll -------------------------------------------------------------------------------- /test/MC/AArch64/cfi.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/AArch64/cfi.s -------------------------------------------------------------------------------- /test/MC/AArch64/crc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/AArch64/crc.s -------------------------------------------------------------------------------- /test/MC/AMDGPU/ds.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/AMDGPU/ds.s -------------------------------------------------------------------------------- /test/MC/AMDGPU/exp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/AMDGPU/exp.s -------------------------------------------------------------------------------- /test/MC/AMDGPU/flat.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/AMDGPU/flat.s -------------------------------------------------------------------------------- /test/MC/AMDGPU/hsa.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/AMDGPU/hsa.s -------------------------------------------------------------------------------- /test/MC/AMDGPU/mimg.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/AMDGPU/mimg.s -------------------------------------------------------------------------------- /test/MC/AMDGPU/pal.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/AMDGPU/pal.s -------------------------------------------------------------------------------- /test/MC/AMDGPU/smem.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/AMDGPU/smem.s -------------------------------------------------------------------------------- /test/MC/AMDGPU/smrd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/AMDGPU/smrd.s -------------------------------------------------------------------------------- /test/MC/AMDGPU/sop1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/AMDGPU/sop1.s -------------------------------------------------------------------------------- /test/MC/AMDGPU/sop2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/AMDGPU/sop2.s -------------------------------------------------------------------------------- /test/MC/AMDGPU/sopc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/AMDGPU/sopc.s -------------------------------------------------------------------------------- /test/MC/AMDGPU/sopk.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/AMDGPU/sopk.s -------------------------------------------------------------------------------- /test/MC/AMDGPU/sopp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/AMDGPU/sopp.s -------------------------------------------------------------------------------- /test/MC/AMDGPU/trap.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/AMDGPU/trap.s -------------------------------------------------------------------------------- /test/MC/AMDGPU/vop1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/AMDGPU/vop1.s -------------------------------------------------------------------------------- /test/MC/AMDGPU/vop2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/AMDGPU/vop2.s -------------------------------------------------------------------------------- /test/MC/AMDGPU/vop3.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/AMDGPU/vop3.s -------------------------------------------------------------------------------- /test/MC/AMDGPU/vopc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/AMDGPU/vopc.s -------------------------------------------------------------------------------- /test/MC/ARM/Inputs/ident.s: -------------------------------------------------------------------------------- 1 | .ident "LLVM ARM Compiler" 2 | -------------------------------------------------------------------------------- /test/MC/ARM/bkpt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ARM/bkpt.s -------------------------------------------------------------------------------- /test/MC/ARM/comment.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ARM/comment.s -------------------------------------------------------------------------------- /test/MC/ARM/cps.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ARM/cps.s -------------------------------------------------------------------------------- /test/MC/ARM/crc32.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ARM/crc32.s -------------------------------------------------------------------------------- /test/MC/ARM/d16.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ARM/d16.s -------------------------------------------------------------------------------- /test/MC/ARM/dfb-neg.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ARM/dfb-neg.s -------------------------------------------------------------------------------- /test/MC/ARM/dfb.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ARM/dfb.s -------------------------------------------------------------------------------- /test/MC/ARM/dot-req.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ARM/dot-req.s -------------------------------------------------------------------------------- /test/MC/ARM/eh-link.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ARM/eh-link.s -------------------------------------------------------------------------------- /test/MC/ARM/fconst.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ARM/fconst.s -------------------------------------------------------------------------------- /test/MC/ARM/idiv.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ARM/idiv.s -------------------------------------------------------------------------------- /test/MC/ARM/ltorg.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ARM/ltorg.s -------------------------------------------------------------------------------- /test/MC/ARM/mul-v4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ARM/mul-v4.s -------------------------------------------------------------------------------- /test/MC/ARM/neon-v8.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ARM/neon-v8.s -------------------------------------------------------------------------------- /test/MC/ARM/pool.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ARM/pool.s -------------------------------------------------------------------------------- /test/MC/ARM/pr11877.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ARM/pr11877.s -------------------------------------------------------------------------------- /test/MC/ARM/pr22395.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ARM/pr22395.s -------------------------------------------------------------------------------- /test/MC/ARM/thumb.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ARM/thumb.s -------------------------------------------------------------------------------- /test/MC/ARM/twice.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ARM/twice.ll -------------------------------------------------------------------------------- /test/MC/ARM/udf-arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ARM/udf-arm.s -------------------------------------------------------------------------------- /test/MC/ARM/v7k-dsp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ARM/v7k-dsp.s -------------------------------------------------------------------------------- /test/MC/ARM/vfp4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ARM/vfp4.s -------------------------------------------------------------------------------- /test/MC/AVR/inst-cp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/AVR/inst-cp.s -------------------------------------------------------------------------------- /test/MC/AVR/inst-in.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/AVR/inst-in.s -------------------------------------------------------------------------------- /test/MC/AVR/inst-ld.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/AVR/inst-ld.s -------------------------------------------------------------------------------- /test/MC/AVR/inst-or.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/AVR/inst-or.s -------------------------------------------------------------------------------- /test/MC/AVR/inst-st.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/AVR/inst-st.s -------------------------------------------------------------------------------- /test/MC/AsmParser/Inputs/function.x: -------------------------------------------------------------------------------- 1 | 2 | FUNCTION = 1 3 | 4 | -------------------------------------------------------------------------------- /test/MC/AsmParser/Inputs/module.x: -------------------------------------------------------------------------------- 1 | 2 | MODULE = 1 3 | 4 | -------------------------------------------------------------------------------- /test/MC/AsmParser/incbin_abcd: -------------------------------------------------------------------------------- 1 | abcd 2 | -------------------------------------------------------------------------------- /test/MC/COFF/alias.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/COFF/alias.s -------------------------------------------------------------------------------- /test/MC/COFF/bss.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/COFF/bss.s -------------------------------------------------------------------------------- /test/MC/COFF/comm.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/COFF/comm.ll -------------------------------------------------------------------------------- /test/MC/COFF/comm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/COFF/comm.s -------------------------------------------------------------------------------- /test/MC/COFF/cv-loc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/COFF/cv-loc.s -------------------------------------------------------------------------------- /test/MC/COFF/diff.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/COFF/diff.s -------------------------------------------------------------------------------- /test/MC/COFF/feat00.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/COFF/feat00.s -------------------------------------------------------------------------------- /test/MC/COFF/file.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/COFF/file.s -------------------------------------------------------------------------------- /test/MC/COFF/lset0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/COFF/lset0.s -------------------------------------------------------------------------------- /test/MC/COFF/offset.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/COFF/offset.s -------------------------------------------------------------------------------- /test/MC/COFF/rdata.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/COFF/rdata.ll -------------------------------------------------------------------------------- /test/MC/COFF/secidx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/COFF/secidx.s -------------------------------------------------------------------------------- /test/MC/COFF/seh.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/COFF/seh.s -------------------------------------------------------------------------------- /test/MC/COFF/weak.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/COFF/weak.s -------------------------------------------------------------------------------- /test/MC/ELF/abs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/abs.s -------------------------------------------------------------------------------- /test/MC/ELF/alias.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/alias.s -------------------------------------------------------------------------------- /test/MC/ELF/align.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/align.s -------------------------------------------------------------------------------- /test/MC/ELF/bracket.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/bracket.s -------------------------------------------------------------------------------- /test/MC/ELF/bss.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/bss.ll -------------------------------------------------------------------------------- /test/MC/ELF/cfi-reg.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/cfi-reg.s -------------------------------------------------------------------------------- /test/MC/ELF/cfi.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/cfi.s -------------------------------------------------------------------------------- /test/MC/ELF/comdat.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/comdat.s -------------------------------------------------------------------------------- /test/MC/ELF/common.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/common.s -------------------------------------------------------------------------------- /test/MC/ELF/common2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/common2.s -------------------------------------------------------------------------------- /test/MC/ELF/diff.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/diff.s -------------------------------------------------------------------------------- /test/MC/ELF/diff2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/diff2.s -------------------------------------------------------------------------------- /test/MC/ELF/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/empty.s -------------------------------------------------------------------------------- /test/MC/ELF/entsize.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/entsize.s -------------------------------------------------------------------------------- /test/MC/ELF/fde.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/fde.s -------------------------------------------------------------------------------- /test/MC/ELF/file.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/file.s -------------------------------------------------------------------------------- /test/MC/ELF/got.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/got.s -------------------------------------------------------------------------------- /test/MC/ELF/ident.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/ident.s -------------------------------------------------------------------------------- /test/MC/ELF/lcomm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/lcomm.s -------------------------------------------------------------------------------- /test/MC/ELF/leb128.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/leb128.s -------------------------------------------------------------------------------- /test/MC/ELF/merge.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/merge.s -------------------------------------------------------------------------------- /test/MC/ELF/n_bytes.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/n_bytes.s -------------------------------------------------------------------------------- /test/MC/ELF/noexec.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/noexec.s -------------------------------------------------------------------------------- /test/MC/ELF/offset.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/offset.s -------------------------------------------------------------------------------- /test/MC/ELF/org.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/org.s -------------------------------------------------------------------------------- /test/MC/ELF/plt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/plt.s -------------------------------------------------------------------------------- /test/MC/ELF/pr19430.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/pr19430.s -------------------------------------------------------------------------------- /test/MC/ELF/pr19582.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/pr19582.s -------------------------------------------------------------------------------- /test/MC/ELF/pr9292.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/pr9292.s -------------------------------------------------------------------------------- /test/MC/ELF/relax.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/relax.s -------------------------------------------------------------------------------- /test/MC/ELF/rename.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/rename.s -------------------------------------------------------------------------------- /test/MC/ELF/section.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/section.s -------------------------------------------------------------------------------- /test/MC/ELF/set.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/set.s -------------------------------------------------------------------------------- /test/MC/ELF/size.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/size.s -------------------------------------------------------------------------------- /test/MC/ELF/sleb.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/sleb.s -------------------------------------------------------------------------------- /test/MC/ELF/symver.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/symver.s -------------------------------------------------------------------------------- /test/MC/ELF/tls.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/tls.s -------------------------------------------------------------------------------- /test/MC/ELF/type.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/type.s -------------------------------------------------------------------------------- /test/MC/ELF/uleb.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/uleb.s -------------------------------------------------------------------------------- /test/MC/ELF/undef.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/undef.s -------------------------------------------------------------------------------- /test/MC/ELF/version.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/version.s -------------------------------------------------------------------------------- /test/MC/ELF/weak.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/weak.s -------------------------------------------------------------------------------- /test/MC/ELF/weakref.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/weakref.s -------------------------------------------------------------------------------- /test/MC/ELF/zero.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/ELF/zero.s -------------------------------------------------------------------------------- /test/MC/Hexagon/equ.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/Hexagon/equ.s -------------------------------------------------------------------------------- /test/MC/Hexagon/got.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/Hexagon/got.s -------------------------------------------------------------------------------- /test/MC/Lanai/v11.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/Lanai/v11.s -------------------------------------------------------------------------------- /test/MC/MachO/alias.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/MachO/alias.s -------------------------------------------------------------------------------- /test/MC/MachO/bss.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/MachO/bss.s -------------------------------------------------------------------------------- /test/MC/MachO/data.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/MachO/data.s -------------------------------------------------------------------------------- /test/MC/MachO/file.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/MachO/file.s -------------------------------------------------------------------------------- /test/MC/MachO/jcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/MachO/jcc.s -------------------------------------------------------------------------------- /test/MC/MachO/loc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/MachO/loc.s -------------------------------------------------------------------------------- /test/MC/MachO/reloc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/MachO/reloc.s -------------------------------------------------------------------------------- /test/MC/MachO/tbss.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/MachO/tbss.s -------------------------------------------------------------------------------- /test/MC/MachO/tdata.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/MachO/tdata.s -------------------------------------------------------------------------------- /test/MC/MachO/tls.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/MachO/tls.s -------------------------------------------------------------------------------- /test/MC/MachO/tlv.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/MachO/tlv.s -------------------------------------------------------------------------------- /test/MC/Markup/lit.local.cfg: -------------------------------------------------------------------------------- 1 | config.suffixes = ['.mc'] 2 | 3 | -------------------------------------------------------------------------------- /test/MC/Mips/addend.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/Mips/addend.s -------------------------------------------------------------------------------- /test/MC/Mips/cfi.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/Mips/cfi.s -------------------------------------------------------------------------------- /test/MC/Mips/cpload.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/Mips/cpload.s -------------------------------------------------------------------------------- /test/MC/Mips/expr1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/Mips/expr1.s -------------------------------------------------------------------------------- /test/MC/Mips/xgot.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/Mips/xgot.s -------------------------------------------------------------------------------- /test/MC/PowerPC/htm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/PowerPC/htm.s -------------------------------------------------------------------------------- /test/MC/PowerPC/qpx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/PowerPC/qpx.s -------------------------------------------------------------------------------- /test/MC/PowerPC/vsx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/PowerPC/vsx.s -------------------------------------------------------------------------------- /test/MC/X86/3DNow.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/X86/3DNow.s -------------------------------------------------------------------------------- /test/MC/X86/AES-32.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/X86/AES-32.s -------------------------------------------------------------------------------- /test/MC/X86/AES-64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/X86/AES-64.s -------------------------------------------------------------------------------- /test/MC/X86/AVX-32.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/X86/AVX-32.s -------------------------------------------------------------------------------- /test/MC/X86/AVX-64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/X86/AVX-64.s -------------------------------------------------------------------------------- /test/MC/X86/AVX2-32.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/X86/AVX2-32.s -------------------------------------------------------------------------------- /test/MC/X86/AVX2-64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/X86/AVX2-64.s -------------------------------------------------------------------------------- /test/MC/X86/BMI1-32.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/X86/BMI1-32.s -------------------------------------------------------------------------------- /test/MC/X86/BMI1-64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/X86/BMI1-64.s -------------------------------------------------------------------------------- /test/MC/X86/BMI2-32.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/X86/BMI2-32.s -------------------------------------------------------------------------------- /test/MC/X86/BMI2-64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/X86/BMI2-64.s -------------------------------------------------------------------------------- /test/MC/X86/FMA-32.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/X86/FMA-32.s -------------------------------------------------------------------------------- /test/MC/X86/FMA-64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/X86/FMA-64.s -------------------------------------------------------------------------------- /test/MC/X86/Inputs/crlf.s: -------------------------------------------------------------------------------- 1 | t1 # This file must be DOS formatted 2 | t2 3 | -------------------------------------------------------------------------------- /test/MC/X86/X87-32.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/X86/X87-32.s -------------------------------------------------------------------------------- /test/MC/X86/X87-64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/X86/X87-64.s -------------------------------------------------------------------------------- /test/MC/X86/abs8.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/X86/abs8.s -------------------------------------------------------------------------------- /test/MC/X86/crlf.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/X86/crlf.test -------------------------------------------------------------------------------- /test/MC/X86/gather.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/X86/gather.s -------------------------------------------------------------------------------- /test/MC/X86/lwp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/X86/lwp.s -------------------------------------------------------------------------------- /test/MC/X86/padlock.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/X86/padlock.s -------------------------------------------------------------------------------- /test/MC/X86/pr22004.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/X86/pr22004.s -------------------------------------------------------------------------------- /test/MC/X86/pr22028.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/X86/pr22028.s -------------------------------------------------------------------------------- /test/MC/X86/pr27884.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/X86/pr27884.s -------------------------------------------------------------------------------- /test/MC/X86/pr28547.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/X86/pr28547.s -------------------------------------------------------------------------------- /test/MC/X86/ret.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/X86/ret.s -------------------------------------------------------------------------------- /test/MC/X86/x86-16.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/X86/x86-16.s -------------------------------------------------------------------------------- /test/MC/X86/x86-32.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/X86/x86-32.s -------------------------------------------------------------------------------- /test/MC/X86/x86-64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/X86/x86-64.s -------------------------------------------------------------------------------- /test/MC/X86/x86_nop.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/MC/X86/x86_nop.s -------------------------------------------------------------------------------- /test/Object/Inputs/WASM/missing-version.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /test/Object/Inputs/archive-test.a-empty: -------------------------------------------------------------------------------- 1 | ! 2 | -------------------------------------------------------------------------------- /test/Object/Inputs/evenlen: -------------------------------------------------------------------------------- 1 | evenlen 2 | -------------------------------------------------------------------------------- /test/Object/Inputs/mri-crlf.mri: -------------------------------------------------------------------------------- 1 | ; this file intentionally has crlf line endings 2 | end 3 | -------------------------------------------------------------------------------- /test/Object/Inputs/oddlen: -------------------------------------------------------------------------------- 1 | oddlen 2 | -------------------------------------------------------------------------------- /test/Object/kext.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Object/kext.test -------------------------------------------------------------------------------- /test/Object/mri-crlf.test: -------------------------------------------------------------------------------- 1 | ; RUN: llvm-ar -M < %S/Inputs/mri-crlf.mri 2 | -------------------------------------------------------------------------------- /test/Object/mri1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Object/mri1.test -------------------------------------------------------------------------------- /test/Object/mri2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Object/mri2.test -------------------------------------------------------------------------------- /test/Object/mri3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Object/mri3.test -------------------------------------------------------------------------------- /test/Object/mri4.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Object/mri4.test -------------------------------------------------------------------------------- /test/Object/mri5.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Object/mri5.test -------------------------------------------------------------------------------- /test/ObjectYAML/lit.local.cfg: -------------------------------------------------------------------------------- 1 | config.suffixes = ['.yaml'] 2 | -------------------------------------------------------------------------------- /test/Other/Inputs/TestProg/TestProg: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | false 4 | -------------------------------------------------------------------------------- /test/Other/Inputs/glob-input: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Other/Inputs/new-pm-pgo.prof: -------------------------------------------------------------------------------- 1 | foo:0:0 2 | -------------------------------------------------------------------------------- /test/Other/Inputs/new-pm-pgo.proftext: -------------------------------------------------------------------------------- 1 | :ir 2 | -------------------------------------------------------------------------------- /test/Other/Inputs/utf8-bom-response: -------------------------------------------------------------------------------- 1 | -help 2 | -------------------------------------------------------------------------------- /test/Other/Inputs/utf8-response: -------------------------------------------------------------------------------- 1 | -help 2 | -------------------------------------------------------------------------------- /test/Other/extract.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Other/extract.ll -------------------------------------------------------------------------------- /test/Other/lint.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Other/lint.ll -------------------------------------------------------------------------------- /test/Other/lit-quoting.txt: -------------------------------------------------------------------------------- 1 | RUN: echo "\"" | FileCheck %s 2 | CHECK: {{^"$}} 3 | -------------------------------------------------------------------------------- /test/Other/pr32085.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Other/pr32085.ll -------------------------------------------------------------------------------- /test/Other/spir_cc.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Other/spir_cc.ll -------------------------------------------------------------------------------- /test/Other/umask.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Other/umask.ll -------------------------------------------------------------------------------- /test/TableGen/Dag.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/TableGen/Dag.td -------------------------------------------------------------------------------- /test/TableGen/Tree.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/TableGen/Tree.td -------------------------------------------------------------------------------- /test/TableGen/cast.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/TableGen/cast.td -------------------------------------------------------------------------------- /test/TableGen/eq.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/TableGen/eq.td -------------------------------------------------------------------------------- /test/TableGen/if.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/TableGen/if.td -------------------------------------------------------------------------------- /test/TableGen/lisp.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/TableGen/lisp.td -------------------------------------------------------------------------------- /test/TableGen/lit.local.cfg: -------------------------------------------------------------------------------- 1 | config.suffixes = ['.td'] 2 | -------------------------------------------------------------------------------- /test/TableGen/math.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/TableGen/math.td -------------------------------------------------------------------------------- /test/TestRunner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/TestRunner.sh -------------------------------------------------------------------------------- /test/ThinLTO/X86/Inputs/merge-triple.ll: -------------------------------------------------------------------------------- 1 | target triple = "x86_64-apple-macosx10.11.0" 2 | -------------------------------------------------------------------------------- /test/Transforms/Internalize/apifile: -------------------------------------------------------------------------------- 1 | foo 2 | j 3 | -------------------------------------------------------------------------------- /test/Transforms/SampleProfile/Inputs/bad_discriminator_value.prof: -------------------------------------------------------------------------------- 1 | empty:100:0 2 | 1.-3: 10 3 | -------------------------------------------------------------------------------- /test/Transforms/SampleProfile/Inputs/bad_fn_header.prof: -------------------------------------------------------------------------------- 1 | 3empty:100:BAD 2 | 0: 0 3 | 1: 100 4 | -------------------------------------------------------------------------------- /test/Transforms/SampleProfile/Inputs/bad_line_values.prof: -------------------------------------------------------------------------------- 1 | empty:100:0 2 | -1: 10 3 | -------------------------------------------------------------------------------- /test/Transforms/SampleProfile/Inputs/bad_sample_line.prof: -------------------------------------------------------------------------------- 1 | empty:100:0 2 | 0: 0 3 | 1: BAD 4 | -------------------------------------------------------------------------------- /test/Transforms/SampleProfile/Inputs/bad_samples.prof: -------------------------------------------------------------------------------- 1 | empty:100:0 2 | 1.3: -10 3 | -------------------------------------------------------------------------------- /test/Transforms/SampleProfile/Inputs/entry_counts.prof: -------------------------------------------------------------------------------- 1 | empty:100:13293 2 | 0: 0 3 | 1: 100 4 | -------------------------------------------------------------------------------- /test/Unit/lit.cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Unit/lit.cfg.py -------------------------------------------------------------------------------- /test/Verifier/dbg.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Verifier/dbg.ll -------------------------------------------------------------------------------- /test/Verifier/sret.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Verifier/sret.ll -------------------------------------------------------------------------------- /test/Verifier/tbaa.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/Verifier/tbaa.ll -------------------------------------------------------------------------------- /test/YAMLParser/construct-str.test: -------------------------------------------------------------------------------- 1 | # RUN: yaml-bench -canonical %s 2 | 3 | string: abcd 4 | -------------------------------------------------------------------------------- /test/YAMLParser/empty-document-bug.test: -------------------------------------------------------------------------------- 1 | # RUN: yaml-bench -canonical %s 2 | 3 | -------------------------------------------------------------------------------- /test/YAMLParser/merge.test: -------------------------------------------------------------------------------- 1 | # RUN: yaml-bench -canonical %s 2 | 3 | - << 4 | -------------------------------------------------------------------------------- /test/YAMLParser/negative-float-bug.test: -------------------------------------------------------------------------------- 1 | # RUN: yaml-bench -canonical %s 2 | 3 | -1.0 4 | -------------------------------------------------------------------------------- /test/YAMLParser/null.test: -------------------------------------------------------------------------------- 1 | # RUN: yaml-bench -canonical %s 2 | 3 | - 4 | - ~ 5 | - null 6 | -------------------------------------------------------------------------------- /test/YAMLParser/single-dot-is-not-float-bug.test: -------------------------------------------------------------------------------- 1 | # RUN: yaml-bench -canonical %s 2 | 3 | . 4 | -------------------------------------------------------------------------------- /test/YAMLParser/spec-05-01-utf8.test: -------------------------------------------------------------------------------- 1 | # RUN: yaml-bench -canonical %s 2 | 3 | # Comment only. 4 | -------------------------------------------------------------------------------- /test/YAMLParser/spec-05-05.test: -------------------------------------------------------------------------------- 1 | # RUN: yaml-bench -canonical %s 2 | 3 | # Comment only. 4 | -------------------------------------------------------------------------------- /test/YAMLParser/spec-05-09.test: -------------------------------------------------------------------------------- 1 | # RUN: yaml-bench -canonical %s 2 | 3 | %YAML 1.1 4 | --- text 5 | -------------------------------------------------------------------------------- /test/YAMLParser/spec-06-02.test: -------------------------------------------------------------------------------- 1 | # RUN: yaml-bench -canonical %s 2 | 3 | # Comment 4 | 5 | 6 | -------------------------------------------------------------------------------- /test/YAMLParser/spec-09-06.test: -------------------------------------------------------------------------------- 1 | # RUN: yaml-bench -canonical %s 2 | 3 | 'here''s to "quotes"' 4 | -------------------------------------------------------------------------------- /test/YAMLParser/str.test: -------------------------------------------------------------------------------- 1 | # RUN: yaml-bench -canonical %s 2 | 3 | - abcd 4 | -------------------------------------------------------------------------------- /test/YAMLParser/utf8-implicit.test: -------------------------------------------------------------------------------- 1 | # RUN: yaml-bench -canonical %s 2 | 3 | --- implicit UTF-8 4 | -------------------------------------------------------------------------------- /test/YAMLParser/utf8.test: -------------------------------------------------------------------------------- 1 | # RUN: yaml-bench -canonical %s 2 | 3 | --- UTF-8 4 | -------------------------------------------------------------------------------- /test/YAMLParser/value.test: -------------------------------------------------------------------------------- 1 | # RUN: yaml-bench -canonical %s 2 | 3 | - = 4 | -------------------------------------------------------------------------------- /test/lit.cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/test/lit.cfg.py -------------------------------------------------------------------------------- /test/tools/dsymutil/Inputs/swift-ast.swiftmodule: -------------------------------------------------------------------------------- 1 | SWIFTMODULE DATA 2 | -------------------------------------------------------------------------------- /test/tools/gold/X86/Inputs/afdo.prof: -------------------------------------------------------------------------------- 1 | f:100:3 2 | 1: 100 3 | -------------------------------------------------------------------------------- /test/tools/llvm-cov/Inputs/binary-formats.proftext: -------------------------------------------------------------------------------- 1 | main 2 | 0x0 3 | 1 4 | 100 5 | -------------------------------------------------------------------------------- /test/tools/llvm-cov/Inputs/sources_specified/extra/dec.h: -------------------------------------------------------------------------------- 1 | int dec(int x) { 2 | return x + 1; 3 | } 4 | -------------------------------------------------------------------------------- /test/tools/llvm-cov/Inputs/sources_specified/extra/inc.h: -------------------------------------------------------------------------------- 1 | int inc(int x) { 2 | return x + 1; 3 | } 4 | -------------------------------------------------------------------------------- /test/tools/llvm-cov/Inputs/test.h: -------------------------------------------------------------------------------- 1 | struct A { 2 | virtual void B(); 3 | }; 4 | -------------------------------------------------------------------------------- /test/tools/llvm-cov/Inputs/universal-binary.proftext: -------------------------------------------------------------------------------- 1 | main 2 | 0x0 3 | 1 4 | 100 5 | -------------------------------------------------------------------------------- /test/tools/llvm-dlltool/lit.local.cfg: -------------------------------------------------------------------------------- 1 | config.suffixes = ['.def'] 2 | -------------------------------------------------------------------------------- /test/tools/llvm-lib/Inputs/a.s: -------------------------------------------------------------------------------- 1 | .globl a 2 | a: 3 | -------------------------------------------------------------------------------- /test/tools/llvm-lib/Inputs/b.s: -------------------------------------------------------------------------------- 1 | .globl b 2 | b: 3 | -------------------------------------------------------------------------------- /test/tools/llvm-lto/Inputs/empty.bc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/tools/llvm-mc/line_end_with_space.test: -------------------------------------------------------------------------------- 1 | RUN: llvm-mc -disassemble %s 2 | -------------------------------------------------------------------------------- /test/tools/llvm-mt/Inputs/bad.manifest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/tools/llvm-mt/Inputs/empty.manifest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/tools/llvm-profdata/Inputs/bad-hash.proftext: -------------------------------------------------------------------------------- 1 | function_count_not 2 | badhash 3 | 1 4 | 1 5 | -------------------------------------------------------------------------------- /test/tools/llvm-profdata/Inputs/counter-mismatch-2.proftext: -------------------------------------------------------------------------------- 1 | foo 2 | 1024 3 | 2 4 | 0 5 | 0 6 | -------------------------------------------------------------------------------- /test/tools/llvm-profdata/Inputs/empty.proftext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/tools/llvm-profdata/Inputs/extra-word.proftext: -------------------------------------------------------------------------------- 1 | extra 1 word 2 | 1 3 | -------------------------------------------------------------------------------- /test/tools/llvm-profdata/Inputs/no-counts.proftext: -------------------------------------------------------------------------------- 1 | no_counts 2 | 0 3 | 0 4 | -------------------------------------------------------------------------------- /test/tools/llvm-profdata/lit.local.cfg: -------------------------------------------------------------------------------- 1 | config.suffixes.add('.proftext') 2 | -------------------------------------------------------------------------------- /test/tools/llvm-rc/Inputs/parser-accelerators-no-comma-2.rc: -------------------------------------------------------------------------------- 1 | 1 ACCELERATORS { 2 | "^C" 10 3 | } 4 | -------------------------------------------------------------------------------- /test/tools/llvm-rc/Inputs/parser-dialog-cant-give-helpid.rc: -------------------------------------------------------------------------------- 1 | 3 DIALOG 1, 2, 3, 4, 500 {} 2 | -------------------------------------------------------------------------------- /test/tools/llvm-rc/Inputs/parser-eof.rc: -------------------------------------------------------------------------------- 1 | LANGUAGE 2 | -------------------------------------------------------------------------------- /test/tools/llvm-rc/Inputs/parser-expr-bad-binary-1.rc: -------------------------------------------------------------------------------- 1 | LANGUAGE 0, & 2 | -------------------------------------------------------------------------------- /test/tools/llvm-rc/Inputs/parser-expr-bad-binary-2.rc: -------------------------------------------------------------------------------- 1 | LANGUAGE 3||0, 0 2 | -------------------------------------------------------------------------------- /test/tools/llvm-rc/Inputs/parser-expr-bad-binary-3.rc: -------------------------------------------------------------------------------- 1 | LANGUAGE 3+-+3, 0 2 | -------------------------------------------------------------------------------- /test/tools/llvm-rc/Inputs/parser-expr-bad-unary.rc: -------------------------------------------------------------------------------- 1 | LANGUAGE 1~1, 0 2 | -------------------------------------------------------------------------------- /test/tools/llvm-rc/Inputs/parser-expr-unbalanced-1.rc: -------------------------------------------------------------------------------- 1 | LANGUAGE (1+2, 0 2 | -------------------------------------------------------------------------------- /test/tools/llvm-rc/Inputs/parser-expr-unbalanced-2.rc: -------------------------------------------------------------------------------- 1 | LANGUAGE 1+2)+3+4(, 0 2 | -------------------------------------------------------------------------------- /test/tools/llvm-rc/Inputs/parser-expr-unbalanced-3.rc: -------------------------------------------------------------------------------- 1 | LANGUAGE (1+2+3)), 0 2 | -------------------------------------------------------------------------------- /test/tools/llvm-rc/Inputs/parser-html-extra-comma.rc: -------------------------------------------------------------------------------- 1 | 1 HTML, "index.html" 2 | -------------------------------------------------------------------------------- /test/tools/llvm-rc/Inputs/parser-language-no-comma.rc: -------------------------------------------------------------------------------- 1 | LANGUAGE 5 7 2 | -------------------------------------------------------------------------------- /test/tools/llvm-rc/Inputs/parser-language-too-many-commas.rc: -------------------------------------------------------------------------------- 1 | LANGUAGE 5,, 7 2 | -------------------------------------------------------------------------------- /test/tools/llvm-rc/Inputs/parser-nonsense-token.rc: -------------------------------------------------------------------------------- 1 | & ICON "WeirdResourceName.ico" 2 | -------------------------------------------------------------------------------- /test/tools/llvm-rc/Inputs/parser-nonsense-type-eof.rc: -------------------------------------------------------------------------------- 1 | HELLO 2 | -------------------------------------------------------------------------------- /test/tools/llvm-rc/Inputs/parser-nonsense-type.rc: -------------------------------------------------------------------------------- 1 | HELLO WORLD 2 | -------------------------------------------------------------------------------- /test/tools/llvm-rc/Inputs/tag-accelerators-no-type.rc: -------------------------------------------------------------------------------- 1 | 5 ACCELERATORS { 2 | 10, 42 3 | } 4 | 5 | -------------------------------------------------------------------------------- /test/tools/llvm-rc/Inputs/tag-dialog-bad-style.rc: -------------------------------------------------------------------------------- 1 | 1 DIALOG 1, 2, 3, 4 2 | STYLE 0xFFFF0001 {} 3 | -------------------------------------------------------------------------------- /test/tools/llvm-rc/Inputs/tag-html-wrong.rc: -------------------------------------------------------------------------------- 1 | 1 HTML "some-really-nonexistent-file.html" 2 | -------------------------------------------------------------------------------- /test/tools/llvm-rc/Inputs/tag-icon-cursor-bad-offset.rc: -------------------------------------------------------------------------------- 1 | 50 CURSOR "cursor-bad-offset.cur" 2 | 3 | -------------------------------------------------------------------------------- /test/tools/llvm-rc/Inputs/tag-icon-cursor-bad-type.rc: -------------------------------------------------------------------------------- 1 | 100 ICON "cursor.cur" 2 | -------------------------------------------------------------------------------- /test/tools/llvm-rc/Inputs/tag-icon-cursor-eof.rc: -------------------------------------------------------------------------------- 1 | 72 CURSOR "cursor-eof.cur" 2 | -------------------------------------------------------------------------------- /test/tools/llvm-rc/Inputs/tag-icon-cursor-nonexistent.rc: -------------------------------------------------------------------------------- 1 | 500 CURSOR "this-file-does-not-exist.cur" 2 | -------------------------------------------------------------------------------- /test/tools/llvm-rc/Inputs/tag-icon-cursor-nonsense.rc: -------------------------------------------------------------------------------- 1 | 1 ICON "tag-icon-cursor-nonsense.rc" 2 | -------------------------------------------------------------------------------- /test/tools/llvm-readobj/Inputs/relocs.obj.elf-aarch64-ilp32: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/tools/llvm-strings/Inputs/abcd: -------------------------------------------------------------------------------- 1 | abcd -------------------------------------------------------------------------------- /test/tools/llvm-xray/X86/Inputs/empty-file.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/tools/sancov/Inputs/fun_blacklist.txt: -------------------------------------------------------------------------------- 1 | fun:bar* 2 | -------------------------------------------------------------------------------- /test/tools/yaml2obj/lit.local.cfg: -------------------------------------------------------------------------------- 1 | config.suffixes = ['.yaml'] 2 | -------------------------------------------------------------------------------- /tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/tools/CMakeLists.txt -------------------------------------------------------------------------------- /tools/LLVMBuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/tools/LLVMBuild.txt -------------------------------------------------------------------------------- /tools/bugpoint-passes/bugpoint.exports: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/gold/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/tools/gold/README.txt -------------------------------------------------------------------------------- /tools/gold/gold.exports: -------------------------------------------------------------------------------- 1 | onload 2 | -------------------------------------------------------------------------------- /tools/llc/llc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/tools/llc/llc.cpp -------------------------------------------------------------------------------- /tools/lli/lli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/tools/lli/lli.cpp -------------------------------------------------------------------------------- /tools/llvm-mt/Opts.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/tools/llvm-mt/Opts.td -------------------------------------------------------------------------------- /tools/llvm-rc/Opts.td: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/tools/llvm-rc/Opts.td -------------------------------------------------------------------------------- /tools/lto/lto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/tools/lto/lto.cpp -------------------------------------------------------------------------------- /tools/lto/lto.exports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/tools/lto/lto.exports -------------------------------------------------------------------------------- /tools/opt/opt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/tools/opt/opt.cpp -------------------------------------------------------------------------------- /unittests/ExecutionEngine/MCJIT/MCJITTests.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | -------------------------------------------------------------------------------- /utils/DSAclean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/DSAclean.py -------------------------------------------------------------------------------- /utils/DSAextract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/DSAextract.py -------------------------------------------------------------------------------- /utils/GenLibDeps.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/GenLibDeps.pl -------------------------------------------------------------------------------- /utils/LLVMBuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/LLVMBuild.txt -------------------------------------------------------------------------------- /utils/Misc/zkill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/Misc/zkill -------------------------------------------------------------------------------- /utils/TableGen/tdtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/TableGen/tdtags -------------------------------------------------------------------------------- /utils/abtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/abtest.py -------------------------------------------------------------------------------- /utils/bisect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/bisect -------------------------------------------------------------------------------- /utils/check-each-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/check-each-file -------------------------------------------------------------------------------- /utils/codegen-diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/codegen-diff -------------------------------------------------------------------------------- /utils/count/count.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/count/count.c -------------------------------------------------------------------------------- /utils/countloc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/countloc.sh -------------------------------------------------------------------------------- /utils/docker/README: -------------------------------------------------------------------------------- 1 | See llvm/docs/Docker.rst for details 2 | -------------------------------------------------------------------------------- /utils/emacs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/emacs/README -------------------------------------------------------------------------------- /utils/emacs/emacs.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/emacs/emacs.el -------------------------------------------------------------------------------- /utils/findmisopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/findmisopt -------------------------------------------------------------------------------- /utils/findoptdiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/findoptdiff -------------------------------------------------------------------------------- /utils/findsym.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/findsym.pl -------------------------------------------------------------------------------- /utils/fpcmp/fpcmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/fpcmp/fpcmp.cpp -------------------------------------------------------------------------------- /utils/getsrcs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/getsrcs.sh -------------------------------------------------------------------------------- /utils/git/find-rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/git/find-rev -------------------------------------------------------------------------------- /utils/jedit/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/jedit/README -------------------------------------------------------------------------------- /utils/kate/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/kate/README -------------------------------------------------------------------------------- /utils/kate/llvm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/kate/llvm.xml -------------------------------------------------------------------------------- /utils/lit/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/lit/MANIFEST.in -------------------------------------------------------------------------------- /utils/lit/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/lit/README.txt -------------------------------------------------------------------------------- /utils/lit/lit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/lit/lit.py -------------------------------------------------------------------------------- /utils/lit/lit/Test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/lit/lit/Test.py -------------------------------------------------------------------------------- /utils/lit/lit/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/lit/lit/main.py -------------------------------------------------------------------------------- /utils/lit/lit/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/lit/lit/run.py -------------------------------------------------------------------------------- /utils/lit/lit/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/lit/lit/util.py -------------------------------------------------------------------------------- /utils/lit/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/lit/setup.py -------------------------------------------------------------------------------- /utils/lit/tests/Inputs/config-map-discovery/invalid-test.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/lit/tests/Inputs/config-map-discovery/main-config/lit.cfg: -------------------------------------------------------------------------------- 1 | print("ERROR: lit.cfg invoked!") -------------------------------------------------------------------------------- /utils/lit/tests/Inputs/config-map-discovery/tests/test1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/lit/tests/Inputs/config-map-discovery/tests/test2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/lit/tests/Inputs/discovery/subdir/test-three.py: -------------------------------------------------------------------------------- 1 | # RUN: true 2 | -------------------------------------------------------------------------------- /utils/lit/tests/Inputs/discovery/subsuite/test-one.txt: -------------------------------------------------------------------------------- 1 | # RUN: true 2 | -------------------------------------------------------------------------------- /utils/lit/tests/Inputs/discovery/subsuite/test-two.txt: -------------------------------------------------------------------------------- 1 | # RUN: true 2 | -------------------------------------------------------------------------------- /utils/lit/tests/Inputs/discovery/test-one.txt: -------------------------------------------------------------------------------- 1 | # RUN: true 2 | -------------------------------------------------------------------------------- /utils/lit/tests/Inputs/discovery/test-two.txt: -------------------------------------------------------------------------------- 1 | # RUN: true 2 | -------------------------------------------------------------------------------- /utils/lit/tests/Inputs/exec-discovery-in-tree/test-one.txt: -------------------------------------------------------------------------------- 1 | # RUN: true 2 | -------------------------------------------------------------------------------- /utils/lit/tests/Inputs/progress-bar/test-1.txt: -------------------------------------------------------------------------------- 1 | # RUN: false 2 | -------------------------------------------------------------------------------- /utils/lit/tests/Inputs/progress-bar/test-2.txt: -------------------------------------------------------------------------------- 1 | # RUN: false 2 | -------------------------------------------------------------------------------- /utils/lit/tests/Inputs/progress-bar/test-3.txt: -------------------------------------------------------------------------------- 1 | # RUN: false 2 | -------------------------------------------------------------------------------- /utils/lit/tests/Inputs/progress-bar/test-4.txt: -------------------------------------------------------------------------------- 1 | # RUN: false 2 | -------------------------------------------------------------------------------- /utils/lit/tests/Inputs/shtest-format/external_shell/pass.txt: -------------------------------------------------------------------------------- 1 | # RUN: true 2 | -------------------------------------------------------------------------------- /utils/lit/tests/Inputs/shtest-format/no-test-line.txt: -------------------------------------------------------------------------------- 1 | # Empty! 2 | -------------------------------------------------------------------------------- /utils/lit/tests/Inputs/shtest-format/pass.txt: -------------------------------------------------------------------------------- 1 | # RUN: true 2 | -------------------------------------------------------------------------------- /utils/lit/tests/Inputs/shtest-format/unsupported_dir/lit.local.cfg: -------------------------------------------------------------------------------- 1 | config.unsupported = True 2 | -------------------------------------------------------------------------------- /utils/lit/tests/Inputs/shtest-format/unsupported_dir/some-test.txt: -------------------------------------------------------------------------------- 1 | # RUN: true 2 | -------------------------------------------------------------------------------- /utils/lit/tests/Inputs/shtest-format/xfail-feature.txt: -------------------------------------------------------------------------------- 1 | # RUN: false 2 | # XFAIL: a-present-feature 3 | -------------------------------------------------------------------------------- /utils/lit/tests/Inputs/shtest-format/xfail-target.txt: -------------------------------------------------------------------------------- 1 | RUN: false 2 | XFAIL: x86_64 3 | -------------------------------------------------------------------------------- /utils/lit/tests/Inputs/shtest-format/xfail.txt: -------------------------------------------------------------------------------- 1 | RUN: false 2 | XFAIL: * 3 | -------------------------------------------------------------------------------- /utils/lit/tests/Inputs/shtest-format/xpass.txt: -------------------------------------------------------------------------------- 1 | RUN: true 2 | XFAIL: x86_64 3 | -------------------------------------------------------------------------------- /utils/lit/tests/Inputs/shtest-shell/sequencing-1.txt: -------------------------------------------------------------------------------- 1 | # RUN: false && true 2 | # XFAIL: * 3 | -------------------------------------------------------------------------------- /utils/lit/tests/Inputs/unittest-adaptor/test-one.txt: -------------------------------------------------------------------------------- 1 | # RUN: true 2 | -------------------------------------------------------------------------------- /utils/lit/tests/Inputs/unittest-adaptor/test-two.txt: -------------------------------------------------------------------------------- 1 | # RUN: false 2 | -------------------------------------------------------------------------------- /utils/llvm-native-gxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/llvm-native-gxx -------------------------------------------------------------------------------- /utils/llvm.grm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/llvm.grm -------------------------------------------------------------------------------- /utils/llvmdo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/llvmdo -------------------------------------------------------------------------------- /utils/llvmgrep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/llvmgrep -------------------------------------------------------------------------------- /utils/makellvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/makellvm -------------------------------------------------------------------------------- /utils/not/not.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/not/not.cpp -------------------------------------------------------------------------------- /utils/release/tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/release/tag.sh -------------------------------------------------------------------------------- /utils/schedcover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/schedcover.py -------------------------------------------------------------------------------- /utils/shuffle_fuzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/shuffle_fuzz.py -------------------------------------------------------------------------------- /utils/textmate/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/textmate/README -------------------------------------------------------------------------------- /utils/vim/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/vim/README -------------------------------------------------------------------------------- /utils/vim/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/vim/vimrc -------------------------------------------------------------------------------- /utils/vscode/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/vscode/README -------------------------------------------------------------------------------- /utils/vscode/tablegen/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | - Initial release 4 | 5 | -------------------------------------------------------------------------------- /utils/wciia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beholdnec/old-llvm-m6502/HEAD/utils/wciia.py --------------------------------------------------------------------------------