├── .circleci └── config.yml ├── .cirrus.yml ├── .clang-format ├── .clang-tidy ├── .editorconfig ├── .github ├── FUNDING.yml ├── actions │ ├── 1-setup │ │ └── action.yml │ ├── 2-build-bootstrap │ │ └── action.yml │ ├── 2a-build-pgo │ │ └── action.yml │ ├── 3-build-cross │ │ ├── action.yml │ │ └── android-llvm-config.in │ ├── 3-build-native │ │ └── action.yml │ ├── 4a-test-ldc2 │ │ └── action.yml │ ├── 4b-test-lit │ │ └── action.yml │ ├── 4c-test-dmd │ │ └── action.yml │ ├── 4d-test-libs │ │ └── action.yml │ ├── 5-install │ │ └── action.yml │ ├── 5a-android-x86 │ │ └── action.yml │ ├── 5a-ios │ │ └── action.yml │ ├── 5b-make-portable │ │ └── action.yml │ ├── 6-integration-test │ │ └── action.yml │ ├── 7-package │ │ └── action.yml │ ├── helper-build-gdb │ │ └── action.yml │ ├── helper-build-ldc │ │ └── action.yml │ ├── helper-mimalloc │ │ └── action.yml │ ├── merge-macos │ │ └── action.yml │ ├── merge-windows │ │ └── action.yml │ └── upload-to-github │ │ └── action.yml └── workflows │ ├── main.yml │ └── supported_llvm_versions.yml ├── .gitmodules ├── CHANGELOG.md ├── CMakeCPack.cmake ├── CMakeLists.txt ├── Doxyfile ├── LICENSE ├── README.md ├── bitrise.yml ├── cmake ├── Modules │ ├── BuildDExecutable.cmake │ ├── CheckDSourceCompiles.cmake │ ├── CheckLinkFlag.cmake │ ├── ExtractDMDSystemLinker.cmake │ ├── FindDCompiler.cmake │ ├── FindLLVM.cmake │ ├── FindMLIR.cmake │ ├── GetGitRevisionDescription.cmake │ ├── GetGitRevisionDescription.cmake.in │ ├── GetLinuxDistribution.cmake │ ├── HandleLTOPGOBuildOptions.cmake │ ├── LdcCommon.cmake │ └── LdcConfig.cmake └── VisualD.props ├── dmd ├── README.md ├── access.d ├── aggregate.d ├── aggregate.h ├── aliasthis.d ├── aliasthis.h ├── argtypes.h ├── argtypes_aarch64.d ├── argtypes_sysv_x64.d ├── argtypes_x86.d ├── arrayop.d ├── arraytypes.d ├── arraytypes.h ├── ast_node.d ├── ast_node.h ├── astcodegen.d ├── astenums.d ├── asttypename.d ├── attrib.d ├── attrib.h ├── attribsem.d ├── blockexit.d ├── boostlicense.txt ├── builtin.d ├── canthrow.d ├── chkformat.d ├── cli.d ├── clone.d ├── common │ ├── README.md │ ├── bitfields.d │ ├── blake3.d │ ├── charactertables.d │ ├── charactertables.h │ ├── file.d │ ├── identifiertables.d │ ├── int128.d │ ├── outbuffer.d │ ├── outbuffer.h │ └── smallbuffer.d ├── compiler.d ├── compiler.h ├── cond.d ├── cond.h ├── console.d ├── constfold.d ├── cparse.d ├── ctfe.h ├── ctfeexpr.d ├── ctorflow.d ├── cxxfrontend.d ├── dcast.d ├── dclass.d ├── declaration.d ├── declaration.h ├── delegatize.d ├── denum.d ├── deps.d ├── dimport.d ├── dinterpret.d ├── dmacro.d ├── dmodule.d ├── doc.d ├── doc.h ├── dscope.d ├── dstruct.d ├── dsymbol.d ├── dsymbol.h ├── dsymbolsem.d ├── dtemplate.d ├── dtoh.d ├── dversion.d ├── entity.d ├── enum.h ├── enumsem.d ├── errors.d ├── errors.h ├── errorsink.d ├── escape.d ├── expression.d ├── expression.h ├── expressionsem.d ├── file_manager.d ├── frontend.h ├── func.d ├── funcsem.d ├── globals.d ├── globals.h ├── gluelayer.d ├── hdrgen.d ├── hdrgen.h ├── hooks.d ├── iasm │ └── gcc.d ├── id.d ├── id.h ├── identifier.d ├── identifier.h ├── impcnvtab.d ├── imphint.d ├── import.h ├── importc.d ├── init.d ├── init.h ├── initsem.d ├── inline.d ├── inlinecost.d ├── intrange.d ├── json.d ├── json.h ├── lambdacomp.d ├── ldcbindings.d ├── ldcbindings.h ├── lexer.d ├── location.d ├── main.d ├── mangle.h ├── mangle │ ├── basic.d │ ├── cpp.d │ ├── cppwin.d │ └── package.d ├── mars.d ├── mars.h ├── module.h ├── mtype.d ├── mtype.h ├── mustuse.d ├── nogc.d ├── nspace.d ├── nspace.h ├── ob.d ├── objc.d ├── objc.h ├── opover.d ├── optimize.d ├── osmodel.mak ├── parse.d ├── pragmasem.d ├── printast.d ├── res │ └── default_ddoc_theme.ddoc ├── root │ ├── README.md │ ├── aav.d │ ├── array.d │ ├── array.h │ ├── bitarray.d │ ├── bitarray.h │ ├── complex.d │ ├── complex_t.h │ ├── ctfloat.d │ ├── ctfloat.h │ ├── dcompat.h │ ├── dsystem.h │ ├── file.d │ ├── filename.d │ ├── filename.h │ ├── hash.d │ ├── longdouble.d │ ├── longdouble.h │ ├── man.d │ ├── optional.d │ ├── optional.h │ ├── port.d │ ├── port.h │ ├── region.d │ ├── rmem.d │ ├── rmem.h │ ├── speller.d │ ├── string.d │ ├── stringtable.d │ └── utf.d ├── rootobject.d ├── rootobject.h ├── safe.d ├── sarif.d ├── scope.h ├── semantic2.d ├── semantic3.d ├── sideeffect.d ├── statement.d ├── statement.h ├── statementsem.d ├── staticassert.d ├── staticassert.h ├── staticcond.d ├── stmtstate.d ├── target.d ├── target.h ├── template.h ├── templateparamsem.d ├── templatesem.d ├── timetrace.d ├── timetrace.h ├── tokens.d ├── tokens.h ├── traits.d ├── typesem.d ├── typinf.d ├── typinf.h ├── utils.d ├── version.h ├── visitor.h ├── visitor │ ├── foreachvar.d │ ├── package.d │ ├── parsetime.d │ ├── permissive.d │ ├── postorder.d │ ├── statement_rewrite_walker.d │ ├── strict.d │ └── transitive.d ├── vsoptions.d └── vsoptions.h ├── docs ├── compiler_rt.md ├── dynamic_compile.md └── dynamic_compile_bind.md ├── driver ├── archiver.cpp ├── archiver.h ├── args.cpp ├── args.h ├── cache.cpp ├── cache.h ├── cache_pruning.d ├── cache_pruning.h ├── cl_helpers.cpp ├── cl_helpers.h ├── cl_options-llvm.cpp ├── cl_options-llvm.h ├── cl_options.cpp ├── cl_options.h ├── cl_options_instrumentation.cpp ├── cl_options_instrumentation.h ├── cl_options_sanitizers.cpp ├── cl_options_sanitizers.h ├── codegenerator.cpp ├── codegenerator.h ├── config.d ├── configfile.cpp ├── configfile.d ├── configfile.h ├── cpreprocessor.cpp ├── cpreprocessor.h ├── dcomputecodegenerator.cpp ├── dcomputecodegenerator.h ├── exe_path.cpp ├── exe_path.h ├── ldc-version.cpp.in ├── ldc-version.h ├── ldc_version.d.in ├── ldmd.cpp ├── linker-gcc.cpp ├── linker-msvc.cpp ├── linker.cpp ├── linker.h ├── main.cpp ├── main.d ├── plugins.cpp ├── plugins.h ├── response.cpp ├── targetmachine.cpp ├── targetmachine.h ├── toobj.cpp ├── toobj.h ├── tool.cpp └── tool.h ├── gen ├── aa.cpp ├── aa.h ├── abi │ ├── aarch64.cpp │ ├── abi.cpp │ ├── abi.h │ ├── arm.cpp │ ├── generic.h │ ├── loongarch64.cpp │ ├── mips64.cpp │ ├── nvptx.cpp │ ├── ppc.cpp │ ├── ppc64le.cpp │ ├── riscv64.cpp │ ├── spirv.cpp │ ├── targets.h │ ├── wasm.cpp │ ├── win64.cpp │ ├── x86-64.cpp │ └── x86.cpp ├── arrays.cpp ├── arrays.h ├── asm-gcc.cpp ├── asm-x86.h ├── asmstmt.cpp ├── attributes.cpp ├── attributes.h ├── binops.cpp ├── binops.h ├── classes.cpp ├── classes.h ├── complex.cpp ├── complex.h ├── coverage.cpp ├── coverage.h ├── cpp-imitating-naming.d ├── ctfloat.cpp ├── dcompute │ ├── abi-rewrites.h │ ├── druntime.cpp │ ├── druntime.h │ ├── target.cpp │ ├── target.h │ ├── targetCUDA.cpp │ └── targetOCL.cpp ├── declarations.cpp ├── dibuilder.cpp ├── dibuilder.h ├── dpragma.d ├── dvalue.cpp ├── dvalue.h ├── dynamiccompile.cpp ├── dynamiccompile.h ├── funcgenstate.cpp ├── funcgenstate.h ├── function-inlining.cpp ├── function-inlining.h ├── functions.cpp ├── functions.h ├── inlineir.cpp ├── inlineir.h ├── irstate.cpp ├── irstate.h ├── ldctraits.cpp ├── ldctraits.d ├── ldctraits.h ├── linkage.cpp ├── linkage.h ├── llvm.h ├── llvmhelpers.cpp ├── llvmhelpers.d ├── llvmhelpers.h ├── logger.cpp ├── logger.d ├── logger.h ├── mangling.cpp ├── mangling.h ├── moduleinfo.cpp ├── moduleinfo.h ├── modules.cpp ├── modules.h ├── ms-cxx-helper.cpp ├── ms-cxx-helper.h ├── naked.cpp ├── nested.cpp ├── nested.h ├── objcgen.cpp ├── objcgen.h ├── optimizer.cpp ├── optimizer.h ├── passes │ ├── DLLImportRelocation.cpp │ ├── GarbageCollect2Stack.cpp │ ├── GarbageCollect2Stack.h │ ├── Passes.h │ ├── SimplifyDRuntimeCalls.cpp │ ├── SimplifyDRuntimeCalls.h │ ├── StripExternals.cpp │ ├── StripExternals.h │ └── metadata.h ├── pgo_ASTbased.cpp ├── pgo_ASTbased.h ├── pragma.cpp ├── pragma.h ├── recursivevisitor.h ├── rttibuilder.cpp ├── rttibuilder.h ├── runtime.cpp ├── runtime.h ├── scope_exit.h ├── semantic-dcompute.cpp ├── semantic.d ├── statements.cpp ├── structs.cpp ├── structs.h ├── target.cpp ├── to_string.h ├── tocall.cpp ├── toconstelem.cpp ├── toir.cpp ├── tollvm.cpp ├── tollvm.h ├── trycatchfinally.cpp ├── trycatchfinally.h ├── typinf.cpp ├── typinf.h ├── uda.cpp ├── uda.h ├── variable_lifetime.cpp └── variable_lifetime.h ├── ir ├── iraggr.cpp ├── iraggr.h ├── irclass.cpp ├── irdsymbol.cpp ├── irdsymbol.h ├── irforw.h ├── irfunction.cpp ├── irfunction.h ├── irfuncty.cpp ├── irfuncty.h ├── irmodule.cpp ├── irmodule.h ├── irstruct.cpp ├── irtype.cpp ├── irtype.h ├── irtypeaggr.cpp ├── irtypeaggr.h ├── irtypeclass.cpp ├── irtypeclass.h ├── irtypefunction.cpp ├── irtypefunction.h ├── irtypestruct.cpp ├── irtypestruct.h ├── irvar.cpp └── irvar.h ├── ldc2.conf.header ├── packaging ├── README ├── README.txt ├── bash_completion.d │ └── ldc2 ├── dlang-tools_version ├── dub_version ├── mimalloc_version ├── reggae_version └── windows_installer.iss ├── runtime ├── .gitignore ├── CMakeLists.txt ├── DRuntimeIntegrationTests.cmake ├── README ├── TestRunnerTemplate │ ├── TestRunner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── TestRunner.xcscheme │ ├── TestRunner │ │ ├── Base.lproj │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── main.m │ └── TestRunnerTests │ │ ├── Info.plist │ │ └── TestRunnerTests.m ├── druntime │ ├── Makefile │ ├── posix.mak │ ├── src │ │ ├── __importc_builtins.di │ │ ├── core │ │ │ ├── atomic.d │ │ │ ├── attribute.d │ │ │ ├── bitop.d │ │ │ ├── builtins.d │ │ │ ├── checkedint.d │ │ │ ├── cpuid.d │ │ │ ├── demangle.d │ │ │ ├── exception.d │ │ │ ├── factory.d │ │ │ ├── gc │ │ │ │ ├── config.d │ │ │ │ ├── gcinterface.d │ │ │ │ └── registry.d │ │ │ ├── int128.d │ │ │ ├── internal │ │ │ │ ├── abort.d │ │ │ │ ├── array │ │ │ │ │ ├── appending.d │ │ │ │ │ ├── arrayassign.d │ │ │ │ │ ├── capacity.d │ │ │ │ │ ├── casting.d │ │ │ │ │ ├── comparison.d │ │ │ │ │ ├── concatenation.d │ │ │ │ │ ├── construction.d │ │ │ │ │ ├── duplication.d │ │ │ │ │ ├── equality.d │ │ │ │ │ ├── operations.d │ │ │ │ │ └── utils.d │ │ │ │ ├── atomic.d │ │ │ │ ├── attributes.d │ │ │ │ ├── backtrace │ │ │ │ │ ├── dwarf.d │ │ │ │ │ ├── elf.d │ │ │ │ │ ├── libunwind.d │ │ │ │ │ ├── macho.d │ │ │ │ │ └── unwind.d │ │ │ │ ├── cast_.d │ │ │ │ ├── container │ │ │ │ │ ├── array.d │ │ │ │ │ ├── common.d │ │ │ │ │ ├── hashtab.d │ │ │ │ │ └── treap.d │ │ │ │ ├── convert.d │ │ │ │ ├── dassert.d │ │ │ │ ├── destruction.d │ │ │ │ ├── elf │ │ │ │ │ ├── dl.d │ │ │ │ │ └── io.d │ │ │ │ ├── entrypoint.d │ │ │ │ ├── execinfo.d │ │ │ │ ├── gc │ │ │ │ │ ├── bits.d │ │ │ │ │ ├── blkcache.d │ │ │ │ │ ├── blockmeta.d │ │ │ │ │ ├── impl │ │ │ │ │ │ ├── conservative │ │ │ │ │ │ │ └── gc.d │ │ │ │ │ │ ├── manual │ │ │ │ │ │ │ └── gc.d │ │ │ │ │ │ └── proto │ │ │ │ │ │ │ └── gc.d │ │ │ │ │ ├── os.d │ │ │ │ │ ├── pooltable.d │ │ │ │ │ └── proxy.d │ │ │ │ ├── hash.d │ │ │ │ ├── lifetime.d │ │ │ │ ├── moving.d │ │ │ │ ├── newaa.d │ │ │ │ ├── parseoptions.d │ │ │ │ ├── postblit.d │ │ │ │ ├── qsort.d │ │ │ │ ├── spinlock.d │ │ │ │ ├── string.d │ │ │ │ ├── switch_.d │ │ │ │ ├── traits.d │ │ │ │ ├── utf.d │ │ │ │ ├── util │ │ │ │ │ ├── array.d │ │ │ │ │ └── math.d │ │ │ │ └── vararg │ │ │ │ │ ├── aarch64.d │ │ │ │ │ └── sysv_x64.d │ │ │ ├── interpolation.d │ │ │ ├── lifetime.d │ │ │ ├── math.d │ │ │ ├── memory.d │ │ │ ├── runtime.d │ │ │ ├── simd.d │ │ │ ├── stdc │ │ │ │ ├── assert_.d │ │ │ │ ├── complex.d │ │ │ │ ├── config.d │ │ │ │ ├── ctype.d │ │ │ │ ├── errno.c │ │ │ │ ├── errno.d │ │ │ │ ├── fenv.d │ │ │ │ ├── float_.d │ │ │ │ ├── inttypes.d │ │ │ │ ├── limits.d │ │ │ │ ├── locale.d │ │ │ │ ├── math.d │ │ │ │ ├── signal.d │ │ │ │ ├── stdarg.d │ │ │ │ ├── stdatomic.d │ │ │ │ ├── stddef.d │ │ │ │ ├── stdint.d │ │ │ │ ├── stdio.d │ │ │ │ ├── stdlib.d │ │ │ │ ├── string.d │ │ │ │ ├── tgmath.d │ │ │ │ ├── time.d │ │ │ │ ├── wchar_.d │ │ │ │ └── wctype.d │ │ │ ├── stdcpp │ │ │ │ ├── allocator.d │ │ │ │ ├── array.d │ │ │ │ ├── exception.d │ │ │ │ ├── memory.d │ │ │ │ ├── new_.d │ │ │ │ ├── string.d │ │ │ │ ├── string_view.d │ │ │ │ ├── type_traits.d │ │ │ │ ├── typeinfo.d │ │ │ │ ├── utility.d │ │ │ │ ├── vector.d │ │ │ │ └── xutility.d │ │ │ ├── sync │ │ │ │ ├── barrier.d │ │ │ │ ├── condition.d │ │ │ │ ├── config.d │ │ │ │ ├── event.d │ │ │ │ ├── exception.d │ │ │ │ ├── mutex.d │ │ │ │ ├── package.d │ │ │ │ ├── rwmutex.d │ │ │ │ └── semaphore.d │ │ │ ├── sys │ │ │ │ ├── bionic │ │ │ │ │ ├── err.d │ │ │ │ │ ├── fcntl.d │ │ │ │ │ ├── stdlib.d │ │ │ │ │ ├── string.d │ │ │ │ │ └── unistd.d │ │ │ │ ├── darwin │ │ │ │ │ ├── crt_externs.d │ │ │ │ │ ├── dlfcn.d │ │ │ │ │ ├── err.d │ │ │ │ │ ├── execinfo.d │ │ │ │ │ ├── fcntl.d │ │ │ │ │ ├── ifaddrs.d │ │ │ │ │ ├── mach │ │ │ │ │ │ ├── dyld.d │ │ │ │ │ │ ├── getsect.d │ │ │ │ │ │ ├── kern_return.d │ │ │ │ │ │ ├── loader.d │ │ │ │ │ │ ├── nlist.d │ │ │ │ │ │ ├── port.d │ │ │ │ │ │ ├── semaphore.d │ │ │ │ │ │ ├── stab.d │ │ │ │ │ │ └── thread_act.d │ │ │ │ │ ├── netinet │ │ │ │ │ │ └── in_.d │ │ │ │ │ ├── pthread.d │ │ │ │ │ ├── stdlib.d │ │ │ │ │ ├── string.d │ │ │ │ │ └── sys │ │ │ │ │ │ ├── attr.d │ │ │ │ │ │ ├── cdefs.d │ │ │ │ │ │ ├── event.d │ │ │ │ │ │ ├── mman.d │ │ │ │ │ │ └── sysctl.d │ │ │ │ ├── dragonflybsd │ │ │ │ │ ├── dlfcn.d │ │ │ │ │ ├── err.d │ │ │ │ │ ├── execinfo.d │ │ │ │ │ ├── netinet │ │ │ │ │ │ └── in_.d │ │ │ │ │ ├── pthread_np.d │ │ │ │ │ ├── stdlib.d │ │ │ │ │ ├── string.d │ │ │ │ │ ├── sys │ │ │ │ │ │ ├── _bitset.d │ │ │ │ │ │ ├── _cpuset.d │ │ │ │ │ │ ├── cdefs.d │ │ │ │ │ │ ├── elf.d │ │ │ │ │ │ ├── elf32.d │ │ │ │ │ │ ├── elf64.d │ │ │ │ │ │ ├── elf_common.d │ │ │ │ │ │ ├── event.d │ │ │ │ │ │ ├── link_elf.d │ │ │ │ │ │ ├── mman.d │ │ │ │ │ │ ├── socket.d │ │ │ │ │ │ └── sysctl.d │ │ │ │ │ └── time.d │ │ │ │ ├── elf │ │ │ │ │ └── package.d │ │ │ │ ├── freebsd │ │ │ │ │ ├── config.d │ │ │ │ │ ├── dlfcn.d │ │ │ │ │ ├── err.d │ │ │ │ │ ├── execinfo.d │ │ │ │ │ ├── ifaddrs.d │ │ │ │ │ ├── mqueue.d │ │ │ │ │ ├── net │ │ │ │ │ │ ├── if_.d │ │ │ │ │ │ └── if_dl.d │ │ │ │ │ ├── netinet │ │ │ │ │ │ └── in_.d │ │ │ │ │ ├── pthread_np.d │ │ │ │ │ ├── stdlib.d │ │ │ │ │ ├── string.d │ │ │ │ │ ├── sys │ │ │ │ │ │ ├── _bitset.d │ │ │ │ │ │ ├── _cpuset.d │ │ │ │ │ │ ├── cdefs.d │ │ │ │ │ │ ├── elf.d │ │ │ │ │ │ ├── elf32.d │ │ │ │ │ │ ├── elf64.d │ │ │ │ │ │ ├── elf_common.d │ │ │ │ │ │ ├── event.d │ │ │ │ │ │ ├── link_elf.d │ │ │ │ │ │ ├── mman.d │ │ │ │ │ │ ├── mount.d │ │ │ │ │ │ ├── socket.d │ │ │ │ │ │ ├── sysctl.d │ │ │ │ │ │ └── types.d │ │ │ │ │ ├── time.d │ │ │ │ │ └── unistd.d │ │ │ │ ├── linux │ │ │ │ │ ├── config.d │ │ │ │ │ ├── dlfcn.d │ │ │ │ │ ├── elf.d │ │ │ │ │ ├── epoll.d │ │ │ │ │ ├── err.d │ │ │ │ │ ├── errno.d │ │ │ │ │ ├── execinfo.d │ │ │ │ │ ├── fcntl.d │ │ │ │ │ ├── fs.d │ │ │ │ │ ├── ifaddrs.d │ │ │ │ │ ├── input.d │ │ │ │ │ ├── input_event_codes.d │ │ │ │ │ ├── io_uring.d │ │ │ │ │ ├── link.d │ │ │ │ │ ├── linux │ │ │ │ │ │ ├── if_arp.d │ │ │ │ │ │ └── if_packet.d │ │ │ │ │ ├── netinet │ │ │ │ │ │ ├── in_.d │ │ │ │ │ │ └── tcp.d │ │ │ │ │ ├── perf_event.d │ │ │ │ │ ├── sched.d │ │ │ │ │ ├── stdio.d │ │ │ │ │ ├── string.d │ │ │ │ │ ├── sys │ │ │ │ │ │ ├── auxv.d │ │ │ │ │ │ ├── eventfd.d │ │ │ │ │ │ ├── file.d │ │ │ │ │ │ ├── inotify.d │ │ │ │ │ │ ├── mman.d │ │ │ │ │ │ ├── mount.d │ │ │ │ │ │ ├── prctl.d │ │ │ │ │ │ ├── procfs.d │ │ │ │ │ │ ├── signalfd.d │ │ │ │ │ │ ├── socket.d │ │ │ │ │ │ ├── syscall.d │ │ │ │ │ │ ├── sysinfo.d │ │ │ │ │ │ ├── time.d │ │ │ │ │ │ └── xattr.d │ │ │ │ │ ├── syscall.d │ │ │ │ │ ├── termios.d │ │ │ │ │ ├── time.d │ │ │ │ │ ├── timerfd.d │ │ │ │ │ ├── tipc.d │ │ │ │ │ ├── uinput.d │ │ │ │ │ └── unistd.d │ │ │ │ ├── netbsd │ │ │ │ │ ├── dlfcn.d │ │ │ │ │ ├── err.d │ │ │ │ │ ├── execinfo.d │ │ │ │ │ ├── stdlib.d │ │ │ │ │ ├── string.d │ │ │ │ │ ├── sys │ │ │ │ │ │ ├── elf.d │ │ │ │ │ │ ├── elf32.d │ │ │ │ │ │ ├── elf64.d │ │ │ │ │ │ ├── elf_common.d │ │ │ │ │ │ ├── event.d │ │ │ │ │ │ ├── featuretest.d │ │ │ │ │ │ ├── link_elf.d │ │ │ │ │ │ ├── mman.d │ │ │ │ │ │ └── sysctl.d │ │ │ │ │ └── time.d │ │ │ │ ├── openbsd │ │ │ │ │ ├── dlfcn.d │ │ │ │ │ ├── err.d │ │ │ │ │ ├── execinfo.d │ │ │ │ │ ├── pthread_np.d │ │ │ │ │ ├── pwd.d │ │ │ │ │ ├── stdlib.d │ │ │ │ │ ├── string.d │ │ │ │ │ ├── sys │ │ │ │ │ │ ├── cdefs.d │ │ │ │ │ │ ├── elf.d │ │ │ │ │ │ ├── elf32.d │ │ │ │ │ │ ├── elf64.d │ │ │ │ │ │ ├── elf_common.d │ │ │ │ │ │ ├── link_elf.d │ │ │ │ │ │ ├── mman.d │ │ │ │ │ │ └── sysctl.d │ │ │ │ │ ├── time.d │ │ │ │ │ └── unistd.d │ │ │ │ ├── posix │ │ │ │ │ ├── aio.d │ │ │ │ │ ├── arpa │ │ │ │ │ │ └── inet.d │ │ │ │ │ ├── config.d │ │ │ │ │ ├── dirent.d │ │ │ │ │ ├── dlfcn.d │ │ │ │ │ ├── fcntl.d │ │ │ │ │ ├── grp.d │ │ │ │ │ ├── iconv.d │ │ │ │ │ ├── inttypes.d │ │ │ │ │ ├── libgen.d │ │ │ │ │ ├── locale.d │ │ │ │ │ ├── mqueue.d │ │ │ │ │ ├── net │ │ │ │ │ │ └── if_.d │ │ │ │ │ ├── netdb.d │ │ │ │ │ ├── netinet │ │ │ │ │ │ ├── in_.d │ │ │ │ │ │ └── tcp.d │ │ │ │ │ ├── poll.d │ │ │ │ │ ├── pthread.d │ │ │ │ │ ├── pwd.d │ │ │ │ │ ├── sched.d │ │ │ │ │ ├── semaphore.d │ │ │ │ │ ├── setjmp.d │ │ │ │ │ ├── signal.d │ │ │ │ │ ├── spawn.d │ │ │ │ │ ├── stdc │ │ │ │ │ │ └── time.d │ │ │ │ │ ├── stdio.d │ │ │ │ │ ├── stdlib.d │ │ │ │ │ ├── string.d │ │ │ │ │ ├── strings.d │ │ │ │ │ ├── sys │ │ │ │ │ │ ├── filio.d │ │ │ │ │ │ ├── ioccom.d │ │ │ │ │ │ ├── ioctl.d │ │ │ │ │ │ ├── ipc.d │ │ │ │ │ │ ├── mman.d │ │ │ │ │ │ ├── msg.d │ │ │ │ │ │ ├── resource.d │ │ │ │ │ │ ├── select.d │ │ │ │ │ │ ├── shm.d │ │ │ │ │ │ ├── socket.d │ │ │ │ │ │ ├── stat.d │ │ │ │ │ │ ├── statvfs.d │ │ │ │ │ │ ├── time.d │ │ │ │ │ │ ├── ttycom.d │ │ │ │ │ │ ├── types.d │ │ │ │ │ │ ├── uio.d │ │ │ │ │ │ ├── un.d │ │ │ │ │ │ ├── utsname.d │ │ │ │ │ │ └── wait.d │ │ │ │ │ ├── syslog.d │ │ │ │ │ ├── termios.d │ │ │ │ │ ├── time.d │ │ │ │ │ ├── ucontext.d │ │ │ │ │ ├── unistd.d │ │ │ │ │ └── utime.d │ │ │ │ ├── solaris │ │ │ │ │ ├── dlfcn.d │ │ │ │ │ ├── elf.d │ │ │ │ │ ├── err.d │ │ │ │ │ ├── execinfo.d │ │ │ │ │ ├── libelf.d │ │ │ │ │ ├── link.d │ │ │ │ │ ├── stdlib.d │ │ │ │ │ ├── sys │ │ │ │ │ │ ├── elf.d │ │ │ │ │ │ ├── elf_386.d │ │ │ │ │ │ ├── elf_SPARC.d │ │ │ │ │ │ ├── elf_amd64.d │ │ │ │ │ │ ├── elf_notes.d │ │ │ │ │ │ ├── elftypes.d │ │ │ │ │ │ ├── link.d │ │ │ │ │ │ ├── priocntl.d │ │ │ │ │ │ ├── procset.d │ │ │ │ │ │ └── types.d │ │ │ │ │ └── time.d │ │ │ │ └── windows │ │ │ │ │ ├── accctrl.d │ │ │ │ │ ├── aclapi.d │ │ │ │ │ ├── aclui.d │ │ │ │ │ ├── basetsd.d │ │ │ │ │ ├── basetyps.d │ │ │ │ │ ├── bcrypt.d │ │ │ │ │ ├── cderr.d │ │ │ │ │ ├── cguid.d │ │ │ │ │ ├── com.d │ │ │ │ │ ├── comcat.d │ │ │ │ │ ├── commctrl.d │ │ │ │ │ ├── commdlg.d │ │ │ │ │ ├── core.d │ │ │ │ │ ├── cpl.d │ │ │ │ │ ├── cplext.d │ │ │ │ │ ├── custcntl.d │ │ │ │ │ ├── dbghelp.d │ │ │ │ │ ├── dbghelp_types.d │ │ │ │ │ ├── dbt.d │ │ │ │ │ ├── dde.d │ │ │ │ │ ├── ddeml.d │ │ │ │ │ ├── dhcpcsdk.d │ │ │ │ │ ├── dlgs.d │ │ │ │ │ ├── dll.d │ │ │ │ │ ├── docobj.d │ │ │ │ │ ├── errorrep.d │ │ │ │ │ ├── exdisp.d │ │ │ │ │ ├── exdispid.d │ │ │ │ │ ├── httpext.d │ │ │ │ │ ├── idispids.d │ │ │ │ │ ├── imagehlp.d │ │ │ │ │ ├── imm.d │ │ │ │ │ ├── intshcut.d │ │ │ │ │ ├── ipexport.d │ │ │ │ │ ├── iphlpapi.d │ │ │ │ │ ├── ipifcons.d │ │ │ │ │ ├── iprtrmib.d │ │ │ │ │ ├── iptypes.d │ │ │ │ │ ├── isguids.d │ │ │ │ │ ├── lm.d │ │ │ │ │ ├── lmaccess.d │ │ │ │ │ ├── lmalert.d │ │ │ │ │ ├── lmapibuf.d │ │ │ │ │ ├── lmat.d │ │ │ │ │ ├── lmaudit.d │ │ │ │ │ ├── lmbrowsr.d │ │ │ │ │ ├── lmchdev.d │ │ │ │ │ ├── lmconfig.d │ │ │ │ │ ├── lmcons.d │ │ │ │ │ ├── lmerr.d │ │ │ │ │ ├── lmerrlog.d │ │ │ │ │ ├── lmmsg.d │ │ │ │ │ ├── lmremutl.d │ │ │ │ │ ├── lmrepl.d │ │ │ │ │ ├── lmserver.d │ │ │ │ │ ├── lmshare.d │ │ │ │ │ ├── lmsname.d │ │ │ │ │ ├── lmstats.d │ │ │ │ │ ├── lmsvc.d │ │ │ │ │ ├── lmuse.d │ │ │ │ │ ├── lmuseflg.d │ │ │ │ │ ├── lmwksta.d │ │ │ │ │ ├── lzexpand.d │ │ │ │ │ ├── mapi.d │ │ │ │ │ ├── mciavi.d │ │ │ │ │ ├── mcx.d │ │ │ │ │ ├── mgmtapi.d │ │ │ │ │ ├── mmsystem.d │ │ │ │ │ ├── msacm.d │ │ │ │ │ ├── mshtml.d │ │ │ │ │ ├── mswsock.d │ │ │ │ │ ├── nb30.d │ │ │ │ │ ├── nddeapi.d │ │ │ │ │ ├── nspapi.d │ │ │ │ │ ├── ntdef.d │ │ │ │ │ ├── ntdll.d │ │ │ │ │ ├── ntldap.d │ │ │ │ │ ├── ntsecapi.d │ │ │ │ │ ├── ntsecpkg.d │ │ │ │ │ ├── oaidl.d │ │ │ │ │ ├── objbase.d │ │ │ │ │ ├── objfwd.d │ │ │ │ │ ├── objidl.d │ │ │ │ │ ├── objsafe.d │ │ │ │ │ ├── ocidl.d │ │ │ │ │ ├── odbcinst.d │ │ │ │ │ ├── ole.d │ │ │ │ │ ├── ole2.d │ │ │ │ │ ├── ole2ver.d │ │ │ │ │ ├── oleacc.d │ │ │ │ │ ├── oleauto.d │ │ │ │ │ ├── olectl.d │ │ │ │ │ ├── olectlid.d │ │ │ │ │ ├── oledlg.d │ │ │ │ │ ├── oleidl.d │ │ │ │ │ ├── pbt.d │ │ │ │ │ ├── powrprof.d │ │ │ │ │ ├── prsht.d │ │ │ │ │ ├── psapi.d │ │ │ │ │ ├── rapi.d │ │ │ │ │ ├── ras.d │ │ │ │ │ ├── rasdlg.d │ │ │ │ │ ├── raserror.d │ │ │ │ │ ├── rassapi.d │ │ │ │ │ ├── reason.d │ │ │ │ │ ├── regstr.d │ │ │ │ │ ├── richedit.d │ │ │ │ │ ├── richole.d │ │ │ │ │ ├── rpc.d │ │ │ │ │ ├── rpcdce.d │ │ │ │ │ ├── rpcdce2.d │ │ │ │ │ ├── rpcdcep.d │ │ │ │ │ ├── rpcndr.d │ │ │ │ │ ├── rpcnsi.d │ │ │ │ │ ├── rpcnsip.d │ │ │ │ │ ├── rpcnterr.d │ │ │ │ │ ├── schannel.d │ │ │ │ │ ├── sdkddkver.d │ │ │ │ │ ├── secext.d │ │ │ │ │ ├── security.d │ │ │ │ │ ├── servprov.d │ │ │ │ │ ├── setupapi.d │ │ │ │ │ ├── shellapi.d │ │ │ │ │ ├── shldisp.d │ │ │ │ │ ├── shlguid.d │ │ │ │ │ ├── shlobj.d │ │ │ │ │ ├── shlwapi.d │ │ │ │ │ ├── snmp.d │ │ │ │ │ ├── sql.d │ │ │ │ │ ├── sqlext.d │ │ │ │ │ ├── sqltypes.d │ │ │ │ │ ├── sqlucode.d │ │ │ │ │ ├── sspi.d │ │ │ │ │ ├── stacktrace.d │ │ │ │ │ ├── stat.d │ │ │ │ │ ├── stdc │ │ │ │ │ ├── malloc.d │ │ │ │ │ └── time.d │ │ │ │ │ ├── subauth.d │ │ │ │ │ ├── threadaux.d │ │ │ │ │ ├── tlhelp32.d │ │ │ │ │ ├── tmschema.d │ │ │ │ │ ├── unknwn.d │ │ │ │ │ ├── uuid.d │ │ │ │ │ ├── vfw.d │ │ │ │ │ ├── w32api.d │ │ │ │ │ ├── winbase.d │ │ │ │ │ ├── winber.d │ │ │ │ │ ├── wincon.d │ │ │ │ │ ├── wincrypt.d │ │ │ │ │ ├── windef.d │ │ │ │ │ ├── windows.d │ │ │ │ │ ├── winerror.d │ │ │ │ │ ├── wingdi.d │ │ │ │ │ ├── winhttp.d │ │ │ │ │ ├── wininet.d │ │ │ │ │ ├── winioctl.d │ │ │ │ │ ├── winldap.d │ │ │ │ │ ├── winnetwk.d │ │ │ │ │ ├── winnls.d │ │ │ │ │ ├── winnt.d │ │ │ │ │ ├── winperf.d │ │ │ │ │ ├── winreg.d │ │ │ │ │ ├── winsock2.d │ │ │ │ │ ├── winspool.d │ │ │ │ │ ├── winsvc.d │ │ │ │ │ ├── winuser.d │ │ │ │ │ ├── winver.d │ │ │ │ │ ├── wtsapi32.d │ │ │ │ │ └── wtypes.d │ │ │ ├── thread │ │ │ │ ├── context.d │ │ │ │ ├── fiber │ │ │ │ │ ├── base.d │ │ │ │ │ ├── package.d │ │ │ │ │ ├── switch_context_asm.S │ │ │ │ │ └── switch_context_riscv.S │ │ │ │ ├── osthread.d │ │ │ │ ├── package.d │ │ │ │ ├── threadbase.d │ │ │ │ ├── threadgroup.d │ │ │ │ └── types.d │ │ │ ├── time.d │ │ │ ├── vararg.d │ │ │ └── volatile.d │ │ ├── etc │ │ │ ├── linux │ │ │ │ └── memoryerror.d │ │ │ └── valgrind │ │ │ │ ├── memcheck.h │ │ │ │ ├── valgrind.c │ │ │ │ ├── valgrind.d │ │ │ │ └── valgrind.h │ │ ├── importc.h │ │ ├── ldc │ │ │ ├── arm_unwind.c │ │ │ ├── asan.d │ │ │ ├── attributes.d │ │ │ ├── dcompute.d │ │ │ ├── eh_asm.S │ │ │ ├── eh_msvc.d │ │ │ ├── intrinsics.di │ │ │ ├── libfuzzer.di │ │ │ ├── llvmasm.di │ │ │ ├── msvc.c │ │ │ ├── opencl.di │ │ │ ├── profile.di │ │ │ ├── sanitizer_common.d │ │ │ ├── sanitizers_optionally_linked.d │ │ │ └── simd.di │ │ ├── object.d │ │ ├── rt │ │ │ ├── aApply.d │ │ │ ├── aApplyR.d │ │ │ ├── aaA.d │ │ │ ├── alloca.d │ │ │ ├── arraycat.d │ │ │ ├── cmath2.d │ │ │ ├── config.d │ │ │ ├── cover.d │ │ │ ├── critical_.d │ │ │ ├── deh.d │ │ │ ├── deh_win32.d │ │ │ ├── deh_win64_posix.d │ │ │ ├── dmain2.d │ │ │ ├── dso.d │ │ │ ├── dwarfeh.d │ │ │ ├── dylib_fixes.c │ │ │ ├── ehalloc.d │ │ │ ├── invariant_.d │ │ │ ├── lifetime.d │ │ │ ├── llmath.d │ │ │ ├── memory.d │ │ │ ├── memset.d │ │ │ ├── minfo.d │ │ │ ├── monitor_.d │ │ │ ├── msvc.d │ │ │ ├── msvc_math.d │ │ │ ├── profilegc.d │ │ │ ├── sections.d │ │ │ ├── sections_darwin_64.d │ │ │ ├── sections_elf_shared.d │ │ │ ├── sections_ldc.d │ │ │ ├── sections_osx_x86.d │ │ │ ├── sections_osx_x86_64.d │ │ │ ├── sections_solaris.d │ │ │ ├── sections_win64.d │ │ │ ├── tlsgc.d │ │ │ ├── trace.d │ │ │ ├── tracegc.d │ │ │ └── util │ │ │ │ ├── typeinfo.d │ │ │ │ └── utility.d │ │ └── test_runner.d │ └── test │ │ ├── .gitignore │ │ ├── aa │ │ ├── Makefile │ │ └── src │ │ │ └── test_aa.d │ │ ├── allocations │ │ ├── Makefile │ │ └── src │ │ │ ├── alloc_from_assert.d │ │ │ ├── overflow_from_existing.d │ │ │ └── overflow_from_zero.d │ │ ├── betterc │ │ ├── Makefile │ │ └── src │ │ │ ├── test18828.d │ │ │ ├── test19416.d │ │ │ ├── test19421.d │ │ │ ├── test19561.d │ │ │ ├── test19924.d │ │ │ ├── test19933.d │ │ │ ├── test20088.d │ │ │ ├── test20613.d │ │ │ └── test22336.d │ │ ├── common.mak │ │ ├── config │ │ ├── Makefile │ │ └── src │ │ │ ├── test19433.d │ │ │ ├── test20459.d │ │ │ └── test22523.d │ │ ├── coverage │ │ ├── Makefile │ │ ├── src-basic.lst.exp │ │ ├── src-merge.lst.exp │ │ ├── src-merge_override.lst_1.exp │ │ ├── src-merge_override.lst_2.exp │ │ ├── src-merge_true.lst.exp │ │ ├── src-no_code.lst.exp │ │ ├── src-no_code_imp.lst.exp │ │ └── src │ │ │ ├── basic.d │ │ │ ├── merge.d │ │ │ ├── merge_override.d │ │ │ ├── merge_true.d │ │ │ ├── no_code.d │ │ │ └── no_code_imp.d │ │ ├── cpuid │ │ ├── Makefile │ │ └── src │ │ │ └── cpuid.d │ │ ├── cycles │ │ ├── Makefile │ │ └── src │ │ │ ├── mod1.d │ │ │ ├── mod2.d │ │ │ ├── mod3.d │ │ │ └── test_cycles.d │ │ ├── exceptions │ │ ├── Makefile │ │ ├── chain.exp │ │ ├── line_trace.exp │ │ ├── long_backtrace_trunc.exp │ │ └── src │ │ │ ├── assert_fail.d │ │ │ ├── catch_in_finally.d │ │ │ ├── chain.d │ │ │ ├── cpp_demangle.d │ │ │ ├── future_message.d │ │ │ ├── invalid_memory_operation.d │ │ │ ├── line_trace.d │ │ │ ├── long_backtrace_trunc.d │ │ │ ├── memoryerror_null_call.d │ │ │ ├── memoryerror_null_read.d │ │ │ ├── memoryerror_null_write.d │ │ │ ├── memoryerror_stackoverflow.d │ │ │ ├── message_with_null.d │ │ │ ├── refcounted.d │ │ │ ├── rt_trap_exceptions.d │ │ │ ├── rt_trap_exceptions_drt.d │ │ │ ├── static_dtor.d │ │ │ ├── stderr_msg.d │ │ │ ├── unittest_assert.d │ │ │ ├── unknown_gc.d │ │ │ └── winstack.d │ │ ├── gc │ │ ├── Makefile │ │ ├── attributes.d │ │ ├── concurrent.d │ │ ├── forkgc.d │ │ ├── forkgc2.d │ │ ├── hospital.d │ │ ├── invariant.d │ │ ├── issue22843.d │ │ ├── logging.d │ │ ├── memstomp.d │ │ ├── nocollect.d │ │ ├── precise.d │ │ ├── precise_concurrent.d │ │ ├── precisegc.d │ │ ├── printf.d │ │ ├── recoverfree.d │ │ ├── sentinel.d │ │ ├── sentinel1.d │ │ ├── sentinel2.d │ │ ├── sigmaskgc.d │ │ └── startbackgc.d │ │ ├── hash │ │ ├── Makefile │ │ └── src │ │ │ └── test_hash.d │ │ ├── importc_compare │ │ ├── Makefile │ │ └── src │ │ │ ├── importc_compare.d │ │ │ └── importc_includes.c │ │ ├── imports │ │ ├── Makefile │ │ └── src │ │ │ └── bug18193.d │ │ ├── init_fini │ │ ├── Makefile │ │ └── src │ │ │ ├── custom_gc.d │ │ │ ├── runtime_args.d │ │ │ ├── test18996.d │ │ │ └── thread_join.d │ │ ├── lifetime │ │ ├── Makefile │ │ └── src │ │ │ └── large_aggregate_destroy_21097.d │ │ ├── profile │ │ ├── Makefile │ │ ├── README.md │ │ ├── bothgc.log.exp │ │ ├── bothnew.def.exp │ │ ├── myprofilegc.log.freebsd.32.exp │ │ ├── myprofilegc.log.freebsd.64.exp │ │ ├── myprofilegc.log.linux.32.exp │ │ ├── myprofilegc.log.linux.64.exp │ │ ├── myprofilegc.log.osx.32.exp │ │ ├── myprofilegc.log.osx.64.exp │ │ ├── myprofilegc.log.windows.32.exp │ │ ├── myprofilegc.log.windows.64.exp │ │ ├── mytrace.def.exp │ │ ├── mytrace.releaseopt.def.exp │ │ └── src │ │ │ ├── both.d │ │ │ ├── profile.d │ │ │ └── profilegc.d │ │ ├── shared │ │ ├── .gitignore │ │ ├── Makefile │ │ └── src │ │ │ ├── dll_gc_proxy_teardown.d │ │ │ ├── dllgc.d │ │ │ ├── dllrefcount.d │ │ │ ├── dynamiccast.d │ │ │ ├── finalize.d │ │ │ ├── host.c │ │ │ ├── lib.d │ │ │ ├── lib_13414.d │ │ │ ├── liblinkdep.d │ │ │ ├── libloaddep.d │ │ │ ├── link.d │ │ │ ├── linkD.c │ │ │ ├── linkDR.c │ │ │ ├── link_linkdep.d │ │ │ ├── link_loaddep.d │ │ │ ├── load.d │ │ │ ├── loadDR.c │ │ │ ├── load_13414.d │ │ │ ├── load_linkdep.d │ │ │ ├── load_loaddep.d │ │ │ ├── loadlibwin.d │ │ │ ├── plugin.d │ │ │ ├── utils.di │ │ │ └── utils.h │ │ ├── stdcpp │ │ ├── GNUmakefile.posix │ │ ├── GNUmakefile.windows │ │ ├── Makefile │ │ ├── msc_ver.c │ │ └── src │ │ │ ├── allocator.cpp │ │ │ ├── allocator_test.d │ │ │ ├── array.cpp │ │ │ ├── array_test.d │ │ │ ├── exception.cpp │ │ │ ├── exception_test.d │ │ │ ├── memory.cpp │ │ │ ├── memory_test.d │ │ │ ├── new.cpp │ │ │ ├── new_test.d │ │ │ ├── string.cpp │ │ │ ├── string_test.d │ │ │ ├── string_view.cpp │ │ │ ├── string_view_test.d │ │ │ ├── typeinfo.cpp │ │ │ ├── typeinfo_test.d │ │ │ ├── utility.cpp │ │ │ ├── utility_test.d │ │ │ ├── vector.cpp │ │ │ └── vector_test.d │ │ ├── thread │ │ ├── Makefile │ │ └── src │ │ │ ├── external_threads.d │ │ │ ├── fiber_guard_page.d │ │ │ ├── join_detach.d │ │ │ ├── test_import.d │ │ │ ├── tlsgc_sections.d │ │ │ └── tlsstack.d │ │ ├── traits │ │ ├── Makefile │ │ └── src │ │ │ └── all_satisfy.d │ │ ├── typeinfo │ │ ├── Makefile │ │ └── src │ │ │ ├── comparison.d │ │ │ ├── enum_.d │ │ │ └── isbaseof.d │ │ ├── unittest │ │ ├── Makefile │ │ └── customhandler.d │ │ ├── uuid │ │ ├── Makefile │ │ └── test.d │ │ └── valgrind │ │ ├── Makefile │ │ └── src │ │ ├── no_oob.d │ │ ├── no_oob_sentinel.d │ │ ├── no_use_after_free.d │ │ ├── no_use_after_gc.d │ │ └── ok_append.d ├── jit-rt │ ├── DefineBuildJitRT.cmake │ ├── cpp-so │ │ ├── bind.cpp │ │ ├── bind.h │ │ ├── callback_ostream.cpp │ │ ├── callback_ostream.h │ │ ├── compile.cpp │ │ ├── context.h │ │ ├── disassembler.cpp │ │ ├── disassembler.h │ │ ├── jit_context.cpp │ │ ├── jit_context.h │ │ ├── optimizer.h │ │ ├── options.cpp │ │ ├── options.h │ │ ├── param_slice.h │ │ ├── slice.h │ │ ├── utils.cpp │ │ ├── utils.h │ │ ├── valueparser.cpp │ │ └── valueparser.h │ ├── cpp │ │ └── compile.cpp │ └── d │ │ └── ldc │ │ └── dynamic_compile.d └── ldc-build-runtime.d.in ├── tests ├── CMakeLists.txt ├── PGO │ ├── allstatementtypes.d │ ├── boundscheck.d │ ├── branching_switch.d │ ├── break.d │ ├── const_cond.d │ ├── eh_gh1943.d │ ├── exceptions.d │ ├── final_switch_release.d │ ├── functions.d │ ├── hash.d │ ├── hash_smallchange.d │ ├── indirect_calls.d │ ├── inputs │ │ └── singleobj_input.d │ ├── irbased_indirect_calls.d │ ├── lit.local.cfg │ ├── max_function_count.d │ ├── pragma.d │ ├── profile_rt_calls.d │ ├── reset_counters.d │ ├── sample_based.d │ ├── singleobj.d │ ├── summary.d │ ├── switch_disable.d │ ├── thinlto_pgo.d │ ├── uninstrumented_main.d │ ├── unrolledloopstatement_gh3375.d │ └── withO.d ├── baremetal │ ├── classes.d │ ├── inputs │ │ └── object.d │ ├── lit.local.cfg │ ├── wasm.d │ └── wasm2.d ├── codegen │ ├── align.d │ ├── align_class.d │ ├── array_alloc_gh3041.d │ ├── array_catassign_gh2588.d │ ├── array_equals_memcmp.d │ ├── array_equals_memcmp_2.d │ ├── array_equals_memcmp_dyn.d │ ├── array_equals_memcmp_neverinvoke.d │ ├── array_equals_null.d │ ├── array_literal_gh1924.d │ ├── asm_constraints.d │ ├── asm_data_directives.d │ ├── asm_gcc.d │ ├── asm_gcc_no_fp.d │ ├── asm_labels.d │ ├── asm_output.d │ ├── assign_struct_init_without_stack.d │ ├── atomicrmw.d │ ├── attr_allocsize.d │ ├── attr_allocsize_diag.d │ ├── attr_assumeused.d │ ├── attr_callingconvention.d │ ├── attr_callingconvention_diag.d │ ├── attr_fastmath.d │ ├── attr_fastmath_x86.d │ ├── attr_llvmFMF.d │ ├── attr_llvmFMF_contract.d │ ├── attr_llvmattr.d │ ├── attr_naked.d │ ├── attr_optstrat.d │ ├── attr_param.d │ ├── attr_target_overrides_mattr_x86.d │ ├── attr_target_x86.d │ ├── attr_targetoptions.d │ ├── attr_targetoptions_fp.d │ ├── attr_weak.d │ ├── attr_weak_external.d │ ├── attr_weak_lto.d │ ├── attributes.d │ ├── avr.d │ ├── betterC_typeinfo.d │ ├── call_args_evalorder.d │ ├── casm.i │ ├── checkaction_halt.d │ ├── cmpxchg.d │ ├── complex_identity_gh2918.d │ ├── complex_postexpr_gh1806.d │ ├── const_cond.d │ ├── const_cond_labels.d │ ├── const_struct.d │ ├── const_struct_export.d │ ├── cov_modes.d │ ├── cpp_interface.d │ ├── ctor_initarray_gh2883.d │ ├── dcompute_cl_addrspaces.d │ ├── dcompute_cl_images.d │ ├── dcompute_cu_addrspaces.d │ ├── dcompute_host_and_device.d │ ├── devirtualization_assumevtable.d │ ├── discard_value_names_gh1749.d │ ├── discard_value_names_ir2obj_cache.d │ ├── dllimport_gh3916.d │ ├── dllimport_gh3926.d │ ├── dmd_inline_asm_fp_types.d │ ├── dmd_inline_asm_ip.d │ ├── dmd_style_asm_in_inline_c_function.c │ ├── dmd_style_asm_with_variable_and_offset_memory_reference.d │ ├── emscripten.d │ ├── exception_stack_trace.d │ ├── export.d │ ├── export_aggregate_symbols.d │ ├── export_crossModuleInlining.d │ ├── export_marked_symbols1.d │ ├── export_marked_symbols2.d │ ├── export_marked_symbols_thin_lto.d │ ├── export_naked_gh2648.d │ ├── fcf_protection.d │ ├── fence_pragma.d │ ├── ffastmath.d │ ├── fno_delete_null_pointer_checks.d │ ├── fno_discard_value_names.d │ ├── frame_pointer_x86.d │ ├── fsplit_stack.d │ ├── func_contracts_gh1543.d │ ├── funcliteral_defaultarg_gh1634.d │ ├── funcptr_harvard_gh4432.d │ ├── fvisibility_dll.d │ ├── fvisibility_posix.d │ ├── fvisibility_windows.d │ ├── gc2stack.d │ ├── gh1433.d │ ├── gh1728.d │ ├── gh1843.d │ ├── gh2131.d │ ├── gh2235.d │ ├── gh2346.d │ ├── gh2515.d │ ├── gh2729.d │ ├── gh2865.d │ ├── gh3094.d │ ├── gh3208.d │ ├── gh3221.d │ ├── gh3346.d │ ├── gh3520.d │ ├── gh3553.d │ ├── gh3589.d │ ├── gh3692.d │ ├── gh4130.d │ ├── gh4134.d │ ├── gh4264.d │ ├── gh4510.d │ ├── gh4790.d │ ├── gh4986.d │ ├── hashed_mangling.d │ ├── importc_static.i │ ├── in_place_construct.d │ ├── in_place_construct_asm.d │ ├── in_place_construct_temporaries.d │ ├── inbounds.d │ ├── indirect_byval_rewrite.d │ ├── inferred_outputname.d │ ├── inlineIR_math.d │ ├── inline_ir.d │ ├── inline_ir_noparams.d │ ├── inlining_disablecross.d │ ├── inlining_gh3126.d │ ├── inlining_imports.d │ ├── inlining_imports_pragma.d │ ├── inlining_invariants_gh1678.d │ ├── inlining_leakdefinitions.d │ ├── inlining_leakdefinitions_asm.d │ ├── inlining_pragma.d │ ├── inlining_staticvar.d │ ├── inlining_stdlib.d │ ├── inlining_templates.d │ ├── inputs │ │ ├── attr_weak_external_input.d │ │ ├── attr_weak_input.d │ │ ├── export2.d │ │ ├── export_marked_symbols_lib.d │ │ ├── foo.d │ │ ├── fvisibility_dll_lib.d │ │ ├── gh3589_a.d │ │ ├── gh3589_b.d │ │ ├── gh3589_templ.di │ │ ├── inlinables.d │ │ ├── inlinables_asm.d │ │ ├── inlinables_staticvar.d │ │ ├── input_discard_valuename.d │ │ ├── kernel.d │ │ ├── lambdas_dmd23722b.d │ │ ├── mangling_definitions.d │ │ ├── module_ctor.d │ │ └── switch_ICE_gh1638_bar.d │ ├── int128.d │ ├── lambdas_dmd23722.d │ ├── lambdas_gh3648.d │ ├── lambdas_gh3648b.d │ ├── ldc_style_asm_in_inline_d_function.d │ ├── lifetime_local_variables.d │ ├── linker_directives_linux.d │ ├── linker_directives_mac.d │ ├── linker_directives_win.d │ ├── llvm_used_1.d │ ├── mangling.d │ ├── mangling_gh1519.d │ ├── mangling_raw.d │ ├── mangling_real_real.d │ ├── nested_gh2960.d │ ├── nested_gh3556.d │ ├── nested_lazy_gh2302.d │ ├── nested_nrvo_gh3883.d │ ├── newlib_assert.d │ ├── no_abi_blit_for_nonpod.d │ ├── no_init_symbols_for_zeroinit_structs.d │ ├── noplt.d │ ├── nothrow.d │ ├── output_s_affect_codegen.d │ ├── pointer_offsets_gh4362.d │ ├── pragma_LDC_extern_weak.d │ ├── pragma_no_typeinfo.d │ ├── ptr_16_bit.d │ ├── return_statement.d │ ├── rvo.d │ ├── simd_alignment.d │ ├── simd_unaligned.d │ ├── sret_thunk_gh3329.d │ ├── static_array_huge.d │ ├── static_array_init.d │ ├── static_typeid_gh1540.d │ ├── switch_ICE_gh1638.d │ ├── union.d │ ├── unknown_critical_section_size.d │ ├── varargs.d │ ├── variadic_thunk_gh2613.d │ ├── vastart_vaend_gh1744.d │ ├── vector_abi_x86.d │ ├── vector_init.d │ ├── vector_intrinsics_gh2962.d │ ├── vector_ops.d │ ├── wasi.d │ ├── wasm_emscripten.d │ ├── xtensa.d │ └── zerolengtharray_gh1611.d ├── compilable │ ├── arch64bit_abi32bit_gh3802.d │ ├── c_masm.c │ ├── captured_nonpassed_params.d │ ├── ctfe_math.d │ ├── dcompute.d │ ├── gh1741.d │ ├── gh1906.d │ ├── gh1933.d │ ├── gh2033.d │ ├── gh2415.d │ ├── gh2422.d │ ├── gh2458.d │ ├── gh2471.d │ ├── gh2777.d │ ├── gh2782.d │ ├── gh2808.d │ ├── gh2849.d │ ├── gh2859.d │ ├── gh2932.d │ ├── gh2988.d │ ├── gh2996.d │ ├── gh3194.d │ ├── gh3243.d │ ├── gh3250.d │ ├── gh3324.d │ ├── gh3496.d │ ├── gh3990.d │ ├── gh4266.d │ ├── gh4309.d │ ├── gh4489.d │ ├── gh4646.d │ ├── gh4719.d │ ├── gh4734.d │ ├── gh4927.d │ ├── gh4993.d │ ├── inputs │ │ ├── bar │ │ │ └── bla.di │ │ ├── foo │ │ │ └── bla.di │ │ ├── gh1741b.d │ │ ├── gh1906b.d │ │ ├── gh2422a.d │ │ ├── gh2777b.d │ │ └── gh2782b.d │ ├── intrinsics_imports.d │ ├── no-integrated-as.d │ ├── objc_gh2387.d │ ├── objc_gh2388.d │ └── union_voidinit.d ├── debuginfo │ ├── args_cdb.d │ ├── baseclass_cdb.d │ ├── basictypes_cdb.d │ ├── classtypes_gdb.d │ ├── enum_of_functions.d │ ├── enums_cdb.d │ ├── gline_tables_only.d │ ├── gline_tables_only2.d │ ├── gline_tables_only3.d │ ├── inputs │ │ ├── import_a.d │ │ └── import_b.d │ ├── msvc_dwarf.d │ ├── msvc_eh.d │ ├── msvc_no_colinfo.d │ ├── nested_cdb.d │ ├── nested_gdb.d │ ├── print_gdb.d │ ├── scopes_cdb.d │ ├── srcname.d │ ├── strings_cdb.d │ └── vector_cdb.d ├── dmd │ ├── .gitignore │ ├── CMakeLists.txt │ ├── README │ ├── README.md │ ├── compilable │ │ ├── 99bottles.d │ │ ├── README.md │ │ ├── Test16206.d │ │ ├── a3682.d │ │ ├── aggr_alignment.d │ │ ├── aliasassign.d │ │ ├── aliasdecl.d │ │ ├── alignas.c │ │ ├── aligndefault.d │ │ ├── alignment.d │ │ ├── always_inline.i │ │ ├── arraytopointer.c │ │ ├── art4769.d │ │ ├── atomic_loadstore_shared_classes.d │ │ ├── b11118.d │ │ ├── b12001.d │ │ ├── b1215.d │ │ ├── b12504.d │ │ ├── b15206.d │ │ ├── b15428.d │ │ ├── b16244.d │ │ ├── b16346.d │ │ ├── b16355.d │ │ ├── b16382.d │ │ ├── b16483.d │ │ ├── b16598.d │ │ ├── b16697.d │ │ ├── b16976.d │ │ ├── b17111.d │ │ ├── b17651.d │ │ ├── b18197.d │ │ ├── b18242.d │ │ ├── b18489.d │ │ ├── b19002.d │ │ ├── b19294.d │ │ ├── b19432.d │ │ ├── b19442.d │ │ ├── b19775.d │ │ ├── b19829.d │ │ ├── b20045.d │ │ ├── b20067.d │ │ ├── b20243.d │ │ ├── b20758.d │ │ ├── b20780.d │ │ ├── b20833.d │ │ ├── b20885.d │ │ ├── b20938.d │ │ ├── b21285.d │ │ ├── b23620.d │ │ ├── b33.d │ │ ├── b6227.d │ │ ├── b6395.d │ │ ├── b9490.d │ │ ├── backendfloatoptim.d │ │ ├── betterCarray.d │ │ ├── betterCinline.d │ │ ├── betterCswitch.d │ │ ├── betterc.d │ │ ├── bug11735.d │ │ ├── bug20796.d │ │ ├── bug21196.d │ │ ├── bug6963.d │ │ ├── callconv.d │ │ ├── casmmangling.d │ │ ├── casttuple.d │ │ ├── cattributes.i │ │ ├── ccompile.d │ │ ├── cdcmp.d │ │ ├── cet_disabled.d │ │ ├── cet_ibt.d │ │ ├── checkaction-context-assert-0.d │ │ ├── checkimports3.d │ │ ├── chkformat.d │ │ ├── cimport.c │ │ ├── cimports2.i │ │ ├── cmain.d │ │ ├── commontype.d │ │ ├── compile1.d │ │ ├── const.d │ │ ├── copyCtor2.d │ │ ├── covariant_override.d │ │ ├── cpp_abi_tag_unused.d │ │ ├── cppflags.c │ │ ├── cppmangle.d │ │ ├── cppmangle2.d │ │ ├── cppmangle3.d │ │ ├── cppmangle_abitag.d │ │ ├── ctests1.c │ │ ├── ctests2.c │ │ ├── ctfe_math.d │ │ ├── ctfesimd.d │ │ ├── ctod.i │ │ ├── cvariadic.i │ │ ├── d_ident_c99.d │ │ ├── dbitfield.d │ │ ├── ddoc1.d │ │ ├── ddoc10.d │ │ ├── ddoc10236.d │ │ ├── ddoc10236b.d │ │ ├── ddoc10325.d │ │ ├── ddoc10334.d │ │ ├── ddoc10366.d │ │ ├── ddoc10367.d │ │ ├── ddoc10869.d │ │ ├── ddoc10870.d │ │ ├── ddoc11.d │ │ ├── ddoc11479.d │ │ ├── ddoc11511.d │ │ ├── ddoc11823.d │ │ ├── ddoc12706.d │ │ ├── ddoc12745.d │ │ ├── ddoc13.d │ │ ├── ddoc13270.d │ │ ├── ddoc13502.d │ │ ├── ddoc13645.d │ │ ├── ddoc14.d │ │ ├── ddoc14383.d │ │ ├── ddoc14413.d │ │ ├── ddoc14633.d │ │ ├── ddoc14778.d │ │ ├── ddoc15475.d │ │ ├── ddoc17697.d │ │ ├── ddoc18361.d │ │ ├── ddoc198.d │ │ ├── ddoc19814.d │ │ ├── ddoc2.d │ │ ├── ddoc2273.d │ │ ├── ddoc24871.d │ │ ├── ddoc3.d │ │ ├── ddoc4.d │ │ ├── ddoc4162.d │ │ ├── ddoc4899.d │ │ ├── ddoc5.d │ │ ├── ddoc5446.d │ │ ├── ddoc5446a.d │ │ ├── ddoc5446b.d │ │ ├── ddoc6.d │ │ ├── ddoc648.d │ │ ├── ddoc6491.d │ │ ├── ddoc7.d │ │ ├── ddoc7555.d │ │ ├── ddoc7656.d │ │ ├── ddoc7715.d │ │ ├── ddoc7795.d │ │ ├── ddoc8.d │ │ ├── ddoc8271.d │ │ ├── ddoc8739.d │ │ ├── ddoc9.d │ │ ├── ddoc9037.d │ │ ├── ddoc9155.d │ │ ├── ddoc9305.d │ │ ├── ddoc9369.d │ │ ├── ddoc9475.d │ │ ├── ddoc9497a.d │ │ ├── ddoc9497b.d │ │ ├── ddoc9497c.d │ │ ├── ddoc9497d.d │ │ ├── ddoc9676a.d │ │ ├── ddoc9676b.d │ │ ├── ddoc9727.d │ │ ├── ddoc9764.sh │ │ ├── ddoc9789.d │ │ ├── ddoc9903.d │ │ ├── ddocYear.d │ │ ├── ddoc_bom_UTF8.d │ │ ├── ddoc_markdown_breaks.d │ │ ├── ddoc_markdown_code.d │ │ ├── ddoc_markdown_emphasis.d │ │ ├── ddoc_markdown_escapes.d │ │ ├── ddoc_markdown_headings.d │ │ ├── ddoc_markdown_links.d │ │ ├── ddoc_markdown_lists.d │ │ ├── ddoc_markdown_quote.d │ │ ├── ddoc_markdown_tables.d │ │ ├── ddoc_markdown_tables_22285.d │ │ ├── ddocbackticks.d │ │ ├── ddocunittest.d │ │ ├── debugInference.d │ │ ├── debug_statement_attributes.d │ │ ├── debuginfo.d │ │ ├── defa.d │ │ ├── depmsg.d │ │ ├── deprecate14283.d │ │ ├── deprecated_override.d │ │ ├── deprecatedinref.d │ │ ├── deprecationlimit.d │ │ ├── depsOutput21238_foo.d │ │ ├── derivedarray.d │ │ ├── diag11066.d │ │ ├── diag12598.d │ │ ├── diag20916.d │ │ ├── diag3243.d │ │ ├── dip22.d │ │ ├── dip22d.d │ │ ├── disable_new.d │ │ ├── dlangui_crash.d │ │ ├── dmdcliflags.sh │ │ ├── dtoh_21217.d │ │ ├── dtoh_AliasDeclaration.d │ │ ├── dtoh_AliasDeclaration_98.d │ │ ├── dtoh_AnonDeclaration.d │ │ ├── dtoh_CPPNamespaceDeclaration.d │ │ ├── dtoh_ClassDeclaration.d │ │ ├── dtoh_StructDeclaration.d │ │ ├── dtoh_TemplateDeclaration.d │ │ ├── dtoh_UnionDeclaration.d │ │ ├── dtoh_VarDeclaration.d │ │ ├── dtoh_cpp98_compat.d │ │ ├── dtoh_enum.d │ │ ├── dtoh_enum_cpp98.d │ │ ├── dtoh_expressions.d │ │ ├── dtoh_extern_type.d │ │ ├── dtoh_forwarding.d │ │ ├── dtoh_functions.d │ │ ├── dtoh_ignored.d │ │ ├── dtoh_invalid_identifiers.d │ │ ├── dtoh_mangling.d │ │ ├── dtoh_names.d │ │ ├── dtoh_protection.d │ │ ├── dtoh_required_symbols.d │ │ ├── dtoh_special_enum.d │ │ ├── dtoh_unittest_block.d │ │ ├── dtoh_verbose.d │ │ ├── dtoh_windows.d │ │ ├── dtorfields.d │ │ ├── empty_file.d │ │ ├── emptygenmain.d │ │ ├── emptystatement.d │ │ ├── enumbase.c │ │ ├── enumbasearithmetic.d │ │ ├── exception.d │ │ ├── extra-files │ │ │ ├── build23499.d │ │ │ ├── c6395.d │ │ │ ├── c6815.d │ │ │ ├── cdcmp.out │ │ │ ├── checkaction-context-assert-0.d.cg │ │ │ ├── ctod.di │ │ │ ├── d6815.d │ │ │ ├── ddoc1.html │ │ │ ├── ddoc10.html │ │ │ ├── ddoc10325.html │ │ │ ├── ddoc10334.html │ │ │ ├── ddoc10366.html │ │ │ ├── ddoc10367.ddoc │ │ │ ├── ddoc10367.html │ │ │ ├── ddoc10869.html │ │ │ ├── ddoc10870.html │ │ │ ├── ddoc11.html │ │ │ ├── ddoc11479.html │ │ │ ├── ddoc11511.html │ │ │ ├── ddoc11823.html │ │ │ ├── ddoc12706.html │ │ │ ├── ddoc12745.html │ │ │ ├── ddoc13.html │ │ │ ├── ddoc13270.html │ │ │ ├── ddoc13645.html │ │ │ ├── ddoc14.html │ │ │ ├── ddoc14383.html │ │ │ ├── ddoc14413.html │ │ │ ├── ddoc14778.html │ │ │ ├── ddoc15475.html │ │ │ ├── ddoc17169.html │ │ │ ├── ddoc17697.html │ │ │ ├── ddoc18361.html │ │ │ ├── ddoc198.ddoc │ │ │ ├── ddoc198.html │ │ │ ├── ddoc19814.html │ │ │ ├── ddoc2.html │ │ │ ├── ddoc2273.html │ │ │ ├── ddoc24171.dd │ │ │ ├── ddoc24871.html │ │ │ ├── ddoc3.ddoc │ │ │ ├── ddoc3.html │ │ │ ├── ddoc4.html │ │ │ ├── ddoc4162.html │ │ │ ├── ddoc5.html │ │ │ ├── ddoc5446.html │ │ │ ├── ddoc6.html │ │ │ ├── ddoc648.html │ │ │ ├── ddoc6491.html │ │ │ ├── ddoc7.html │ │ │ ├── ddoc7555.html │ │ │ ├── ddoc7656.html │ │ │ ├── ddoc7715.html │ │ │ ├── ddoc7795.html │ │ │ ├── ddoc8.html │ │ │ ├── ddoc8271.html │ │ │ ├── ddoc8739.html │ │ │ ├── ddoc9.html │ │ │ ├── ddoc9037.html │ │ │ ├── ddoc9155.html │ │ │ ├── ddoc9305.html │ │ │ ├── ddoc9369.ddoc │ │ │ ├── ddoc9369.html │ │ │ ├── ddoc9475.html │ │ │ ├── ddoc9497a.ddoc │ │ │ ├── ddoc9497a.html │ │ │ ├── ddoc9497b.ddoc │ │ │ ├── ddoc9497b.html │ │ │ ├── ddoc9497c.ddoc │ │ │ ├── ddoc9497c.html │ │ │ ├── ddoc9497d.ddoc │ │ │ ├── ddoc9497d.html │ │ │ ├── ddoc9676a.ddoc │ │ │ ├── ddoc9676a.html │ │ │ ├── ddoc9676b.html │ │ │ ├── ddoc9727.html │ │ │ ├── ddoc9764.dd │ │ │ ├── ddoc9764.html │ │ │ ├── ddoc9789.html │ │ │ ├── ddoc9903.html │ │ │ ├── ddocAny-postscript.sh │ │ │ ├── ddocYear-postscript.sh │ │ │ ├── ddocYear.html │ │ │ ├── ddoc_bom_UTF8.html │ │ │ ├── ddoc_markdown_breaks.html │ │ │ ├── ddoc_markdown_breaks_verbose.html │ │ │ ├── ddoc_markdown_code.html │ │ │ ├── ddoc_markdown_code_verbose.html │ │ │ ├── ddoc_markdown_emphasis.html │ │ │ ├── ddoc_markdown_emphasis_verbose.html │ │ │ ├── ddoc_markdown_escapes.html │ │ │ ├── ddoc_markdown_headings.html │ │ │ ├── ddoc_markdown_headings_verbose.html │ │ │ ├── ddoc_markdown_links.html │ │ │ ├── ddoc_markdown_links_verbose.html │ │ │ ├── ddoc_markdown_lists.html │ │ │ ├── ddoc_markdown_lists_verbose.html │ │ │ ├── ddoc_markdown_quote.html │ │ │ ├── ddoc_markdown_quote_verbose.html │ │ │ ├── ddoc_markdown_tables.html │ │ │ ├── ddoc_markdown_tables_22285.html │ │ │ ├── ddoc_markdown_tables_verbose.html │ │ │ ├── ddocbackticks.html │ │ │ ├── ddocunittest.html │ │ │ ├── dtoh_imports.d │ │ │ ├── dtoh_imports2.d │ │ │ ├── e6815.d │ │ │ ├── empty.conf │ │ │ ├── emptymain.d │ │ │ ├── example7190 │ │ │ │ ├── controllers │ │ │ │ │ └── HomeController.d │ │ │ │ └── models │ │ │ │ │ └── HomeModel.d │ │ │ ├── header1.d │ │ │ ├── header1.di │ │ │ ├── header17125.d │ │ │ ├── header18365.d │ │ │ ├── header1i.di │ │ │ ├── header2.d │ │ │ ├── header2.di │ │ │ ├── header2i.di │ │ │ ├── header3.d │ │ │ ├── imp12624.d │ │ │ ├── imp9057.d │ │ │ ├── imp9057_2.d │ │ │ ├── issue23548 │ │ │ │ └── imports │ │ │ │ │ └── imp23548.d │ │ │ ├── json-postscript.sh │ │ │ ├── json.json │ │ │ ├── json2.json │ │ │ ├── jsonCompilerInfo.json │ │ │ ├── json_nosource.json │ │ │ ├── ldc_output_filenames │ │ │ │ ├── foo.d │ │ │ │ ├── imp │ │ │ │ │ └── foo.d │ │ │ │ └── main.d │ │ │ ├── makedeps-import-codemixin.txt │ │ │ ├── makedeps-import.txt │ │ │ ├── minimal │ │ │ │ ├── object.d │ │ │ │ └── verify_symbols.sh │ │ │ ├── objdump-postscript.sh │ │ │ ├── pkgDIP37 │ │ │ │ ├── datetime │ │ │ │ │ ├── common.d │ │ │ │ │ └── package.d │ │ │ │ └── test17629 │ │ │ │ │ ├── common.di │ │ │ │ │ └── package.di │ │ │ ├── pkgDIP37_10302 │ │ │ │ ├── liba.d │ │ │ │ ├── libb.d │ │ │ │ └── package.d │ │ │ ├── pkgDIP37_10354 │ │ │ │ ├── mbar.d │ │ │ │ ├── mfoo.d │ │ │ │ └── package.d │ │ │ ├── pkgDIP37_10421 │ │ │ │ ├── algo │ │ │ │ │ ├── mod.d │ │ │ │ │ └── package.d │ │ │ │ └── except.d │ │ │ ├── rdeps7016a.d │ │ │ ├── rdeps7016b.d │ │ │ ├── serenity7190 │ │ │ │ └── core │ │ │ │ │ ├── Controller.d │ │ │ │ │ └── Model.d │ │ │ ├── test14894a.d │ │ │ ├── test14894main.d │ │ │ ├── test16080b.d │ │ │ ├── test19266.d │ │ │ ├── test19376.di │ │ │ ├── test19463.d │ │ │ ├── test20280a.d │ │ │ ├── test21331.d │ │ │ ├── test21359a.d │ │ │ ├── test21359b.d │ │ │ ├── test23626a.d │ │ │ ├── test23626b.d │ │ │ ├── test6461 │ │ │ │ ├── a.d │ │ │ │ ├── b.d │ │ │ │ ├── main.d │ │ │ │ └── tmpl.d │ │ │ ├── test9680dllmain.d │ │ │ ├── test9680main.d │ │ │ ├── test9680winmain.d │ │ │ ├── testcdefines.i.cg │ │ │ ├── vcg-ast-arraylength-postscript.sh │ │ │ └── vcg-ast.d.cg │ │ ├── fail137.d │ │ ├── fail260.d │ │ ├── fieldwise.d │ │ ├── filefullpath_18911.d │ │ ├── fix13165.d │ │ ├── fix17123.d │ │ ├── fix17145.d │ │ ├── fix17335.d │ │ ├── fix17635.d │ │ ├── fix17686.d │ │ ├── fix20416.d │ │ ├── fix21585.d │ │ ├── fix21647.d │ │ ├── fix21684.d │ │ ├── fix22180.d │ │ ├── fix22291.d │ │ ├── fix24187.c │ │ ├── forward1.d │ │ ├── ftimetrace.d │ │ ├── futurexf.d │ │ ├── fwdref21063.d │ │ ├── header18364.d │ │ ├── header18365.d │ │ ├── iasm_labeloperand.d │ │ ├── ice10040.d │ │ ├── ice10431a.d │ │ ├── ice10431b.d │ │ ├── ice10486.d │ │ ├── ice10770.d │ │ ├── ice11054.d │ │ ├── ice11300.d │ │ ├── ice11596.d │ │ ├── ice11610.d │ │ ├── ice11777.d │ │ ├── ice11906.d │ │ ├── ice12002.d │ │ ├── ice12554.d │ │ ├── ice12956.d │ │ ├── ice13071.d │ │ ├── ice13088.d │ │ ├── ice13245.d │ │ ├── ice13323.d │ │ ├── ice13403.d │ │ ├── ice13792.d │ │ ├── ice13819.d │ │ ├── ice13874.d │ │ ├── ice13886.d │ │ ├── ice13920.d │ │ ├── ice13968.d │ │ ├── ice14075.d │ │ ├── ice14739.d │ │ ├── ice1524.d │ │ ├── ice15333.d │ │ ├── ice15760.d │ │ ├── ice15789.d │ │ ├── ice15992.d │ │ ├── ice20044.d │ │ ├── ice20092.d │ │ ├── ice20415.d │ │ ├── ice6538.d │ │ ├── ice8392.d │ │ ├── ice854.d │ │ ├── ice9663.d │ │ ├── iconv_class_array.d │ │ ├── ident_UAX31.c │ │ ├── ident_UAX31.d │ │ ├── ident_all.c │ │ ├── ident_all.d │ │ ├── ident_c11.c │ │ ├── ident_c11.d │ │ ├── ident_c99.c │ │ ├── implicitconv.d │ │ ├── import_exp.d │ │ ├── imports │ │ │ ├── a12506.d │ │ │ ├── a12511.d │ │ │ ├── a12567.d │ │ │ ├── a13226.d │ │ │ ├── a14528.d │ │ │ ├── a15333.d │ │ │ ├── a15760.d │ │ │ ├── a15856.d │ │ │ ├── a18911.d │ │ │ ├── a313.d │ │ │ ├── a313templatemixin1.d │ │ │ ├── a313templatemixin2.d │ │ │ ├── a314.d │ │ │ ├── a8392.d │ │ │ ├── aliasdump.d │ │ │ ├── art4769a.d │ │ │ ├── art4769b.d │ │ │ ├── asmmerge.c │ │ │ ├── b313.d │ │ │ ├── b33a.d │ │ │ ├── b3682.d │ │ │ ├── bug8922.d │ │ │ ├── c23789.i │ │ │ ├── c314.d │ │ │ ├── checkimports3a.d │ │ │ ├── checkimports3b.d │ │ │ ├── checkimports3c.d │ │ │ ├── cimports2a.i │ │ │ ├── cimports2b.i │ │ │ ├── cstuff3.c │ │ │ ├── defaa.d │ │ │ ├── defab.d │ │ │ ├── defac.d │ │ │ ├── defad.d │ │ │ ├── defines.c │ │ │ ├── depsOutput21238_bar.d │ │ │ ├── depsOutput21238_baz_cond.d │ │ │ ├── depsOutput21238_baz_moduleimport.d │ │ │ ├── depsOutput21238_baz_pragmalib.d │ │ │ ├── depsOutput21238_baz_stringimport.d │ │ │ ├── depsOutput21238_qux.d │ │ │ ├── diag12598a.d │ │ │ ├── dip22.d │ │ │ ├── dip22d.d │ │ │ ├── dip22e.d │ │ │ ├── f313.d │ │ │ ├── file23499.d │ │ │ ├── foofunc.d │ │ │ ├── foofunc2.d │ │ │ ├── format23327.d │ │ │ ├── format23327 │ │ │ │ └── write.d │ │ │ ├── fwdref12201a.d │ │ │ ├── fwdref2_test17548.d │ │ │ ├── fwdref9514.d │ │ │ ├── g313.d │ │ │ ├── g313public.d │ │ │ ├── g313staticif.d │ │ │ ├── g313stringmixin.d │ │ │ ├── g313templatemixin.d │ │ │ ├── ice11054a.d │ │ │ ├── ice11300a.d │ │ │ ├── ice13403a.d │ │ │ ├── imp12242a.d │ │ │ ├── imp12242a1.d │ │ │ ├── imp12242a2.d │ │ │ ├── imp12242b.d │ │ │ ├── imp12242b1.d │ │ │ ├── imp12242b2.d │ │ │ ├── imp15490a.d │ │ │ ├── imp15490b.d │ │ │ ├── imp15907.d │ │ │ ├── imp16080.d │ │ │ ├── imp16085.d │ │ │ ├── imp16085b.d │ │ │ ├── imp16088.d │ │ │ ├── imp16460.d │ │ │ ├── imp16798.d │ │ │ ├── imp17434a.d │ │ │ ├── imp17434b.d │ │ │ ├── imp18127a.c │ │ │ ├── imp18127b.c │ │ │ ├── imp20344.c │ │ │ ├── imp20499.c │ │ │ ├── imp21832.d │ │ │ ├── imp22122.d │ │ │ ├── imp22625.c │ │ │ ├── imp22665.c │ │ │ ├── imp22734.c │ │ │ ├── imp23548.c │ │ │ ├── imp23662.c │ │ │ ├── imp23812.c │ │ │ ├── imp24022.c │ │ │ ├── impcimport.c │ │ │ ├── impfieldwise.d │ │ │ ├── include_unittest │ │ │ │ ├── compiled_lib.d │ │ │ │ ├── compiled_unittest_lib.d │ │ │ │ └── skipped_unittest_lib.d │ │ │ ├── issue21614a.d │ │ │ ├── jsonimport1.d │ │ │ ├── jsonimport2.d │ │ │ ├── jsonimport3.d │ │ │ ├── jsonimport4.d │ │ │ ├── ldc_github_1698a.d │ │ │ ├── ldc_github_247a.d │ │ │ ├── ldc_github_662b.d │ │ │ ├── ldc_github_662c.d │ │ │ ├── ldc_github_662d.d │ │ │ ├── ldc_github_739a.d │ │ │ ├── ldc_github_739b.d │ │ │ ├── ldc_github_821a.d │ │ │ ├── library.c │ │ │ ├── makedeps_a.d │ │ │ ├── pkg11847 │ │ │ │ ├── mod11847.d │ │ │ │ └── package.d │ │ │ ├── pkg16044 │ │ │ │ ├── package.d │ │ │ │ └── sub │ │ │ │ │ └── package.d │ │ │ ├── pkg16701 │ │ │ │ └── Package.d │ │ │ ├── pkg20008 │ │ │ │ ├── package.d │ │ │ │ ├── submod.d │ │ │ │ └── subpkg │ │ │ │ │ ├── package.d │ │ │ │ │ └── subsubmod.d │ │ │ ├── pkg20537 │ │ │ │ └── package.d │ │ │ ├── pkg22952 │ │ │ │ └── package.d │ │ │ ├── pkg313 │ │ │ │ └── c313.d │ │ │ ├── pkgmod313 │ │ │ │ ├── mod.d │ │ │ │ └── package.d │ │ │ ├── pkgmodule │ │ │ │ ├── package.d │ │ │ │ └── plainmodule.d │ │ │ ├── plainpackage │ │ │ │ └── plainmodule.d │ │ │ ├── pr9471a.d │ │ │ ├── pr9471b.d │ │ │ ├── pr9471c.d │ │ │ ├── pr9471d.d │ │ │ ├── protectionimp.d │ │ │ ├── stdio4003.d │ │ │ ├── test10375a.d │ │ │ ├── test10752.d │ │ │ ├── test11225b.d │ │ │ ├── test11225c.d │ │ │ ├── test11563core_bitop.d │ │ │ ├── test11563std_array.d │ │ │ ├── test11563std_range.d │ │ │ ├── test11563std_traits.d │ │ │ ├── test1238a.d │ │ │ ├── test1238b.d │ │ │ ├── test13242a.d │ │ │ ├── test13242b.d │ │ │ ├── test13582.d │ │ │ ├── test14666a.d │ │ │ ├── test14666b.d │ │ │ ├── test14954_implementation.d │ │ │ ├── test15150a.d │ │ │ ├── test15150b.d │ │ │ ├── test15371.d │ │ │ ├── test15785.d │ │ │ ├── test15857a.d │ │ │ ├── test15857b.d │ │ │ ├── test15857c.d │ │ │ ├── test16214b.d │ │ │ ├── test16348.d │ │ │ ├── test16709a.d │ │ │ ├── test16709b.d │ │ │ ├── test16709c.d │ │ │ ├── test16709d.d │ │ │ ├── test17441foo │ │ │ │ ├── bar.d │ │ │ │ └── package.d │ │ │ ├── test17541_2.d │ │ │ ├── test17541_3.d │ │ │ ├── test1754a.d │ │ │ ├── test1754b.d │ │ │ ├── test17991a │ │ │ │ ├── a.d │ │ │ │ └── package.d │ │ │ ├── test18651 │ │ │ │ ├── algorithm.d │ │ │ │ ├── b.d │ │ │ │ ├── c.d │ │ │ │ └── datetime.d │ │ │ ├── test18771a.d │ │ │ ├── test18771b.d │ │ │ ├── test18771c.d │ │ │ ├── test18771d.d │ │ │ ├── test19187.d │ │ │ ├── test19344.d │ │ │ ├── test19609a.d │ │ │ ├── test19609b.d │ │ │ ├── test19609c.d │ │ │ ├── test19656a.d │ │ │ ├── test19656b.d │ │ │ ├── test19656c.d │ │ │ ├── test19657b.d │ │ │ ├── test19657c.d │ │ │ ├── test19657d.d │ │ │ ├── test19657e.d │ │ │ ├── test19657f.d │ │ │ ├── test19657g.d │ │ │ ├── test19746a.d │ │ │ ├── test19746b.d │ │ │ ├── test19746c.d │ │ │ ├── test19746d.d │ │ │ ├── test19750a.d │ │ │ ├── test19750b.d │ │ │ ├── test19750c.d │ │ │ ├── test19750d.d │ │ │ ├── test1imp.d │ │ │ ├── test20151a │ │ │ │ └── b │ │ │ │ │ └── c │ │ │ │ │ └── c.d │ │ │ ├── test20530a.d │ │ │ ├── test21098_phobos.d │ │ │ ├── test21098b.d │ │ │ ├── test21227 │ │ │ │ ├── ..foo │ │ │ │ │ └── a.txt │ │ │ │ ├── a..b.txt │ │ │ │ └── a.txt │ │ │ ├── test21299 │ │ │ │ ├── func.d │ │ │ │ ├── mtype.d │ │ │ │ └── rootstringtable.d │ │ │ ├── test21464a.d │ │ │ ├── test21501b.d │ │ │ ├── test21501c.d │ │ │ ├── test22685b.d │ │ │ ├── test22685c.d │ │ │ ├── test22714a.d │ │ │ ├── test22714b.d │ │ │ ├── test23034b.c │ │ │ ├── test23490frop.d │ │ │ ├── test23490pop.d │ │ │ ├── test23490zoo.d │ │ │ ├── test23597.di │ │ │ ├── test24280b.i │ │ │ ├── test24390a.d │ │ │ ├── test24390b.d │ │ │ ├── test24511_c.c │ │ │ ├── test25a.d │ │ │ ├── test25b.d │ │ │ ├── test2991.d │ │ │ ├── test4003a.d │ │ │ ├── test50a.d │ │ │ ├── test55a.d │ │ │ ├── test59a.d │ │ │ ├── test59b.d │ │ │ ├── test6013.d │ │ │ ├── test61a.d │ │ │ ├── test62a.d │ │ │ ├── test63a.d │ │ │ ├── test66a.d │ │ │ ├── test67a.d │ │ │ ├── test68a.d │ │ │ ├── test70.d │ │ │ ├── test71.d │ │ │ ├── test72a.d │ │ │ ├── test72b.d │ │ │ ├── test72c.d │ │ │ ├── test7491a.d │ │ │ ├── test7491b.d │ │ │ ├── test9276decl.d │ │ │ ├── test9276expr.d │ │ │ ├── test9276hash.d │ │ │ ├── test9276parser.d │ │ │ ├── test9276sem.d │ │ │ ├── test9276type.d │ │ │ ├── test9276util.d │ │ │ ├── test9276visitors.d │ │ │ ├── test9399a.d │ │ │ ├── test9436aggr.d │ │ │ ├── test9436interp.d │ │ │ ├── test9436node.d │ │ │ ├── test9436type.d │ │ │ ├── test9672a.d │ │ │ ├── test9692b.d │ │ │ ├── test9919a.d │ │ │ ├── test9919b.d │ │ │ ├── test9919c.d │ │ │ ├── testcontracts.d │ │ │ ├── testcov1a.d │ │ │ ├── testcov1b.d │ │ │ ├── testlambda1.d │ │ │ ├── testlambda2.d │ │ │ ├── typecons4003.d │ │ │ ├── u20958.d │ │ │ ├── udamodule1.d │ │ │ ├── udamodule2.d │ │ │ ├── udamodule2a.d │ │ │ ├── vcg_ast_import.d │ │ │ └── wax16798.d │ │ ├── importtests.d │ │ ├── include_unittest.d │ │ ├── infer_stc.d │ │ ├── inliner.d │ │ ├── inliner2.d │ │ ├── interpret3.d │ │ ├── interpret4.d │ │ ├── interpret5.d │ │ ├── isZeroInit.d │ │ ├── isexpalias.d │ │ ├── isreturnonstack.d │ │ ├── issue12520.d │ │ ├── issue15478.d │ │ ├── issue15574.sh │ │ ├── issue15795.d │ │ ├── issue15818.d │ │ ├── issue16020.d │ │ ├── issue16044.d │ │ ├── issue16472.d │ │ ├── issue17167.sh │ │ ├── issue18097.d │ │ ├── issue19243.sh │ │ ├── issue19724.sh │ │ ├── issue19925.d │ │ ├── issue20339.d │ │ ├── issue20362.d │ │ ├── issue20599.d │ │ ├── issue20618.d │ │ ├── issue20704.d │ │ ├── issue20705.d │ │ ├── issue20915.d │ │ ├── issue20995.d │ │ ├── issue21203.d │ │ ├── issue21328.d │ │ ├── issue21340.d │ │ ├── issue21378.d │ │ ├── issue21390.d │ │ ├── issue21614.d │ │ ├── issue21662.d │ │ ├── issue21726.d │ │ ├── issue21813a.d │ │ ├── issue21813b.d │ │ ├── issue21880.d │ │ ├── issue21882.d │ │ ├── issue21905.d │ │ ├── issue22130.d │ │ ├── issue22646.d │ │ ├── issue22682.d │ │ ├── issue22854.d │ │ ├── issue22975.d │ │ ├── issue23391.d │ │ ├── issue23567.d │ │ ├── issue23597.d │ │ ├── issue24018.d │ │ ├── issue24174.d │ │ ├── issue24316.d │ │ ├── issue24399.d │ │ ├── issue24409.d │ │ ├── issue24566.d │ │ ├── issue24830.sh │ │ ├── issue9884.d │ │ ├── json.d │ │ ├── json2.d │ │ ├── json20742.d │ │ ├── jsonCompilerInfo.d │ │ ├── jsonNoOutFile.d │ │ ├── jsonStdout.d │ │ ├── json_nosource.sh │ │ ├── jsonc.i │ │ ├── ldc_aggregate.d │ │ ├── ldc_github_1211.d │ │ ├── ldc_github_1292.d │ │ ├── ldc_github_1308.d │ │ ├── ldc_github_1548.d │ │ ├── ldc_github_1581.d │ │ ├── ldc_github_1582.d │ │ ├── ldc_github_1698.d │ │ ├── ldc_github_1723.d │ │ ├── ldc_github_247.d │ │ ├── ldc_github_256.d │ │ ├── ldc_github_257.d │ │ ├── ldc_github_266.d │ │ ├── ldc_github_355.d │ │ ├── ldc_github_378.d │ │ ├── ldc_github_419.d │ │ ├── ldc_github_421.d │ │ ├── ldc_github_454.d │ │ ├── ldc_github_461.d │ │ ├── ldc_github_497.d │ │ ├── ldc_github_637.d │ │ ├── ldc_github_662.d │ │ ├── ldc_github_739.d │ │ ├── ldc_github_791.d │ │ ├── ldc_github_821.d │ │ ├── ldc_github_823.d │ │ ├── ldc_github_841.d │ │ ├── ldc_github_953.d │ │ ├── ldc_github_965.d │ │ ├── ldc_github_982.d │ │ ├── ldc_output_filenames.sh │ │ ├── ldmd_response_file.sh │ │ ├── line.d │ │ ├── makedeps_exe.d │ │ ├── makedeps_file.d │ │ ├── makedeps_lib.d │ │ ├── makedeps_obj.d │ │ ├── minimal.d │ │ ├── minimal2.d │ │ ├── minimal3.d │ │ ├── mixin.d │ │ ├── mixinTemplateMangling.d │ │ ├── mixintempl.d │ │ ├── mixintype.d │ │ ├── mixintype2.d │ │ ├── must_use_assign.d │ │ ├── must_use_initialize.d │ │ ├── must_use_not_reserved.d │ │ ├── must_use_opassign.d │ │ ├── must_use_opopassign.d │ │ ├── must_use_opunary.d │ │ ├── must_use_suppress.d │ │ ├── named_argumens_struct.d │ │ ├── named_arguments.d │ │ ├── named_arguments_auto_ref.d │ │ ├── named_arguments_ifti.d │ │ ├── needsmod.d │ │ ├── needsmods.d │ │ ├── needspkg.d │ │ ├── needspkgmod.d │ │ ├── nested_struct_20499.c │ │ ├── nested_template_constraints.d │ │ ├── nestedtempl0.d │ │ ├── nestedtempl1.d │ │ ├── noderef.d │ │ ├── nogc.d │ │ ├── noreturn.c │ │ ├── noreturn1.d │ │ ├── noreturn3.d │ │ ├── noreturn_main.d │ │ ├── ob1.d │ │ ├── ob2.d │ │ ├── objc_class.d │ │ ├── objc_gfunc.d │ │ ├── objc_interface_final_19654.d │ │ ├── obsolete_body.d │ │ ├── paranoia_ctfe.d │ │ ├── parens_inc.d │ │ ├── placementnew.d │ │ ├── posixbitfields.c │ │ ├── pr9374.d │ │ ├── pr9383.d │ │ ├── pr9471.d │ │ ├── pragmainline2.d │ │ ├── pragmamangle1.d │ │ ├── pragmamangle2.d │ │ ├── pragmapack.c │ │ ├── previewall.d │ │ ├── previewhelp.d │ │ ├── previewin.d │ │ ├── profilegc_typename.d │ │ ├── protattr.d │ │ ├── protection.d │ │ ├── protection │ │ │ ├── aggregate │ │ │ │ └── mod14275.d │ │ │ ├── basic │ │ │ │ ├── mod1.d │ │ │ │ └── tests.d │ │ │ ├── bug │ │ │ │ └── bug14275.d │ │ │ ├── issue20796 │ │ │ │ └── package.d │ │ │ ├── issue21726 │ │ │ │ ├── format │ │ │ │ │ └── package.d │ │ │ │ ├── package.d │ │ │ │ └── typecons.d │ │ │ ├── subpkg │ │ │ │ ├── explicit.d │ │ │ │ └── tests.d │ │ │ └── subpkg2 │ │ │ │ └── tests.d │ │ ├── pull6815.d │ │ ├── quadratic.d │ │ ├── rdeps7016.d │ │ ├── readmodify_structclass.d │ │ ├── reinterpretctfe.d │ │ ├── returnscope_without_safe.d │ │ ├── revert_dip1000.d │ │ ├── reverthelp.d │ │ ├── riia_ctor.d │ │ ├── rvalue2.d │ │ ├── rvalueref.d │ │ ├── sarif_success_test.d │ │ ├── scope.d │ │ ├── scope_infer_array_assign.d │ │ ├── scope_tuple_expansion.d │ │ ├── scopeinfer.d │ │ ├── segfaultgolf.d │ │ ├── shared.d │ │ ├── shared_destructor.d │ │ ├── sharedopt.d │ │ ├── shortened_methods.d │ │ ├── sroa.d │ │ ├── staticforeach.d │ │ ├── statictemplatethis.d │ │ ├── stc_traits.d │ │ ├── stdcheaders.c │ │ ├── struct_decls_20499.c │ │ ├── sw_transition_complex.d │ │ ├── sw_transition_field.d │ │ ├── sw_transition_tls.d │ │ ├── test1.d │ │ ├── test10028.d │ │ ├── test10056.d │ │ ├── test10066.d │ │ ├── test10073.d │ │ ├── test10186.d │ │ ├── test10312.d │ │ ├── test10375.d │ │ ├── test10520.d │ │ ├── test10695.d │ │ ├── test10726.d │ │ ├── test10752.d │ │ ├── test10981.d │ │ ├── test10992.d │ │ ├── test10992b.d │ │ ├── test10993.d │ │ ├── test11137.d │ │ ├── test11169.d │ │ ├── test11225a.d │ │ ├── test11259.d │ │ ├── test11371.d │ │ ├── test11559upgradeoptlink.d │ │ ├── test11563.d │ │ ├── test11656.d │ │ ├── test1170.d │ │ ├── test11720.d │ │ ├── test11824.d │ │ ├── test11847.d │ │ ├── test11914.d │ │ ├── test11980.d │ │ ├── test12009.d │ │ ├── test1238.d │ │ ├── test12496.d │ │ ├── test12511.d │ │ ├── test12523.d │ │ ├── test12527.d │ │ ├── test12567a.d │ │ ├── test12567b.d │ │ ├── test12567c.d │ │ ├── test12567d.d │ │ ├── test12567e.d │ │ ├── test12593.d │ │ ├── test12624.d │ │ ├── test12807.d │ │ ├── test12967.d │ │ ├── test12979a.d │ │ ├── test12979b.d │ │ ├── test13008.d │ │ ├── test13053.d │ │ ├── test13123.d │ │ ├── test13193.d │ │ ├── test13194.d │ │ ├── test13226.d │ │ ├── test13242.d │ │ ├── test13281.d │ │ ├── test13512.d │ │ ├── test1353.d │ │ ├── test13582a.d │ │ ├── test13582b.d │ │ ├── test13600.d │ │ ├── test13668.d │ │ ├── test13858.d │ │ ├── test13902.d │ │ ├── test13953.d │ │ ├── test14114.d │ │ ├── test14198.d │ │ ├── test14275.d │ │ ├── test14317.d │ │ ├── test14375.d │ │ ├── test14528.d │ │ ├── test14666.d │ │ ├── test14740.d │ │ ├── test14747.d │ │ ├── test14781.d │ │ ├── test14831.d │ │ ├── test14838.d │ │ ├── test14894.sh │ │ ├── test14929.d │ │ ├── test14954.d │ │ ├── test14962.d │ │ ├── test14973.d │ │ ├── test15019.d │ │ ├── test15056.d │ │ ├── test15150.d │ │ ├── test15225.d │ │ ├── test15292.d │ │ ├── test15326.d │ │ ├── test1537.d │ │ ├── test15371.d │ │ ├── test15389_x.d │ │ ├── test15389_y.d │ │ ├── test15402.d │ │ ├── test15464.d │ │ ├── test1547.d │ │ ├── test15490.d │ │ ├── test15519_x.d │ │ ├── test15519_y.d │ │ ├── test15550.d │ │ ├── test15565.d │ │ ├── test15578.d │ │ ├── test15618.d │ │ ├── test15668.d │ │ ├── test15711.d │ │ ├── test15712.d │ │ ├── test15762.d │ │ ├── test15780.d │ │ ├── test15784.d │ │ ├── test15785.d │ │ ├── test15802.d │ │ ├── test15856.d │ │ ├── test15898.d │ │ ├── test15907.d │ │ ├── test16002.d │ │ ├── test16013a.d │ │ ├── test16013b.d │ │ ├── test16031.d │ │ ├── test16037.d │ │ ├── test16080.d │ │ ├── test16083.d │ │ ├── test16085.d │ │ ├── test16107.d │ │ ├── test16183.d │ │ ├── test16213.d │ │ ├── test16214a.d │ │ ├── test16225.d │ │ ├── test16273.d │ │ ├── test16292.d │ │ ├── test16303.d │ │ ├── test16340.d │ │ ├── test16348.d │ │ ├── test16460.d │ │ ├── test16495.d │ │ ├── test16525.d │ │ ├── test16540.d │ │ ├── test16563.d │ │ ├── test16570.d │ │ ├── test16572.d │ │ ├── test16574.d │ │ ├── test16578a.d │ │ ├── test16578b.d │ │ ├── test16607.d │ │ ├── test16621.d │ │ ├── test16627.d │ │ ├── test16635.d │ │ ├── test16657.d │ │ ├── test16685.d │ │ ├── test16701.d │ │ ├── test16709.d │ │ ├── test1673.d │ │ ├── test16747.d │ │ ├── test16776.d │ │ ├── test16798.d │ │ ├── test17057.d │ │ ├── test17059.d │ │ ├── test17130.d │ │ ├── test17143.d │ │ ├── test17146.d │ │ ├── test17168.d │ │ ├── test17215.d │ │ ├── test17339.d │ │ ├── test17349.d │ │ ├── test17351.d │ │ ├── test17352.d │ │ ├── test17373.d │ │ ├── test17399.d │ │ ├── test17419.d │ │ ├── test17421.d │ │ ├── test17434.d │ │ ├── test17434a.d │ │ ├── test17441.d │ │ ├── test17468.d │ │ ├── test17512.d │ │ ├── test1754.d │ │ ├── test17541.d │ │ ├── test17545.d │ │ ├── test17548.d │ │ ├── test17590.d │ │ ├── test17752.d │ │ ├── test17782.d │ │ ├── test17791.d │ │ ├── test17793.d │ │ ├── test17807.d │ │ ├── test17819.d │ │ ├── test17853.d │ │ ├── test17870.d │ │ ├── test17908.d │ │ ├── test17942.d │ │ ├── test17970.d │ │ ├── test17991.d │ │ ├── test18000.d │ │ ├── test18020.d │ │ ├── test18026.d │ │ ├── test18030.d │ │ ├── test18099.d │ │ ├── test18115.d │ │ ├── test18127.d │ │ ├── test18199.d │ │ ├── test18216.d │ │ ├── test18251.d │ │ ├── test18367.sh │ │ ├── test18385b.d │ │ ├── test18430.d │ │ ├── test18468.d │ │ ├── test18474.d │ │ ├── test18493.d │ │ ├── test18572.d │ │ ├── test18578.d │ │ ├── test18584.d │ │ ├── test18645.d │ │ ├── test18646.d │ │ ├── test18651a.d │ │ ├── test18670.d │ │ ├── test18694.d │ │ ├── test18737.d │ │ ├── test18771.d │ │ ├── test18775.d │ │ ├── test1878a.d │ │ ├── test18821.d │ │ ├── test18871.d │ │ ├── test18905.d │ │ ├── test18936.d │ │ ├── test18951a.d │ │ ├── test18951b.d │ │ ├── test18955.d │ │ ├── test18976.d │ │ ├── test19014.d │ │ ├── test19066.d │ │ ├── test19081.d │ │ ├── test19097.d │ │ ├── test19108.d │ │ ├── test19145.d │ │ ├── test19187.d │ │ ├── test19203.d │ │ ├── test19224.d │ │ ├── test19227.d │ │ ├── test19266.sh │ │ ├── test19268.d │ │ ├── test19292.d │ │ ├── test19295.d │ │ ├── test19315.d │ │ ├── test19320.d │ │ ├── test19376.sh │ │ ├── test19409.d │ │ ├── test19463.sh │ │ ├── test19464.d │ │ ├── test19482.d │ │ ├── test19491.d │ │ ├── test19499.d │ │ ├── test19519.d │ │ ├── test19540.d │ │ ├── test19557.d │ │ ├── test19574.d │ │ ├── test19585.d │ │ ├── test19609.d │ │ ├── test19631.d │ │ ├── test19652.d │ │ ├── test19656.d │ │ ├── test19657a.d │ │ ├── test19688.d │ │ ├── test19713.d │ │ ├── test19728.d │ │ ├── test19731.d │ │ ├── test19746.d │ │ ├── test19750.d │ │ ├── test19754.d │ │ ├── test19778.d │ │ ├── test19804.d │ │ ├── test19809.d │ │ ├── test19833.d │ │ ├── test19840.d │ │ ├── test19873.d │ │ ├── test19895.d │ │ ├── test19912.d │ │ ├── test19936.d │ │ ├── test19941.d │ │ ├── test19954.d │ │ ├── test19970.d │ │ ├── test20000.d │ │ ├── test20008.d │ │ ├── test20021.d │ │ ├── test20039.d │ │ ├── test20051.d │ │ ├── test20063.d │ │ ├── test20065.d │ │ ├── test20100.d │ │ ├── test20136.d │ │ ├── test20138.d │ │ ├── test20151a.d │ │ ├── test20181.d │ │ ├── test20201.d │ │ ├── test20236.d │ │ ├── test20280.d │ │ ├── test20296.d │ │ ├── test20318.d │ │ ├── test20326.d │ │ ├── test20344.d │ │ ├── test20367.d │ │ ├── test20388.d │ │ ├── test20406.d │ │ ├── test20410.d │ │ ├── test20417.d │ │ ├── test20420.d │ │ ├── test20423.c │ │ ├── test20427.d │ │ ├── test20472.c │ │ ├── test20488.d │ │ ├── test20499.d │ │ ├── test20502.c │ │ ├── test20530.d │ │ ├── test20537.d │ │ ├── test20596.d │ │ ├── test20653.d │ │ ├── test20656.d │ │ ├── test20661.d │ │ ├── test20692.d │ │ ├── test20695.d │ │ ├── test20710.d │ │ ├── test20717.d │ │ ├── test20744.d │ │ ├── test20789.d │ │ ├── test20795.d │ │ ├── test20821.d │ │ ├── test20832.d │ │ ├── test20835.d │ │ ├── test20842.d │ │ ├── test20860.d │ │ ├── test20868.d │ │ ├── test20894.d │ │ ├── test20906.d │ │ ├── test20909.d │ │ ├── test20923.d │ │ ├── test20958.d │ │ ├── test20963.c │ │ ├── test20990.d │ │ ├── test21050.d │ │ ├── test21058.d │ │ ├── test21073.d │ │ ├── test21098.d │ │ ├── test21150.c │ │ ├── test21153.d │ │ ├── test21177.d │ │ ├── test21179.d │ │ ├── test21196.d │ │ ├── test21197.d │ │ ├── test21225.c │ │ ├── test21243.d │ │ ├── test21244.c │ │ ├── test21246.c │ │ ├── test21255.d │ │ ├── test21267.c │ │ ├── test21271.c │ │ ├── test21282.d │ │ ├── test21299a.d │ │ ├── test21299b.d │ │ ├── test21299c.d │ │ ├── test21299d.d │ │ ├── test21330.d │ │ ├── test21331.sh │ │ ├── test21359.sh │ │ ├── test21372.d │ │ ├── test21398.d │ │ ├── test21414.d │ │ ├── test21416.d │ │ ├── test21432.d │ │ ├── test21438.d │ │ ├── test21464.d │ │ ├── test21476.d │ │ ├── test21501a.d │ │ ├── test21504a.d │ │ ├── test21504b.d │ │ ├── test21514.d │ │ ├── test21543.d │ │ ├── test21591.d │ │ ├── test21659.d │ │ ├── test21661.d │ │ ├── test21667.d │ │ ├── test21668.d │ │ ├── test21672.d │ │ ├── test21680.d │ │ ├── test21719.d │ │ ├── test21742.d │ │ ├── test21743.d │ │ ├── test21753.d │ │ ├── test21794.d │ │ ├── test21802.d │ │ ├── test21806.d │ │ ├── test21812.d │ │ ├── test21828.d │ │ ├── test21830.d │ │ ├── test21831.d │ │ ├── test21832.d │ │ ├── test21835.d │ │ ├── test21850.d │ │ ├── test21861.d │ │ ├── test21876.d │ │ ├── test21898.d │ │ ├── test21956.d │ │ ├── test21975.d │ │ ├── test22006.d │ │ ├── test22122.d │ │ ├── test22133.d │ │ ├── test22214.d │ │ ├── test22224.d │ │ ├── test22226.d │ │ ├── test22228.d │ │ ├── test22254.d │ │ ├── test22292.d │ │ ├── test22294.i │ │ ├── test22346.c │ │ ├── test22388.d │ │ ├── test22390.d │ │ ├── test22410.d │ │ ├── test22420.d │ │ ├── test22421.d │ │ ├── test22510.d │ │ ├── test22558.d │ │ ├── test22559.i │ │ ├── test22577.c │ │ ├── test22593.d │ │ ├── test22607.c │ │ ├── test22619.d │ │ ├── test22625.d │ │ ├── test22626.d │ │ ├── test22632.d │ │ ├── test22635.d │ │ ├── test22638.d │ │ ├── test22639.d │ │ ├── test22646.d │ │ ├── test22665.d │ │ ├── test22674.d │ │ ├── test22676.d │ │ ├── test22685.d │ │ ├── test22698.c │ │ ├── test22699.c │ │ ├── test22705.c │ │ ├── test22714.d │ │ ├── test22724.i │ │ ├── test22725.c │ │ ├── test22727.c │ │ ├── test22728.c │ │ ├── test22734.d │ │ ├── test22739.d │ │ ├── test22755.c │ │ ├── test22757.c │ │ ├── test22758.c │ │ ├── test22760.d │ │ ├── test22761.c │ │ ├── test22784.d │ │ ├── test22793.c │ │ ├── test22807.c │ │ ├── test22808.c │ │ ├── test22809.c │ │ ├── test22813.d │ │ ├── test22825.d │ │ ├── test22842.c │ │ ├── test22859.d │ │ ├── test22860.d │ │ ├── test22865.d │ │ ├── test22875.i │ │ ├── test22877.c │ │ ├── test22878.c │ │ ├── test22884.c │ │ ├── test22885.c │ │ ├── test22886.c │ │ ├── test22887.c │ │ ├── test22892.c │ │ ├── test22894.c │ │ ├── test22895.c │ │ ├── test22904.c │ │ ├── test22916.d │ │ ├── test22919.d │ │ ├── test22924.c │ │ ├── test22927.c │ │ ├── test22928.c │ │ ├── test22929.c │ │ ├── test22931.c │ │ ├── test22933.c │ │ ├── test22952.d │ │ ├── test22955.c │ │ ├── test22970.c │ │ ├── test22971.c │ │ ├── test22973.i │ │ ├── test22988.d │ │ ├── test22997.d │ │ ├── test23002.c │ │ ├── test23004.c │ │ ├── test23008.c │ │ ├── test23029.c │ │ ├── test23030.c │ │ ├── test23031.c │ │ ├── test23034.c │ │ ├── test23038.c │ │ ├── test23039.c │ │ ├── test23044.c │ │ ├── test23047.d │ │ ├── test23054.c │ │ ├── test23066.c │ │ ├── test23068.d │ │ ├── test23076.d │ │ ├── test23082.d │ │ ├── test23087.d │ │ ├── test23089.d │ │ ├── test23097.d │ │ ├── test23105.d │ │ ├── test23142.d │ │ ├── test23145.d │ │ ├── test23166.d │ │ ├── test23168.d │ │ ├── test23169.d │ │ ├── test23172.d │ │ ├── test23173.d │ │ ├── test23174.d │ │ ├── test23207.i │ │ ├── test23214.c │ │ ├── test23217.c │ │ ├── test23235.d │ │ ├── test23256.d │ │ ├── test23258.d │ │ ├── test23262.d │ │ ├── test23306.d │ │ ├── test23327.d │ │ ├── test23342.i │ │ ├── test23380.d │ │ ├── test23386.d │ │ ├── test23407.i │ │ ├── test23431.d │ │ ├── test23431_minimal.d │ │ ├── test23433.d │ │ ├── test23439.d │ │ ├── test23481.d │ │ ├── test23490.d │ │ ├── test23497.d │ │ ├── test23499.d │ │ ├── test23509.i │ │ ├── test23529.d │ │ ├── test23532.d │ │ ├── test23533.d │ │ ├── test23534.d │ │ ├── test23548.d │ │ ├── test23583.c │ │ ├── test23586.d │ │ ├── test23587.d │ │ ├── test23589.d │ │ ├── test23598.d │ │ ├── test23606.d │ │ ├── test23616.c │ │ ├── test23617.d │ │ ├── test23622.c │ │ ├── test23626.d │ │ ├── test23639.d │ │ ├── test23651.d │ │ ├── test23662.d │ │ ├── test23676.d │ │ ├── test23679.d │ │ ├── test23705.d │ │ ├── test23789.d │ │ ├── test23799.d │ │ ├── test23812.d │ │ ├── test23857.d │ │ ├── test23862.d │ │ ├── test23863.d │ │ ├── test23866.i │ │ ├── test23870.i │ │ ├── test23871.c │ │ ├── test23874.d │ │ ├── test23875.c │ │ ├── test23879.c │ │ ├── test23912.d │ │ ├── test23913.d │ │ ├── test23923.c │ │ ├── test23935.i │ │ ├── test23936.i │ │ ├── test23948.d │ │ ├── test23951.d │ │ ├── test23958.c │ │ ├── test23965.d │ │ ├── test23966.d │ │ ├── test23978.d │ │ ├── test23979.d │ │ ├── test23986.d │ │ ├── test24013.d │ │ ├── test24022.d │ │ ├── test24055.d │ │ ├── test24061.d │ │ ├── test24066.d │ │ ├── test24069.i │ │ ├── test24107.d │ │ ├── test24109.d │ │ ├── test24118.d │ │ ├── test24130.c │ │ ├── test24171.sh │ │ ├── test24280.i │ │ ├── test24337.d │ │ ├── test24338.d │ │ ├── test24390.d │ │ ├── test24479.d │ │ ├── test24504.c │ │ ├── test24505.c │ │ ├── test24511.d │ │ ├── test24560.d │ │ ├── test24594.c │ │ ├── test24733.c │ │ ├── test24760.d │ │ ├── test24762.d │ │ ├── test25.d │ │ ├── test2991.d │ │ ├── test3004.d │ │ ├── test313a.d │ │ ├── test313b.d │ │ ├── test313c.d │ │ ├── test313d.d │ │ ├── test313e.d │ │ ├── test313f.d │ │ ├── test313g.d │ │ ├── test314.d │ │ ├── test318.d │ │ ├── test324.d │ │ ├── test3543.d │ │ ├── test3673.d │ │ ├── test3775.d │ │ ├── test4003.d │ │ ├── test4090.d │ │ ├── test4364.d │ │ ├── test4375.d │ │ ├── test50.d │ │ ├── test5227.d │ │ ├── test55.d │ │ ├── test59.d │ │ ├── test5973.d │ │ ├── test6013.d │ │ ├── test602.d │ │ ├── test6056a.d │ │ ├── test6056b.d │ │ ├── test6056c.d │ │ ├── test6089.d │ │ ├── test61.d │ │ ├── test62.d │ │ ├── test63.d │ │ ├── test6319.d │ │ ├── test6395.d │ │ ├── test6461.sh │ │ ├── test6534.d │ │ ├── test6541.d │ │ ├── test6552.d │ │ ├── test66.d │ │ ├── test67.d │ │ ├── test6777.d │ │ ├── test68.d │ │ ├── test69.d │ │ ├── test6999.d │ │ ├── test70.d │ │ ├── test7065.d │ │ ├── test71.d │ │ ├── test7172.d │ │ ├── test7190.d │ │ ├── test72.d │ │ ├── test7252.d │ │ ├── test7399.d │ │ ├── test7491.d │ │ ├── test7524.d │ │ ├── test7569.d │ │ ├── test7754.d │ │ ├── test7815.d │ │ ├── test7886.d │ │ ├── test8038.d │ │ ├── test8041.d │ │ ├── test8296.d │ │ ├── test8509.d │ │ ├── test8513.d │ │ ├── test8543.d │ │ ├── test8631.d │ │ ├── test8675.d │ │ ├── test8696.d │ │ ├── test8717.d │ │ ├── test8802.d │ │ ├── test8898.d │ │ ├── test8922a.d │ │ ├── test8922b.d │ │ ├── test8922c.d │ │ ├── test8922d.d │ │ ├── test8922e.d │ │ ├── test8922f.d │ │ ├── test8937.d │ │ ├── test8959.d │ │ ├── test9029.d │ │ ├── test9057.d │ │ ├── test9209.d │ │ ├── test9274.d │ │ ├── test9276.d │ │ ├── test9278a.d │ │ ├── test9278b.d │ │ ├── test930.d │ │ ├── test9369.d │ │ ├── test9399.d │ │ ├── test9434.d │ │ ├── test9435.d │ │ ├── test9436.d │ │ ├── test9526.d │ │ ├── test9554.d │ │ ├── test9565.d │ │ ├── test9570.d │ │ ├── test9613.d │ │ ├── test9639.d │ │ ├── test9672.d │ │ ├── test9680.sh │ │ ├── test9692.d │ │ ├── test9692a.d │ │ ├── test9701.d │ │ ├── test9766.d │ │ ├── test9818.d │ │ ├── test9919.d │ │ ├── testAliasLookup.d │ │ ├── testCpCtor.d │ │ ├── testDIP37.d │ │ ├── testDIP37_10302.d │ │ ├── testDIP37_10354.d │ │ ├── testDIP37_10421.d │ │ ├── testDIP37a.d │ │ ├── testDIP42.d │ │ ├── testInference.d │ │ ├── testVRP.d │ │ ├── test__ctfeWrite.d │ │ ├── testcdefines.i │ │ ├── testcheckimports.d │ │ ├── testclidflags.sh │ │ ├── testcolor.sh │ │ ├── testcomplex.i │ │ ├── testcontracts.d │ │ ├── testcorrectthis.d │ │ ├── testcov1.d │ │ ├── testcstuff1.c │ │ ├── testcstuff2.c │ │ ├── testcstuff3.d │ │ ├── testcstuff4.i │ │ ├── testdefines.d │ │ ├── testdip1008.d │ │ ├── testexpression.d │ │ ├── testfptr.d │ │ ├── testfwdref.d │ │ ├── testgotoskips.d │ │ ├── testheader1.d │ │ ├── testheader12567a.d │ │ ├── testheader12567b.d │ │ ├── testheader17125.d │ │ ├── testheader1i.d │ │ ├── testheader2.d │ │ ├── testheader2i.d │ │ ├── testheader3.d │ │ ├── testheaderudamodule.d │ │ ├── testhelp.d │ │ ├── testimport12242.d │ │ ├── testlambdacomp.d │ │ ├── testlibmain.d │ │ ├── testnoinline.c │ │ ├── testos.d │ │ ├── testparse.d │ │ ├── testpostblit.d │ │ ├── testprofile.d │ │ ├── testpull1810.d │ │ ├── testsctreturn.d │ │ ├── testtempl2.d │ │ ├── traits.d │ │ ├── traits_getFunctionAttributes.d │ │ ├── transition_in.d │ │ ├── transitionhelp.d │ │ ├── typeid_name.d │ │ ├── uda.d │ │ ├── uda_lambda.d │ │ ├── udamodule1.d │ │ ├── udamodule2.d │ │ ├── union_initialization.d │ │ ├── user_defined_attributes.d │ │ ├── valist.c │ │ ├── vararg.d │ │ ├── vastartend.c │ │ ├── vcg-ast-arraylength.d │ │ ├── vcg-ast.d │ │ ├── vcg_ast_compilable.d │ │ ├── verrors_spec.d │ │ ├── version.d │ │ ├── version_d_optimized.d │ │ ├── vgc1.d │ │ ├── vgc2.d │ │ ├── vgc3.d │ │ ├── vtemplates.d │ │ ├── vtemplates_list.d │ │ ├── warn12809.d │ │ ├── warn3882.d │ │ └── zerosize.d │ ├── dshell │ │ ├── README.md │ │ ├── cpp_header_gen.d │ │ ├── defaults.d │ │ ├── depsprot.d │ │ ├── dll.d │ │ ├── dll_cxx.d │ │ ├── dwarf.d │ │ ├── extra-files │ │ │ ├── cpp_header_gen │ │ │ │ ├── app.cpp │ │ │ │ └── library.d │ │ │ ├── defaults │ │ │ │ └── hello.d │ │ │ ├── depsprot.d │ │ │ ├── dll │ │ │ │ ├── dllmain.d │ │ │ │ ├── mydll.d │ │ │ │ └── testdll.d │ │ │ ├── dll_cxx │ │ │ │ ├── external │ │ │ │ │ └── binding.d │ │ │ │ ├── mydll.cpp │ │ │ │ └── testdll.d │ │ │ ├── dwarf │ │ │ │ ├── delegates.d │ │ │ │ ├── excepted_results │ │ │ │ │ ├── delegates.txt │ │ │ │ │ ├── fix21153.txt │ │ │ │ │ ├── fix21154.txt │ │ │ │ │ ├── fix21157.txt │ │ │ │ │ ├── fix21159.txt │ │ │ │ │ ├── fix21160.txt │ │ │ │ │ ├── fix22352.txt │ │ │ │ │ ├── fix22426.txt │ │ │ │ │ ├── fix22468.txt │ │ │ │ │ ├── fix22469.txt │ │ │ │ │ ├── fix22471.txt │ │ │ │ │ ├── fix22508.txt │ │ │ │ │ ├── immutable.txt │ │ │ │ │ ├── immutableVoid.txt │ │ │ │ │ ├── issue22423.txt │ │ │ │ │ └── testVersion.txt │ │ │ │ ├── fix21153.d │ │ │ │ ├── fix21154.d │ │ │ │ ├── fix21157.d │ │ │ │ ├── fix21159.d │ │ │ │ ├── fix21160.d │ │ │ │ ├── fix22352.d │ │ │ │ ├── fix22426.d │ │ │ │ ├── fix22468.d │ │ │ │ ├── fix22469.d │ │ │ │ ├── fix22471.d │ │ │ │ ├── fix22508.d │ │ │ │ ├── immutable.d │ │ │ │ ├── immutableVoid.d │ │ │ │ ├── issue22423.d │ │ │ │ └── testVersion.d │ │ │ ├── issue22804.d │ │ │ ├── issue22816.d │ │ │ ├── issue24111.c │ │ │ ├── linker_flag_with_spaces_a.d │ │ │ ├── linker_flag_with_spaces_b.d │ │ │ ├── mul9377a.d │ │ │ ├── mul9377b.d │ │ │ ├── multi9377.d │ │ │ ├── printenv.d │ │ │ ├── source_date_epoch.d │ │ │ ├── test6952 │ │ │ │ ├── main.d │ │ │ │ └── object.d │ │ │ └── test_shared.d │ │ ├── imports │ │ │ ├── depsprot_default.d │ │ │ ├── depsprot_private.d │ │ │ ├── depsprot_public.d │ │ │ ├── issue22804_1.d │ │ │ └── issue22804_2.d │ │ ├── issue20444_SOURCE_DATE_EPOCH.d │ │ ├── issue22804.d │ │ ├── issue22816.d │ │ ├── issue22817.d │ │ ├── issue24111.d │ │ ├── linker_flag_with_spaces.d │ │ ├── sameenv.d │ │ ├── test6952.d │ │ ├── test9377.d │ │ └── test_shared.d │ ├── dub_package │ │ ├── .gitignore │ │ ├── README.md │ │ ├── avg.d │ │ ├── frontend.d │ │ ├── frontend_file.d │ │ ├── impvisitor.d │ │ ├── lexer.d │ │ ├── retrieve_scope.d │ │ └── testfiles │ │ │ ├── correct.d │ │ │ └── testavg.d │ ├── fail_compilation │ │ ├── README.md │ │ ├── aa_init.d │ │ ├── aacmp10381.d │ │ ├── alias_instance_member.d │ │ ├── alias_instance_member2.d │ │ ├── aliasassign.d │ │ ├── aliasassign1.d │ │ ├── aliasassign2.d │ │ ├── alignas2.c │ │ ├── alignedext.i │ │ ├── alignedext2.i │ │ ├── already_defined.d │ │ ├── array_bool.d │ │ ├── attributediagnostic.d │ │ ├── attributediagnostic_nogc.d │ │ ├── attributediagnostic_nothrow.d │ │ ├── attributediagnostic_pure.d │ │ ├── attrpure.i │ │ ├── auto_ref_inout.d │ │ ├── b12504.d │ │ ├── b15069.d │ │ ├── b15875.d │ │ ├── b15909.d │ │ ├── b16967.d │ │ ├── b17285.d │ │ ├── b17918.d │ │ ├── b19523.d │ │ ├── b19685.d │ │ ├── b19691.d │ │ ├── b19691e.d │ │ ├── b19717.d │ │ ├── b19717a.d │ │ ├── b19730.d │ │ ├── b20011.d │ │ ├── b20780.d │ │ ├── b20875.d │ │ ├── b23686.d │ │ ├── b3841.d │ │ ├── b6227.d │ │ ├── betterc.d │ │ ├── binexperr.d │ │ ├── biterrors.d │ │ ├── biterrors2.d │ │ ├── biterrors3.d │ │ ├── biterrors4.d │ │ ├── biterrors5.d │ │ ├── bitfields1.c │ │ ├── bitfields2.c │ │ ├── bitintro.d │ │ ├── bool_cast.d │ │ ├── bug15613.d │ │ ├── bug16165.d │ │ ├── bug18743.d │ │ ├── bug19569.d │ │ ├── bug4283.d │ │ ├── bug5.d │ │ ├── bug5096.d │ │ ├── bug5b.d │ │ ├── bug8150a.d │ │ ├── bug8150b.d │ │ ├── bug8891.d │ │ ├── bug9631.d │ │ ├── call_function_type.d │ │ ├── callconst.d │ │ ├── cast_qual.d │ │ ├── casttuple.d │ │ ├── ccast.d │ │ ├── cconst1.c │ │ ├── cdeprecated.i │ │ ├── cenums.c │ │ ├── cerrors.d │ │ ├── checkimports2.d │ │ ├── chkformat.d │ │ ├── circ10280.d │ │ ├── class1.d │ │ ├── class2.d │ │ ├── code_global_scope.d │ │ ├── commaexp.d │ │ ├── compgoto.i │ │ ├── const_ctor.d │ │ ├── constraints_aggr.d │ │ ├── constraints_defs.d │ │ ├── constraints_func1.d │ │ ├── constraints_func2.d │ │ ├── constraints_func3.d │ │ ├── constraints_func4.d │ │ ├── constraints_tmpl.d │ │ ├── covariant_override.d │ │ ├── cpp_abi_tag.d │ │ ├── cpp_abi_tag2.d │ │ ├── cpp_cast.d │ │ ├── cppeh1.d │ │ ├── cppeh2.d │ │ ├── cppmangle.d │ │ ├── cppmangle2.d │ │ ├── cppvar.d │ │ ├── ctfe10989.d │ │ ├── ctfe10995.d │ │ ├── ctfe11467.d │ │ ├── ctfe13612.d │ │ ├── ctfe14207.d │ │ ├── ctfe14465.d │ │ ├── ctfe14731.d │ │ ├── ctfeblock.d │ │ ├── ctor_attr.d │ │ ├── ctor_self_assignment.d │ │ ├── ctypes.d │ │ ├── cwords.d │ │ ├── dassert.d │ │ ├── dbitfields.d │ │ ├── ddoc_18083.d │ │ ├── debugCaseDeclaration.d │ │ ├── dep_d1_ops.d │ │ ├── depmsg.d │ │ ├── depmsg15814.d │ │ ├── depmsg15815.d │ │ ├── deprecate12979a.d │ │ ├── deprecate12979b.d │ │ ├── deprecate12979c.d │ │ ├── deprecate12979d.d │ │ ├── deprecate1553.d │ │ ├── deprecate_getVirtualFunctions.d │ │ ├── deprecated6760.d │ │ ├── deprecatedImports.d │ │ ├── deprecatedTemplates.d │ │ ├── deprecations.d │ │ ├── deprecations_preview_in.d │ │ ├── diag10089.d │ │ ├── diag10099.d │ │ ├── diag10141.d │ │ ├── diag10169.d │ │ ├── diag10221.d │ │ ├── diag10221a.d │ │ ├── diag10319.d │ │ ├── diag10327.d │ │ ├── diag10359.d │ │ ├── diag10415.d │ │ ├── diag10688.d │ │ ├── diag10768.d │ │ ├── diag10783.d │ │ ├── diag10792.d │ │ ├── diag10805.d │ │ ├── diag10862.d │ │ ├── diag10926.d │ │ ├── diag10984.d │ │ ├── diag11078.d │ │ ├── diag11132.d │ │ ├── diag11198.d │ │ ├── diag11423.d │ │ ├── diag11425.d │ │ ├── diag11727.d │ │ ├── diag11756.d │ │ ├── diag11759.d │ │ ├── diag11769.d │ │ ├── diag11819a.d │ │ ├── diag11819b.d │ │ ├── diag11840.d │ │ ├── diag12063.d │ │ ├── diag12124.d │ │ ├── diag12280.d │ │ ├── diag12312.d │ │ ├── diag12380.d │ │ ├── diag12432.d │ │ ├── diag12480.d │ │ ├── diag12487.d │ │ ├── diag12640.d │ │ ├── diag12678.d │ │ ├── diag12777.d │ │ ├── diag12829.d │ │ ├── diag13028.d │ │ ├── diag13082.d │ │ ├── diag13109.d │ │ ├── diag13142.d │ │ ├── diag13215.d │ │ ├── diag13281.d │ │ ├── diag13320.d │ │ ├── diag13333.d │ │ ├── diag13528.d │ │ ├── diag13609a.d │ │ ├── diag13609b.d │ │ ├── diag13787.d │ │ ├── diag13884.d │ │ ├── diag13942.d │ │ ├── diag14102.d │ │ ├── diag14145.d │ │ ├── diag14163.d │ │ ├── diag14235.d │ │ ├── diag14818.d │ │ ├── diag14875.d │ │ ├── diag14876.d │ │ ├── diag15001.d │ │ ├── diag15186.d │ │ ├── diag15209.d │ │ ├── diag15235.d │ │ ├── diag15340.d │ │ ├── diag15411.d │ │ ├── diag1566.d │ │ ├── diag15669.d │ │ ├── diag15713.d │ │ ├── diag15974.d │ │ ├── diag16271.d │ │ ├── diag16499.d │ │ ├── diag16976.d │ │ ├── diag16977.d │ │ ├── diag1730.d │ │ ├── diag18460.d │ │ ├── diag18574.d │ │ ├── diag19022.d │ │ ├── diag19196.d │ │ ├── diag19225.d │ │ ├── diag20059.d │ │ ├── diag20268.d │ │ ├── diag20518.d │ │ ├── diag20888.d │ │ ├── diag21883.d │ │ ├── diag23295.d │ │ ├── diag23355.d │ │ ├── diag23384.d │ │ ├── diag2452.d │ │ ├── diag24812.d │ │ ├── diag3013.d │ │ ├── diag3438.d │ │ ├── diag3672.d │ │ ├── diag3672a.d │ │ ├── diag3673.d │ │ ├── diag3869.d │ │ ├── diag3913.d │ │ ├── diag4479.d │ │ ├── diag4528.d │ │ ├── diag4540.d │ │ ├── diag4596.d │ │ ├── diag5385.d │ │ ├── diag5450.d │ │ ├── diag6373.d │ │ ├── diag6539.d │ │ ├── diag6677.d │ │ ├── diag6699.d │ │ ├── diag6707.d │ │ ├── diag6717.d │ │ ├── diag6743.d │ │ ├── diag6796.d │ │ ├── diag7050a.d │ │ ├── diag7050b.d │ │ ├── diag7050c.d │ │ ├── diag7420.d │ │ ├── diag7477.d │ │ ├── diag7747.d │ │ ├── diag7998.d │ │ ├── diag8044.d │ │ ├── diag8101.d │ │ ├── diag8101b.d │ │ ├── diag8178.d │ │ ├── diag8318.d │ │ ├── diag8425.d │ │ ├── diag8510.d │ │ ├── diag8559.d │ │ ├── diag8648.d │ │ ├── diag8684.d │ │ ├── diag8697.d │ │ ├── diag8714.d │ │ ├── diag8777.d │ │ ├── diag8787.d │ │ ├── diag8825.d │ │ ├── diag8892.d │ │ ├── diag8894.d │ │ ├── diag8928.d │ │ ├── diag9004.d │ │ ├── diag9148.d │ │ ├── diag9191.d │ │ ├── diag9210a.d │ │ ├── diag9247.d │ │ ├── diag9250.d │ │ ├── diag9312.d │ │ ├── diag9357.d │ │ ├── diag9358.d │ │ ├── diag9398.d │ │ ├── diag9420.d │ │ ├── diag9451.d │ │ ├── diag9479.d │ │ ├── diag9620.d │ │ ├── diag9635.d │ │ ├── diag9679.d │ │ ├── diag9765.d │ │ ├── diag9831.d │ │ ├── diag9861.d │ │ ├── diag9880.d │ │ ├── diag9961.d │ │ ├── diag_cstyle.d │ │ ├── diag_debug_conditional.d │ │ ├── diag_err1.d │ │ ├── diag_funclit.d │ │ ├── diag_in_array.d │ │ ├── diag_ptr_conversion.d │ │ ├── diag_template_alias.d │ │ ├── diag_template_this.d │ │ ├── diagin.d │ │ ├── diaginref.d │ │ ├── dip22a.d │ │ ├── dip22b.d │ │ ├── dip22e.d │ │ ├── dip25.d │ │ ├── dip25flag.d │ │ ├── disable.d │ │ ├── disable_new.d │ │ ├── discard_value.d │ │ ├── dtor_attributes.d │ │ ├── dtorfields_attributes.d │ │ ├── e15876_1.d │ │ ├── e15876_2.d │ │ ├── e15876_3.d │ │ ├── e15876_4.d │ │ ├── e15876_5.d │ │ ├── e15876_6.d │ │ ├── e7804_1.d │ │ ├── e7804_2.d │ │ ├── editions.d │ │ ├── emptyModulePattern.d │ │ ├── empty_statement.d │ │ ├── enum9921.d │ │ ├── enum_auto_increment.d │ │ ├── enum_function.d │ │ ├── enum_init.d │ │ ├── enum_member.d │ │ ├── enumtype.c │ │ ├── enumtype2.c │ │ ├── extra-files │ │ │ ├── a14446.d │ │ │ ├── bar11453.d │ │ │ ├── fail12485.d │ │ │ ├── fail6592.d │ │ │ ├── fake.a │ │ │ ├── fake.lib │ │ │ ├── foo11453.d │ │ │ ├── makedeps-import.txt │ │ │ ├── makedeps_a.d │ │ │ ├── minimal │ │ │ │ └── object.d │ │ │ └── test23109 │ │ │ │ └── object.d │ │ ├── fail10.d │ │ ├── fail100.d │ │ ├── fail10082.d │ │ ├── fail101.d │ │ ├── fail10102.d │ │ ├── fail10115.d │ │ ├── fail10207.d │ │ ├── fail10254.d │ │ ├── fail10277.d │ │ ├── fail10285.d │ │ ├── fail10299.d │ │ ├── fail10346.d │ │ ├── fail104.d │ │ ├── fail10481.d │ │ ├── fail105.d │ │ ├── fail10528.d │ │ ├── fail10534.d │ │ ├── fail106.d │ │ ├── fail10630.d │ │ ├── fail10666.d │ │ ├── fail10806.d │ │ ├── fail109.d │ │ ├── fail10947.d │ │ ├── fail10964.d │ │ ├── fail10968.d │ │ ├── fail10980.d │ │ ├── fail11.d │ │ ├── fail110.d │ │ ├── fail11038.d │ │ ├── fail11042.d │ │ ├── fail111.d │ │ ├── fail11125.d │ │ ├── fail11151.d │ │ ├── fail11163.d │ │ ├── fail113.d │ │ ├── fail11355.d │ │ ├── fail11375.d │ │ ├── fail114.d │ │ ├── fail11426.d │ │ ├── fail11445.d │ │ ├── fail11453a.d │ │ ├── fail11453b.d │ │ ├── fail115.d │ │ ├── fail11503a.d │ │ ├── fail11503b.d │ │ ├── fail11503c.d │ │ ├── fail11503d.d │ │ ├── fail11510.d │ │ ├── fail11532.d │ │ ├── fail11542.d │ │ ├── fail11545.d │ │ ├── fail11552.d │ │ ├── fail11562.d │ │ ├── fail11591b.d │ │ ├── fail116.d │ │ ├── fail11653.d │ │ ├── fail117.d │ │ ├── fail11714.d │ │ ├── fail11746.d │ │ ├── fail11748.d │ │ ├── fail11751.d │ │ ├── fail118.d │ │ ├── fail12.d │ │ ├── fail120.d │ │ ├── fail12047.d │ │ ├── fail121.d │ │ ├── fail122.d │ │ ├── fail12236.d │ │ ├── fail12255.d │ │ ├── fail123.d │ │ ├── fail12378.d │ │ ├── fail124.d │ │ ├── fail12436.d │ │ ├── fail12485.sh │ │ ├── fail125.d │ │ ├── fail126.d │ │ ├── fail12604.d │ │ ├── fail12622.d │ │ ├── fail12635.d │ │ ├── fail12636.d │ │ ├── fail127.d │ │ ├── fail12730a.d │ │ ├── fail12730b.d │ │ ├── fail12744.d │ │ ├── fail12749.d │ │ ├── fail12764.d │ │ ├── fail12809.d │ │ ├── fail129.d │ │ ├── fail12901.d │ │ ├── fail12908.d │ │ ├── fail12932.d │ │ ├── fail13064.d │ │ ├── fail131.d │ │ ├── fail13116.d │ │ ├── fail13120.d │ │ ├── fail13123.d │ │ ├── fail13187.d │ │ ├── fail132.d │ │ ├── fail13203.d │ │ ├── fail133.d │ │ ├── fail13336a.d │ │ ├── fail13336b.d │ │ ├── fail134.d │ │ ├── fail13424.d │ │ ├── fail13434_m32.d │ │ ├── fail13434_m64.d │ │ ├── fail13435.d │ │ ├── fail13498.d │ │ ├── fail13574.d │ │ ├── fail13577.d │ │ ├── fail136.d │ │ ├── fail13601.d │ │ ├── fail13701.d │ │ ├── fail13756.d │ │ ├── fail13775.d │ │ ├── fail139.d │ │ ├── fail13902.d │ │ ├── fail13938.d │ │ ├── fail13939.d │ │ ├── fail14.d │ │ ├── fail14009.d │ │ ├── fail14089.d │ │ ├── fail142.d │ │ ├── fail14249.d │ │ ├── fail14277.d │ │ ├── fail143.d │ │ ├── fail14304.d │ │ ├── fail14343.d │ │ ├── fail144.d │ │ ├── fail14406.d │ │ ├── fail14416.d │ │ ├── fail145.d │ │ ├── fail14554.d │ │ ├── fail14669.d │ │ ├── fail14965.d │ │ ├── fail14997.d │ │ ├── fail15.d │ │ ├── fail150.d │ │ ├── fail15044.d │ │ ├── fail15068.d │ │ ├── fail15089.d │ │ ├── fail152.d │ │ ├── fail153.d │ │ ├── fail15361.d │ │ ├── fail154.d │ │ ├── fail15414.d │ │ ├── fail155.d │ │ ├── fail15535.d │ │ ├── fail15550.d │ │ ├── fail156.d │ │ ├── fail15616a.d │ │ ├── fail15616b.d │ │ ├── fail15616c.d │ │ ├── fail15616d.d │ │ ├── fail15626.d │ │ ├── fail15667.d │ │ ├── fail15691.d │ │ ├── fail15755.d │ │ ├── fail158.d │ │ ├── fail15896.d │ │ ├── fail159.d │ │ ├── fail16.d │ │ ├── fail160.d │ │ ├── fail16001.d │ │ ├── fail161.d │ │ ├── fail162.d │ │ ├── fail16206a.d │ │ ├── fail16206b.d │ │ ├── fail163.d │ │ ├── fail16575.d │ │ ├── fail16600.d │ │ ├── fail16689.d │ │ ├── fail16772.d │ │ ├── fail169.d │ │ ├── fail16997.d │ │ ├── fail17.d │ │ ├── fail170.d │ │ ├── fail17105.d │ │ ├── fail172.d │ │ ├── fail17275.d │ │ ├── fail17354.d │ │ ├── fail17419.d │ │ ├── fail17421.d │ │ ├── fail17491.d │ │ ├── fail17492.d │ │ ├── fail17502.d │ │ ├── fail17518.d │ │ ├── fail17570.d │ │ ├── fail176.d │ │ ├── fail17602.d │ │ ├── fail17612.d │ │ ├── fail17625.d │ │ ├── fail17630.d │ │ ├── fail17646.d │ │ ├── fail17689.d │ │ ├── fail177.d │ │ ├── fail17722a.d │ │ ├── fail17722b.d │ │ ├── fail17842.d │ │ ├── fail179.d │ │ ├── fail17927.d │ │ ├── fail17955.d │ │ ├── fail17969.d │ │ ├── fail17976.d │ │ ├── fail18.d │ │ ├── fail180.d │ │ ├── fail18057.d │ │ ├── fail18057b.d │ │ ├── fail18093.d │ │ ├── fail18143.d │ │ ├── fail18219.d │ │ ├── fail18228.d │ │ ├── fail18236.d │ │ ├── fail18243.d │ │ ├── fail183.d │ │ ├── fail18372.d │ │ ├── fail184.d │ │ ├── fail18417.d │ │ ├── fail185.d │ │ ├── fail18620.d │ │ ├── fail187.d │ │ ├── fail18719.d │ │ ├── fail188.d │ │ ├── fail18892.d │ │ ├── fail189.d │ │ ├── fail18938.d │ │ ├── fail18970.d │ │ ├── fail18979.d │ │ ├── fail18985.d │ │ ├── fail18994.d │ │ ├── fail190.d │ │ ├── fail1900.d │ │ ├── fail19038.d │ │ ├── fail19076.d │ │ ├── fail19098.d │ │ ├── fail19099.d │ │ ├── fail19103.d │ │ ├── fail19181.d │ │ ├── fail19182.d │ │ ├── fail192.d │ │ ├── fail19202.d │ │ ├── fail19209.d │ │ ├── fail193.d │ │ ├── fail19319a.d │ │ ├── fail19319b.d │ │ ├── fail19336.d │ │ ├── fail194.d │ │ ├── fail19441.d │ │ ├── fail19447.d │ │ ├── fail195.d │ │ ├── fail19520.d │ │ ├── fail196.d │ │ ├── fail19609.d │ │ ├── fail19687.d │ │ ├── fail19729.d │ │ ├── fail19744.d │ │ ├── fail19757_m32.d │ │ ├── fail19757_m64.d │ │ ├── fail19759.d │ │ ├── fail198.d │ │ ├── fail19881.d │ │ ├── fail19890a.d │ │ ├── fail19890b.d │ │ ├── fail19897.d │ │ ├── fail19898a.d │ │ ├── fail19898b.d │ │ ├── fail199.d │ │ ├── fail19911a.d │ │ ├── fail19911b.d │ │ ├── fail19911c.d │ │ ├── fail19912a.d │ │ ├── fail19912b.d │ │ ├── fail19912c.d │ │ ├── fail19912d.d │ │ ├── fail19912e.d │ │ ├── fail19913.d │ │ ├── fail19914.d │ │ ├── fail19915.d │ │ ├── fail19917.d │ │ ├── fail19919.d │ │ ├── fail19922.d │ │ ├── fail19923.d │ │ ├── fail19941.d │ │ ├── fail19948.d │ │ ├── fail1995.d │ │ ├── fail19955.d │ │ ├── fail19965.d │ │ ├── fail20.d │ │ ├── fail200.d │ │ ├── fail20000.d │ │ ├── fail20033.d │ │ ├── fail20040.d │ │ ├── fail20073.d │ │ ├── fail20084.d │ │ ├── fail201.d │ │ ├── fail20108.d │ │ ├── fail20163.d │ │ ├── fail20164.d │ │ ├── fail20183.d │ │ ├── fail202.d │ │ ├── fail203.d │ │ ├── fail20376.d │ │ ├── fail204.d │ │ ├── fail20448.d │ │ ├── fail20461.d │ │ ├── fail205.d │ │ ├── fail20538.d │ │ ├── fail20551.d │ │ ├── fail206.d │ │ ├── fail20609.d │ │ ├── fail20616.d │ │ ├── fail20637.d │ │ ├── fail20638.d │ │ ├── fail20658.d │ │ ├── fail20691.d │ │ ├── fail207.d │ │ ├── fail20714.d │ │ ├── fail20730a.d │ │ ├── fail20730b.d │ │ ├── fail20771.d │ │ ├── fail20772.d │ │ ├── fail20775.d │ │ ├── fail20779.d │ │ ├── fail208.d │ │ ├── fail20800.d │ │ ├── fail209.d │ │ ├── fail20965.d │ │ ├── fail21001.d │ │ ├── fail21045.d │ │ ├── fail21091a.d │ │ ├── fail21091b.d │ │ ├── fail21092.d │ │ ├── fail212.d │ │ ├── fail21206.d │ │ ├── fail21214.d │ │ ├── fail21227_posix.d │ │ ├── fail21227_win.d │ │ ├── fail21243.d │ │ ├── fail21275.d │ │ ├── fail213.d │ │ ├── fail21314.d │ │ ├── fail21414.d │ │ ├── fail215.d │ │ ├── fail21508.d │ │ ├── fail21508_2.d │ │ ├── fail21547.d │ │ ├── fail216.d │ │ ├── fail217.d │ │ ├── fail218.d │ │ ├── fail21830.d │ │ ├── fail21831.d │ │ ├── fail21832.d │ │ ├── fail21849.d │ │ ├── fail21868b.d │ │ ├── fail21885.d │ │ ├── fail21928.d │ │ ├── fail21928b.d │ │ ├── fail2195.d │ │ ├── fail21980.c │ │ ├── fail22.d │ │ ├── fail220.d │ │ ├── fail22006.d │ │ ├── fail22035.d │ │ ├── fail22039.d │ │ ├── fail22054.d │ │ ├── fail22075.d │ │ ├── fail22084.d │ │ ├── fail221.d │ │ ├── fail22118.d │ │ ├── fail22121.d │ │ ├── fail22121 │ │ │ └── imports │ │ │ │ └── test22121 │ │ │ │ └── package.d │ │ ├── fail22127.d │ │ ├── fail22133.d │ │ ├── fail22134.d │ │ ├── fail22138.d │ │ ├── fail22144.d │ │ ├── fail22151.d │ │ ├── fail22157.d │ │ ├── fail222.d │ │ ├── fail22202.d │ │ ├── fail223.d │ │ ├── fail22351.d │ │ ├── fail22366.d │ │ ├── fail224.d │ │ ├── fail22529.d │ │ ├── fail22570.d │ │ ├── fail22634.d │ │ ├── fail22729.d │ │ ├── fail22749.d │ │ ├── fail22780.d │ │ ├── fail228.d │ │ ├── fail22812.c │ │ ├── fail22825a.d │ │ ├── fail22825b.d │ │ ├── fail22827.d │ │ ├── fail22852.c │ │ ├── fail22853a.i │ │ ├── fail22853b.c │ │ ├── fail22857.d │ │ ├── fail22881.d │ │ ├── fail229.d │ │ ├── fail23.d │ │ ├── fail231.d │ │ ├── fail23108a.d │ │ ├── fail23108b.d │ │ ├── fail23109.d │ │ ├── fail23135.d │ │ ├── fail23151.d │ │ ├── fail23181.d │ │ ├── fail232.d │ │ ├── fail23406.d │ │ ├── fail23439.d │ │ ├── fail235.d │ │ ├── fail2350.d │ │ ├── fail23574.d │ │ ├── fail23591.d │ │ ├── fail236.d │ │ ├── fail23626a.d │ │ ├── fail23626b.d │ │ ├── fail237.d │ │ ├── fail23745.d │ │ ├── fail23760.d │ │ ├── fail23773.d │ │ ├── fail23816.d │ │ ├── fail23822.d │ │ ├── fail23826.d │ │ ├── fail23861.d │ │ ├── fail238_m32.d │ │ ├── fail238_m64.d │ │ ├── fail239.d │ │ ├── fail24.d │ │ ├── fail240.d │ │ ├── fail241.d │ │ ├── fail24208.d │ │ ├── fail24212.d │ │ ├── fail24213.d │ │ ├── fail24224.d │ │ ├── fail243.d │ │ ├── fail24301.d │ │ ├── fail24389.c │ │ ├── fail244.d │ │ ├── fail24422.c │ │ ├── fail24485.d │ │ ├── fail245.d │ │ ├── fail2450.d │ │ ├── fail2456.d │ │ ├── fail246.d │ │ ├── fail247.d │ │ ├── fail248.d │ │ ├── fail249.d │ │ ├── fail25.d │ │ ├── fail250.d │ │ ├── fail251.d │ │ ├── fail252.d │ │ ├── fail253.d │ │ ├── fail254.d │ │ ├── fail256.d │ │ ├── fail257.d │ │ ├── fail258.d │ │ ├── fail259.d │ │ ├── fail261.d │ │ ├── fail262.d │ │ ├── fail263.d │ │ ├── fail264.d │ │ ├── fail265.d │ │ ├── fail2656.d │ │ ├── fail267.d │ │ ├── fail27.d │ │ ├── fail270.d │ │ ├── fail272.d │ │ ├── fail273.d │ │ ├── fail2740.d │ │ ├── fail275.d │ │ ├── fail276.d │ │ ├── fail278.d │ │ ├── fail2789.d │ │ ├── fail279.d │ │ ├── fail280.d │ │ ├── fail281.d │ │ ├── fail282.d │ │ ├── fail284.d │ │ ├── fail285.d │ │ ├── fail287.d │ │ ├── fail288.d │ │ ├── fail289.d │ │ ├── fail290.d │ │ ├── fail291.d │ │ ├── fail296.d │ │ ├── fail2962.d │ │ ├── fail297.d │ │ ├── fail298.d │ │ ├── fail299.d │ │ ├── fail3.d │ │ ├── fail301.d │ │ ├── fail302.d │ │ ├── fail303.d │ │ ├── fail304.d │ │ ├── fail306.d │ │ ├── fail307.d │ │ ├── fail308.d │ │ ├── fail309.d │ │ ├── fail310.d │ │ ├── fail311.d │ │ ├── fail312.d │ │ ├── fail313.d │ │ ├── fail3144.d │ │ ├── fail315.d │ │ ├── fail3150.d │ │ ├── fail316.d │ │ ├── fail317.d │ │ ├── fail318_b.d │ │ ├── fail319.d │ │ ├── fail320.d │ │ ├── fail322.d │ │ ├── fail325.d │ │ ├── fail327.d │ │ ├── fail328.d │ │ ├── fail329.d │ │ ├── fail3290.d │ │ ├── fail330.d │ │ ├── fail331.d │ │ ├── fail332.d │ │ ├── fail333.d │ │ ├── fail334.d │ │ ├── fail335.d │ │ ├── fail3354.d │ │ ├── fail336.d │ │ ├── fail337.d │ │ ├── fail34.d │ │ ├── fail340.d │ │ ├── fail341.d │ │ ├── fail343.d │ │ ├── fail344.d │ │ ├── fail346.d │ │ ├── fail347.d │ │ ├── fail349.d │ │ ├── fail35.d │ │ ├── fail351.d │ │ ├── fail352.d │ │ ├── fail353.d │ │ ├── fail354.d │ │ ├── fail355.d │ │ ├── fail356a.d │ │ ├── fail356b.d │ │ ├── fail356c.d │ │ ├── fail3581a.d │ │ ├── fail3581b.d │ │ ├── fail359.d │ │ ├── fail36.d │ │ ├── fail3672.d │ │ ├── fail3673a.d │ │ ├── fail3673b.d │ │ ├── fail3703.d │ │ ├── fail3731.d │ │ ├── fail3753.d │ │ ├── fail37_m32.d │ │ ├── fail37_m64.d │ │ ├── fail38.d │ │ ├── fail3882.d │ │ ├── fail3895.d │ │ ├── fail39.d │ │ ├── fail3990.d │ │ ├── fail40.d │ │ ├── fail4082.d │ │ ├── fail42.d │ │ ├── fail4206.d │ │ ├── fail4269a.d │ │ ├── fail4269b.d │ │ ├── fail4269c.d │ │ ├── fail4269d.d │ │ ├── fail4269e.d │ │ ├── fail4269f.d │ │ ├── fail4269g.d │ │ ├── fail4374.d │ │ ├── fail4375a.d │ │ ├── fail4375b.d │ │ ├── fail4375c.d │ │ ├── fail4375d.d │ │ ├── fail4375e.d │ │ ├── fail4375f.d │ │ ├── fail4375g.d │ │ ├── fail4375h.d │ │ ├── fail4375i.d │ │ ├── fail4375j.d │ │ ├── fail4375k.d │ │ ├── fail4375l.d │ │ ├── fail4375m.d │ │ ├── fail4375o.d │ │ ├── fail4375p.d │ │ ├── fail4375q.d │ │ ├── fail4375r.d │ │ ├── fail4375s.d │ │ ├── fail4375t.d │ │ ├── fail4375u.d │ │ ├── fail4375v.d │ │ ├── fail4375w.d │ │ ├── fail4375x.d │ │ ├── fail4375y.d │ │ ├── fail44.d │ │ ├── fail4421.d │ │ ├── fail4448.d │ │ ├── fail45.d │ │ ├── fail4510.d │ │ ├── fail4511.d │ │ ├── fail4544.d │ │ ├── fail46.d │ │ ├── fail4611.d │ │ ├── fail47.d │ │ ├── fail4923.d │ │ ├── fail4958.d │ │ ├── fail50.d │ │ ├── fail51.d │ │ ├── fail5153.d │ │ ├── fail52.d │ │ ├── fail53.d │ │ ├── fail54.d │ │ ├── fail5435.d │ │ ├── fail55.d │ │ ├── fail56.d │ │ ├── fail5634.d │ │ ├── fail57.d │ │ ├── fail5733.d │ │ ├── fail58.d │ │ ├── fail5851.d │ │ ├── fail59.d │ │ ├── fail5908.d │ │ ├── fail5953a1.d │ │ ├── fail5953a2.d │ │ ├── fail5953s1.d │ │ ├── fail5953s2.d │ │ ├── fail60.d │ │ ├── fail6029.d │ │ ├── fail61.d │ │ ├── fail6107.d │ │ ├── fail62.d │ │ ├── fail6242.d │ │ ├── fail63.d │ │ ├── fail6334.d │ │ ├── fail6451.d │ │ ├── fail6453.d │ │ ├── fail6458.d │ │ ├── fail6497.d │ │ ├── fail6561.d │ │ ├── fail6592.sh │ │ ├── fail66.d │ │ ├── fail6611.d │ │ ├── fail6652.d │ │ ├── fail6781.d │ │ ├── fail6795.d │ │ ├── fail6889.d │ │ ├── fail6968.d │ │ ├── fail7077.d │ │ ├── fail7173.d │ │ ├── fail7178.d │ │ ├── fail72.d │ │ ├── fail7234.d │ │ ├── fail73.d │ │ ├── fail7352.d │ │ ├── fail7369.d │ │ ├── fail7372.d │ │ ├── fail74.d │ │ ├── fail7424b.d │ │ ├── fail7424c.d │ │ ├── fail7424d.d │ │ ├── fail7424e.d │ │ ├── fail7424f.d │ │ ├── fail7424g.d │ │ ├── fail7424h.d │ │ ├── fail7424i.d │ │ ├── fail7443.d │ │ ├── fail75.d │ │ ├── fail7524a.d │ │ ├── fail7524b.d │ │ ├── fail76.d │ │ ├── fail7603a.d │ │ ├── fail7603b.d │ │ ├── fail7603c.d │ │ ├── fail77.d │ │ ├── fail7702.d │ │ ├── fail7751.d │ │ ├── fail78.d │ │ ├── fail7848.d │ │ ├── fail7851.d │ │ ├── fail7859.d │ │ ├── fail7861.d │ │ ├── fail7862.d │ │ ├── fail79.d │ │ ├── fail7903.d │ │ ├── fail8009.d │ │ ├── fail8032.d │ │ ├── fail80_m32.d │ │ ├── fail80_m64.d │ │ ├── fail8168.d │ │ ├── fail8179b.d │ │ ├── fail8217.d │ │ ├── fail8262.d │ │ ├── fail8313.d │ │ ├── fail8373.d │ │ ├── fail86.d │ │ ├── fail8631.d │ │ ├── fail8691.d │ │ ├── fail8724.d │ │ ├── fail9.d │ │ ├── fail9063.d │ │ ├── fail9081.d │ │ ├── fail91.d │ │ ├── fail9199.d │ │ ├── fail92.d │ │ ├── fail9279.d │ │ ├── fail9290.d │ │ ├── fail93.d │ │ ├── fail9301.d │ │ ├── fail9346.d │ │ ├── fail94.d │ │ ├── fail9413.d │ │ ├── fail9414a.d │ │ ├── fail9414b.d │ │ ├── fail9414c.d │ │ ├── fail9414d.d │ │ ├── fail95.d │ │ ├── fail9537.d │ │ ├── fail9562.d │ │ ├── fail9572.d │ │ ├── fail96.d │ │ ├── fail9613.d │ │ ├── fail9665a.d │ │ ├── fail9665b.d │ │ ├── fail97.d │ │ ├── fail9710.d │ │ ├── fail9735.d │ │ ├── fail9766.d │ │ ├── fail9773.d │ │ ├── fail9790.d │ │ ├── fail98.d │ │ ├── fail9891.d │ │ ├── fail9892.d │ │ ├── fail99.d │ │ ├── fail9936.d │ │ ├── fail_arrayexp.d │ │ ├── fail_arrayop1.d │ │ ├── fail_arrayop2.d │ │ ├── fail_arrayop3a.d │ │ ├── fail_arrayop3b.d │ │ ├── fail_arrayop3c.d │ │ ├── fail_casting.d │ │ ├── fail_casting1.d │ │ ├── fail_casting2.d │ │ ├── fail_circular.d │ │ ├── fail_circular2.d │ │ ├── fail_contracts1.d │ │ ├── fail_contracts2.d │ │ ├── fail_contracts3.d │ │ ├── fail_contracts4.d │ │ ├── fail_isZeroInit.d │ │ ├── fail_opover.d │ │ ├── fail_pretty_errors.d │ │ ├── fail_scope.d │ │ ├── fail_typeof.d │ │ ├── failasm.d │ │ ├── failasm2.d │ │ ├── failattr.d │ │ ├── failcontracts.d │ │ ├── failcstuff1.c │ │ ├── failcstuff2.c │ │ ├── failcstuff3.c │ │ ├── failcstuff4.c │ │ ├── failcstuff4b.i │ │ ├── failcstuff5.c │ │ ├── failcstuff6.c │ │ ├── faildottypeinfo.d │ │ ├── failescape.d │ │ ├── failinout1.d │ │ ├── failinout2.d │ │ ├── failob1.d │ │ ├── failob2.d │ │ ├── failoffset.d │ │ ├── failsafea.d │ │ ├── failsafeb.d │ │ ├── failsafec.d │ │ ├── finalswitch.d │ │ ├── finalswitch_verbose.d │ │ ├── fix17349.d │ │ ├── fix17751.d │ │ ├── fix18575.d │ │ ├── fix19018.d │ │ ├── fix19059.d │ │ ├── fix19246.d │ │ ├── fix19613.d │ │ ├── fix20075.d │ │ ├── fix20318.d │ │ ├── fix20867.d │ │ ├── fix21042.d │ │ ├── fix21165.d │ │ ├── fix21166.d │ │ ├── fix21585.d │ │ ├── fix22104.c │ │ ├── fix22108.d │ │ ├── fix22253.c │ │ ├── fix22263.c │ │ ├── fix22265.c │ │ ├── fix22342.c │ │ ├── fix23138.d │ │ ├── fix350a.d │ │ ├── fix350b.d │ │ ├── fix5212.d │ │ ├── fnconstraint.d │ │ ├── fob1.d │ │ ├── fob2.d │ │ ├── foreach.d │ │ ├── foreach2.d │ │ ├── foreach_index_overflow.d │ │ ├── format.d │ │ ├── ftimetrace.d │ │ ├── funcpostattr.d │ │ ├── gag4269a.d │ │ ├── gag4269b.d │ │ ├── gag4269c.d │ │ ├── gag4269d.d │ │ ├── gag4269e.d │ │ ├── gag4269f.d │ │ ├── gag4269g.d │ │ ├── gccasm1.c │ │ ├── generic.c │ │ ├── generic2.c │ │ ├── goto1.d │ │ ├── goto2.d │ │ ├── goto3.d │ │ ├── goto_skip.d │ │ ├── hexstring.d │ │ ├── hidden_ctor.d │ │ ├── iasm1.d │ │ ├── ice10016.d │ │ ├── ice10076.d │ │ ├── ice10212.d │ │ ├── ice10259.d │ │ ├── ice10273.d │ │ ├── ice10283.d │ │ ├── ice10341.d │ │ ├── ice10382.d │ │ ├── ice10419.d │ │ ├── ice10598.d │ │ ├── ice10599.d │ │ ├── ice10600.d │ │ ├── ice10616.d │ │ ├── ice10624.d │ │ ├── ice10651.d │ │ ├── ice10713.d │ │ ├── ice10727a.d │ │ ├── ice10727b.d │ │ ├── ice10922.d │ │ ├── ice10938.d │ │ ├── ice10949.d │ │ ├── ice11086.d │ │ ├── ice11136.d │ │ ├── ice11153.d │ │ ├── ice11404.d │ │ ├── ice1144.d │ │ ├── ice11472.d │ │ ├── ice11513a.d │ │ ├── ice11513b.d │ │ ├── ice11518.d │ │ ├── ice11552.d │ │ ├── ice11553.d │ │ ├── ice11626.d │ │ ├── ice11726.d │ │ ├── ice11793.d │ │ ├── ice11822.d │ │ ├── ice11849b.d │ │ ├── ice11850.d │ │ ├── ice11856_0.d │ │ ├── ice11856_1.d │ │ ├── ice11919.d │ │ ├── ice11922.d │ │ ├── ice11925.d │ │ ├── ice11926.d │ │ ├── ice11944.d │ │ ├── ice11963.d │ │ ├── ice11965.d │ │ ├── ice11967.d │ │ ├── ice11969.d │ │ ├── ice11974.d │ │ ├── ice11982.d │ │ ├── ice12040.d │ │ ├── ice12158.d │ │ ├── ice12174.d │ │ ├── ice12235.d │ │ ├── ice12350.d │ │ ├── ice12362.d │ │ ├── ice12397.d │ │ ├── ice12501.d │ │ ├── ice12534.d │ │ ├── ice12539.d │ │ ├── ice12574.d │ │ ├── ice12581.d │ │ ├── ice12673.d │ │ ├── ice12727.d │ │ ├── ice12827.d │ │ ├── ice12836.d │ │ ├── ice12838.d │ │ ├── ice12841.d │ │ ├── ice12850.d │ │ ├── ice12902.d │ │ ├── ice12907.d │ │ ├── ice13027.d │ │ ├── ice13081.d │ │ ├── ice13131.d │ │ ├── ice13220.d │ │ ├── ice13221.d │ │ ├── ice13225.d │ │ ├── ice13311.d │ │ ├── ice13356.d │ │ ├── ice13382.d │ │ ├── ice13385.d │ │ ├── ice13459.d │ │ ├── ice13465a.d │ │ ├── ice13465b.d │ │ ├── ice13563.d │ │ ├── ice1358.d │ │ ├── ice13644.d │ │ ├── ice13788.d │ │ ├── ice13816.d │ │ ├── ice13835.d │ │ ├── ice13921.d │ │ ├── ice13987.d │ │ ├── ice14055.d │ │ ├── ice14096.d │ │ ├── ice14116.d │ │ ├── ice14130.d │ │ ├── ice14146.d │ │ ├── ice14177.d │ │ ├── ice14185.d │ │ ├── ice14272.d │ │ ├── ice14424.d │ │ ├── ice14446.d │ │ ├── ice14621.d │ │ ├── ice14642.d │ │ ├── ice14844.d │ │ ├── ice14907.d │ │ ├── ice14923.d │ │ ├── ice15002.d │ │ ├── ice15092.d │ │ ├── ice15127.d │ │ ├── ice15172.d │ │ ├── ice15317.d │ │ ├── ice15332.d │ │ ├── ice15441.d │ │ ├── ice15688.d │ │ ├── ice15788.d │ │ ├── ice15816.d │ │ ├── ice15855.d │ │ ├── ice15922.d │ │ ├── ice16035.d │ │ ├── ice16657.d │ │ ├── ice17074.d │ │ ├── ice17690.d │ │ ├── ice17831.d │ │ ├── ice18469.d │ │ ├── ice18753.d │ │ ├── ice18803a.d │ │ ├── ice18803b.d │ │ ├── ice19755.d │ │ ├── ice19762.d │ │ ├── ice19887.d │ │ ├── ice19950.d │ │ ├── ice20042.d │ │ ├── ice20056.d │ │ ├── ice20057.d │ │ ├── ice20264.d │ │ ├── ice20545.d │ │ ├── ice20709.d │ │ ├── ice21060.d │ │ ├── ice21095.d │ │ ├── ice22377.d │ │ ├── ice22516.d │ │ ├── ice23097.d │ │ ├── ice23564.d │ │ ├── ice23569.d │ │ ├── ice23781.d │ │ ├── ice23865.d │ │ ├── ice24188.d │ │ ├── ice24188_a │ │ │ └── ice24188_c.d │ │ ├── ice2843.d │ │ ├── ice4094.d │ │ ├── ice4983.d │ │ ├── ice5996.d │ │ ├── ice6538.d │ │ ├── ice7645.d │ │ ├── ice7782.d │ │ ├── ice8100.d │ │ ├── ice8309.d │ │ ├── ice8499.d │ │ ├── ice8604.d │ │ ├── ice8630.d │ │ ├── ice8711.d │ │ ├── ice8742.d │ │ ├── ice8795.d │ │ ├── ice8795b.d │ │ ├── ice9013.d │ │ ├── ice9254a.d │ │ ├── ice9254b.d │ │ ├── ice9254c.d │ │ ├── ice9273a.d │ │ ├── ice9273b.d │ │ ├── ice9284.d │ │ ├── ice9291.d │ │ ├── ice9338.d │ │ ├── ice9406.d │ │ ├── ice9439.d │ │ ├── ice9494.d │ │ ├── ice9540.d │ │ ├── ice9545.d │ │ ├── ice9759.d │ │ ├── ice9806.d │ │ ├── ice9865.d │ │ ├── iconv_interface_array.d │ │ ├── immutable_ctor.d │ │ ├── impconv.d │ │ ├── imphint.d │ │ ├── imports │ │ │ ├── a10169.d │ │ │ ├── a10528.d │ │ │ ├── a11850.d │ │ │ ├── a11919.d │ │ │ ├── a13131checkpoint.d │ │ │ ├── a13131elec.d │ │ │ ├── a13131parameters.d │ │ │ ├── a13311.d │ │ │ ├── a13465.d │ │ │ ├── a14116.d │ │ │ ├── a14235.d │ │ │ ├── a14424.d │ │ │ ├── a15667.d │ │ │ ├── a15816.d │ │ │ ├── a17625.d │ │ │ ├── a17630.d │ │ │ ├── a18219.d │ │ │ ├── a18243.d │ │ │ ├── a313.d │ │ │ ├── a314.d │ │ │ ├── b13465.d │ │ │ ├── b17625.d │ │ │ ├── b17630.d │ │ │ ├── b17918a.d │ │ │ ├── b18219.d │ │ │ ├── b18243.d │ │ │ ├── b19762.d │ │ │ ├── b313.d │ │ │ ├── b314.d │ │ │ ├── bar11136.d │ │ │ ├── c19762.d │ │ │ ├── c314.d │ │ │ ├── constraints.d │ │ │ ├── deprecatedImporta.d │ │ │ ├── deprecatedImportb.d │ │ │ ├── diag10089a.d │ │ │ ├── diag10089b.d │ │ │ ├── diag10141a.d │ │ │ ├── diag10141b.d │ │ │ ├── diag20518a.d │ │ │ ├── diag20518a │ │ │ │ └── b.d │ │ │ ├── diag9210b.d │ │ │ ├── diag9210c.d │ │ │ ├── diag9210stdcomplex.d │ │ │ ├── diag9210stdtraits.d │ │ │ ├── dip22a.d │ │ │ ├── dip22b.d │ │ │ ├── dip22c.d │ │ │ ├── dip22d.d │ │ │ ├── dip22e.d │ │ │ ├── fail10277.d │ │ │ ├── fail17646.d │ │ │ ├── fail1900a.d │ │ │ ├── fail1900b.d │ │ │ ├── fail19609a.d │ │ │ ├── fail19609b.d │ │ │ ├── fail19609c.d │ │ │ ├── fail19609d.d │ │ │ ├── fail20164.d │ │ │ ├── fail20637b.d │ │ │ ├── fail20638b.d │ │ │ ├── fail21001b.d │ │ │ ├── fail21275a.d │ │ │ ├── fail2962a.d │ │ │ ├── fail320a.d │ │ │ ├── fail320b.d │ │ │ ├── fail347a.d │ │ │ ├── fail355.d │ │ │ ├── fail356.d │ │ │ ├── fail4479.d │ │ │ ├── fail5385.d │ │ │ ├── fail7372.d │ │ │ ├── foo10727a.d │ │ │ ├── foo10727b.d │ │ │ ├── foofunc.d │ │ │ ├── i20057.d │ │ │ ├── ice10598a.d │ │ │ ├── ice10598b.d │ │ │ ├── ice10600a.d │ │ │ ├── ice10600b.d │ │ │ ├── ice11513x.d │ │ │ ├── ice11513y.d │ │ │ ├── ice21060a │ │ │ │ └── package.d │ │ │ ├── ice21060b │ │ │ │ └── package.d │ │ │ ├── ice21060c │ │ │ │ └── package.d │ │ │ ├── ice21060d │ │ │ │ └── package.d │ │ │ ├── ice7782algorithm.d │ │ │ ├── ice7782range.d │ │ │ ├── ice9865b.d │ │ │ ├── imp1.d │ │ │ ├── imp15896.d │ │ │ ├── imp15925.d │ │ │ ├── imp17602.d │ │ │ ├── imp18127a.c │ │ │ ├── imp18127b.c │ │ │ ├── imp18979.d │ │ │ ├── imp19661.d │ │ │ ├── imp2.d │ │ │ ├── imp20709.d │ │ │ ├── imp21353.d │ │ │ ├── imp21832.d │ │ │ ├── imp22329.d │ │ │ ├── imp22749.c │ │ │ ├── import15525.d │ │ │ ├── import21508.d │ │ │ ├── import22857.d │ │ │ ├── import23873.d │ │ │ ├── issue21295ast_node.d │ │ │ ├── issue21295astcodegen.d │ │ │ ├── issue21295dtemplate.d │ │ │ ├── issue21295visitor.d │ │ │ ├── issue21685.d │ │ │ ├── issue23947a.d │ │ │ ├── pkg313 │ │ │ │ └── package.d │ │ │ ├── range15788.d │ │ │ ├── spell23908a.d │ │ │ ├── spell23908b.d │ │ │ ├── spell9644a.d │ │ │ ├── spell9644b.d │ │ │ ├── stdtraits10727.d │ │ │ ├── test10327 │ │ │ │ └── empty.d │ │ │ ├── test13152a.d │ │ │ ├── test13152b.d │ │ │ ├── test13152c.d │ │ │ ├── test13152d.d │ │ │ ├── test13152e.d │ │ │ ├── test13152f.d │ │ │ ├── test13152g.d │ │ │ ├── test13152h.d │ │ │ ├── test13152i.d │ │ │ ├── test13152j.d │ │ │ ├── test13152k.d │ │ │ ├── test13152l.d │ │ │ ├── test13152m.d │ │ │ ├── test13152n.d │ │ │ ├── test13152o.d │ │ │ ├── test13152p.d │ │ │ ├── test13152q.d │ │ │ ├── test13152r.d │ │ │ ├── test13152s.d │ │ │ ├── test13152t.d │ │ │ ├── test13152u.d │ │ │ ├── test13152v.d │ │ │ ├── test13152w.d │ │ │ ├── test13152x.d │ │ │ ├── test13152y.d │ │ │ ├── test13152z.d │ │ │ ├── test143.d │ │ │ ├── test15117a.d │ │ │ ├── test15785.d │ │ │ ├── test15897.d │ │ │ ├── test18480a.d │ │ │ ├── test18480b.d │ │ │ ├── test18938a │ │ │ │ ├── cache.d │ │ │ │ └── file.d │ │ │ ├── test18938b │ │ │ │ └── file.d │ │ │ ├── test19107a.d │ │ │ ├── test19107b.d │ │ │ ├── test20023b.d │ │ │ ├── test20267.d │ │ │ ├── test21164a.d │ │ │ ├── test21164b.d │ │ │ ├── test21164c.d │ │ │ ├── test21164d.d │ │ │ ├── test21246.d │ │ │ ├── test21651b.d │ │ │ ├── test23109a.d │ │ │ ├── test23109b.d │ │ │ ├── test23109c.d │ │ │ ├── test5412a.d │ │ │ ├── test5412b.d │ │ │ └── test64a.d │ │ ├── init1.c │ │ ├── interpolatedexpressionsequence_postfix.d │ │ ├── invalid_lib.d │ │ ├── isreturnonstack.d │ │ ├── issue11070.d │ │ ├── issue15103.d │ │ ├── issue16020.d │ │ ├── issue20422.d │ │ ├── issue20627.d │ │ ├── issue20704.d │ │ ├── issue21203.d │ │ ├── issue21295.d │ │ ├── issue21378.d │ │ ├── issue21685_main.d │ │ ├── issue22682.d │ │ ├── issue22820.d │ │ ├── issue22826.d │ │ ├── issue23947.d │ │ ├── issue24534.d │ │ ├── issue3396.d │ │ ├── issue3827.d │ │ ├── json.d │ │ ├── json2.d │ │ ├── json3.d │ │ ├── jsonBadField1.d │ │ ├── jsonBadField2.d │ │ ├── ldc_diag8425.d │ │ ├── ldc_github_1822.d │ │ ├── ldc_github_1864.d │ │ ├── ldc_llvm_inline_ir_1.d │ │ ├── ldc_llvm_inline_ir_2.d │ │ ├── ldc_llvm_inline_ir_3.d │ │ ├── lexer1.d │ │ ├── lexer2.d │ │ ├── lexer23465.d │ │ ├── lexer3.d │ │ ├── lexer4.d │ │ ├── lexer5.d │ │ ├── lookup.d │ │ ├── main.d │ │ ├── makedeps_doubleparam.d │ │ ├── makedeps_nofile.d │ │ ├── makedeps_wrongflag.d │ │ ├── malformed_cmain.c │ │ ├── malformed_cmain.d │ │ ├── mangle1.d │ │ ├── mangle2.d │ │ ├── match_func_ptr.d │ │ ├── misc1.d │ │ ├── misc_parser_err_cov1.d │ │ ├── missingbrace.d │ │ ├── mixin.d │ │ ├── mixin_gc.d │ │ ├── mixin_template.d │ │ ├── mixinexpr.d │ │ ├── mixinprop.d │ │ ├── mixintype2.d │ │ ├── moduleundefuda.d │ │ ├── msg24094.c │ │ ├── must_use.d │ │ ├── must_use_comma.d │ │ ├── must_use_opunary.d │ │ ├── must_use_reserved.d │ │ ├── must_use_template.d │ │ ├── must_use_union.d │ │ ├── named_arguments_error.d │ │ ├── named_arguments_ifti_error.d │ │ ├── named_arguments_overload.d │ │ ├── named_arguments_parse.d │ │ ├── named_arguments_struct_literal.d │ │ ├── needspkgmod.d │ │ ├── needspkgmod2.d │ │ ├── nested_template_constraint.d │ │ ├── nestedtempl0.d │ │ ├── nestedtempl1.d │ │ ├── nestedtempl2.d │ │ ├── nestedtempl3.d │ │ ├── newaa.d │ │ ├── no_Throwable.d │ │ ├── no_TypeInfo.d │ │ ├── no_object.d │ │ ├── nogc1.d │ │ ├── nogc2.d │ │ ├── nogc3.d │ │ ├── nonvoid_return.d │ │ ├── noreturn.d │ │ ├── noreturn2.d │ │ ├── noreturn_expr.d │ │ ├── noreturn_expr2.d │ │ ├── notype.d │ │ ├── numliteral.c │ │ ├── ob1.d │ │ ├── objc_class1.d │ │ ├── objc_class2.d │ │ ├── objc_class3.d │ │ ├── objc_non_objc_base.d │ │ ├── objc_offsetof.d │ │ ├── objc_tupleof.d │ │ ├── obsolete_body.d │ │ ├── onemember_overloads.d │ │ ├── opapplyscope.d │ │ ├── operator_undefined.d │ │ ├── parse12924.d │ │ ├── parse12967a.d │ │ ├── parse12967b.d │ │ ├── parse13361.d │ │ ├── parse14285.d │ │ ├── parse14745.d │ │ ├── parse19277.d │ │ ├── parseStc.d │ │ ├── parseStc2.d │ │ ├── parseStc3.d │ │ ├── parseStc4.d │ │ ├── parseStc5.d │ │ ├── placenew.d │ │ ├── powinline.d │ │ ├── pragma2.c │ │ ├── pragmainline.d │ │ ├── pragmamangle1.d │ │ ├── pragmamangle2.d │ │ ├── pragmas.d │ │ ├── previewin.d │ │ ├── previewin2.d │ │ ├── previewin3.d │ │ ├── protattr1.d │ │ ├── protattr2.d │ │ ├── protattr3.d │ │ ├── protection │ │ │ └── subpkg │ │ │ │ ├── test1.d │ │ │ │ ├── test2.d │ │ │ │ └── test3.d │ │ ├── pull12941.d │ │ ├── reg6769.d │ │ ├── reserved_version.d │ │ ├── reserved_version_switch.d │ │ ├── responsefile.d │ │ ├── retref2.d │ │ ├── retscope.d │ │ ├── retscope2.d │ │ ├── retscope3.d │ │ ├── retscope4.d │ │ ├── retscope5.d │ │ ├── retscope6.d │ │ ├── safe_gshared.d │ │ ├── safe_pointer_index.d │ │ ├── safer.d │ │ ├── sarif_test.d │ │ ├── sarifmultiple_test.d │ │ ├── scope_class.d │ │ ├── seq_assign.d │ │ ├── shared.d │ │ ├── short_fn.d │ │ ├── skip.d │ │ ├── spell23908.d │ │ ├── spell9644.d │ │ ├── standalone_modctor.d │ │ ├── static_import.d │ │ ├── staticarrayoverflow.d │ │ ├── staticassert_sema1.d │ │ ├── staticassertargs.d │ │ ├── staticassertargsfail.d │ │ ├── staticforeach1.d │ │ ├── staticforeach2.d │ │ ├── staticforeach3.d │ │ ├── staticforeach4.d │ │ ├── switch_skip.d │ │ ├── switches.d │ │ ├── system_ptr_cast.d │ │ ├── systemvariables.d │ │ ├── systemvariables_bool_union.d │ │ ├── systemvariables_deprecation.d │ │ ├── systemvariables_struct.d │ │ ├── systemvariables_var_init.d │ │ ├── systemvariables_void_init.d │ │ ├── t1252.d │ │ ├── template_decl.d │ │ ├── template_enum_param.d │ │ ├── template_function_oop.d │ │ ├── templateoverload.d │ │ ├── templatethis.d │ │ ├── test1.d │ │ ├── test10.d │ │ ├── test1021.d │ │ ├── test11006.d │ │ ├── test11047.d │ │ ├── test11176.d │ │ ├── test11471.d │ │ ├── test12228.d │ │ ├── test12385.d │ │ ├── test12430.d │ │ ├── test12558.d │ │ ├── test128.i │ │ ├── test12822.d │ │ ├── test12979.d │ │ ├── test13152.d │ │ ├── test13536.d │ │ ├── test13537.d │ │ ├── test13667.d │ │ ├── test13698.d │ │ ├── test13786.d │ │ ├── test13867.d │ │ ├── test14064.d │ │ ├── test14238.d │ │ ├── test143.d │ │ ├── test14496.d │ │ ├── test14538.d │ │ ├── test15177.d │ │ ├── test15191.d │ │ ├── test15306.d │ │ ├── test15368.d │ │ ├── test15373.d │ │ ├── test15399.d │ │ ├── test15525.d │ │ ├── test15544.d │ │ ├── test15660.d │ │ ├── test15672.d │ │ ├── test15703.d │ │ ├── test15704.d │ │ ├── test15785.d │ │ ├── test15785b.d │ │ ├── test15897.d │ │ ├── test15925.d │ │ ├── test15989.d │ │ ├── test16095.d │ │ ├── test16116.d │ │ ├── test16188.d │ │ ├── test16193.d │ │ ├── test16228.d │ │ ├── test16284.d │ │ ├── test16365.d │ │ ├── test16381.d │ │ ├── test16443.d │ │ ├── test16495.d │ │ ├── test16523.d │ │ ├── test16589.d │ │ ├── test16694.d │ │ ├── test17096.d │ │ ├── test17284.d │ │ ├── test17307.d │ │ ├── test17380.d │ │ ├── test17380spec.d │ │ ├── test17422.d │ │ ├── test17423.d │ │ ├── test17425.d │ │ ├── test17450.d │ │ ├── test17451.d │ │ ├── test17586.d │ │ ├── test17764.d │ │ ├── test17868.d │ │ ├── test17868b.d │ │ ├── test17892.d │ │ ├── test17908a.d │ │ ├── test17908b.d │ │ ├── test17959.d │ │ ├── test17977.d │ │ ├── test18127.d │ │ ├── test18130.d │ │ ├── test18282.d │ │ ├── test18312.d │ │ ├── test18385.d │ │ ├── test18385b.d │ │ ├── test18480.d │ │ ├── test18484.d │ │ ├── test18597.d │ │ ├── test18607.d │ │ ├── test18644.d │ │ ├── test18708.d │ │ ├── test18736.d │ │ ├── test19097.d │ │ ├── test19107.d │ │ ├── test19112.d │ │ ├── test19176.d │ │ ├── test19193.d │ │ ├── test19473.d │ │ ├── test19608.d │ │ ├── test19646.d │ │ ├── test19661.d │ │ ├── test19971.d │ │ ├── test20023.d │ │ ├── test20096.d │ │ ├── test20149.d │ │ ├── test20245.d │ │ ├── test20267.d │ │ ├── test20324.d │ │ ├── test20383.d │ │ ├── test20414.c │ │ ├── test20489.d │ │ ├── test20515.d │ │ ├── test20522.d │ │ ├── test20549.d │ │ ├── test20565.d │ │ ├── test20569.d │ │ ├── test20610.d │ │ ├── test20626.d │ │ ├── test20655.d │ │ ├── test20696.d │ │ ├── test20719.d │ │ ├── test20763.d │ │ ├── test20809.d │ │ ├── test20859.d │ │ ├── test20881.d │ │ ├── test20903.d │ │ ├── test20919.d │ │ ├── test20998.d │ │ ├── test21008.d │ │ ├── test21025.d │ │ ├── test21062.d │ │ ├── test21093.d │ │ ├── test21096.d │ │ ├── test21164.d │ │ ├── test21198.d │ │ ├── test21204.d │ │ ├── test21215.d │ │ ├── test21241.d │ │ ├── test21244.c │ │ ├── test21246.d │ │ ├── test21247.d │ │ ├── test21247b.d │ │ ├── test21259.d │ │ ├── test21304.d │ │ ├── test21317.d │ │ ├── test21319.d │ │ ├── test21353.d │ │ ├── test21380.d │ │ ├── test21408.d │ │ ├── test21429.d │ │ ├── test21443.d │ │ ├── test21477.d │ │ ├── test21518.d │ │ ├── test21546.d │ │ ├── test21651.d │ │ ├── test21665.d │ │ ├── test21807.d │ │ ├── test21912.d │ │ ├── test21927.d │ │ ├── test21930.d │ │ ├── test21939.d │ │ ├── test21995.d │ │ ├── test22023.d │ │ ├── test22048.d │ │ ├── test22070.c │ │ ├── test22102.c │ │ ├── test22145.d │ │ ├── test22227.d │ │ ├── test22298.d │ │ ├── test22329.d │ │ ├── test22339.c │ │ ├── test22344.c │ │ ├── test22361.d │ │ ├── test22538.c │ │ ├── test22541.d │ │ ├── test22574.d │ │ ├── test22680.d │ │ ├── test22686.d │ │ ├── test22709.d │ │ ├── test22759.c │ │ ├── test22765.d │ │ ├── test22818.d │ │ ├── test22840.d │ │ ├── test22899.c │ │ ├── test22910.d │ │ ├── test22935.c │ │ ├── test22977.d │ │ ├── test22999.d │ │ ├── test23003.c │ │ ├── test23017.d │ │ ├── test23022.d │ │ ├── test23037.c │ │ ├── test23056.c │ │ ├── test23057.c │ │ ├── test23058.c │ │ ├── test23073.d │ │ ├── test23112.d │ │ ├── test23145.d │ │ ├── test23159.d │ │ ├── test23170.d │ │ ├── test23216.d │ │ ├── test23279.d │ │ ├── test23491.d │ │ ├── test23536.d │ │ ├── test23552.d │ │ ├── test23607.d │ │ ├── test23672.i │ │ ├── test23674.d │ │ ├── test23710.d │ │ ├── test23715.i │ │ ├── test23719.c │ │ ├── test23786.d │ │ ├── test23789.c │ │ ├── test23873.d │ │ ├── test23875.c │ │ ├── test23882.d │ │ ├── test23886.i │ │ ├── test23905.d │ │ ├── test23968.d │ │ ├── test23982.d │ │ ├── test24015.d │ │ ├── test24036.d │ │ ├── test24065.d │ │ ├── test24084.d │ │ ├── test24110.d │ │ ├── test24157.d │ │ ├── test24159.d │ │ ├── test24173.c │ │ ├── test24295.d │ │ ├── test24353.d │ │ ├── test24365.d │ │ ├── test24680.d │ │ ├── test24694.d │ │ ├── test24745.d │ │ ├── test314.d │ │ ├── test3818.d │ │ ├── test4682.d │ │ ├── test4682a.d │ │ ├── test4838.d │ │ ├── test4946.d │ │ ├── test5412a.d │ │ ├── test5412b.d │ │ ├── test5412c.d │ │ ├── test5412c2.di │ │ ├── test64.d │ │ ├── test6883.d │ │ ├── test8509.d │ │ ├── test8556.d │ │ ├── test8662.d │ │ ├── test8751.d │ │ ├── test9150.d │ │ ├── test9176.d │ │ ├── test9701.d │ │ ├── test9701b.d │ │ ├── testCols.d │ │ ├── testInference.d │ │ ├── testOpApply.d │ │ ├── testTypeof.c │ │ ├── test_switch_error.d │ │ ├── testhtml.html │ │ ├── testhtml2.html │ │ ├── testhtml3.html │ │ ├── testnothrow.c │ │ ├── testrvaluecpctor.d │ │ ├── testscopestatic.d │ │ ├── testsemi.d │ │ ├── throwexp.d │ │ ├── tolvalue.d │ │ ├── trait_loc_err.d │ │ ├── trait_loc_ov_err.d │ │ ├── traits.d │ │ ├── traits_alone.d │ │ ├── traits_child.d │ │ ├── traits_initSymbol.d │ │ ├── traits_parameters.d │ │ ├── typeerrors.d │ │ ├── uda_lambda.d │ │ ├── udaparams.d │ │ ├── udatypes.d │ │ ├── ufcs.d │ │ ├── union_conv.d │ │ ├── union_initialization.d │ │ ├── unmatchedbrace.d │ │ ├── var_func_attr.d │ │ ├── vararg2.d │ │ ├── varargsstc.d │ │ ├── vector_cast.d │ │ ├── vector_types.d │ │ ├── verifyhookexist.d │ │ ├── verrors0.d │ │ ├── verrors5.d │ │ ├── void_cat.d │ │ ├── warn13679.d │ │ ├── warn7444.d │ │ ├── widechars.d │ │ ├── write_error.d │ │ └── xmmslice.d │ ├── run.d │ ├── runnable │ │ ├── .gitignore │ │ ├── A16.d │ │ ├── README.md │ │ ├── Same.d │ │ ├── a17.d │ │ ├── a18.d │ │ ├── a19.d │ │ ├── a20.d │ │ ├── a21.d │ │ ├── aliasassign.d │ │ ├── aliasthis.d │ │ ├── argufilem.d │ │ ├── arm.d │ │ ├── arrayop.d │ │ ├── auto1.d │ │ ├── b10562.d │ │ ├── b16278.d │ │ ├── b16360.d │ │ ├── b17073.d │ │ ├── b18034.d │ │ ├── b19294.d │ │ ├── b19584.d │ │ ├── b20470.d │ │ ├── b20890.d │ │ ├── b26.d │ │ ├── b6400.d │ │ ├── bcraii.d │ │ ├── bcraii2.d │ │ ├── bench1.d │ │ ├── betterc.d │ │ ├── bettercUnittest.d │ │ ├── bit.d │ │ ├── bitfields.c │ │ ├── bitfieldsms.c │ │ ├── bitfieldsposix32.c │ │ ├── bitfieldsposix64.c │ │ ├── bitops.d │ │ ├── bom_UTF16.d │ │ ├── bom_UTF16BE.d │ │ ├── bom_UTF32.d │ │ ├── bom_UTF8.d │ │ ├── bug11155.d │ │ ├── bug12928.d │ │ ├── bug16146.d │ │ ├── bug19652.d │ │ ├── bug5.d │ │ ├── bug7068.d │ │ ├── bug846.d │ │ ├── bug9010.d │ │ ├── builtin.d │ │ ├── c22.d │ │ ├── casting.d │ │ ├── cdcmp.d │ │ ├── cdvecfill.sh │ │ ├── class_destructors.d │ │ ├── class_opCmp.d │ │ ├── closure.d │ │ ├── complex.d │ │ ├── complex3.d │ │ ├── constfold.d │ │ ├── cov2.d │ │ ├── cppdtor.d │ │ ├── cstuff3.i │ │ ├── cstuff4.c │ │ ├── ctfe_cov.d │ │ ├── ctorpowtests.d │ │ ├── dbitfields.d │ │ ├── dbitfieldsms.d │ │ ├── dbitfieldsposix32.d │ │ ├── dbitfieldsposix64.d │ │ ├── declaration.d │ │ ├── delegate.d │ │ ├── dhry.d │ │ ├── e7804.d │ │ ├── eh.d │ │ ├── eh2.d │ │ ├── entity1.d │ │ ├── evalorder.d │ │ ├── exe1.c │ │ ├── exe2.c │ │ ├── exe3.c │ │ ├── exe4.c │ │ ├── extern1.d │ │ ├── extra-files │ │ │ ├── alice30.txt │ │ │ ├── cdvecfill.d │ │ │ ├── cdvecfill.out │ │ │ ├── cdvecfillavx.out │ │ │ ├── cdvecfillavx2.out │ │ │ ├── coverage-postscript.sh │ │ │ ├── cpp_nonpod_byval.cpp │ │ │ ├── cstuff3.c │ │ │ ├── foo37.txt │ │ │ ├── gdb15729.d │ │ │ ├── hello-profile-postscript.sh │ │ │ ├── hello-profile.d.trace.def │ │ │ ├── importc_main.d │ │ │ ├── importc_main2.d │ │ │ ├── importc_test.c │ │ │ ├── importc_test.i.in │ │ │ ├── ldc_cabi2.cpp │ │ │ ├── lib10386 │ │ │ │ └── foo │ │ │ │ │ ├── bar.d │ │ │ │ │ └── package.d │ │ │ ├── lib13666.d │ │ │ ├── lib13742a.d │ │ │ ├── lib13742b.d │ │ │ ├── lib13774a.d │ │ │ ├── lib13774b.d │ │ │ ├── lib15729.d │ │ │ ├── lib18456.d │ │ │ ├── lib18456b.d │ │ │ ├── lib21723a.d │ │ │ ├── lib21723b.d │ │ │ ├── lib23148.d │ │ │ ├── lib846.d │ │ │ ├── link13774.d │ │ │ ├── link14834a.d │ │ │ ├── link14834b.d │ │ │ ├── link20802a.d │ │ │ ├── link20802b.d │ │ │ ├── m1.d │ │ │ ├── m2.d │ │ │ ├── main846.d │ │ │ ├── minimal │ │ │ │ └── object.d │ │ │ ├── moreBettercUnittests.d │ │ │ ├── objc_class.m │ │ │ ├── objc_instance_variable.m │ │ │ ├── objc_objc_msgSend.m │ │ │ ├── objc_protocol.m │ │ │ ├── objc_self_test.m │ │ │ ├── objc_super_call.m │ │ │ ├── paranoia.d │ │ │ ├── runnable-a20.lst │ │ │ ├── runnable-bug9010.lst │ │ │ ├── runnable-cov2.lst │ │ │ ├── runnable-sieve.lst │ │ │ ├── runnable-test19163.lst │ │ │ ├── std14198 │ │ │ │ ├── array.d │ │ │ │ ├── conv.d │ │ │ │ ├── format.d │ │ │ │ └── uni.d │ │ │ ├── test10386.d │ │ │ ├── test10567.d │ │ │ ├── test10567a.d │ │ │ ├── test11051.d │ │ │ ├── test13666.d │ │ │ ├── test13742.d │ │ │ ├── test14198.d │ │ │ ├── test15.txt │ │ │ ├── test16096.d │ │ │ ├── test16096a.d │ │ │ ├── test17619.d │ │ │ ├── test18456.d │ │ │ ├── test21723.d │ │ │ ├── test23148.d │ │ │ ├── test24129b.c │ │ │ ├── test24590.d │ │ │ ├── test35.d │ │ │ ├── test39.d │ │ │ └── test44.d │ │ ├── fix17429.d │ │ ├── fix20466.d │ │ ├── fix22115.d │ │ ├── fix22372.d │ │ ├── fix22624.d │ │ ├── fix22918.c │ │ ├── fldconst.d │ │ ├── foreach.d │ │ ├── foreach2.d │ │ ├── foreach3.d │ │ ├── foreach4.d │ │ ├── foreach5.d │ │ ├── funclit.d │ │ ├── functype.d │ │ ├── future.d │ │ ├── gdb1.d │ │ ├── gdb10311.d │ │ ├── gdb14225.d │ │ ├── gdb14276.d │ │ ├── gdb14313.d │ │ ├── gdb14330.d │ │ ├── gdb15729.sh │ │ ├── gdb18504.d │ │ ├── gdb22590.c │ │ ├── gdb22905.d │ │ ├── gdb4149.d │ │ ├── gdb4181.d │ │ ├── gdb_baseclass_fields.d │ │ ├── gdb_slice_debuginfo_32.d │ │ ├── gdb_slice_debuginfo_64.d │ │ ├── hello-profile.d │ │ ├── hello.d │ │ ├── helloc.c │ │ ├── iasm.d │ │ ├── iasm64.d │ │ ├── ice10086a.d │ │ ├── ice10086b.d │ │ ├── ice10857.d │ │ ├── ice15030.d │ │ ├── ice15138.d │ │ ├── ice15176.d │ │ ├── ice15200.d │ │ ├── ice21696.d │ │ ├── ice21727.d │ │ ├── ice4481.d │ │ ├── ifti.d │ │ ├── implicit.d │ │ ├── importc-test1.sh │ │ ├── imports │ │ │ ├── A16a.d │ │ │ ├── Other.d │ │ │ ├── a11447.d │ │ │ ├── a12010.d │ │ │ ├── a12037.d │ │ │ ├── a12874.d │ │ │ ├── a14267.d │ │ │ ├── a14992.d │ │ │ ├── a15030.d │ │ │ ├── a15079.d │ │ │ ├── a17a.d │ │ │ ├── a18a.d │ │ │ ├── a19a.d │ │ │ ├── a20a.d │ │ │ ├── a21a.d │ │ │ ├── a7595.d │ │ │ ├── a9546.d │ │ │ ├── a9741.d │ │ │ ├── another_module_with_tests.d │ │ │ ├── argufile.d │ │ │ ├── b11447.d │ │ │ ├── b15030.d │ │ │ ├── b26a.d │ │ │ ├── bar10378.d │ │ │ ├── bug10425.d │ │ │ ├── bug846.d │ │ │ ├── c11447.d │ │ │ ├── c22a.d │ │ │ ├── c22b.d │ │ │ ├── ccov2.c │ │ │ ├── circularA.d │ │ │ ├── extern1a.d │ │ │ ├── freer.i │ │ │ ├── gdb22905b.d │ │ │ ├── gdb22905c.d │ │ │ ├── ice10086x.d │ │ │ ├── ice10086y.d │ │ │ ├── ice10857a.d │ │ │ ├── ice10857b.d │ │ │ ├── ice15138a.d │ │ │ ├── ice15176a.d │ │ │ ├── ice15176b.d │ │ │ ├── ice15200a.d │ │ │ ├── ice15200b.d │ │ │ ├── ice4481a.d │ │ │ ├── ice4481b.d │ │ │ ├── imp21241a.c │ │ │ ├── imp21241b.c │ │ │ ├── imp22624.c │ │ │ ├── imp23014.i │ │ │ ├── imp23402a.c │ │ │ ├── imp23402b.c │ │ │ ├── inc11239.d │ │ │ ├── inline2a.d │ │ │ ├── issue18919b.d │ │ │ ├── ldc_github_131_1a.d │ │ │ ├── ldc_github_131_2a.d │ │ │ ├── ldc_github_217a.d │ │ │ ├── link10920a.d │ │ │ ├── link11069x.d │ │ │ ├── link11069y.d │ │ │ ├── link11069z.d │ │ │ ├── link11127a.d │ │ │ ├── link11395a.d │ │ │ ├── link12144a.d │ │ │ ├── link13043a.d │ │ │ ├── link13394a.d │ │ │ ├── link13400a.d │ │ │ ├── link13415a.d │ │ │ ├── link14074x.d │ │ │ ├── link14074y.d │ │ │ ├── link14074z.d │ │ │ ├── link14541traits.d │ │ │ ├── link14588a.d │ │ │ ├── link14814a.d │ │ │ ├── link15194b.d │ │ │ ├── link15194std.d │ │ │ ├── link2500a.d │ │ │ ├── link2500b.d │ │ │ ├── link2644a.d │ │ │ ├── link2644b.d │ │ │ ├── link2644c.d │ │ │ ├── link7745b.d │ │ │ ├── link8023b.d │ │ │ ├── link9571a.d │ │ │ ├── linktypeinfo_file.d │ │ │ ├── m1a.d │ │ │ ├── m8668a.d │ │ │ ├── m8668b.d │ │ │ ├── m8668c.d │ │ │ ├── mainx23837.c │ │ │ ├── maker.i │ │ │ ├── mangle10077.d │ │ │ ├── mod2.d │ │ │ ├── module_with_tests.d │ │ │ ├── ovs1528a.d │ │ │ ├── ovs1528b.d │ │ │ ├── pubprivtmpla.d │ │ │ ├── standalone_b.d │ │ │ ├── std11069array.d │ │ │ ├── std11069container.d │ │ │ ├── std11069range.d │ │ │ ├── std11069typecons.d │ │ │ ├── std11863bitmanip.d │ │ │ ├── std11863conv.d │ │ │ ├── std11863format.d │ │ │ ├── std11file.d │ │ │ ├── std12010container.d │ │ │ ├── std15017variant.d │ │ │ ├── std15021conv.d │ │ │ ├── std15021format.d │ │ │ ├── std15030algo.d │ │ │ ├── template13478a.d │ │ │ ├── template13478b.d │ │ │ ├── template2962a.d │ │ │ ├── template_ovs1.d │ │ │ ├── template_ovs2.d │ │ │ ├── template_ovs3.d │ │ │ ├── test10441b.d │ │ │ ├── test10441c.d │ │ │ ├── test10573a.d │ │ │ ├── test10736a.d │ │ │ ├── test10736b.d │ │ │ ├── test10736c.d │ │ │ ├── test10a.d │ │ │ ├── test11039b.d │ │ │ ├── test11745b.d │ │ │ ├── test11931a.d │ │ │ ├── test11931b.d │ │ │ ├── test11931c.d │ │ │ ├── test11931d.d │ │ │ ├── test13a.d │ │ │ ├── test14901a.d │ │ │ ├── test14901b.d │ │ │ ├── test14901c.d │ │ │ ├── test14901d.d │ │ │ ├── test15777a.d │ │ │ ├── test15777b.d │ │ │ ├── test17181a.d │ │ │ ├── test17181b.d │ │ │ ├── test17181c.d │ │ │ ├── test17968a.d │ │ │ ├── test18322import.d │ │ │ ├── test18868_a.d │ │ │ ├── test18868_fls.d │ │ │ ├── test19655b.d │ │ │ ├── test19655c.d │ │ │ ├── test19655d.d │ │ │ ├── test19655e.d │ │ │ ├── test19655f.d │ │ │ ├── test19655g.d │ │ │ ├── test21a.d │ │ │ ├── test22974b.c │ │ │ ├── test23722_2b.d │ │ │ ├── test23722b.d │ │ │ ├── test24a.d │ │ │ ├── test24b.d │ │ │ ├── test24c.d │ │ │ ├── test27a.d │ │ │ ├── test29a.d │ │ │ ├── test29b.d │ │ │ ├── test31a.d │ │ │ ├── test32a.d │ │ │ ├── test35a.d │ │ │ ├── test38a.d │ │ │ ├── test39a.d │ │ │ ├── test3a.d │ │ │ ├── test3b.d │ │ │ ├── test40a.d │ │ │ ├── test41a.d │ │ │ ├── test44a.d │ │ │ ├── test45a.d │ │ │ ├── test45b.d │ │ │ ├── test46a.d │ │ │ ├── test46b.d │ │ │ ├── test46c.d │ │ │ ├── test48a.d │ │ │ ├── test49a.d │ │ │ ├── test57a.d │ │ │ ├── test57b.d │ │ │ ├── test58a.d │ │ │ ├── test61a.d │ │ │ ├── test7494a.d │ │ │ ├── test8997a.d │ │ │ ├── test9271a.d │ │ │ ├── testkwd_file.d │ │ │ ├── testmangle.d │ │ │ ├── testminitAA.d │ │ │ ├── testminitBB.d │ │ │ ├── testmod1a.d │ │ │ ├── testmod1b.d │ │ │ ├── testmod2a.d │ │ │ ├── tlsa.d │ │ │ ├── traits_getUnitTests_import.d │ │ │ ├── ufcs5a.d │ │ │ ├── ufcs5b.d │ │ │ ├── ufcs5c.d │ │ │ ├── ufcs5d.d │ │ │ └── ufcs5e.d │ │ ├── inclusive_incontracts.d │ │ ├── initializer.c │ │ ├── inline.d │ │ ├── inline14560.d │ │ ├── inline2.d │ │ ├── inline3.d │ │ ├── inline7625.d │ │ ├── inner.d │ │ ├── integrate.d │ │ ├── interface.d │ │ ├── interface1.d │ │ ├── interface2.d │ │ ├── interface3.d │ │ ├── interpolatedexpressionsequence.d │ │ ├── interpret.d │ │ ├── interpret2.d │ │ ├── issue11070.d │ │ ├── issue16995.d │ │ ├── issue18919.d │ │ ├── issue22854.d │ │ ├── issue24168.d │ │ ├── issue24401.d │ │ ├── lazy.d │ │ ├── ldc_cabi1.d │ │ ├── ldc_contracts.d │ │ ├── ldc_eh.d │ │ ├── ldc_enum.d │ │ ├── ldc_evalorder_github_1617.d │ │ ├── ldc_extern_weak.d │ │ ├── ldc_github_1033.d │ │ ├── ldc_github_1058.d │ │ ├── ldc_github_1101.d │ │ ├── ldc_github_1141.d │ │ ├── ldc_github_119.d │ │ ├── ldc_github_131_1.d │ │ ├── ldc_github_131_2.d │ │ ├── ldc_github_1327.d │ │ ├── ldc_github_1335.d │ │ ├── ldc_github_1406.d │ │ ├── ldc_github_1450.d │ │ ├── ldc_github_1608.d │ │ ├── ldc_github_1677.d │ │ ├── ldc_github_176.d │ │ ├── ldc_github_179.d │ │ ├── ldc_github_214.d │ │ ├── ldc_github_217.d │ │ ├── ldc_github_246.d │ │ ├── ldc_github_248.d │ │ ├── ldc_github_328.d │ │ ├── ldc_github_340.d │ │ ├── ldc_github_420.d │ │ ├── ldc_github_424.d │ │ ├── ldc_github_426.d │ │ ├── ldc_github_430.d │ │ ├── ldc_github_440.d │ │ ├── ldc_github_513.d │ │ ├── ldc_github_556.d │ │ ├── ldc_github_726.d │ │ ├── ldc_github_795.d │ │ ├── ldc_github_809.d │ │ ├── ldc_github_812.d │ │ ├── ldc_github_944.d │ │ ├── ldc_github_989.d │ │ ├── ldc_intrinsics.d │ │ ├── ldc_llvm_inline_ir.d │ │ ├── ldc_no_gc.d │ │ ├── lexer.d │ │ ├── link10425.d │ │ ├── link10920.d │ │ ├── link11069a.d │ │ ├── link11069b.d │ │ ├── link11127.d │ │ ├── link11395.d │ │ ├── link11931.d │ │ ├── link12010.d │ │ ├── link12037.d │ │ ├── link12144.d │ │ ├── link13043.d │ │ ├── link13350.d │ │ ├── link13394.d │ │ ├── link13400.d │ │ ├── link13415.d │ │ ├── link13843.d │ │ ├── link14074a.d │ │ ├── link14074b.d │ │ ├── link14198a.sh │ │ ├── link14425.d │ │ ├── link14541.d │ │ ├── link14588.d │ │ ├── link14814.d │ │ ├── link14834.sh │ │ ├── link14992.d │ │ ├── link15017.d │ │ ├── link15021.d │ │ ├── link15149.d │ │ ├── link20802.sh │ │ ├── link2500.d │ │ ├── link2644.d │ │ ├── link6574.d │ │ ├── link7745.d │ │ ├── link7966.d │ │ ├── link8023.d │ │ ├── link846.sh │ │ ├── link9571.d │ │ ├── linktypeinfo.d │ │ ├── literal.d │ │ ├── loopunroll.d │ │ ├── m1.d │ │ ├── manboy.d │ │ ├── mangle.d │ │ ├── mars1.d │ │ ├── minimal.d │ │ ├── minimal2.d │ │ ├── mixin1.d │ │ ├── mixin2.d │ │ ├── mod1.d │ │ ├── nan.d │ │ ├── nested.d │ │ ├── newaa.d │ │ ├── newdel.d │ │ ├── no_assertz_cov.d │ │ ├── nogc.d │ │ ├── nonpod_byval.d │ │ ├── noreturn1.d │ │ ├── noreturn2.d │ │ ├── nrvo.d │ │ ├── nulltype.d │ │ ├── objc_autoselector.d │ │ ├── objc_call.d │ │ ├── objc_call_static.d │ │ ├── objc_class.d │ │ ├── objc_external_class_19700.d │ │ ├── objc_instance_variable.d │ │ ├── objc_objc_msgSend.d │ │ ├── objc_protocol.d │ │ ├── objc_protocol_sections.d │ │ ├── objc_self_test.d │ │ ├── objc_super_call.d │ │ ├── opdisp.d │ │ ├── opover.d │ │ ├── opover2.d │ │ ├── opover3.d │ │ ├── overload.d │ │ ├── paranoia.d │ │ ├── pi.d │ │ ├── placenew.d │ │ ├── polysemous.d │ │ ├── powinline.d │ │ ├── previewin.d │ │ ├── printargs.d │ │ ├── profilegc_stdout.d │ │ ├── property.d │ │ ├── property2.d │ │ ├── pubprivtmpl.d │ │ ├── rvalue1.d │ │ ├── s2ir.d │ │ ├── sctor.d │ │ ├── sctor2.d │ │ ├── sdtor.d │ │ ├── sieve.d │ │ ├── sroa13220.d │ │ ├── standalone_modctor.d │ │ ├── staticaa.d │ │ ├── staticforeach.d │ │ ├── statictor.d │ │ ├── stress.d │ │ ├── structinit.c │ │ ├── structlit.d │ │ ├── template1.d │ │ ├── template10.d │ │ ├── template13478.d │ │ ├── template2.d │ │ ├── template2962.d │ │ ├── template3.d │ │ ├── template4.d │ │ ├── template6.d │ │ ├── template8.d │ │ ├── template9.d │ │ ├── test10.d │ │ ├── test10378.d │ │ ├── test10386.sh │ │ ├── test10441.d │ │ ├── test10445.d │ │ ├── test10567.sh │ │ ├── test10573.d │ │ ├── test10619.d │ │ ├── test10736.d │ │ ├── test10942.d │ │ ├── test11.d │ │ ├── test11039.d │ │ ├── test11239.d │ │ ├── test11447a.d │ │ ├── test11447b.d │ │ ├── test11447c.d │ │ ├── test11745.d │ │ ├── test11863.d │ │ ├── test11934.d │ │ ├── test12.d │ │ ├── test12197.d │ │ ├── test12486.d │ │ ├── test12874.d │ │ ├── test13.d │ │ ├── test13117.d │ │ ├── test13117b.d │ │ ├── test13504.d │ │ ├── test13613.d │ │ ├── test13666.sh │ │ ├── test13742.sh │ │ ├── test13774.sh │ │ ├── test13944.d │ │ ├── test14613.d │ │ ├── test14874.d │ │ ├── test14901.d │ │ ├── test14903.d │ │ ├── test15.d │ │ ├── test15079.d │ │ ├── test15373.d │ │ ├── test15568.d │ │ ├── test15779.d │ │ ├── test15862.d │ │ ├── test15913.d │ │ ├── test15985.d │ │ ├── test16.d │ │ ├── test16047.d │ │ ├── test16096.sh │ │ ├── test16098.d │ │ ├── test16115.d │ │ ├── test16140.d │ │ ├── test16555.d │ │ ├── test16579.d │ │ ├── test16640.d │ │ ├── test16980.d │ │ ├── test17.d │ │ ├── test17072.d │ │ ├── test17181.d │ │ ├── test17181b.d │ │ ├── test17246.d │ │ ├── test17258.d │ │ ├── test17337.d │ │ ├── test17338.d │ │ ├── test17559.d │ │ ├── test17619.sh │ │ ├── test17684.d │ │ ├── test17868.d │ │ ├── test17868b.d │ │ ├── test17878.d │ │ ├── test17885.d │ │ ├── test17899.d │ │ ├── test17940.d │ │ ├── test17943.d │ │ ├── test17965.d │ │ ├── test17968.d │ │ ├── test18054.d │ │ ├── test18076.sh │ │ ├── test18141.sh │ │ ├── test18296.d │ │ ├── test18322.d │ │ ├── test18335.sh │ │ ├── test18412.sh │ │ ├── test18456.sh │ │ ├── test18472.d │ │ ├── test18534.d │ │ ├── test18545.d │ │ ├── test18746.d │ │ ├── test18868.d │ │ ├── test18868_2.d │ │ ├── test18868_3.d │ │ ├── test18880.d │ │ ├── test18902.sh │ │ ├── test18916.d │ │ ├── test18973.d │ │ ├── test19.d │ │ ├── test19086.d │ │ ├── test19122.d │ │ ├── test19163.d │ │ ├── test19185.d │ │ ├── test19192.d │ │ ├── test19223.d │ │ ├── test19251.d │ │ ├── test19317.d │ │ ├── test19386.d │ │ ├── test19393.d │ │ ├── test19441.d │ │ ├── test19476.d │ │ ├── test19639.d │ │ ├── test19655a.d │ │ ├── test19672.d │ │ ├── test19679.d │ │ ├── test19729.d │ │ ├── test19734.d │ │ ├── test19735.d │ │ ├── test19774.d │ │ ├── test19782.d │ │ ├── test19822.d │ │ ├── test19825.d │ │ ├── test19891.d │ │ ├── test19946.d │ │ ├── test2.d │ │ ├── test20.d │ │ ├── test20025.d │ │ ├── test20036.d │ │ ├── test20130.d │ │ ├── test20365.d │ │ ├── test20401.d │ │ ├── test20520.d │ │ ├── test20565.d │ │ ├── test20603.d │ │ ├── test20649.d │ │ ├── test20687.d │ │ ├── test20734.d │ │ ├── test20809.d │ │ ├── test20811.d │ │ ├── test20831.c │ │ ├── test20855.d │ │ ├── test20893.d │ │ ├── test21.d │ │ ├── test21020.d │ │ ├── test21039.d │ │ ├── test21040.d │ │ ├── test21120.d │ │ ├── test21234.sh │ │ ├── test21301.d │ │ ├── test21357.d │ │ ├── test21367.d │ │ ├── test21403.d │ │ ├── test21416.d │ │ ├── test21424.d │ │ ├── test21429.d │ │ ├── test21435.d │ │ ├── test21478a.d │ │ ├── test21478b.d │ │ ├── test21479.d │ │ ├── test21506.d │ │ ├── test21515.d │ │ ├── test21586.d │ │ ├── test21723.sh │ │ ├── test21772.d │ │ ├── test21821.d │ │ ├── test21822.d │ │ ├── test21833.d │ │ ├── test22.d │ │ ├── test22070_2.c │ │ ├── test22071.c │ │ ├── test22163.d │ │ ├── test22175.d │ │ ├── test22205.d │ │ ├── test22209.d │ │ ├── test22227.d │ │ ├── test22278.d │ │ ├── test22321.c │ │ ├── test22326.c │ │ ├── test22342.c │ │ ├── test22376.c │ │ ├── test22428.c │ │ ├── test22500.c │ │ ├── test22513.c │ │ ├── test22531.c │ │ ├── test22538.c │ │ ├── test22567.c │ │ ├── test22585.c │ │ ├── test22592.c │ │ ├── test22597.c │ │ ├── test22717.d │ │ ├── test22863.sh │ │ ├── test22897.c │ │ ├── test22923.c │ │ ├── test22930.c │ │ ├── test22945.d │ │ ├── test22972.c │ │ ├── test22974.c │ │ ├── test22976.c │ │ ├── test23.d │ │ ├── test23010.d │ │ ├── test23011.c │ │ ├── test23014.i │ │ ├── test23025.c │ │ ├── test23028.c │ │ ├── test23036.d │ │ ├── test23045.c │ │ ├── test23058.c │ │ ├── test23083.d │ │ ├── test23148.sh │ │ ├── test23181.d │ │ ├── test23234.d │ │ ├── test23307.d │ │ ├── test23337.d │ │ ├── test23343.c │ │ ├── test23347.c │ │ ├── test23387.d │ │ ├── test23402.d │ │ ├── test23514.d │ │ ├── test23618.d │ │ ├── test23710.d │ │ ├── test23722.d │ │ ├── test23722_2.d │ │ ├── test23786.c │ │ ├── test23837.d │ │ ├── test23877.c │ │ ├── test23889.c │ │ ├── test23959.d │ │ ├── test24.d │ │ ├── test24029.c │ │ ├── test24078.d │ │ ├── test24129.c │ │ ├── test24139.d │ │ ├── test24181.c │ │ ├── test24184.d │ │ ├── test24371.d │ │ ├── test24498.d │ │ ├── test24590.sh │ │ ├── test24599.d │ │ ├── test24819.d │ │ ├── test24884.d │ │ ├── test27.d │ │ ├── test28.d │ │ ├── test29.d │ │ ├── test3.d │ │ ├── test30.d │ │ ├── test31.d │ │ ├── test32.d │ │ ├── test34.d │ │ ├── test3449.d │ │ ├── test35.sh │ │ ├── test3574a.d │ │ ├── test3574b.d │ │ ├── test3574c.d │ │ ├── test3574d.d │ │ ├── test36.d │ │ ├── test37.d │ │ ├── test38.d │ │ ├── test39.sh │ │ ├── test4.d │ │ ├── test40.d │ │ ├── test41.d │ │ ├── test42.d │ │ ├── test42a.d │ │ ├── test435.d │ │ ├── test44b.d │ │ ├── test45.d │ │ ├── test46.d │ │ ├── test48.d │ │ ├── test49.d │ │ ├── test5.d │ │ ├── test52.d │ │ ├── test57.d │ │ ├── test58.d │ │ ├── test5943.d │ │ ├── test61.d │ │ ├── test6423.d │ │ ├── test6795.d │ │ ├── test7.d │ │ ├── test711.d │ │ ├── test7452.d │ │ ├── test7453.d │ │ ├── test7494.d │ │ ├── test7511.d │ │ ├── test7595.d │ │ ├── test7603.d │ │ ├── test7618.d │ │ ├── test7932.d │ │ ├── test8.d │ │ ├── test809.d │ │ ├── test8182.d │ │ ├── test8544.d │ │ ├── test8997.d │ │ ├── test9259.d │ │ ├── test9271.d │ │ ├── test9287.sh │ │ ├── test9309.d │ │ ├── test9495.d │ │ ├── testCopyCtor.d │ │ ├── testOpApply.d │ │ ├── testTypePropAsm.d │ │ ├── test_cdstrpar.d │ │ ├── test_dip1006.d │ │ ├── test_dip1006b.d │ │ ├── test_dip1006c.d │ │ ├── test_safe_final_switch.sh │ │ ├── test_switches.sh │ │ ├── testaa.d │ │ ├── testaa2.d │ │ ├── testaa3.d │ │ ├── testabi.d │ │ ├── testaliascast.d │ │ ├── testappend.d │ │ ├── testargtypes.d │ │ ├── testarray.d │ │ ├── testassert.d │ │ ├── testassert_debug.d │ │ ├── testassert_release.d │ │ ├── testassign.d │ │ ├── testbounds.d │ │ ├── testbounds_off.d │ │ ├── testbounds_on.d │ │ ├── testbounds_safeonly.d │ │ ├── testbtst.d │ │ ├── testcgelem.d │ │ ├── testcheck.c │ │ ├── testclass.d │ │ ├── testconst.d │ │ ├── testconstsection.d │ │ ├── testcontracts.d │ │ ├── testdefault_after_variadic.d │ │ ├── testdstress.d │ │ ├── testdt.d │ │ ├── testenum.d │ │ ├── testfloat.d │ │ ├── testgc2.d │ │ ├── testgc3.d │ │ ├── testinvariant.d │ │ ├── testkeyword.d │ │ ├── testline.d │ │ ├── testmain.d │ │ ├── testmainb.d │ │ ├── testminit.d │ │ ├── testmod1.d │ │ ├── testmod2.d │ │ ├── testmodule.d │ │ ├── testpdb.d │ │ ├── testpic.d │ │ ├── testprofile.d │ │ ├── testptrref.d │ │ ├── testptrref_gc.d │ │ ├── testreturn.d │ │ ├── testrightthis.d │ │ ├── testsafe.d │ │ ├── testscope.d │ │ ├── testscope2.d │ │ ├── testswitch.d │ │ ├── testthread.d │ │ ├── testthread2.d │ │ ├── testtypeid.d │ │ ├── testv.d │ │ ├── testxmm.d │ │ ├── testxmm2.d │ │ ├── tls.d │ │ ├── tls_dup.d │ │ ├── traits.d │ │ ├── traits_child.d │ │ ├── traits_getPointerBitmap.d │ │ ├── traits_getUnitTests.d │ │ ├── traits_getVirtualIndex.d │ │ ├── traits_initSymbol.d │ │ ├── tuple_default_parameters.d │ │ ├── uda.d │ │ ├── ufcs.d │ │ ├── uniformctor.d │ │ ├── unique_typeinfo_names.d │ │ ├── variadic.d │ │ ├── version.d │ │ ├── warning1.d │ │ ├── wc.d │ │ ├── wc2.d │ │ ├── wc3.d │ │ ├── whetstone.d │ │ ├── xdtor.d │ │ ├── xpostblit.d │ │ ├── xtest46.d │ │ ├── xtest46_gc.d │ │ ├── xtest47.d │ │ ├── xtest55.d │ │ └── xtestenum.d │ ├── runnable_cxx │ │ ├── README.md │ │ ├── abi_tags.d │ │ ├── cabi1.d │ │ ├── cpp11.d │ │ ├── cpp_abi_tests.d │ │ ├── cpp_stdlib.d │ │ ├── cppa.d │ │ ├── externmangle.d │ │ ├── externmangle2.d │ │ ├── extra-files │ │ │ ├── abi_tags.cpp │ │ │ ├── c14203.cpp │ │ │ ├── cabi2.cpp │ │ │ ├── cpp11.cpp │ │ │ ├── cpp19179.cpp │ │ │ ├── cpp22287.cpp │ │ │ ├── cpp7925.cpp │ │ │ ├── cpp_abi_tests.cpp │ │ │ ├── cpp_nonpod_byval.cpp │ │ │ ├── cpp_stdlib.cpp │ │ │ ├── cppb.cpp │ │ │ ├── cppb.h │ │ │ ├── externmangle.cpp │ │ │ ├── externmangle2.cpp │ │ │ ├── stdint.cpp │ │ │ ├── test20652.cpp │ │ │ ├── test21515.cpp │ │ │ ├── test22351.cpp │ │ │ ├── test22898.cpp │ │ │ ├── test23135.cpp │ │ │ ├── test24292.cpp │ │ │ ├── test6716.cpp │ │ │ ├── testbitfields_cpp.cpp │ │ │ └── testbitfields_importc.c │ │ ├── nonpod_byval.d │ │ ├── stdint.d │ │ ├── test14203.d │ │ ├── test19179.d │ │ ├── test20652.d │ │ ├── test21515.d │ │ ├── test22287.d │ │ ├── test22351.d │ │ ├── test22898.d │ │ ├── test23135.d │ │ ├── test24292.d │ │ ├── test6716.d │ │ ├── test7925.d │ │ └── testbitfields.d │ ├── tools │ │ ├── README.md │ │ ├── common_funcs.sh │ │ ├── d_do_test.d │ │ ├── dshell_prebuilt │ │ │ └── dshell_prebuilt.d │ │ ├── exported_vars.sh │ │ ├── paths.d │ │ ├── postscript.sh │ │ ├── sanitize_json.d │ │ ├── sanitize_timetrace.d │ │ ├── sh_do_test.sh │ │ └── unit_test_runner.d │ └── unit │ │ ├── README.md │ │ ├── compilable │ │ ├── crlf.d │ │ └── searching.d │ │ ├── deinitialization.d │ │ ├── frontend.d │ │ ├── interfaces │ │ └── check_implementations_20861.d │ │ ├── lexer │ │ ├── diagnostic_reporter.d │ │ ├── lexer_dmdlib.d │ │ └── location_offset.d │ │ ├── objc │ │ └── protocols │ │ │ ├── diagnostic_messages.d │ │ │ └── optional_methods.d │ │ ├── parser │ │ ├── aliasdeclaration_location.d │ │ ├── conditionalcompilation_location.d │ │ ├── diagnostic_reporter.d │ │ ├── dvcondition_location.d │ │ ├── linkage_location.d │ │ ├── test_astbase.d │ │ └── visibilitydeclaration_location.d │ │ ├── self_test.d │ │ ├── semantic │ │ ├── control_flow.d │ │ ├── covariance.d │ │ └── imports.d │ │ ├── support.d │ │ ├── support │ │ └── data │ │ │ └── foo.txt │ │ └── triple.d ├── driver │ ├── clang-cl-target-forwarding.d │ ├── cleanup_obj_gh3643.d │ ├── cli_CC_envvar.d │ ├── cli_preparsing.d │ ├── config_append_assign.d │ ├── config_diag.d │ ├── config_diag_x86.d │ ├── config_dir.d │ ├── cross_cc_fallback.d │ ├── drt_options_in_rsp_file.d │ ├── float_abi.d │ ├── ftime-trace-ctfe.d │ ├── ftime-trace.d │ ├── fwarn-stack-size.d │ ├── gh1941.d │ ├── gh1941.rsp │ ├── gh1945.d │ ├── gh2073.d │ ├── include_imports.d │ ├── inputs │ │ ├── appending_assign.conf │ │ ├── drt_options_in_rsp_file.rsp │ │ ├── include_imports2.d │ │ ├── override_default.conf │ │ ├── post_switches.conf │ │ └── preprocessable.c │ ├── loongarch64_abi.d │ ├── main.d │ ├── missing_tool.d │ ├── mscrtlib.d │ ├── post_switches.d │ ├── ppc_float_abi.d │ ├── riscv_abi1.d │ ├── riscv_abi2.d │ ├── riscv_abi3.d │ ├── riscv_abi4.d │ ├── riscv_abi5.d │ └── save_optimization_record.d ├── dynamiccompile │ ├── array.d │ ├── asm_output.d │ ├── bind.d │ ├── bind_bool.d │ ├── bind_func_opt.d │ ├── bind_nested_opt.d │ ├── bind_opt.d │ ├── calls.d │ ├── classes.d │ ├── compiler_context.d │ ├── compiler_context_parallel.d │ ├── dump_handler.d │ ├── emit.d │ ├── empty_jit_modules.d │ ├── global_opt.d │ ├── globals.d │ ├── globals_types.d │ ├── inline_asm.d │ ├── inputs │ │ ├── module1.d │ │ ├── module2.d │ │ ├── module3.d │ │ ├── rtconst_owner.d │ │ └── rtconst_user.d │ ├── jit_module_stripping.d │ ├── lambdas.d │ ├── library.d │ ├── multiple_modules.d │ ├── multiple_modules_rtconst.d │ ├── options.d │ ├── options_invalid.d │ ├── options_multiple_changes.d │ ├── params_ctors.d │ ├── recursive_call.d │ ├── simd_simple_opt.d │ ├── simple.d │ ├── struct_init.d │ ├── thread_local.d │ ├── throw.d │ └── tls_workaround_opt.d ├── fail_compilation │ ├── asm_diagnostics.d │ ├── asm_error_gh4293.d │ ├── asm_gcc_indirect.d │ ├── betterC_typeinfo_diag.d │ ├── dmd_style_asm_in_inline_d_function.d │ ├── gh4938.d │ ├── global_var_collision.d │ ├── inputs │ │ └── asm_diagnostics2.d │ └── no_address_for_intrinsics.d ├── instrument │ ├── coverage_cycle_gh2177.d │ ├── coverage_main_gh2163.d │ ├── finstrument_functions.d │ ├── inputs │ │ └── coverage_cycle_input.d │ ├── lit.local.cfg │ ├── xray_check_pipeline.d │ ├── xray_instrument.d │ ├── xray_instrument_threshold.d │ ├── xray_link.d │ └── xray_simple_execution.d ├── linking │ ├── betterc.d │ ├── betterc_cleanups.d │ ├── fulllto_1.d │ ├── fullystatic.d │ ├── inputs │ │ ├── asm_x86.d │ │ ├── link_bitcode_import.d │ │ ├── link_bitcode_input.d │ │ ├── link_bitcode_input3.d │ │ ├── link_bitcode_libs_input.d │ │ └── thinlto_ctor.d │ ├── ir2obj_cache_pruning.d │ ├── ir2obj_cache_pruning2.d │ ├── ir2obj_caching.d │ ├── ir2obj_caching_flags1.d │ ├── ir2obj_caching_flags2.d │ ├── ir2obj_caching_retrieval.d │ ├── link_bitcode.d │ ├── link_bitcode_libs.d │ ├── link_internally.d │ ├── linker_empty.d │ ├── linker_switches.d │ ├── platformlib.d │ ├── rt_options.d │ ├── thinlto_1.d │ ├── thinlto_asm_x86.d │ ├── thinlto_modulecdtors.d │ └── thinlto_modulecdtors_2.d ├── lit.site.cfg.in ├── plugins │ ├── addFuncEntryCall │ │ ├── Makefile │ │ ├── addFuncEntryCallPass.cpp │ │ └── testPlugin.d │ ├── basic_sema_plugin.d │ ├── lit.local.cfg │ └── visitor_example.d ├── runlit.py ├── sanitizers │ ├── asan_dynalloc.d │ ├── asan_fakestack_GC.d │ ├── asan_fiber.d │ ├── asan_fiber_main.d │ ├── asan_gh4816.d │ ├── asan_interface.d │ ├── asan_noerror.d │ ├── asan_recover_stackoverflow.d │ ├── asan_stackoverflow.d │ ├── asan_use_after_return.d │ ├── asan_use_after_scope.d │ ├── asan_use_after_scope_if.d │ ├── attr_nosanitize.d │ ├── deflake.bash │ ├── fsanitize_address.d │ ├── fsanitize_blacklist.d │ ├── fsanitize_blacklist_file1.d │ ├── fsanitize_blacklist_file2.d │ ├── fsanitize_coverage.d │ ├── fsanitize_error_diagnostic.d │ ├── fsanitize_fuzzer.d │ ├── fsanitize_thread.d │ ├── fuzz_asan.d │ ├── fuzz_basic.d │ ├── fuzz_mixin.d │ ├── inputs │ │ ├── fsanitize_blacklist.txt │ │ ├── fsanitize_blacklist2.txt │ │ └── fsanitize_blacklist_file.txt │ ├── link_fuzzer.d │ ├── lit.local.cfg │ ├── lsan_memleak.d │ ├── msan_noerror.d │ ├── msan_uninitialized.d │ ├── tsan_noerror.d │ ├── tsan_tiny_race.d │ └── tsan_tiny_race_TLS.d ├── semantic │ ├── dcompute.d │ ├── dcompute_asm.d │ ├── inputs │ │ └── notatcompute.d │ ├── target_traits.d │ ├── target_traits_dcompute.d │ ├── target_traits_diag.d │ └── traits_initSymbol.d └── tools │ ├── ldc_prune_cache_1.d │ ├── timetrace2txt_1.d │ └── timetrace2txt_tsv.d ├── tools ├── CMakeLists.txt ├── README.md ├── fill-multilib-triple.sh ├── ldc-build-plugin.d.in ├── ldc-profdata │ ├── llvm-profdata-15.0.cpp │ ├── llvm-profdata-16.0.cpp │ ├── llvm-profdata-17.0.cpp │ ├── llvm-profdata-18.1.cpp │ ├── llvm-profdata-19.1.cpp │ └── llvm-profdata-20.1.cpp ├── ldc-profgen │ ├── ldc-profgen-15.0 │ │ ├── CMakeLists.txt │ │ ├── CSPreInliner.cpp │ │ ├── CSPreInliner.h │ │ ├── CallContext.h │ │ ├── ErrorHandling.h │ │ ├── PerfReader.cpp │ │ ├── PerfReader.h │ │ ├── ProfileGenerator.cpp │ │ ├── ProfileGenerator.h │ │ ├── ProfiledBinary.cpp │ │ ├── ProfiledBinary.h │ │ └── llvm-profgen.cpp │ ├── ldc-profgen-16.0 │ │ ├── CMakeLists.txt │ │ ├── CSPreInliner.cpp │ │ ├── CSPreInliner.h │ │ ├── CallContext.h │ │ ├── ErrorHandling.h │ │ ├── MissingFrameInferrer.cpp │ │ ├── MissingFrameInferrer.h │ │ ├── PerfReader.cpp │ │ ├── PerfReader.h │ │ ├── ProfileGenerator.cpp │ │ ├── ProfileGenerator.h │ │ ├── ProfiledBinary.cpp │ │ ├── ProfiledBinary.h │ │ └── llvm-profgen.cpp │ ├── ldc-profgen-17.0 │ │ ├── CMakeLists.txt │ │ ├── CSPreInliner.cpp │ │ ├── CSPreInliner.h │ │ ├── CallContext.h │ │ ├── ErrorHandling.h │ │ ├── MissingFrameInferrer.cpp │ │ ├── MissingFrameInferrer.h │ │ ├── PerfReader.cpp │ │ ├── PerfReader.h │ │ ├── ProfileGenerator.cpp │ │ ├── ProfileGenerator.h │ │ ├── ProfiledBinary.cpp │ │ ├── ProfiledBinary.h │ │ └── llvm-profgen.cpp │ ├── ldc-profgen-18.1 │ │ ├── CMakeLists.txt │ │ ├── CSPreInliner.cpp │ │ ├── CSPreInliner.h │ │ ├── CallContext.h │ │ ├── ErrorHandling.h │ │ ├── MissingFrameInferrer.cpp │ │ ├── MissingFrameInferrer.h │ │ ├── PerfReader.cpp │ │ ├── PerfReader.h │ │ ├── ProfileGenerator.cpp │ │ ├── ProfileGenerator.h │ │ ├── ProfiledBinary.cpp │ │ ├── ProfiledBinary.h │ │ └── llvm-profgen.cpp │ ├── ldc-profgen-19.1 │ │ ├── CMakeLists.txt │ │ ├── CSPreInliner.cpp │ │ ├── CSPreInliner.h │ │ ├── CallContext.h │ │ ├── ErrorHandling.h │ │ ├── MissingFrameInferrer.cpp │ │ ├── MissingFrameInferrer.h │ │ ├── PerfReader.cpp │ │ ├── PerfReader.h │ │ ├── ProfileGenerator.cpp │ │ ├── ProfileGenerator.h │ │ ├── ProfiledBinary.cpp │ │ ├── ProfiledBinary.h │ │ └── llvm-profgen.cpp │ └── ldc-profgen-20.1 │ │ ├── CMakeLists.txt │ │ ├── CSPreInliner.cpp │ │ ├── CSPreInliner.h │ │ ├── CallContext.h │ │ ├── ErrorHandling.h │ │ ├── MissingFrameInferrer.cpp │ │ ├── MissingFrameInferrer.h │ │ ├── PerfReader.cpp │ │ ├── PerfReader.h │ │ ├── ProfileGenerator.cpp │ │ ├── ProfileGenerator.h │ │ ├── ProfiledBinary.cpp │ │ ├── ProfiledBinary.h │ │ └── llvm-profgen.cpp ├── ldc-prune-cache.d ├── timetrace2txt.d ├── update-dmd-rewrite.sh └── upload-to-github.sh └── utils ├── CMakeLists.txt ├── FileCheck-15.cpp ├── FileCheck-16.cpp ├── FileCheck-17.cpp ├── FileCheck-18.cpp ├── FileCheck-19.cpp ├── FileCheck-20.cpp ├── README.md ├── gen_gccbuiltins.cpp ├── not.cpp └── split-file.cpp /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: kinke 2 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeCPack.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/CMakeCPack.cmake -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/README.md -------------------------------------------------------------------------------- /bitrise.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/bitrise.yml -------------------------------------------------------------------------------- /cmake/VisualD.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/cmake/VisualD.props -------------------------------------------------------------------------------- /dmd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/README.md -------------------------------------------------------------------------------- /dmd/access.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/access.d -------------------------------------------------------------------------------- /dmd/aggregate.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/aggregate.d -------------------------------------------------------------------------------- /dmd/aggregate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/aggregate.h -------------------------------------------------------------------------------- /dmd/aliasthis.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/aliasthis.d -------------------------------------------------------------------------------- /dmd/aliasthis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/aliasthis.h -------------------------------------------------------------------------------- /dmd/argtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/argtypes.h -------------------------------------------------------------------------------- /dmd/argtypes_aarch64.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/argtypes_aarch64.d -------------------------------------------------------------------------------- /dmd/argtypes_sysv_x64.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/argtypes_sysv_x64.d -------------------------------------------------------------------------------- /dmd/argtypes_x86.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/argtypes_x86.d -------------------------------------------------------------------------------- /dmd/arrayop.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/arrayop.d -------------------------------------------------------------------------------- /dmd/arraytypes.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/arraytypes.d -------------------------------------------------------------------------------- /dmd/arraytypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/arraytypes.h -------------------------------------------------------------------------------- /dmd/ast_node.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/ast_node.d -------------------------------------------------------------------------------- /dmd/ast_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/ast_node.h -------------------------------------------------------------------------------- /dmd/astcodegen.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/astcodegen.d -------------------------------------------------------------------------------- /dmd/astenums.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/astenums.d -------------------------------------------------------------------------------- /dmd/asttypename.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/asttypename.d -------------------------------------------------------------------------------- /dmd/attrib.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/attrib.d -------------------------------------------------------------------------------- /dmd/attrib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/attrib.h -------------------------------------------------------------------------------- /dmd/attribsem.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/attribsem.d -------------------------------------------------------------------------------- /dmd/blockexit.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/blockexit.d -------------------------------------------------------------------------------- /dmd/boostlicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/boostlicense.txt -------------------------------------------------------------------------------- /dmd/builtin.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/builtin.d -------------------------------------------------------------------------------- /dmd/canthrow.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/canthrow.d -------------------------------------------------------------------------------- /dmd/chkformat.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/chkformat.d -------------------------------------------------------------------------------- /dmd/cli.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/cli.d -------------------------------------------------------------------------------- /dmd/clone.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/clone.d -------------------------------------------------------------------------------- /dmd/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/common/README.md -------------------------------------------------------------------------------- /dmd/common/bitfields.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/common/bitfields.d -------------------------------------------------------------------------------- /dmd/common/blake3.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/common/blake3.d -------------------------------------------------------------------------------- /dmd/common/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/common/file.d -------------------------------------------------------------------------------- /dmd/common/int128.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/common/int128.d -------------------------------------------------------------------------------- /dmd/common/outbuffer.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/common/outbuffer.d -------------------------------------------------------------------------------- /dmd/common/outbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/common/outbuffer.h -------------------------------------------------------------------------------- /dmd/common/smallbuffer.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/common/smallbuffer.d -------------------------------------------------------------------------------- /dmd/compiler.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/compiler.d -------------------------------------------------------------------------------- /dmd/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/compiler.h -------------------------------------------------------------------------------- /dmd/cond.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/cond.d -------------------------------------------------------------------------------- /dmd/cond.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/cond.h -------------------------------------------------------------------------------- /dmd/console.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/console.d -------------------------------------------------------------------------------- /dmd/constfold.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/constfold.d -------------------------------------------------------------------------------- /dmd/cparse.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/cparse.d -------------------------------------------------------------------------------- /dmd/ctfe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/ctfe.h -------------------------------------------------------------------------------- /dmd/ctfeexpr.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/ctfeexpr.d -------------------------------------------------------------------------------- /dmd/ctorflow.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/ctorflow.d -------------------------------------------------------------------------------- /dmd/cxxfrontend.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/cxxfrontend.d -------------------------------------------------------------------------------- /dmd/dcast.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/dcast.d -------------------------------------------------------------------------------- /dmd/dclass.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/dclass.d -------------------------------------------------------------------------------- /dmd/declaration.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/declaration.d -------------------------------------------------------------------------------- /dmd/declaration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/declaration.h -------------------------------------------------------------------------------- /dmd/delegatize.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/delegatize.d -------------------------------------------------------------------------------- /dmd/denum.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/denum.d -------------------------------------------------------------------------------- /dmd/deps.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/deps.d -------------------------------------------------------------------------------- /dmd/dimport.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/dimport.d -------------------------------------------------------------------------------- /dmd/dinterpret.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/dinterpret.d -------------------------------------------------------------------------------- /dmd/dmacro.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/dmacro.d -------------------------------------------------------------------------------- /dmd/dmodule.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/dmodule.d -------------------------------------------------------------------------------- /dmd/doc.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/doc.d -------------------------------------------------------------------------------- /dmd/doc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/doc.h -------------------------------------------------------------------------------- /dmd/dscope.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/dscope.d -------------------------------------------------------------------------------- /dmd/dstruct.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/dstruct.d -------------------------------------------------------------------------------- /dmd/dsymbol.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/dsymbol.d -------------------------------------------------------------------------------- /dmd/dsymbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/dsymbol.h -------------------------------------------------------------------------------- /dmd/dsymbolsem.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/dsymbolsem.d -------------------------------------------------------------------------------- /dmd/dtemplate.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/dtemplate.d -------------------------------------------------------------------------------- /dmd/dtoh.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/dtoh.d -------------------------------------------------------------------------------- /dmd/dversion.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/dversion.d -------------------------------------------------------------------------------- /dmd/entity.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/entity.d -------------------------------------------------------------------------------- /dmd/enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/enum.h -------------------------------------------------------------------------------- /dmd/enumsem.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/enumsem.d -------------------------------------------------------------------------------- /dmd/errors.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/errors.d -------------------------------------------------------------------------------- /dmd/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/errors.h -------------------------------------------------------------------------------- /dmd/errorsink.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/errorsink.d -------------------------------------------------------------------------------- /dmd/escape.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/escape.d -------------------------------------------------------------------------------- /dmd/expression.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/expression.d -------------------------------------------------------------------------------- /dmd/expression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/expression.h -------------------------------------------------------------------------------- /dmd/expressionsem.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/expressionsem.d -------------------------------------------------------------------------------- /dmd/file_manager.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/file_manager.d -------------------------------------------------------------------------------- /dmd/frontend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/frontend.h -------------------------------------------------------------------------------- /dmd/func.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/func.d -------------------------------------------------------------------------------- /dmd/funcsem.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/funcsem.d -------------------------------------------------------------------------------- /dmd/globals.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/globals.d -------------------------------------------------------------------------------- /dmd/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/globals.h -------------------------------------------------------------------------------- /dmd/gluelayer.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/gluelayer.d -------------------------------------------------------------------------------- /dmd/hdrgen.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/hdrgen.d -------------------------------------------------------------------------------- /dmd/hdrgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/hdrgen.h -------------------------------------------------------------------------------- /dmd/hooks.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/hooks.d -------------------------------------------------------------------------------- /dmd/iasm/gcc.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/iasm/gcc.d -------------------------------------------------------------------------------- /dmd/id.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/id.d -------------------------------------------------------------------------------- /dmd/id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/id.h -------------------------------------------------------------------------------- /dmd/identifier.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/identifier.d -------------------------------------------------------------------------------- /dmd/identifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/identifier.h -------------------------------------------------------------------------------- /dmd/impcnvtab.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/impcnvtab.d -------------------------------------------------------------------------------- /dmd/imphint.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/imphint.d -------------------------------------------------------------------------------- /dmd/import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/import.h -------------------------------------------------------------------------------- /dmd/importc.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/importc.d -------------------------------------------------------------------------------- /dmd/init.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/init.d -------------------------------------------------------------------------------- /dmd/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/init.h -------------------------------------------------------------------------------- /dmd/initsem.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/initsem.d -------------------------------------------------------------------------------- /dmd/inline.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/inline.d -------------------------------------------------------------------------------- /dmd/inlinecost.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/inlinecost.d -------------------------------------------------------------------------------- /dmd/intrange.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/intrange.d -------------------------------------------------------------------------------- /dmd/json.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/json.d -------------------------------------------------------------------------------- /dmd/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/json.h -------------------------------------------------------------------------------- /dmd/lambdacomp.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/lambdacomp.d -------------------------------------------------------------------------------- /dmd/ldcbindings.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/ldcbindings.d -------------------------------------------------------------------------------- /dmd/ldcbindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/ldcbindings.h -------------------------------------------------------------------------------- /dmd/lexer.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/lexer.d -------------------------------------------------------------------------------- /dmd/location.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/location.d -------------------------------------------------------------------------------- /dmd/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/main.d -------------------------------------------------------------------------------- /dmd/mangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/mangle.h -------------------------------------------------------------------------------- /dmd/mangle/basic.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/mangle/basic.d -------------------------------------------------------------------------------- /dmd/mangle/cpp.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/mangle/cpp.d -------------------------------------------------------------------------------- /dmd/mangle/cppwin.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/mangle/cppwin.d -------------------------------------------------------------------------------- /dmd/mangle/package.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/mangle/package.d -------------------------------------------------------------------------------- /dmd/mars.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/mars.d -------------------------------------------------------------------------------- /dmd/mars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/mars.h -------------------------------------------------------------------------------- /dmd/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/module.h -------------------------------------------------------------------------------- /dmd/mtype.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/mtype.d -------------------------------------------------------------------------------- /dmd/mtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/mtype.h -------------------------------------------------------------------------------- /dmd/mustuse.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/mustuse.d -------------------------------------------------------------------------------- /dmd/nogc.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/nogc.d -------------------------------------------------------------------------------- /dmd/nspace.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/nspace.d -------------------------------------------------------------------------------- /dmd/nspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/nspace.h -------------------------------------------------------------------------------- /dmd/ob.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/ob.d -------------------------------------------------------------------------------- /dmd/objc.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/objc.d -------------------------------------------------------------------------------- /dmd/objc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/objc.h -------------------------------------------------------------------------------- /dmd/opover.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/opover.d -------------------------------------------------------------------------------- /dmd/optimize.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/optimize.d -------------------------------------------------------------------------------- /dmd/osmodel.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/osmodel.mak -------------------------------------------------------------------------------- /dmd/parse.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/parse.d -------------------------------------------------------------------------------- /dmd/pragmasem.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/pragmasem.d -------------------------------------------------------------------------------- /dmd/printast.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/printast.d -------------------------------------------------------------------------------- /dmd/root/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/root/README.md -------------------------------------------------------------------------------- /dmd/root/aav.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/root/aav.d -------------------------------------------------------------------------------- /dmd/root/array.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/root/array.d -------------------------------------------------------------------------------- /dmd/root/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/root/array.h -------------------------------------------------------------------------------- /dmd/root/bitarray.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/root/bitarray.d -------------------------------------------------------------------------------- /dmd/root/bitarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/root/bitarray.h -------------------------------------------------------------------------------- /dmd/root/complex.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/root/complex.d -------------------------------------------------------------------------------- /dmd/root/complex_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/root/complex_t.h -------------------------------------------------------------------------------- /dmd/root/ctfloat.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/root/ctfloat.d -------------------------------------------------------------------------------- /dmd/root/ctfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/root/ctfloat.h -------------------------------------------------------------------------------- /dmd/root/dcompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/root/dcompat.h -------------------------------------------------------------------------------- /dmd/root/dsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/root/dsystem.h -------------------------------------------------------------------------------- /dmd/root/file.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/root/file.d -------------------------------------------------------------------------------- /dmd/root/filename.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/root/filename.d -------------------------------------------------------------------------------- /dmd/root/filename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/root/filename.h -------------------------------------------------------------------------------- /dmd/root/hash.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/root/hash.d -------------------------------------------------------------------------------- /dmd/root/longdouble.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/root/longdouble.d -------------------------------------------------------------------------------- /dmd/root/longdouble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/root/longdouble.h -------------------------------------------------------------------------------- /dmd/root/man.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/root/man.d -------------------------------------------------------------------------------- /dmd/root/optional.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/root/optional.d -------------------------------------------------------------------------------- /dmd/root/optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/root/optional.h -------------------------------------------------------------------------------- /dmd/root/port.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/root/port.d -------------------------------------------------------------------------------- /dmd/root/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/root/port.h -------------------------------------------------------------------------------- /dmd/root/region.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/root/region.d -------------------------------------------------------------------------------- /dmd/root/rmem.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/root/rmem.d -------------------------------------------------------------------------------- /dmd/root/rmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/root/rmem.h -------------------------------------------------------------------------------- /dmd/root/speller.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/root/speller.d -------------------------------------------------------------------------------- /dmd/root/string.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/root/string.d -------------------------------------------------------------------------------- /dmd/root/stringtable.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/root/stringtable.d -------------------------------------------------------------------------------- /dmd/root/utf.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/root/utf.d -------------------------------------------------------------------------------- /dmd/rootobject.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/rootobject.d -------------------------------------------------------------------------------- /dmd/rootobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/rootobject.h -------------------------------------------------------------------------------- /dmd/safe.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/safe.d -------------------------------------------------------------------------------- /dmd/sarif.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/sarif.d -------------------------------------------------------------------------------- /dmd/scope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/scope.h -------------------------------------------------------------------------------- /dmd/semantic2.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/semantic2.d -------------------------------------------------------------------------------- /dmd/semantic3.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/semantic3.d -------------------------------------------------------------------------------- /dmd/sideeffect.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/sideeffect.d -------------------------------------------------------------------------------- /dmd/statement.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/statement.d -------------------------------------------------------------------------------- /dmd/statement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/statement.h -------------------------------------------------------------------------------- /dmd/statementsem.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/statementsem.d -------------------------------------------------------------------------------- /dmd/staticassert.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/staticassert.d -------------------------------------------------------------------------------- /dmd/staticassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/staticassert.h -------------------------------------------------------------------------------- /dmd/staticcond.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/staticcond.d -------------------------------------------------------------------------------- /dmd/stmtstate.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/stmtstate.d -------------------------------------------------------------------------------- /dmd/target.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/target.d -------------------------------------------------------------------------------- /dmd/target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/target.h -------------------------------------------------------------------------------- /dmd/template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/template.h -------------------------------------------------------------------------------- /dmd/templateparamsem.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/templateparamsem.d -------------------------------------------------------------------------------- /dmd/templatesem.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/templatesem.d -------------------------------------------------------------------------------- /dmd/timetrace.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/timetrace.d -------------------------------------------------------------------------------- /dmd/timetrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/timetrace.h -------------------------------------------------------------------------------- /dmd/tokens.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/tokens.d -------------------------------------------------------------------------------- /dmd/tokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/tokens.h -------------------------------------------------------------------------------- /dmd/traits.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/traits.d -------------------------------------------------------------------------------- /dmd/typesem.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/typesem.d -------------------------------------------------------------------------------- /dmd/typinf.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/typinf.d -------------------------------------------------------------------------------- /dmd/typinf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/typinf.h -------------------------------------------------------------------------------- /dmd/utils.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/utils.d -------------------------------------------------------------------------------- /dmd/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/version.h -------------------------------------------------------------------------------- /dmd/visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/visitor.h -------------------------------------------------------------------------------- /dmd/visitor/foreachvar.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/visitor/foreachvar.d -------------------------------------------------------------------------------- /dmd/visitor/package.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/visitor/package.d -------------------------------------------------------------------------------- /dmd/visitor/parsetime.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/visitor/parsetime.d -------------------------------------------------------------------------------- /dmd/visitor/permissive.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/visitor/permissive.d -------------------------------------------------------------------------------- /dmd/visitor/postorder.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/visitor/postorder.d -------------------------------------------------------------------------------- /dmd/visitor/strict.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/visitor/strict.d -------------------------------------------------------------------------------- /dmd/visitor/transitive.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/visitor/transitive.d -------------------------------------------------------------------------------- /dmd/vsoptions.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/vsoptions.d -------------------------------------------------------------------------------- /dmd/vsoptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/dmd/vsoptions.h -------------------------------------------------------------------------------- /docs/compiler_rt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/docs/compiler_rt.md -------------------------------------------------------------------------------- /docs/dynamic_compile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/docs/dynamic_compile.md -------------------------------------------------------------------------------- /driver/archiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/archiver.cpp -------------------------------------------------------------------------------- /driver/archiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/archiver.h -------------------------------------------------------------------------------- /driver/args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/args.cpp -------------------------------------------------------------------------------- /driver/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/args.h -------------------------------------------------------------------------------- /driver/cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/cache.cpp -------------------------------------------------------------------------------- /driver/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/cache.h -------------------------------------------------------------------------------- /driver/cache_pruning.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/cache_pruning.d -------------------------------------------------------------------------------- /driver/cache_pruning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/cache_pruning.h -------------------------------------------------------------------------------- /driver/cl_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/cl_helpers.cpp -------------------------------------------------------------------------------- /driver/cl_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/cl_helpers.h -------------------------------------------------------------------------------- /driver/cl_options-llvm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/cl_options-llvm.cpp -------------------------------------------------------------------------------- /driver/cl_options-llvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/cl_options-llvm.h -------------------------------------------------------------------------------- /driver/cl_options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/cl_options.cpp -------------------------------------------------------------------------------- /driver/cl_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/cl_options.h -------------------------------------------------------------------------------- /driver/codegenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/codegenerator.cpp -------------------------------------------------------------------------------- /driver/codegenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/codegenerator.h -------------------------------------------------------------------------------- /driver/config.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/config.d -------------------------------------------------------------------------------- /driver/configfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/configfile.cpp -------------------------------------------------------------------------------- /driver/configfile.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/configfile.d -------------------------------------------------------------------------------- /driver/configfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/configfile.h -------------------------------------------------------------------------------- /driver/cpreprocessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/cpreprocessor.cpp -------------------------------------------------------------------------------- /driver/cpreprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/cpreprocessor.h -------------------------------------------------------------------------------- /driver/exe_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/exe_path.cpp -------------------------------------------------------------------------------- /driver/exe_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/exe_path.h -------------------------------------------------------------------------------- /driver/ldc-version.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/ldc-version.cpp.in -------------------------------------------------------------------------------- /driver/ldc-version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/ldc-version.h -------------------------------------------------------------------------------- /driver/ldc_version.d.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/ldc_version.d.in -------------------------------------------------------------------------------- /driver/ldmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/ldmd.cpp -------------------------------------------------------------------------------- /driver/linker-gcc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/linker-gcc.cpp -------------------------------------------------------------------------------- /driver/linker-msvc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/linker-msvc.cpp -------------------------------------------------------------------------------- /driver/linker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/linker.cpp -------------------------------------------------------------------------------- /driver/linker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/linker.h -------------------------------------------------------------------------------- /driver/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/main.cpp -------------------------------------------------------------------------------- /driver/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/main.d -------------------------------------------------------------------------------- /driver/plugins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/plugins.cpp -------------------------------------------------------------------------------- /driver/plugins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/plugins.h -------------------------------------------------------------------------------- /driver/response.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/response.cpp -------------------------------------------------------------------------------- /driver/targetmachine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/targetmachine.cpp -------------------------------------------------------------------------------- /driver/targetmachine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/targetmachine.h -------------------------------------------------------------------------------- /driver/toobj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/toobj.cpp -------------------------------------------------------------------------------- /driver/toobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/toobj.h -------------------------------------------------------------------------------- /driver/tool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/tool.cpp -------------------------------------------------------------------------------- /driver/tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/driver/tool.h -------------------------------------------------------------------------------- /gen/aa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/aa.cpp -------------------------------------------------------------------------------- /gen/aa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/aa.h -------------------------------------------------------------------------------- /gen/abi/aarch64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/abi/aarch64.cpp -------------------------------------------------------------------------------- /gen/abi/abi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/abi/abi.cpp -------------------------------------------------------------------------------- /gen/abi/abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/abi/abi.h -------------------------------------------------------------------------------- /gen/abi/arm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/abi/arm.cpp -------------------------------------------------------------------------------- /gen/abi/generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/abi/generic.h -------------------------------------------------------------------------------- /gen/abi/loongarch64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/abi/loongarch64.cpp -------------------------------------------------------------------------------- /gen/abi/mips64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/abi/mips64.cpp -------------------------------------------------------------------------------- /gen/abi/nvptx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/abi/nvptx.cpp -------------------------------------------------------------------------------- /gen/abi/ppc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/abi/ppc.cpp -------------------------------------------------------------------------------- /gen/abi/ppc64le.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/abi/ppc64le.cpp -------------------------------------------------------------------------------- /gen/abi/riscv64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/abi/riscv64.cpp -------------------------------------------------------------------------------- /gen/abi/spirv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/abi/spirv.cpp -------------------------------------------------------------------------------- /gen/abi/targets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/abi/targets.h -------------------------------------------------------------------------------- /gen/abi/wasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/abi/wasm.cpp -------------------------------------------------------------------------------- /gen/abi/win64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/abi/win64.cpp -------------------------------------------------------------------------------- /gen/abi/x86-64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/abi/x86-64.cpp -------------------------------------------------------------------------------- /gen/abi/x86.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/abi/x86.cpp -------------------------------------------------------------------------------- /gen/arrays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/arrays.cpp -------------------------------------------------------------------------------- /gen/arrays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/arrays.h -------------------------------------------------------------------------------- /gen/asm-gcc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/asm-gcc.cpp -------------------------------------------------------------------------------- /gen/asm-x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/asm-x86.h -------------------------------------------------------------------------------- /gen/asmstmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/asmstmt.cpp -------------------------------------------------------------------------------- /gen/attributes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/attributes.cpp -------------------------------------------------------------------------------- /gen/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/attributes.h -------------------------------------------------------------------------------- /gen/binops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/binops.cpp -------------------------------------------------------------------------------- /gen/binops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/binops.h -------------------------------------------------------------------------------- /gen/classes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/classes.cpp -------------------------------------------------------------------------------- /gen/classes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/classes.h -------------------------------------------------------------------------------- /gen/complex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/complex.cpp -------------------------------------------------------------------------------- /gen/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/complex.h -------------------------------------------------------------------------------- /gen/coverage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/coverage.cpp -------------------------------------------------------------------------------- /gen/coverage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/coverage.h -------------------------------------------------------------------------------- /gen/cpp-imitating-naming.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/cpp-imitating-naming.d -------------------------------------------------------------------------------- /gen/ctfloat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/ctfloat.cpp -------------------------------------------------------------------------------- /gen/dcompute/abi-rewrites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/dcompute/abi-rewrites.h -------------------------------------------------------------------------------- /gen/dcompute/druntime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/dcompute/druntime.cpp -------------------------------------------------------------------------------- /gen/dcompute/druntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/dcompute/druntime.h -------------------------------------------------------------------------------- /gen/dcompute/target.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/dcompute/target.cpp -------------------------------------------------------------------------------- /gen/dcompute/target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/dcompute/target.h -------------------------------------------------------------------------------- /gen/dcompute/targetCUDA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/dcompute/targetCUDA.cpp -------------------------------------------------------------------------------- /gen/dcompute/targetOCL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/dcompute/targetOCL.cpp -------------------------------------------------------------------------------- /gen/declarations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/declarations.cpp -------------------------------------------------------------------------------- /gen/dibuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/dibuilder.cpp -------------------------------------------------------------------------------- /gen/dibuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/dibuilder.h -------------------------------------------------------------------------------- /gen/dpragma.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/dpragma.d -------------------------------------------------------------------------------- /gen/dvalue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/dvalue.cpp -------------------------------------------------------------------------------- /gen/dvalue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/dvalue.h -------------------------------------------------------------------------------- /gen/dynamiccompile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/dynamiccompile.cpp -------------------------------------------------------------------------------- /gen/dynamiccompile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/dynamiccompile.h -------------------------------------------------------------------------------- /gen/funcgenstate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/funcgenstate.cpp -------------------------------------------------------------------------------- /gen/funcgenstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/funcgenstate.h -------------------------------------------------------------------------------- /gen/function-inlining.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/function-inlining.cpp -------------------------------------------------------------------------------- /gen/function-inlining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/function-inlining.h -------------------------------------------------------------------------------- /gen/functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/functions.cpp -------------------------------------------------------------------------------- /gen/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/functions.h -------------------------------------------------------------------------------- /gen/inlineir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/inlineir.cpp -------------------------------------------------------------------------------- /gen/inlineir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/inlineir.h -------------------------------------------------------------------------------- /gen/irstate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/irstate.cpp -------------------------------------------------------------------------------- /gen/irstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/irstate.h -------------------------------------------------------------------------------- /gen/ldctraits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/ldctraits.cpp -------------------------------------------------------------------------------- /gen/ldctraits.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/ldctraits.d -------------------------------------------------------------------------------- /gen/ldctraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/ldctraits.h -------------------------------------------------------------------------------- /gen/linkage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/linkage.cpp -------------------------------------------------------------------------------- /gen/linkage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/linkage.h -------------------------------------------------------------------------------- /gen/llvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/llvm.h -------------------------------------------------------------------------------- /gen/llvmhelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/llvmhelpers.cpp -------------------------------------------------------------------------------- /gen/llvmhelpers.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/llvmhelpers.d -------------------------------------------------------------------------------- /gen/llvmhelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/llvmhelpers.h -------------------------------------------------------------------------------- /gen/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/logger.cpp -------------------------------------------------------------------------------- /gen/logger.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/logger.d -------------------------------------------------------------------------------- /gen/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/logger.h -------------------------------------------------------------------------------- /gen/mangling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/mangling.cpp -------------------------------------------------------------------------------- /gen/mangling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/mangling.h -------------------------------------------------------------------------------- /gen/moduleinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/moduleinfo.cpp -------------------------------------------------------------------------------- /gen/moduleinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/moduleinfo.h -------------------------------------------------------------------------------- /gen/modules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/modules.cpp -------------------------------------------------------------------------------- /gen/modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/modules.h -------------------------------------------------------------------------------- /gen/ms-cxx-helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/ms-cxx-helper.cpp -------------------------------------------------------------------------------- /gen/ms-cxx-helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/ms-cxx-helper.h -------------------------------------------------------------------------------- /gen/naked.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/naked.cpp -------------------------------------------------------------------------------- /gen/nested.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/nested.cpp -------------------------------------------------------------------------------- /gen/nested.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/nested.h -------------------------------------------------------------------------------- /gen/objcgen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/objcgen.cpp -------------------------------------------------------------------------------- /gen/objcgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/objcgen.h -------------------------------------------------------------------------------- /gen/optimizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/optimizer.cpp -------------------------------------------------------------------------------- /gen/optimizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/optimizer.h -------------------------------------------------------------------------------- /gen/passes/Passes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/passes/Passes.h -------------------------------------------------------------------------------- /gen/passes/StripExternals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/passes/StripExternals.h -------------------------------------------------------------------------------- /gen/passes/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/passes/metadata.h -------------------------------------------------------------------------------- /gen/pgo_ASTbased.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/pgo_ASTbased.cpp -------------------------------------------------------------------------------- /gen/pgo_ASTbased.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/pgo_ASTbased.h -------------------------------------------------------------------------------- /gen/pragma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/pragma.cpp -------------------------------------------------------------------------------- /gen/pragma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/pragma.h -------------------------------------------------------------------------------- /gen/recursivevisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/recursivevisitor.h -------------------------------------------------------------------------------- /gen/rttibuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/rttibuilder.cpp -------------------------------------------------------------------------------- /gen/rttibuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/rttibuilder.h -------------------------------------------------------------------------------- /gen/runtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/runtime.cpp -------------------------------------------------------------------------------- /gen/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/runtime.h -------------------------------------------------------------------------------- /gen/scope_exit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/scope_exit.h -------------------------------------------------------------------------------- /gen/semantic-dcompute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/semantic-dcompute.cpp -------------------------------------------------------------------------------- /gen/semantic.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/semantic.d -------------------------------------------------------------------------------- /gen/statements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/statements.cpp -------------------------------------------------------------------------------- /gen/structs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/structs.cpp -------------------------------------------------------------------------------- /gen/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/structs.h -------------------------------------------------------------------------------- /gen/target.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/target.cpp -------------------------------------------------------------------------------- /gen/to_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/to_string.h -------------------------------------------------------------------------------- /gen/tocall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/tocall.cpp -------------------------------------------------------------------------------- /gen/toconstelem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/toconstelem.cpp -------------------------------------------------------------------------------- /gen/toir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/toir.cpp -------------------------------------------------------------------------------- /gen/tollvm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/tollvm.cpp -------------------------------------------------------------------------------- /gen/tollvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/tollvm.h -------------------------------------------------------------------------------- /gen/trycatchfinally.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/trycatchfinally.cpp -------------------------------------------------------------------------------- /gen/trycatchfinally.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/trycatchfinally.h -------------------------------------------------------------------------------- /gen/typinf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/typinf.cpp -------------------------------------------------------------------------------- /gen/typinf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/typinf.h -------------------------------------------------------------------------------- /gen/uda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/uda.cpp -------------------------------------------------------------------------------- /gen/uda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/uda.h -------------------------------------------------------------------------------- /gen/variable_lifetime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/variable_lifetime.cpp -------------------------------------------------------------------------------- /gen/variable_lifetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/gen/variable_lifetime.h -------------------------------------------------------------------------------- /ir/iraggr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/ir/iraggr.cpp -------------------------------------------------------------------------------- /ir/iraggr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/ir/iraggr.h -------------------------------------------------------------------------------- /ir/irclass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/ir/irclass.cpp -------------------------------------------------------------------------------- /ir/irdsymbol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/ir/irdsymbol.cpp -------------------------------------------------------------------------------- /ir/irdsymbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/ir/irdsymbol.h -------------------------------------------------------------------------------- /ir/irforw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/ir/irforw.h -------------------------------------------------------------------------------- /ir/irfunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/ir/irfunction.cpp -------------------------------------------------------------------------------- /ir/irfunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/ir/irfunction.h -------------------------------------------------------------------------------- /ir/irfuncty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/ir/irfuncty.cpp -------------------------------------------------------------------------------- /ir/irfuncty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/ir/irfuncty.h -------------------------------------------------------------------------------- /ir/irmodule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/ir/irmodule.cpp -------------------------------------------------------------------------------- /ir/irmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/ir/irmodule.h -------------------------------------------------------------------------------- /ir/irstruct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/ir/irstruct.cpp -------------------------------------------------------------------------------- /ir/irtype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/ir/irtype.cpp -------------------------------------------------------------------------------- /ir/irtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/ir/irtype.h -------------------------------------------------------------------------------- /ir/irtypeaggr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/ir/irtypeaggr.cpp -------------------------------------------------------------------------------- /ir/irtypeaggr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/ir/irtypeaggr.h -------------------------------------------------------------------------------- /ir/irtypeclass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/ir/irtypeclass.cpp -------------------------------------------------------------------------------- /ir/irtypeclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/ir/irtypeclass.h -------------------------------------------------------------------------------- /ir/irtypefunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/ir/irtypefunction.cpp -------------------------------------------------------------------------------- /ir/irtypefunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/ir/irtypefunction.h -------------------------------------------------------------------------------- /ir/irtypestruct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/ir/irtypestruct.cpp -------------------------------------------------------------------------------- /ir/irtypestruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/ir/irtypestruct.h -------------------------------------------------------------------------------- /ir/irvar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/ir/irvar.cpp -------------------------------------------------------------------------------- /ir/irvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/ir/irvar.h -------------------------------------------------------------------------------- /ldc2.conf.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/ldc2.conf.header -------------------------------------------------------------------------------- /packaging/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/packaging/README -------------------------------------------------------------------------------- /packaging/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/packaging/README.txt -------------------------------------------------------------------------------- /packaging/dlang-tools_version: -------------------------------------------------------------------------------- 1 | v2.111.0 -------------------------------------------------------------------------------- /packaging/dub_version: -------------------------------------------------------------------------------- 1 | v1.40.0 -------------------------------------------------------------------------------- /packaging/mimalloc_version: -------------------------------------------------------------------------------- 1 | v1.8.7 -------------------------------------------------------------------------------- /packaging/reggae_version: -------------------------------------------------------------------------------- 1 | v0.12.0 -------------------------------------------------------------------------------- /runtime/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/runtime/.gitignore -------------------------------------------------------------------------------- /runtime/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/runtime/CMakeLists.txt -------------------------------------------------------------------------------- /runtime/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/runtime/README -------------------------------------------------------------------------------- /runtime/druntime/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/runtime/druntime/Makefile -------------------------------------------------------------------------------- /runtime/druntime/posix.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/runtime/druntime/posix.mak -------------------------------------------------------------------------------- /runtime/druntime/test/aa/Makefile: -------------------------------------------------------------------------------- 1 | TESTS := test_aa 2 | 3 | include ../common.mak 4 | -------------------------------------------------------------------------------- /runtime/druntime/test/coverage/src/no_code_imp.d: -------------------------------------------------------------------------------- 1 | enum NO_CODE_IMP = 0; 2 | -------------------------------------------------------------------------------- /runtime/druntime/test/cpuid/Makefile: -------------------------------------------------------------------------------- 1 | TESTS:=cpuid 2 | include ../common.mak 3 | -------------------------------------------------------------------------------- /runtime/druntime/test/cycles/src/test_cycles.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/druntime/test/gc/concurrent.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/druntime/test/gc/invariant.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/druntime/test/gc/logging.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/druntime/test/gc/memstomp.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/druntime/test/gc/precise.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/druntime/test/gc/precise_concurrent.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/druntime/test/gc/printf.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/druntime/test/gc/sentinel.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/druntime/test/hash/Makefile: -------------------------------------------------------------------------------- 1 | TESTS:=test_hash 2 | 3 | include ../common.mak 4 | -------------------------------------------------------------------------------- /runtime/druntime/test/shared/.gitignore: -------------------------------------------------------------------------------- 1 | obj 2 | -------------------------------------------------------------------------------- /runtime/druntime/test/stdcpp/msc_ver.c: -------------------------------------------------------------------------------- 1 | _MSC_VER 2 | -------------------------------------------------------------------------------- /runtime/druntime/test/traits/Makefile: -------------------------------------------------------------------------------- 1 | TESTS := all_satisfy 2 | 3 | include ../common.mak 4 | -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/PGO/boundscheck.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/PGO/boundscheck.d -------------------------------------------------------------------------------- /tests/PGO/break.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/PGO/break.d -------------------------------------------------------------------------------- /tests/PGO/const_cond.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/PGO/const_cond.d -------------------------------------------------------------------------------- /tests/PGO/eh_gh1943.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/PGO/eh_gh1943.d -------------------------------------------------------------------------------- /tests/PGO/exceptions.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/PGO/exceptions.d -------------------------------------------------------------------------------- /tests/PGO/functions.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/PGO/functions.d -------------------------------------------------------------------------------- /tests/PGO/hash.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/PGO/hash.d -------------------------------------------------------------------------------- /tests/PGO/indirect_calls.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/PGO/indirect_calls.d -------------------------------------------------------------------------------- /tests/PGO/lit.local.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/PGO/lit.local.cfg -------------------------------------------------------------------------------- /tests/PGO/pragma.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/PGO/pragma.d -------------------------------------------------------------------------------- /tests/PGO/reset_counters.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/PGO/reset_counters.d -------------------------------------------------------------------------------- /tests/PGO/sample_based.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/PGO/sample_based.d -------------------------------------------------------------------------------- /tests/PGO/singleobj.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/PGO/singleobj.d -------------------------------------------------------------------------------- /tests/PGO/summary.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/PGO/summary.d -------------------------------------------------------------------------------- /tests/PGO/switch_disable.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/PGO/switch_disable.d -------------------------------------------------------------------------------- /tests/PGO/thinlto_pgo.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/PGO/thinlto_pgo.d -------------------------------------------------------------------------------- /tests/PGO/withO.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/PGO/withO.d -------------------------------------------------------------------------------- /tests/baremetal/classes.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/baremetal/classes.d -------------------------------------------------------------------------------- /tests/baremetal/inputs/object.d: -------------------------------------------------------------------------------- 1 | // empty 2 | -------------------------------------------------------------------------------- /tests/baremetal/wasm.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/baremetal/wasm.d -------------------------------------------------------------------------------- /tests/baremetal/wasm2.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/baremetal/wasm2.d -------------------------------------------------------------------------------- /tests/codegen/align.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/align.d -------------------------------------------------------------------------------- /tests/codegen/align_class.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/align_class.d -------------------------------------------------------------------------------- /tests/codegen/asm_gcc.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/asm_gcc.d -------------------------------------------------------------------------------- /tests/codegen/asm_labels.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/asm_labels.d -------------------------------------------------------------------------------- /tests/codegen/asm_output.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/asm_output.d -------------------------------------------------------------------------------- /tests/codegen/atomicrmw.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/atomicrmw.d -------------------------------------------------------------------------------- /tests/codegen/attr_naked.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/attr_naked.d -------------------------------------------------------------------------------- /tests/codegen/attr_param.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/attr_param.d -------------------------------------------------------------------------------- /tests/codegen/attr_weak.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/attr_weak.d -------------------------------------------------------------------------------- /tests/codegen/attributes.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/attributes.d -------------------------------------------------------------------------------- /tests/codegen/avr.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/avr.d -------------------------------------------------------------------------------- /tests/codegen/casm.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/casm.i -------------------------------------------------------------------------------- /tests/codegen/cmpxchg.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/cmpxchg.d -------------------------------------------------------------------------------- /tests/codegen/const_cond.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/const_cond.d -------------------------------------------------------------------------------- /tests/codegen/cov_modes.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/cov_modes.d -------------------------------------------------------------------------------- /tests/codegen/emscripten.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/emscripten.d -------------------------------------------------------------------------------- /tests/codegen/export.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/export.d -------------------------------------------------------------------------------- /tests/codegen/ffastmath.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/ffastmath.d -------------------------------------------------------------------------------- /tests/codegen/gc2stack.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/gc2stack.d -------------------------------------------------------------------------------- /tests/codegen/gh1433.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/gh1433.d -------------------------------------------------------------------------------- /tests/codegen/gh1728.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/gh1728.d -------------------------------------------------------------------------------- /tests/codegen/gh1843.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/gh1843.d -------------------------------------------------------------------------------- /tests/codegen/gh2131.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/gh2131.d -------------------------------------------------------------------------------- /tests/codegen/gh2235.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/gh2235.d -------------------------------------------------------------------------------- /tests/codegen/gh2346.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/gh2346.d -------------------------------------------------------------------------------- /tests/codegen/gh2515.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/gh2515.d -------------------------------------------------------------------------------- /tests/codegen/gh2729.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/gh2729.d -------------------------------------------------------------------------------- /tests/codegen/gh2865.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/gh2865.d -------------------------------------------------------------------------------- /tests/codegen/gh3094.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/gh3094.d -------------------------------------------------------------------------------- /tests/codegen/gh3208.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/gh3208.d -------------------------------------------------------------------------------- /tests/codegen/gh3221.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/gh3221.d -------------------------------------------------------------------------------- /tests/codegen/gh3346.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/gh3346.d -------------------------------------------------------------------------------- /tests/codegen/gh3520.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/gh3520.d -------------------------------------------------------------------------------- /tests/codegen/gh3553.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/gh3553.d -------------------------------------------------------------------------------- /tests/codegen/gh3589.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/gh3589.d -------------------------------------------------------------------------------- /tests/codegen/gh3692.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/gh3692.d -------------------------------------------------------------------------------- /tests/codegen/gh4130.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/gh4130.d -------------------------------------------------------------------------------- /tests/codegen/gh4134.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/gh4134.d -------------------------------------------------------------------------------- /tests/codegen/gh4264.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/gh4264.d -------------------------------------------------------------------------------- /tests/codegen/gh4510.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/gh4510.d -------------------------------------------------------------------------------- /tests/codegen/gh4790.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/gh4790.d -------------------------------------------------------------------------------- /tests/codegen/gh4986.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/gh4986.d -------------------------------------------------------------------------------- /tests/codegen/inbounds.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/inbounds.d -------------------------------------------------------------------------------- /tests/codegen/inline_ir.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/inline_ir.d -------------------------------------------------------------------------------- /tests/codegen/inputs/export2.d: -------------------------------------------------------------------------------- 1 | export int foo() { return 666; } 2 | -------------------------------------------------------------------------------- /tests/codegen/inputs/foo.d: -------------------------------------------------------------------------------- 1 | void bar() {} 2 | -------------------------------------------------------------------------------- /tests/codegen/inputs/gh3589_a.d: -------------------------------------------------------------------------------- 1 | import gh3589_templ; 2 | shared a_info = &getInfo!0; 3 | -------------------------------------------------------------------------------- /tests/codegen/inputs/gh3589_b.d: -------------------------------------------------------------------------------- 1 | import gh3589_templ; 2 | shared b_info = &getInfo!0; 3 | -------------------------------------------------------------------------------- /tests/codegen/int128.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/int128.d -------------------------------------------------------------------------------- /tests/codegen/llvm_used_1.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/llvm_used_1.d -------------------------------------------------------------------------------- /tests/codegen/mangling.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/mangling.d -------------------------------------------------------------------------------- /tests/codegen/noplt.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/noplt.d -------------------------------------------------------------------------------- /tests/codegen/nothrow.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/nothrow.d -------------------------------------------------------------------------------- /tests/codegen/ptr_16_bit.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/ptr_16_bit.d -------------------------------------------------------------------------------- /tests/codegen/rvo.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/rvo.d -------------------------------------------------------------------------------- /tests/codegen/union.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/union.d -------------------------------------------------------------------------------- /tests/codegen/varargs.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/varargs.d -------------------------------------------------------------------------------- /tests/codegen/vector_init.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/vector_init.d -------------------------------------------------------------------------------- /tests/codegen/vector_ops.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/vector_ops.d -------------------------------------------------------------------------------- /tests/codegen/wasi.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/wasi.d -------------------------------------------------------------------------------- /tests/codegen/xtensa.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/codegen/xtensa.d -------------------------------------------------------------------------------- /tests/compilable/c_masm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/compilable/c_masm.c -------------------------------------------------------------------------------- /tests/compilable/dcompute.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/compilable/dcompute.d -------------------------------------------------------------------------------- /tests/compilable/gh1741.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/compilable/gh1741.d -------------------------------------------------------------------------------- /tests/compilable/gh1933.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/compilable/gh1933.d -------------------------------------------------------------------------------- /tests/compilable/gh2033.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/compilable/gh2033.d -------------------------------------------------------------------------------- /tests/compilable/gh2415.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/compilable/gh2415.d -------------------------------------------------------------------------------- /tests/compilable/gh2458.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/compilable/gh2458.d -------------------------------------------------------------------------------- /tests/compilable/gh2471.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/compilable/gh2471.d -------------------------------------------------------------------------------- /tests/compilable/gh2777.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/compilable/gh2777.d -------------------------------------------------------------------------------- /tests/compilable/gh2808.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/compilable/gh2808.d -------------------------------------------------------------------------------- /tests/compilable/gh2849.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/compilable/gh2849.d -------------------------------------------------------------------------------- /tests/compilable/gh2859.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/compilable/gh2859.d -------------------------------------------------------------------------------- /tests/compilable/gh2932.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/compilable/gh2932.d -------------------------------------------------------------------------------- /tests/compilable/gh2988.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/compilable/gh2988.d -------------------------------------------------------------------------------- /tests/compilable/gh2996.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/compilable/gh2996.d -------------------------------------------------------------------------------- /tests/compilable/gh3194.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/compilable/gh3194.d -------------------------------------------------------------------------------- /tests/compilable/gh3243.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/compilable/gh3243.d -------------------------------------------------------------------------------- /tests/compilable/gh3250.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/compilable/gh3250.d -------------------------------------------------------------------------------- /tests/compilable/gh3324.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/compilable/gh3324.d -------------------------------------------------------------------------------- /tests/compilable/gh3496.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/compilable/gh3496.d -------------------------------------------------------------------------------- /tests/compilable/gh3990.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/compilable/gh3990.d -------------------------------------------------------------------------------- /tests/compilable/gh4266.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/compilable/gh4266.d -------------------------------------------------------------------------------- /tests/compilable/gh4309.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/compilable/gh4309.d -------------------------------------------------------------------------------- /tests/compilable/gh4489.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/compilable/gh4489.d -------------------------------------------------------------------------------- /tests/compilable/gh4646.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/compilable/gh4646.d -------------------------------------------------------------------------------- /tests/compilable/gh4719.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/compilable/gh4719.d -------------------------------------------------------------------------------- /tests/compilable/gh4734.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/compilable/gh4734.d -------------------------------------------------------------------------------- /tests/compilable/gh4927.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/compilable/gh4927.d -------------------------------------------------------------------------------- /tests/compilable/gh4993.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/compilable/gh4993.d -------------------------------------------------------------------------------- /tests/compilable/inputs/bar/bla.di: -------------------------------------------------------------------------------- 1 | module bar; 2 | -------------------------------------------------------------------------------- /tests/compilable/inputs/foo/bla.di: -------------------------------------------------------------------------------- 1 | module foo; 2 | -------------------------------------------------------------------------------- /tests/compilable/inputs/gh1741b.d: -------------------------------------------------------------------------------- 1 | import gh1741; 2 | 3 | S s; 4 | -------------------------------------------------------------------------------- /tests/compilable/inputs/gh2422a.d: -------------------------------------------------------------------------------- 1 | class Empty { } 2 | -------------------------------------------------------------------------------- /tests/compilable/inputs/gh2777b.d: -------------------------------------------------------------------------------- 1 | int main(string[] args) { return 0; } 2 | -------------------------------------------------------------------------------- /tests/compilable/inputs/gh2782b.d: -------------------------------------------------------------------------------- 1 | struct S {} 2 | extern(C) void foo(S); 3 | -------------------------------------------------------------------------------- /tests/debuginfo/args_cdb.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/debuginfo/args_cdb.d -------------------------------------------------------------------------------- /tests/debuginfo/enums_cdb.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/debuginfo/enums_cdb.d -------------------------------------------------------------------------------- /tests/debuginfo/msvc_eh.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/debuginfo/msvc_eh.d -------------------------------------------------------------------------------- /tests/debuginfo/print_gdb.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/debuginfo/print_gdb.d -------------------------------------------------------------------------------- /tests/debuginfo/srcname.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/debuginfo/srcname.d -------------------------------------------------------------------------------- /tests/dmd/.gitignore: -------------------------------------------------------------------------------- 1 | test_results/ 2 | -------------------------------------------------------------------------------- /tests/dmd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/CMakeLists.txt -------------------------------------------------------------------------------- /tests/dmd/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/README -------------------------------------------------------------------------------- /tests/dmd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/README.md -------------------------------------------------------------------------------- /tests/dmd/compilable/b33.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/compilable/b33.d -------------------------------------------------------------------------------- /tests/dmd/compilable/ctod.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/compilable/ctod.i -------------------------------------------------------------------------------- /tests/dmd/compilable/defa.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/compilable/defa.d -------------------------------------------------------------------------------- /tests/dmd/compilable/empty_file.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dmd/compilable/emptygenmain.d: -------------------------------------------------------------------------------- 1 | // REQUIRED_ARGS: -main -c 2 | 3 | void foo() { } 4 | -------------------------------------------------------------------------------- /tests/dmd/compilable/extra-files/ddoc10367.ddoc: -------------------------------------------------------------------------------- 1 | DDOC_ENUM_BASETYPE = $(RED $0) 2 | -------------------------------------------------------------------------------- /tests/dmd/compilable/extra-files/ddoc24171.dd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dmd/compilable/extra-files/ddoc3.ddoc: -------------------------------------------------------------------------------- 1 | HELLO = world 2 | 3 | UNUSED=unused -------------------------------------------------------------------------------- /tests/dmd/compilable/extra-files/ddoc9497a.ddoc: -------------------------------------------------------------------------------- 1 | DDOC_UNDEFINED_MACRO= -------------------------------------------------------------------------------- /tests/dmd/compilable/extra-files/ddoc9497b.ddoc: -------------------------------------------------------------------------------- 1 | DDOC_UNDEFINED_MACRO=$(DOLLAR)($1 $+) 2 | -------------------------------------------------------------------------------- /tests/dmd/compilable/extra-files/ddoc9497c.ddoc: -------------------------------------------------------------------------------- 1 | DDOC_UNDEFINED_MACRO=$+ 2 | -------------------------------------------------------------------------------- /tests/dmd/compilable/extra-files/dtoh_imports2.d: -------------------------------------------------------------------------------- 1 | extern(C++): 2 | 3 | alias customInt = int; 4 | -------------------------------------------------------------------------------- /tests/dmd/compilable/extra-files/empty.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dmd/compilable/extra-files/emptymain.d: -------------------------------------------------------------------------------- 1 | void main() { } -------------------------------------------------------------------------------- /tests/dmd/compilable/extra-files/imp9057_2.d: -------------------------------------------------------------------------------- 1 | struct BugInt 2 | { 3 | uint[] data = [0]; 4 | } 5 | 6 | -------------------------------------------------------------------------------- /tests/dmd/compilable/extra-files/issue23548/imports/imp23548.d: -------------------------------------------------------------------------------- 1 | enum issue23548 = true; 2 | -------------------------------------------------------------------------------- /tests/dmd/compilable/extra-files/makedeps-import.txt: -------------------------------------------------------------------------------- 1 | Imported text 2 | -------------------------------------------------------------------------------- /tests/dmd/compilable/extra-files/minimal/object.d: -------------------------------------------------------------------------------- 1 | module object; 2 | -------------------------------------------------------------------------------- /tests/dmd/compilable/extra-files/pkgDIP37_10302/liba.d: -------------------------------------------------------------------------------- 1 | module pkgDIP37_10302.liba; 2 | void foo() {} 3 | -------------------------------------------------------------------------------- /tests/dmd/compilable/extra-files/pkgDIP37_10354/mbar.d: -------------------------------------------------------------------------------- 1 | module pkgDIP37_10354.mbar; 2 | void bar(T)() {} 3 | -------------------------------------------------------------------------------- /tests/dmd/compilable/extra-files/pkgDIP37_10354/mfoo.d: -------------------------------------------------------------------------------- 1 | module pkgDIP37_10354.mfoo; 2 | void foo(T)() {} 3 | -------------------------------------------------------------------------------- /tests/dmd/compilable/extra-files/test19266.d: -------------------------------------------------------------------------------- 1 | module test19266; 2 | 3 | pragma(msg, __FILE__); 4 | -------------------------------------------------------------------------------- /tests/dmd/compilable/extra-files/test21359a.d: -------------------------------------------------------------------------------- 1 | void registerAll() { 2 | import test21359b; 3 | } 4 | -------------------------------------------------------------------------------- /tests/dmd/compilable/extra-files/test6461/tmpl.d: -------------------------------------------------------------------------------- 1 | module tmpl; 2 | struct Tmpl(T) { 3 | T a; 4 | } 5 | -------------------------------------------------------------------------------- /tests/dmd/compilable/extra-files/test9680main.d: -------------------------------------------------------------------------------- 1 | void main() { } 2 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/a15856.d: -------------------------------------------------------------------------------- 1 | module imports.a15856; 2 | 3 | alias int c_long; 4 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/a313templatemixin1.d: -------------------------------------------------------------------------------- 1 | void bug() 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/a313templatemixin2.d: -------------------------------------------------------------------------------- 1 | void bug() 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/aliasdump.d: -------------------------------------------------------------------------------- 1 | alias iainBuclaw = ulong; /// 2 | 3 | enum aaa : int; 4 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/bug8922.d: -------------------------------------------------------------------------------- 1 | module imports.bug8922; 2 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/c314.d: -------------------------------------------------------------------------------- 1 | module imports.c314; 2 | 3 | void bug(string s) 4 | {} 5 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/checkimports3a.d: -------------------------------------------------------------------------------- 1 | void foo() {} 2 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/checkimports3b.d: -------------------------------------------------------------------------------- 1 | private void foo(int) {} 2 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/checkimports3c.d: -------------------------------------------------------------------------------- 1 | void foo(string) {} 2 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/depsOutput21238_qux.d: -------------------------------------------------------------------------------- 1 | module imports.depsOutput21238_qux; 2 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/diag12598a.d: -------------------------------------------------------------------------------- 1 | module imports.diag12598a; 2 | 3 | struct lines { } 4 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/foofunc.d: -------------------------------------------------------------------------------- 1 | module imports.foofunc; 2 | void foo() { } 3 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/format23327/write.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/fwdref12201a.d: -------------------------------------------------------------------------------- 1 | alias int FILE; 2 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/g313public.d: -------------------------------------------------------------------------------- 1 | void bug() 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/g313staticif.d: -------------------------------------------------------------------------------- 1 | void bug() 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/g313stringmixin.d: -------------------------------------------------------------------------------- 1 | void bug() 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/g313templatemixin.d: -------------------------------------------------------------------------------- 1 | void bug() 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/imp16080.d: -------------------------------------------------------------------------------- 1 | struct A() { 2 | static immutable A a; 3 | } 4 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/imp16088.d: -------------------------------------------------------------------------------- 1 | module imports.imp16088; 2 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/imp17434a.d: -------------------------------------------------------------------------------- 1 | module imp17434a.test1; 2 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/imp20344.c: -------------------------------------------------------------------------------- 1 | // https://github.com/dlang/dmd/issues/20334 2 | #define X "X" 3 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/imp22625.c: -------------------------------------------------------------------------------- 1 | typedef struct S { int x; } T; 2 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/imp22665.c: -------------------------------------------------------------------------------- 1 | enum E { A }; 2 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/imp22734.c: -------------------------------------------------------------------------------- 1 | typedef enum { C } E; 2 | 3 | int a = C; 4 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/imp23548.c: -------------------------------------------------------------------------------- 1 | #define issue23548 false 2 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/impcimport.c: -------------------------------------------------------------------------------- 1 | 2 | enum E { A = 3 }; 3 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/ldc_github_821a.d: -------------------------------------------------------------------------------- 1 | module imports.ldc_github_821a; 2 | struct S {} 3 | 4 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/makedeps_a.d: -------------------------------------------------------------------------------- 1 | module imports.makedeps_a; 2 | 3 | void a_func() {} 4 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/pkg11847/package.d: -------------------------------------------------------------------------------- 1 | module pkg11847; 2 | 3 | int func() { return 1; } 4 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/pkg16701/Package.d: -------------------------------------------------------------------------------- 1 | module pkg16701; 2 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/pkg20008/submod.d: -------------------------------------------------------------------------------- 1 | module pkg20008.submod; 2 | enum T1 { x } 3 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/pkg20537/package.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/pkg22952/package.d: -------------------------------------------------------------------------------- 1 | module lib; 2 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/pkg313/c313.d: -------------------------------------------------------------------------------- 1 | module imports.pkg313.c313; 2 | 3 | void bug() 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/pkgmod313/mod.d: -------------------------------------------------------------------------------- 1 | module imports.pkgmod313.mod; 2 | 3 | void bar() {} 4 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test11225c.d: -------------------------------------------------------------------------------- 1 | module imports.test11225c; 2 | // empty 3 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test11563core_bitop.d: -------------------------------------------------------------------------------- 1 | module test11563core_bitop; 2 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test1238a.d: -------------------------------------------------------------------------------- 1 | module imports.test1238a; 2 | 3 | private int zuiop; 4 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test1238b.d: -------------------------------------------------------------------------------- 1 | module imports.test1238b; 2 | 3 | public int zuiop; 4 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test13582.d: -------------------------------------------------------------------------------- 1 | deprecated module imports.test13582; 2 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test15150a.d: -------------------------------------------------------------------------------- 1 | module imports.test15150a; 2 | 3 | enum 4 | { 5 | x 6 | } 7 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test15857b.d: -------------------------------------------------------------------------------- 1 | void bar15857(int) {} 2 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test15857c.d: -------------------------------------------------------------------------------- 1 | void bar15857(string) {} 2 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test16709c.d: -------------------------------------------------------------------------------- 1 | void to(string units, D)(D td) { } 2 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test16709d.d: -------------------------------------------------------------------------------- 1 | void to(T, D)(D td) { } 2 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test17441foo/bar.d: -------------------------------------------------------------------------------- 1 | module imports.test17441foo.bar; 2 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test17441foo/package.d: -------------------------------------------------------------------------------- 1 | module imports.test17441foo; 2 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test1754b.d: -------------------------------------------------------------------------------- 1 | module imports.test1754b; 2 | 3 | void bar() 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test17991a/a.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test17991a/package.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test18771a.d: -------------------------------------------------------------------------------- 1 | module imports.test18771a; 2 | 3 | void foo(int) {} 4 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test18771b.d: -------------------------------------------------------------------------------- 1 | module imports.test18771b; 2 | 3 | void foo(string) {} 4 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test19609a.d: -------------------------------------------------------------------------------- 1 | deprecated([]) module imports.test19609a; 2 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test19609c.d: -------------------------------------------------------------------------------- 1 | deprecated(null) module imports.test19609c; 2 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test19656a.d: -------------------------------------------------------------------------------- 1 | import test19656; 2 | 3 | class Corge: Foo { } 4 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test19657c.d: -------------------------------------------------------------------------------- 1 | import test19657a; 2 | class Pol: Foo {} 3 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test19657d.d: -------------------------------------------------------------------------------- 1 | import test19657a; 2 | class Trump: Foo {} 3 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test19657e.d: -------------------------------------------------------------------------------- 1 | import test19657f; 2 | class Bar { } 3 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test19657f.d: -------------------------------------------------------------------------------- 1 | class Baz { 2 | import test19657d; 3 | } 4 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test19657g.d: -------------------------------------------------------------------------------- 1 | import test19657d; 2 | class Seq: Trump {} 3 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test19746a.d: -------------------------------------------------------------------------------- 1 | import test19746; 2 | class Bar: Foo { } 3 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test19746b.d: -------------------------------------------------------------------------------- 1 | import test19746d; 2 | class Frop { } 3 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test19746c.d: -------------------------------------------------------------------------------- 1 | import test19746a; 2 | class Qux: Bar { } 3 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test19750a.d: -------------------------------------------------------------------------------- 1 | import test19750c; 2 | class Bar {} 3 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test19750b.d: -------------------------------------------------------------------------------- 1 | import test19750d; 2 | class Frop {} 3 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test1imp.d: -------------------------------------------------------------------------------- 1 | 2 | alias uint DWORD; 3 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test20151a/b/c/c.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test20530a.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test21227/..foo/a.txt: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test21227/a..b.txt: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test21227/a.txt: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test22685c.d: -------------------------------------------------------------------------------- 1 | module imports.test22685c; 2 | 3 | void overloaded()() { } 4 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test23597.di: -------------------------------------------------------------------------------- 1 | module imports.test23597; 2 | 3 | void fun()() {} 4 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test2991.d: -------------------------------------------------------------------------------- 1 | module imports.test2991; 2 | 3 | private void foo() 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test59b.d: -------------------------------------------------------------------------------- 1 | module imports.test59b; 2 | 3 | alias int HRESULT; 4 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test70.d: -------------------------------------------------------------------------------- 1 | module imports.test70; 2 | 3 | void foo() 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test72c.d: -------------------------------------------------------------------------------- 1 | module imports.test72c; 2 | 3 | void foo() 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test7491a.d: -------------------------------------------------------------------------------- 1 | module imports.test7491a; 2 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test7491b.d: -------------------------------------------------------------------------------- 1 | module imports.test7491b; 2 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test9276hash.d: -------------------------------------------------------------------------------- 1 | module imports.test9276hash; 2 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/test9692b.d: -------------------------------------------------------------------------------- 1 | module imports.test9692b; 2 | int k; 3 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/testlambda1.d: -------------------------------------------------------------------------------- 1 | module imports.testlambda1; 2 | 3 | int bar() { return 7; } 4 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/testlambda2.d: -------------------------------------------------------------------------------- 1 | module imports.testlambda2; 2 | 3 | int bar() { return 7; } 4 | -------------------------------------------------------------------------------- /tests/dmd/compilable/imports/vcg_ast_import.d: -------------------------------------------------------------------------------- 1 | struct O 2 | { 3 | invariant() {} 4 | } 5 | -------------------------------------------------------------------------------- /tests/dmd/compilable/json.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/compilable/json.d -------------------------------------------------------------------------------- /tests/dmd/compilable/line.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/compilable/line.d -------------------------------------------------------------------------------- /tests/dmd/compilable/nogc.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/compilable/nogc.d -------------------------------------------------------------------------------- /tests/dmd/compilable/ob1.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/compilable/ob1.d -------------------------------------------------------------------------------- /tests/dmd/compilable/ob2.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/compilable/ob2.d -------------------------------------------------------------------------------- /tests/dmd/compilable/objc_gfunc.d: -------------------------------------------------------------------------------- 1 | // EXTRA_OBJC_SOURCES: 2 | 3 | extern (Objective-C) void NSLog(); 4 | -------------------------------------------------------------------------------- /tests/dmd/compilable/protection/issue21726/package.d: -------------------------------------------------------------------------------- 1 | module protection.issue21726; 2 | -------------------------------------------------------------------------------- /tests/dmd/compilable/sroa.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/compilable/sroa.d -------------------------------------------------------------------------------- /tests/dmd/compilable/test12567e.d: -------------------------------------------------------------------------------- 1 | // REQUIRED_ARGS: -o- 2 | deprecated("a" ~ "b") module fail12567; 3 | -------------------------------------------------------------------------------- /tests/dmd/compilable/test12979a.d: -------------------------------------------------------------------------------- 1 | void parse() 2 | { 3 | asm pure nothrow @nogc @trusted {} 4 | } 5 | -------------------------------------------------------------------------------- /tests/dmd/compilable/test15565.d: -------------------------------------------------------------------------------- 1 | alias X2 = X; 2 | extern (C++, ns) struct X {} 3 | -------------------------------------------------------------------------------- /tests/dmd/compilable/test19912.d: -------------------------------------------------------------------------------- 1 | // PERMUTE_ARGS: 2 | import object; 3 | void fun(string) { } 4 | -------------------------------------------------------------------------------- /tests/dmd/compilable/test9692a.d: -------------------------------------------------------------------------------- 1 | module test9692a; 2 | int j; 3 | -------------------------------------------------------------------------------- /tests/dmd/compilable/uda.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/compilable/uda.d -------------------------------------------------------------------------------- /tests/dmd/compilable/vgc1.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/compilable/vgc1.d -------------------------------------------------------------------------------- /tests/dmd/compilable/vgc2.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/compilable/vgc2.d -------------------------------------------------------------------------------- /tests/dmd/compilable/vgc3.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/compilable/vgc3.d -------------------------------------------------------------------------------- /tests/dmd/dshell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/dshell/README.md -------------------------------------------------------------------------------- /tests/dmd/dshell/defaults.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/dshell/defaults.d -------------------------------------------------------------------------------- /tests/dmd/dshell/depsprot.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/dshell/depsprot.d -------------------------------------------------------------------------------- /tests/dmd/dshell/dll.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/dshell/dll.d -------------------------------------------------------------------------------- /tests/dmd/dshell/dll_cxx.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/dshell/dll_cxx.d -------------------------------------------------------------------------------- /tests/dmd/dshell/dwarf.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/dshell/dwarf.d -------------------------------------------------------------------------------- /tests/dmd/dshell/extra-files/dwarf/excepted_results/fix21154.txt: -------------------------------------------------------------------------------- 1 | DW_TAG_shared_type 2 | -------------------------------------------------------------------------------- /tests/dmd/dshell/extra-files/dwarf/excepted_results/fix21159.txt: -------------------------------------------------------------------------------- 1 | DW_AT_pure 2 | -------------------------------------------------------------------------------- /tests/dmd/dshell/extra-files/dwarf/excepted_results/fix21160.txt: -------------------------------------------------------------------------------- 1 | DW_AT_main_subprogram 2 | -------------------------------------------------------------------------------- /tests/dmd/dshell/extra-files/dwarf/excepted_results/fix22426.txt: -------------------------------------------------------------------------------- 1 | DW_AT_noreturn 2 | -------------------------------------------------------------------------------- /tests/dmd/dshell/extra-files/dwarf/excepted_results/immutable.txt: -------------------------------------------------------------------------------- 1 | DW_TAG_immutable_type 2 | -------------------------------------------------------------------------------- /tests/dmd/dshell/extra-files/dwarf/excepted_results/immutableVoid.txt: -------------------------------------------------------------------------------- 1 | DW_TAG_immutable_type 2 | -------------------------------------------------------------------------------- /tests/dmd/dshell/extra-files/dwarf/fix21153.d: -------------------------------------------------------------------------------- 1 | int i; 2 | 3 | void main() 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /tests/dmd/dshell/extra-files/dwarf/fix21154.d: -------------------------------------------------------------------------------- 1 | shared int i; 2 | 3 | void main() 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /tests/dmd/dshell/extra-files/issue22816.d: -------------------------------------------------------------------------------- 1 | module issue22816; 2 | -------------------------------------------------------------------------------- /tests/dmd/dshell/extra-files/issue24111.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /tests/dmd/dshell/extra-files/linker_flag_with_spaces_b.d: -------------------------------------------------------------------------------- 1 | void b() {} 2 | -------------------------------------------------------------------------------- /tests/dmd/dshell/extra-files/test6952/object.d: -------------------------------------------------------------------------------- 1 | module object; 2 | -------------------------------------------------------------------------------- /tests/dmd/dshell/extra-files/test_shared.d: -------------------------------------------------------------------------------- 1 | void main() 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /tests/dmd/dshell/imports/depsprot_default.d: -------------------------------------------------------------------------------- 1 | void pack() {} 2 | -------------------------------------------------------------------------------- /tests/dmd/dshell/imports/depsprot_private.d: -------------------------------------------------------------------------------- 1 | void priv() {} 2 | -------------------------------------------------------------------------------- /tests/dmd/dshell/imports/depsprot_public.d: -------------------------------------------------------------------------------- 1 | void pub() {} 2 | -------------------------------------------------------------------------------- /tests/dmd/dshell/imports/issue22804_1.d: -------------------------------------------------------------------------------- 1 | module issue22804_1; 2 | -------------------------------------------------------------------------------- /tests/dmd/dshell/sameenv.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/dshell/sameenv.d -------------------------------------------------------------------------------- /tests/dmd/dshell/test6952.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/dshell/test6952.d -------------------------------------------------------------------------------- /tests/dmd/dshell/test9377.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/dshell/test9377.d -------------------------------------------------------------------------------- /tests/dmd/dub_package/avg.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/dub_package/avg.d -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/extra-files/fail6592.d: -------------------------------------------------------------------------------- 1 | module test; 2 | 3 | import std.foo; 4 | -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/extra-files/foo11453.d: -------------------------------------------------------------------------------- 1 | module foo11453; 2 | -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/extra-files/makedeps-import.txt: -------------------------------------------------------------------------------- 1 | Imported text 2 | -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/extra-files/makedeps_a.d: -------------------------------------------------------------------------------- 1 | module makedeps_a; 2 | 3 | void a_func() {} 4 | -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/extra-files/minimal/object.d: -------------------------------------------------------------------------------- 1 | module object; 2 | -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/ice24188_a/ice24188_c.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/imports/a14424.d: -------------------------------------------------------------------------------- 1 | module imports.a14424; 2 | 3 | unittest { } 4 | -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/imports/a15816.d: -------------------------------------------------------------------------------- 1 | module imports.a15816; 2 | 3 | class 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/imports/a17625.d: -------------------------------------------------------------------------------- 1 | module a17625; 2 | 3 | private int boo() { return 69; } 4 | -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/imports/b17625.d: -------------------------------------------------------------------------------- 1 | module b17625; 2 | 3 | private int boo() { return 45; } 4 | -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/imports/b17630.d: -------------------------------------------------------------------------------- 1 | module b17630; 2 | 3 | int Erase; 4 | -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/imports/b313.d: -------------------------------------------------------------------------------- 1 | module imports.b313; 2 | 3 | void bug() 4 | {} 5 | -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/imports/c314.d: -------------------------------------------------------------------------------- 1 | module imports.c314; 2 | 3 | void bug(string s) 4 | {} 5 | -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/imports/diag20518a.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/imports/diag20518a/b.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/imports/dip22c.d: -------------------------------------------------------------------------------- 1 | module pkg.dip22c; 2 | 3 | package(pkg) struct Foo {} 4 | -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/imports/fail19609a.d: -------------------------------------------------------------------------------- 1 | deprecated([""]) module imports.fail19609a; 2 | -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/imports/fail19609b.d: -------------------------------------------------------------------------------- 1 | deprecated([1]) module imports.fail19609b; 2 | -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/imports/fail19609c.d: -------------------------------------------------------------------------------- 1 | deprecated(123.4f) module imports.fail19609c; 2 | -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/imports/fail20164.d: -------------------------------------------------------------------------------- 1 | deprecated module imports.fail20164; 2 | -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/imports/fail355.d: -------------------------------------------------------------------------------- 1 | module imports.fail355; 2 | -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/imports/fail356.d: -------------------------------------------------------------------------------- 1 | module imports.fail356; 2 | int bar; 3 | -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/imports/fail4479.d: -------------------------------------------------------------------------------- 1 | module imports.fail4479mod; 2 | -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/imports/foofunc.d: -------------------------------------------------------------------------------- 1 | module imports.foofunc; 2 | void foo() { } 3 | -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/imports/ice10598b.d: -------------------------------------------------------------------------------- 1 | module imports.ice10598b; 2 | 3 | struct LocalType {} 4 | -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/imports/ice11513x.d: -------------------------------------------------------------------------------- 1 | module ice11513a.imports; 2 | -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/imports/ice9865b.d: -------------------------------------------------------------------------------- 1 | public import ice9865; 2 | class Bar { Foo foo; } 3 | -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/imports/imp15925.d: -------------------------------------------------------------------------------- 1 | enum X = 1; 2 | -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/imports/imp17602.d: -------------------------------------------------------------------------------- 1 | module imports.imp17602; 2 | 3 | enum Status { on } 4 | -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/imports/imp20709.d: -------------------------------------------------------------------------------- 1 | module imp20709; 2 | -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/imports/imp22749.c: -------------------------------------------------------------------------------- 1 | struct S22749 2 | { 3 | int field : 1; 4 | }; 5 | -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/imports/import22857.d: -------------------------------------------------------------------------------- 1 | template unaryFun() 2 | { 3 | static if 4 | } 5 | -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/imports/import23873.d: -------------------------------------------------------------------------------- 1 | static if ; 2 | else auto x 3 | -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/imports/pkg313/package.d: -------------------------------------------------------------------------------- 1 | module imports.pkg313; 2 | 3 | void bug() 4 | {} 5 | -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/imports/test10327/empty.d: -------------------------------------------------------------------------------- 1 | module empty; 2 | -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/imports/test143.d: -------------------------------------------------------------------------------- 1 | module imports.test143; 2 | 3 | package int x = 5; 4 | -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/imports/test18938a/cache.d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/imports/test20267.d: -------------------------------------------------------------------------------- 1 | module imports.test20267; 2 | 3 | int[1] array; 4 | -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/imports/test21651b.d: -------------------------------------------------------------------------------- 1 | module imports.test21651b; 2 | 3 | alias T = int; 4 | -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/imports/test5412a.d: -------------------------------------------------------------------------------- 1 | module imports.test5412a; 2 | -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/imports/test5412b.d: -------------------------------------------------------------------------------- 1 | module imports.test5412b; 2 | -------------------------------------------------------------------------------- /tests/dmd/fail_compilation/test5412c2.di: -------------------------------------------------------------------------------- 1 | module test5412c2; 2 | -------------------------------------------------------------------------------- /tests/dmd/run.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/run.d -------------------------------------------------------------------------------- /tests/dmd/runnable/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore preprocessed C files 2 | *.i 3 | -------------------------------------------------------------------------------- /tests/dmd/runnable/A16.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/A16.d -------------------------------------------------------------------------------- /tests/dmd/runnable/Same.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/Same.d -------------------------------------------------------------------------------- /tests/dmd/runnable/a17.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/a17.d -------------------------------------------------------------------------------- /tests/dmd/runnable/a18.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/a18.d -------------------------------------------------------------------------------- /tests/dmd/runnable/a19.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/a19.d -------------------------------------------------------------------------------- /tests/dmd/runnable/a20.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/a20.d -------------------------------------------------------------------------------- /tests/dmd/runnable/a21.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/a21.d -------------------------------------------------------------------------------- /tests/dmd/runnable/arm.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/arm.d -------------------------------------------------------------------------------- /tests/dmd/runnable/auto1.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/auto1.d -------------------------------------------------------------------------------- /tests/dmd/runnable/b10562.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/b10562.d -------------------------------------------------------------------------------- /tests/dmd/runnable/b16278.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/b16278.d -------------------------------------------------------------------------------- /tests/dmd/runnable/b16360.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/b16360.d -------------------------------------------------------------------------------- /tests/dmd/runnable/b17073.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/b17073.d -------------------------------------------------------------------------------- /tests/dmd/runnable/b18034.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/b18034.d -------------------------------------------------------------------------------- /tests/dmd/runnable/b19294.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/b19294.d -------------------------------------------------------------------------------- /tests/dmd/runnable/b19584.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/b19584.d -------------------------------------------------------------------------------- /tests/dmd/runnable/b20470.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/b20470.d -------------------------------------------------------------------------------- /tests/dmd/runnable/b20890.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/b20890.d -------------------------------------------------------------------------------- /tests/dmd/runnable/b26.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/b26.d -------------------------------------------------------------------------------- /tests/dmd/runnable/b6400.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/b6400.d -------------------------------------------------------------------------------- /tests/dmd/runnable/bcraii.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/bcraii.d -------------------------------------------------------------------------------- /tests/dmd/runnable/bench1.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/bench1.d -------------------------------------------------------------------------------- /tests/dmd/runnable/bit.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/bit.d -------------------------------------------------------------------------------- /tests/dmd/runnable/bitops.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/bitops.d -------------------------------------------------------------------------------- /tests/dmd/runnable/bug5.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/bug5.d -------------------------------------------------------------------------------- /tests/dmd/runnable/bug846.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/bug846.d -------------------------------------------------------------------------------- /tests/dmd/runnable/c22.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/c22.d -------------------------------------------------------------------------------- /tests/dmd/runnable/cdcmp.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/cdcmp.d -------------------------------------------------------------------------------- /tests/dmd/runnable/cov2.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/cov2.d -------------------------------------------------------------------------------- /tests/dmd/runnable/dhry.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/dhry.d -------------------------------------------------------------------------------- /tests/dmd/runnable/e7804.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/e7804.d -------------------------------------------------------------------------------- /tests/dmd/runnable/eh.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/eh.d -------------------------------------------------------------------------------- /tests/dmd/runnable/eh2.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/eh2.d -------------------------------------------------------------------------------- /tests/dmd/runnable/exe1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/exe1.c -------------------------------------------------------------------------------- /tests/dmd/runnable/exe2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/exe2.c -------------------------------------------------------------------------------- /tests/dmd/runnable/exe3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/exe3.c -------------------------------------------------------------------------------- /tests/dmd/runnable/exe4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/exe4.c -------------------------------------------------------------------------------- /tests/dmd/runnable/extra-files/foo37.txt: -------------------------------------------------------------------------------- 1 | hello 2 | betty 3 | -------------------------------------------------------------------------------- /tests/dmd/runnable/extra-files/hello-profile.d.trace.def: -------------------------------------------------------------------------------- 1 | 2 | FUNCTIONS 3 | _D5hello8showargsFAAyaZv 4 | -------------------------------------------------------------------------------- /tests/dmd/runnable/future.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/future.d -------------------------------------------------------------------------------- /tests/dmd/runnable/gdb1.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/gdb1.d -------------------------------------------------------------------------------- /tests/dmd/runnable/hello.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/hello.d -------------------------------------------------------------------------------- /tests/dmd/runnable/helloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/helloc.c -------------------------------------------------------------------------------- /tests/dmd/runnable/iasm.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/iasm.d -------------------------------------------------------------------------------- /tests/dmd/runnable/iasm64.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/iasm64.d -------------------------------------------------------------------------------- /tests/dmd/runnable/ifti.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/ifti.d -------------------------------------------------------------------------------- /tests/dmd/runnable/imports/a20a.d: -------------------------------------------------------------------------------- 1 | import a20; 2 | -------------------------------------------------------------------------------- /tests/dmd/runnable/imports/bar10378.d: -------------------------------------------------------------------------------- 1 | 2 | module bar; 3 | 4 | void writeln() { } 5 | -------------------------------------------------------------------------------- /tests/dmd/runnable/imports/extern1a.d: -------------------------------------------------------------------------------- 1 | extern (C) 2 | { 3 | int x = 3; 4 | } 5 | -------------------------------------------------------------------------------- /tests/dmd/runnable/imports/imp23014.i: -------------------------------------------------------------------------------- 1 | static _Thread_local int tmp; 2 | -------------------------------------------------------------------------------- /tests/dmd/runnable/imports/imp23402a.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /tests/dmd/runnable/imports/imp23402b.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /tests/dmd/runnable/imports/link14074x.d: -------------------------------------------------------------------------------- 1 | module imports.link14074x; 2 | 3 | void put(R)(R) 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /tests/dmd/runnable/imports/link2644c.d: -------------------------------------------------------------------------------- 1 | module imports.link2644c; 2 | 3 | class C(T) 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /tests/dmd/runnable/imports/test10441c.d: -------------------------------------------------------------------------------- 1 | 2 | auto boo(T)(T t) 3 | { 4 | return 1; 5 | } 6 | -------------------------------------------------------------------------------- /tests/dmd/runnable/imports/test15777a.d: -------------------------------------------------------------------------------- 1 | void fun() {} 2 | -------------------------------------------------------------------------------- /tests/dmd/runnable/imports/test15777b.d: -------------------------------------------------------------------------------- 1 | void fun() {} 2 | -------------------------------------------------------------------------------- /tests/dmd/runnable/imports/test19655e.d: -------------------------------------------------------------------------------- 1 | import test19655c; 2 | int[Foo] map; 3 | -------------------------------------------------------------------------------- /tests/dmd/runnable/imports/test19655g.d: -------------------------------------------------------------------------------- 1 | import test19655c; 2 | class Bar: Foo 3 | { } 4 | -------------------------------------------------------------------------------- /tests/dmd/runnable/imports/test22974b.c: -------------------------------------------------------------------------------- 1 | int xxx; 2 | 3 | int ccc() { return 1; } 4 | -------------------------------------------------------------------------------- /tests/dmd/runnable/imports/test29b.d: -------------------------------------------------------------------------------- 1 | module imports.test29b; 2 | 3 | const int qwert = 42; 4 | -------------------------------------------------------------------------------- /tests/dmd/runnable/imports/test57b.d: -------------------------------------------------------------------------------- 1 | module imports.test57b; 2 | class C(T) { struct X {} } 3 | -------------------------------------------------------------------------------- /tests/dmd/runnable/inline.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/inline.d -------------------------------------------------------------------------------- /tests/dmd/runnable/inner.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/inner.d -------------------------------------------------------------------------------- /tests/dmd/runnable/lazy.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/lazy.d -------------------------------------------------------------------------------- /tests/dmd/runnable/ldc_eh.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/ldc_eh.d -------------------------------------------------------------------------------- /tests/dmd/runnable/lexer.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/lexer.d -------------------------------------------------------------------------------- /tests/dmd/runnable/m1.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/m1.d -------------------------------------------------------------------------------- /tests/dmd/runnable/manboy.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/manboy.d -------------------------------------------------------------------------------- /tests/dmd/runnable/mangle.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/mangle.d -------------------------------------------------------------------------------- /tests/dmd/runnable/mars1.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/mars1.d -------------------------------------------------------------------------------- /tests/dmd/runnable/mixin1.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/mixin1.d -------------------------------------------------------------------------------- /tests/dmd/runnable/mixin2.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/mixin2.d -------------------------------------------------------------------------------- /tests/dmd/runnable/mod1.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/mod1.d -------------------------------------------------------------------------------- /tests/dmd/runnable/nan.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/nan.d -------------------------------------------------------------------------------- /tests/dmd/runnable/nested.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/nested.d -------------------------------------------------------------------------------- /tests/dmd/runnable/newaa.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/newaa.d -------------------------------------------------------------------------------- /tests/dmd/runnable/newdel.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/newdel.d -------------------------------------------------------------------------------- /tests/dmd/runnable/nogc.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/nogc.d -------------------------------------------------------------------------------- /tests/dmd/runnable/nrvo.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/nrvo.d -------------------------------------------------------------------------------- /tests/dmd/runnable/opdisp.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/opdisp.d -------------------------------------------------------------------------------- /tests/dmd/runnable/opover.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/opover.d -------------------------------------------------------------------------------- /tests/dmd/runnable/pi.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/pi.d -------------------------------------------------------------------------------- /tests/dmd/runnable/s2ir.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/s2ir.d -------------------------------------------------------------------------------- /tests/dmd/runnable/sctor.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/sctor.d -------------------------------------------------------------------------------- /tests/dmd/runnable/sctor2.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/sctor2.d -------------------------------------------------------------------------------- /tests/dmd/runnable/sdtor.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/sdtor.d -------------------------------------------------------------------------------- /tests/dmd/runnable/sieve.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/sieve.d -------------------------------------------------------------------------------- /tests/dmd/runnable/stress.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/stress.d -------------------------------------------------------------------------------- /tests/dmd/runnable/test10.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/test10.d -------------------------------------------------------------------------------- /tests/dmd/runnable/test11.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/test11.d -------------------------------------------------------------------------------- /tests/dmd/runnable/test12.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/test12.d -------------------------------------------------------------------------------- /tests/dmd/runnable/test13.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/test13.d -------------------------------------------------------------------------------- /tests/dmd/runnable/test15.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/test15.d -------------------------------------------------------------------------------- /tests/dmd/runnable/test16.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/test16.d -------------------------------------------------------------------------------- /tests/dmd/runnable/test17.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/test17.d -------------------------------------------------------------------------------- /tests/dmd/runnable/test19.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/test19.d -------------------------------------------------------------------------------- /tests/dmd/runnable/test2.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/test2.d -------------------------------------------------------------------------------- /tests/dmd/runnable/test20.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/test20.d -------------------------------------------------------------------------------- /tests/dmd/runnable/test21.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/test21.d -------------------------------------------------------------------------------- /tests/dmd/runnable/test22.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/test22.d -------------------------------------------------------------------------------- /tests/dmd/runnable/test23.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/test23.d -------------------------------------------------------------------------------- /tests/dmd/runnable/test24.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/test24.d -------------------------------------------------------------------------------- /tests/dmd/runnable/test27.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/test27.d -------------------------------------------------------------------------------- /tests/dmd/runnable/test28.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/test28.d -------------------------------------------------------------------------------- /tests/dmd/runnable/test29.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/test29.d -------------------------------------------------------------------------------- /tests/dmd/runnable/test3.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/test3.d -------------------------------------------------------------------------------- /tests/dmd/runnable/test30.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/test30.d -------------------------------------------------------------------------------- /tests/dmd/runnable/test31.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/test31.d -------------------------------------------------------------------------------- /tests/dmd/runnable/test32.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/test32.d -------------------------------------------------------------------------------- /tests/dmd/runnable/test34.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/test34.d -------------------------------------------------------------------------------- /tests/dmd/runnable/test36.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/test36.d -------------------------------------------------------------------------------- /tests/dmd/runnable/test37.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/test37.d -------------------------------------------------------------------------------- /tests/dmd/runnable/test38.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/test38.d -------------------------------------------------------------------------------- /tests/dmd/runnable/test4.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/test4.d -------------------------------------------------------------------------------- /tests/dmd/runnable/test40.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/test40.d -------------------------------------------------------------------------------- /tests/dmd/runnable/test41.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/test41.d -------------------------------------------------------------------------------- /tests/dmd/runnable/test42.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/test42.d -------------------------------------------------------------------------------- /tests/dmd/runnable/test45.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/test45.d -------------------------------------------------------------------------------- /tests/dmd/runnable/test46.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/test46.d -------------------------------------------------------------------------------- /tests/dmd/runnable/test48.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/test48.d -------------------------------------------------------------------------------- /tests/dmd/runnable/test49.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/test49.d -------------------------------------------------------------------------------- /tests/dmd/runnable/test5.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/test5.d -------------------------------------------------------------------------------- /tests/dmd/runnable/test52.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/test52.d -------------------------------------------------------------------------------- /tests/dmd/runnable/test57.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/test57.d -------------------------------------------------------------------------------- /tests/dmd/runnable/test58.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/test58.d -------------------------------------------------------------------------------- /tests/dmd/runnable/test61.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/test61.d -------------------------------------------------------------------------------- /tests/dmd/runnable/test7.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/test7.d -------------------------------------------------------------------------------- /tests/dmd/runnable/test8.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/test8.d -------------------------------------------------------------------------------- /tests/dmd/runnable/testaa.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/testaa.d -------------------------------------------------------------------------------- /tests/dmd/runnable/testdt.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/testdt.d -------------------------------------------------------------------------------- /tests/dmd/runnable/testv.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/testv.d -------------------------------------------------------------------------------- /tests/dmd/runnable/tls.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/tls.d -------------------------------------------------------------------------------- /tests/dmd/runnable/traits.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/traits.d -------------------------------------------------------------------------------- /tests/dmd/runnable/uda.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/uda.d -------------------------------------------------------------------------------- /tests/dmd/runnable/ufcs.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/ufcs.d -------------------------------------------------------------------------------- /tests/dmd/runnable/wc.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/wc.d -------------------------------------------------------------------------------- /tests/dmd/runnable/wc2.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/wc2.d -------------------------------------------------------------------------------- /tests/dmd/runnable/wc3.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/wc3.d -------------------------------------------------------------------------------- /tests/dmd/runnable/xdtor.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/runnable/xdtor.d -------------------------------------------------------------------------------- /tests/dmd/runnable_cxx/extra-files/c14203.cpp: -------------------------------------------------------------------------------- 1 | 2 | float func1() { return 73; } 3 | -------------------------------------------------------------------------------- /tests/dmd/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/tools/README.md -------------------------------------------------------------------------------- /tests/dmd/tools/d_do_test.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/tools/d_do_test.d -------------------------------------------------------------------------------- /tests/dmd/tools/paths.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/tools/paths.d -------------------------------------------------------------------------------- /tests/dmd/unit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/unit/README.md -------------------------------------------------------------------------------- /tests/dmd/unit/frontend.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/unit/frontend.d -------------------------------------------------------------------------------- /tests/dmd/unit/self_test.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/unit/self_test.d -------------------------------------------------------------------------------- /tests/dmd/unit/support.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/unit/support.d -------------------------------------------------------------------------------- /tests/dmd/unit/support/data/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dmd/unit/triple.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/dmd/unit/triple.d -------------------------------------------------------------------------------- /tests/driver/config_diag.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/driver/config_diag.d -------------------------------------------------------------------------------- /tests/driver/config_dir.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/driver/config_dir.d -------------------------------------------------------------------------------- /tests/driver/float_abi.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/driver/float_abi.d -------------------------------------------------------------------------------- /tests/driver/ftime-trace.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/driver/ftime-trace.d -------------------------------------------------------------------------------- /tests/driver/gh1941.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/driver/gh1941.rsp -------------------------------------------------------------------------------- /tests/driver/gh1945.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/driver/gh1945.d -------------------------------------------------------------------------------- /tests/driver/gh2073.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/driver/gh2073.d -------------------------------------------------------------------------------- /tests/driver/inputs/drt_options_in_rsp_file.rsp: -------------------------------------------------------------------------------- 1 | --DRT-gcopt=profile:1 2 | -------------------------------------------------------------------------------- /tests/driver/inputs/include_imports2.d: -------------------------------------------------------------------------------- 1 | module inputs.include_imports2; 2 | 3 | void bar() {} 4 | -------------------------------------------------------------------------------- /tests/driver/inputs/preprocessable.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/driver/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/driver/main.d -------------------------------------------------------------------------------- /tests/driver/missing_tool.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/driver/missing_tool.d -------------------------------------------------------------------------------- /tests/driver/mscrtlib.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/driver/mscrtlib.d -------------------------------------------------------------------------------- /tests/driver/riscv_abi1.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/driver/riscv_abi1.d -------------------------------------------------------------------------------- /tests/driver/riscv_abi2.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/driver/riscv_abi2.d -------------------------------------------------------------------------------- /tests/driver/riscv_abi3.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/driver/riscv_abi3.d -------------------------------------------------------------------------------- /tests/instrument/coverage_main_gh2163.d: -------------------------------------------------------------------------------- 1 | // RUN: %ldc -main -cov %s 2 | -------------------------------------------------------------------------------- /tests/linking/betterc.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/linking/betterc.d -------------------------------------------------------------------------------- /tests/lit.site.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/lit.site.cfg.in -------------------------------------------------------------------------------- /tests/runlit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tests/runlit.py -------------------------------------------------------------------------------- /tests/sanitizers/inputs/fsanitize_blacklist2.txt: -------------------------------------------------------------------------------- 1 | fun:_D*__T6ABCDEFTiZQk6method* 2 | -------------------------------------------------------------------------------- /tests/sanitizers/inputs/fsanitize_blacklist_file.txt: -------------------------------------------------------------------------------- 1 | src:*fsanitize_blacklist_file2.d 2 | -------------------------------------------------------------------------------- /tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tools/CMakeLists.txt -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/ldc-prune-cache.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tools/ldc-prune-cache.d -------------------------------------------------------------------------------- /tools/timetrace2txt.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/tools/timetrace2txt.d -------------------------------------------------------------------------------- /utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/utils/CMakeLists.txt -------------------------------------------------------------------------------- /utils/FileCheck-15.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/utils/FileCheck-15.cpp -------------------------------------------------------------------------------- /utils/FileCheck-16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/utils/FileCheck-16.cpp -------------------------------------------------------------------------------- /utils/FileCheck-17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/utils/FileCheck-17.cpp -------------------------------------------------------------------------------- /utils/FileCheck-18.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/utils/FileCheck-18.cpp -------------------------------------------------------------------------------- /utils/FileCheck-19.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/utils/FileCheck-19.cpp -------------------------------------------------------------------------------- /utils/FileCheck-20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/utils/FileCheck-20.cpp -------------------------------------------------------------------------------- /utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/utils/README.md -------------------------------------------------------------------------------- /utils/not.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/utils/not.cpp -------------------------------------------------------------------------------- /utils/split-file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ldc-developers/ldc/HEAD/utils/split-file.cpp --------------------------------------------------------------------------------