├── .clang-format ├── .dir-locals.el ├── .editorconfig ├── .gitignore ├── .gitmodules ├── .mailmap ├── CMakeLists.txt ├── CODEOWNERS ├── LICENSE.txt ├── Makefile ├── Package.swift ├── README.llbuild3.md ├── README.md ├── Vagrantfile ├── Xcode ├── Configs │ ├── Common.xcconfig │ ├── Debug.xcconfig │ ├── Release.xcconfig │ ├── Version.xcconfig │ ├── llbuild3Common.xcconfig │ ├── llbuild3Debug.xcconfig │ └── llbuild3Release.xcconfig ├── llbuild.xctestplan └── llbuild3.xctestplan ├── bindings └── python │ └── llbuild.py ├── cmake └── modules │ ├── CMakeLists.txt │ ├── FindFileCheck.cmake │ ├── FindLit.cmake │ ├── LLBuildConfig.cmake.in │ └── Utility.cmake ├── docs ├── Makefile ├── README.md ├── TODO.rst ├── _templates │ ├── index.html │ └── layout.html ├── buildengine.rst ├── buildsystem-extensions.md ├── buildsystem-internals.md ├── buildsystem.rst ├── conf.py ├── contents.rst ├── development.rst ├── im-an-llbuild-ninja-sticker.png ├── im-an-llbuild-ninja-sticker.psd ├── llbuild-profile.png ├── llbuild3.jpg └── requirements.txt ├── examples ├── GameOfLife │ ├── .gitignore │ ├── Package.swift │ ├── README.md │ └── Sources │ │ ├── GameOfLife │ │ ├── BuildLife.swift │ │ ├── LifeBoard+Build.swift │ │ └── LifeBoard.swift │ │ └── game-of-life │ │ └── main.swift ├── c-api │ └── buildsystem │ │ ├── README.md │ │ └── main.c ├── simple-make │ ├── README.md │ ├── count-lines-1 │ ├── count-lines-2 │ ├── count-lines-3 │ ├── count-lines-4 │ ├── simple-make │ ├── simplebuild.py │ └── util.py └── swift-bindings │ └── core │ └── basic.swift ├── include ├── libstdc++14-workaround.h ├── llbuild │ ├── Basic │ │ ├── BinaryCoding.h │ │ ├── Clock.h │ │ ├── Compiler.h │ │ ├── CrossPlatformCompatibility.h │ │ ├── Defer.h │ │ ├── ExecutionQueue.h │ │ ├── FileInfo.h │ │ ├── FileSystem.h │ │ ├── Hashing.h │ │ ├── JSON.h │ │ ├── LLVM.h │ │ ├── POSIXEnvironment.h │ │ ├── PlatformUtility.h │ │ ├── SerialQueue.h │ │ ├── ShellUtility.h │ │ ├── Stat.h │ │ ├── StringList.h │ │ ├── Subprocess.h │ │ ├── Tracing.h │ │ └── Version.h │ ├── BuildSystem │ │ ├── BuildDescription.h │ │ ├── BuildFile.h │ │ ├── BuildKey.h │ │ ├── BuildNode.h │ │ ├── BuildSystem.h │ │ ├── BuildSystemExtensions.h │ │ ├── BuildSystemFrontend.h │ │ ├── BuildSystemHandlers.h │ │ ├── BuildValue.h │ │ ├── Command.h │ │ ├── ExternalCommand.h │ │ ├── ShellCommand.h │ │ └── Tool.h │ ├── Commands │ │ └── Commands.h │ ├── Core │ │ ├── BuildDB.h │ │ ├── BuildEngine.h │ │ ├── DependencyInfoParser.h │ │ ├── DependencyKeyIDs.h │ │ ├── KeyID.h │ │ └── MakefileDepsParser.h │ └── Ninja │ │ ├── Lexer.h │ │ ├── Manifest.h │ │ ├── ManifestLoader.h │ │ └── Parser.h ├── llvm-c │ ├── DataTypes.h │ ├── ErrorHandling.h │ ├── Support.h │ └── Types.h └── llvm │ ├── ADT │ ├── APFloat.h │ ├── APInt.h │ ├── APSInt.h │ ├── AllocatorList.h │ ├── ArrayRef.h │ ├── DenseMap.h │ ├── DenseMapInfo.h │ ├── DenseSet.h │ ├── EpochTracker.h │ ├── FoldingSet.h │ ├── Hashing.h │ ├── IntrusiveRefCntPtr.h │ ├── None.h │ ├── Optional.h │ ├── PointerIntPair.h │ ├── PointerUnion.h │ ├── STLExtras.h │ ├── SmallPtrSet.h │ ├── SmallSet.h │ ├── SmallString.h │ ├── SmallVector.h │ ├── StringExtras.h │ ├── StringMap.h │ ├── StringRef.h │ ├── StringSwitch.h │ ├── Triple.h │ ├── Twine.h │ ├── edit_distance.h │ ├── ilist.h │ ├── ilist_base.h │ ├── ilist_iterator.h │ ├── ilist_node.h │ ├── ilist_node_base.h │ ├── ilist_node_options.h │ ├── iterator.h │ ├── iterator_range.h │ └── simple_ilist.h │ ├── Config │ ├── abi-breaking.h │ ├── config.h │ └── llvm-config.h │ ├── Demangle │ └── Demangle.h │ └── Support │ ├── AArch64TargetParser.def │ ├── ARMBuildAttributes.h │ ├── ARMTargetParser.def │ ├── AlignOf.h │ ├── Allocator.h │ ├── Atomic.h │ ├── CBindingWrapping.h │ ├── Casting.h │ ├── Chrono.h │ ├── CommandLine.h │ ├── Compiler.h │ ├── ConvertUTF.h │ ├── DJB.h │ ├── DataTypes.h │ ├── Debug.h │ ├── Endian.h │ ├── Errc.h │ ├── Errno.h │ ├── Error.h │ ├── ErrorHandling.h │ ├── ErrorOr.h │ ├── FileSystem.h │ ├── FileUtilities.h │ ├── Format.h │ ├── FormatCommon.h │ ├── FormatProviders.h │ ├── FormatVariadic.h │ ├── FormatVariadicDetails.h │ ├── Host.h │ ├── Locale.h │ ├── MD5.h │ ├── ManagedStatic.h │ ├── MathExtras.h │ ├── MemAlloc.h │ ├── Memory.h │ ├── MemoryBuffer.h │ ├── Mutex.h │ ├── MutexGuard.h │ ├── NativeFormatting.h │ ├── Options.h │ ├── Path.h │ ├── PointerLikeTypeTraits.h │ ├── Process.h │ ├── Program.h │ ├── Recycler.h │ ├── ReverseIteration.h │ ├── SMLoc.h │ ├── Signals.h │ ├── SmallVectorMemoryBuffer.h │ ├── SourceMgr.h │ ├── StringSaver.h │ ├── SwapByteOrder.h │ ├── TargetParser.h │ ├── Threading.h │ ├── Unicode.h │ ├── UnicodeCharRanges.h │ ├── UniqueLock.h │ ├── Valgrind.h │ ├── WindowsError.h │ ├── X86TargetParser.def │ ├── YAMLParser.h │ ├── circular_raw_ostream.h │ ├── raw_ostream.h │ └── type_traits.h ├── lib ├── Analysis │ ├── CriticalBuildPath.swift │ ├── CriticalPath.swift │ └── IdentifierFactory.swift ├── Basic │ ├── CMakeLists.txt │ ├── ExecutionQueue.cpp │ ├── FileInfo.cpp │ ├── FileSystem.cpp │ ├── Hashing.cpp │ ├── LaneBasedExecutionQueue.cpp │ ├── LeanWindows.h │ ├── PlatformUtility.cpp │ ├── SerialQueue.cpp │ ├── ShellUtility.cpp │ ├── Subprocess.cpp │ ├── Tracing.cpp │ ├── Version.cpp │ └── include │ │ └── llbuild │ │ └── Basic ├── BuildSystem │ ├── BuildDescription.cpp │ ├── BuildFile.cpp │ ├── BuildKey.cpp │ ├── BuildNode.cpp │ ├── BuildSystem.cpp │ ├── BuildSystemExtensionManager.cpp │ ├── BuildSystemFrontend.cpp │ ├── BuildValue.cpp │ ├── CMakeLists.txt │ ├── ExternalCommand.cpp │ ├── ShellCommand.cpp │ └── include │ │ └── llbuild │ │ └── BuildSystem ├── CMakeLists.txt ├── Commands │ ├── BuildEngineCommand.cpp │ ├── BuildSystemCommand.cpp │ ├── CMakeLists.txt │ ├── CommandLineStatusOutput.cpp │ ├── CommandLineStatusOutput.h │ ├── CommandUtil.cpp │ ├── CommandUtil.h │ ├── NinjaBuildCommand.cpp │ ├── NinjaBuildCommand.h │ ├── NinjaCommand.cpp │ └── include │ │ └── llbuild │ │ └── Commands ├── Core │ ├── BuildDB.cpp │ ├── BuildEngine.cpp │ ├── BuildEngineTrace.cpp │ ├── BuildEngineTrace.h │ ├── CMakeLists.txt │ ├── DependencyInfoParser.cpp │ ├── MakefileDepsParser.cpp │ ├── SQLiteBuildDB.cpp │ └── include │ │ └── llbuild │ │ └── Core ├── Evo │ └── include │ │ └── llbuild │ │ └── Evo ├── Ninja │ ├── CMakeLists.txt │ ├── Lexer.cpp │ ├── Manifest.cpp │ ├── ManifestLoader.cpp │ ├── Parser.cpp │ ├── README.md │ └── include │ │ └── llbuild │ │ └── Ninja └── llvm │ ├── CMakeLists.txt │ ├── Demangle │ ├── CMakeLists.txt │ ├── Compiler.h │ ├── ItaniumDemangle.cpp │ ├── LLVMBuild.txt │ ├── MicrosoftDemangle.cpp │ ├── StringView.h │ ├── Utility.h │ └── include │ │ └── llvm │ │ └── Demangle │ └── Support │ ├── APFloat.cpp │ ├── APInt.cpp │ ├── APSInt.cpp │ ├── Allocator.cpp │ ├── Atomic.cpp │ ├── CMakeLists.txt │ ├── Chrono.cpp │ ├── CommandLine.cpp │ ├── ConvertUTF.cpp │ ├── ConvertUTFWrapper.cpp │ ├── DJB.cpp │ ├── Debug.cpp │ ├── Errno.cpp │ ├── Error.cpp │ ├── ErrorHandling.cpp │ ├── FileUtilities.cpp │ ├── FoldingSet.cpp │ ├── FormatVariadic.cpp │ ├── Hashing.cpp │ ├── Host.cpp │ ├── Locale.cpp │ ├── MD5.cpp │ ├── ManagedStatic.cpp │ ├── MathExtras.cpp │ ├── Memory.cpp │ ├── MemoryBuffer.cpp │ ├── Mutex.cpp │ ├── NativeFormatting.cpp │ ├── Options.cpp │ ├── Path.cpp │ ├── Process.cpp │ ├── Program.cpp │ ├── Signals.cpp │ ├── SmallPtrSet.cpp │ ├── SmallVector.cpp │ ├── SourceMgr.cpp │ ├── StringExtras.cpp │ ├── StringMap.cpp │ ├── StringRef.cpp │ ├── StringSaver.cpp │ ├── TargetParser.cpp │ ├── Threading.cpp │ ├── Triple.cpp │ ├── Twine.cpp │ ├── Unicode.cpp │ ├── UnicodeCaseFold.cpp │ ├── Unix │ ├── Host.inc │ ├── Memory.inc │ ├── Mutex.inc │ ├── Path.inc │ ├── Process.inc │ ├── Program.inc │ ├── Signals.inc │ ├── Threading.inc │ └── Unix.h │ ├── Valgrind.cpp │ ├── Windows │ ├── Host.inc │ ├── Memory.inc │ ├── Mutex.inc │ ├── Path.inc │ ├── Process.inc │ ├── Program.inc │ ├── Signals.inc │ ├── Threading.inc │ └── WindowsSupport.h │ ├── YAMLParser.cpp │ ├── circular_raw_ostream.cpp │ ├── include │ ├── llvm-c │ └── llvm │ │ ├── ADT │ │ ├── Config │ │ └── Support │ └── raw_ostream.cpp ├── llbuild.podspec ├── llbuild.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── xcshareddata │ └── xcschemes │ ├── BasicTests.xcscheme │ ├── BuildSystemTests.xcscheme │ ├── CAPITests.xcscheme │ ├── CoreTests.xcscheme │ ├── PerfTests.xcscheme │ ├── llbuild (external tests).xcscheme │ ├── llbuild-Bot.xcscheme │ ├── llbuild-asan-Bot.xcscheme │ ├── llbuild-perf-Bot.xcscheme │ ├── llbuild.xcscheme │ ├── llbuild3.xcscheme │ ├── llbuild3Tests.xcscheme │ └── llbuild3ThirdParty.xcscheme ├── perftests ├── CMakeLists.txt ├── Inputs │ ├── .gitignore │ ├── README.md │ ├── chromium-fake-manifest.llbuild.gz │ ├── chromium-fake-manifest.ninja.gz │ ├── llvm-only.ninja │ └── pseudo-llvm.tgz └── Xcode │ └── PerfTests │ ├── BinaryCodingPerfTests.mm │ ├── BuildSystemPerfTests.mm │ ├── CMakeLists.txt │ ├── CorePerfTests.mm │ └── NinjaPerfTests.mm ├── products ├── CMakeLists.txt ├── libllbuild │ ├── BuildDB-C-API.cpp │ ├── BuildKey-C-API-Private.h │ ├── BuildKey-C-API.cpp │ ├── BuildSystem-C-API.cpp │ ├── BuildValue-C-API-Private.h │ ├── BuildValue-C-API.cpp │ ├── C-API.cpp │ ├── CMakeLists.txt │ ├── Core-C-API.cpp │ ├── Ninja-C-API.cpp │ └── include │ │ ├── README.md │ │ ├── llbuild │ │ ├── buildkey.h │ │ ├── buildsystem.h │ │ ├── buildvalue.h │ │ ├── core.h │ │ ├── db.h │ │ ├── llbuild-defines.h │ │ ├── llbuild.h │ │ └── ninja.h │ │ └── module.modulemap ├── llbuild-analyze │ ├── Package.resolved │ ├── Package.swift │ └── Sources │ │ ├── CriticalPathTool.swift │ │ ├── PathGraphVizSerialization.swift │ │ ├── PathJSONSerialization.swift │ │ └── main.swift ├── llbuild-framework │ ├── README.md │ └── llbuild-module.modulemap ├── llbuild │ ├── CMakeLists.txt │ └── main.cpp ├── llbuild3 │ ├── Errors.hpp │ ├── Result.hpp │ ├── SwiftAdaptors.hpp │ ├── Visibility.hpp │ └── llbuild3.h ├── llbuildSwift │ ├── BuildDBBindings.swift │ ├── BuildKey.swift │ ├── BuildSystemBindings.swift │ ├── BuildValue.swift │ ├── CMakeLists.txt │ ├── CoreBindings.swift │ ├── Internals.swift │ └── NinjaManifest.swift ├── swift-build-tool │ ├── CMakeLists.txt │ └── main.cpp └── ui │ ├── .gitignore │ ├── README.md │ ├── llbuildui │ ├── __init__.py │ ├── app.py │ ├── database.py │ ├── graphalgorithms.py │ ├── model.py │ ├── orderedset.py │ ├── static │ │ └── style.css │ ├── templates │ │ ├── db_config.html │ │ ├── db_diagnostics.html │ │ ├── db_root.html │ │ ├── db_rule_result.html │ │ ├── index.html │ │ ├── layout.html │ │ ├── trace_config.html │ │ └── trace_root.html │ ├── trace.py │ └── views.py │ └── setup.py ├── src ├── llbuild3 │ ├── Action.pb.cc │ ├── Action.pb.h │ ├── Action.pb.swift │ ├── Action.proto │ ├── ActionCache.cpp │ ├── ActionCache.h │ ├── ActionCache.pb.cc │ ├── ActionCache.pb.h │ ├── ActionCache.pb.swift │ ├── ActionCache.proto │ ├── ActionCache.swift │ ├── ActionExecutor.cpp │ ├── ActionExecutor.h │ ├── ActionExecutor.swift │ ├── Artifact.pb.cc │ ├── Artifact.pb.h │ ├── Artifact.pb.swift │ ├── Artifact.proto │ ├── CAS.cpp │ ├── CAS.h │ ├── CAS.pb.cc │ ├── CAS.pb.h │ ├── CAS.pb.swift │ ├── CAS.proto │ ├── CAS.swift │ ├── CASLog.cpp │ ├── CASLog.h │ ├── CASTree.cpp │ ├── CASTree.h │ ├── CASTree.pb.cc │ ├── CASTree.pb.h │ ├── CASTree.pb.swift │ ├── CASTree.proto │ ├── Common.h │ ├── Common.pb.cc │ ├── Common.pb.h │ ├── Common.pb.swift │ ├── Common.proto │ ├── Engine.cpp │ ├── Engine.h │ ├── Engine.pb.cc │ ├── Engine.pb.h │ ├── Engine.pb.swift │ ├── Engine.proto │ ├── Engine.swift │ ├── EngineInternal.pb.cc │ ├── EngineInternal.pb.h │ ├── EngineInternal.proto │ ├── Error.pb.cc │ ├── Error.pb.h │ ├── Error.pb.swift │ ├── Error.proto │ ├── Label.cpp │ ├── Label.h │ ├── Label.pb.cc │ ├── Label.pb.h │ ├── Label.pb.swift │ ├── Label.proto │ ├── Label.swift │ ├── LocalExecutor.cpp │ ├── LocalExecutor.h │ ├── LocalExecutor.swift │ ├── Logging.cpp │ ├── Logging.h │ ├── Logging.swift │ ├── RemoteExecutor.cpp │ ├── RemoteExecutor.h │ ├── RemoteExecutor.swift │ ├── Subtask.h │ ├── SwiftAdaptors.cpp │ ├── Types.swift │ └── support │ │ └── LabelTrie.h └── module_map.asciipb ├── tests ├── BuildSystem │ ├── Build │ │ ├── Inputs │ │ │ ├── get-file-permissions │ │ │ ├── ignore-sigint │ │ │ └── wait-for-file │ │ ├── allow-missing-inputs.llbuild │ │ ├── allow-missing-outputs.llbuild │ │ ├── allow-modified-outputs.llbuild │ │ ├── archive.llbuild │ │ ├── basic.llbuild │ │ ├── changed-commands.llbuild │ │ ├── changed-link-target.llbuild │ │ ├── changed-output-agnostic-commands.llbuild │ │ ├── command-buffering.llbuild │ │ ├── command-dependencies.llbuild │ │ ├── command-line-status.llbuild │ │ ├── db-placement.llbuild │ │ ├── dep-on-link-target.llbuild │ │ ├── dep-scan-order.llbuild │ │ ├── dependencies.llbuild │ │ ├── directory-contents-filtered-produced.llbuild │ │ ├── directory-contents-filtered.llbuild │ │ ├── directory-contents-ordering.llbuild │ │ ├── directory-contents.llbuild │ │ ├── directory-input-and-output.llbuild │ │ ├── directory-input-basic.llbuild │ │ ├── directory-input-must-scan-after-paths-error.llbuild │ │ ├── directory-input-must-scan-after-paths.llbuild │ │ ├── directory-tree-client-edges.llbuild │ │ ├── directory-tree-signatures.llbuild │ │ ├── directory-tree-structure-signatures-filtered.llbuild │ │ ├── directory-tree-structure-signatures.llbuild │ │ ├── discovered-compiler-deps.llbuild │ │ ├── discovered-dependency-cycle.llbuild │ │ ├── discovered-dependency-info-deps.llbuild │ │ ├── discovered-makefile-deps-relative.llbuild │ │ ├── discovered-makefile-deps.llbuild │ │ ├── downstream-errors.llbuild │ │ ├── errors.llbuild │ │ ├── exit-status.llbuild │ │ ├── failing-commands.llbuild │ │ ├── file-system-checksum-only-symlinks.llbuild │ │ ├── file-system-checksum-only.llbuild │ │ ├── file-system-opts-errors.llbuild │ │ ├── file-system-opts.llbuild │ │ ├── introduced-cycle.llbuild │ │ ├── lane-release.llbuild │ │ ├── missing-command-rule.llbuild │ │ ├── missing-inputs.llbuild │ │ ├── missing-node.llbuild │ │ ├── missing-target.llbuild │ │ ├── mkdir.llbuild │ │ ├── multiple-outputs-error.llbuild │ │ ├── mutable-outputs.llbuild │ │ ├── no-control-fd-tool-level.llbuild │ │ ├── no-control-fd.llbuild │ │ ├── now-produced-rule.llbuild │ │ ├── output-dir-creation.llbuild │ │ ├── phony.llbuild │ │ ├── sigkill-escalation.llbuild │ │ ├── signal-handling.llbuild │ │ ├── signatures.llbuild │ │ ├── stale-file-removal.llbuild │ │ ├── symlink.llbuild │ │ ├── targets.llbuild │ │ ├── usage.llbuild │ │ ├── virtual-nodes.llbuild │ │ ├── windows-shell-parsing.llbuild │ │ └── working-directory.llbuild │ ├── Parser │ │ ├── basic.llbuild │ │ ├── errors.llbuild │ │ └── missing-shell-arguments.llbuild │ ├── lit.local.cfg │ └── usage.llbuild ├── CMakeLists.txt ├── Commands │ ├── basic.txt │ ├── buildengine-ack.txt │ └── lit.local.cfg ├── Examples │ ├── buildsystem-capi.llbuild │ └── lit.local.cfg ├── Ninja │ ├── Build │ │ ├── Inputs │ │ │ ├── check-open-fds │ │ │ ├── get-file-size │ │ │ ├── run-releasing-control-fd │ │ │ ├── split-numbers │ │ │ ├── ulimited │ │ │ └── wait-for-file │ │ ├── absolute-dependencies.ninja │ │ ├── basic.ninja │ │ ├── changed-commands.ninja │ │ ├── changed-generator-commands.ninja │ │ ├── changed-multiple-outputs-command.ninja │ │ ├── command-buffering.ninja │ │ ├── console-pool-input.ninja │ │ ├── console-pool-no-control-fd.ninja │ │ ├── console-pool.ninja │ │ ├── continue-on-failure.ninja │ │ ├── cycle-detection.ninja │ │ ├── environment.ninja │ │ ├── exit-status.ninja │ │ ├── failing-commands.ninja │ │ ├── fifo.ninja │ │ ├── file-limit.ninja │ │ ├── graphviz-output.ninja │ │ ├── help.ninja │ │ ├── incremental.ninja │ │ ├── inherited-file-descriptors.ninja │ │ ├── makefile-implicit-deps.ninja │ │ ├── max-commands-progress.ninja │ │ ├── missing-depfile.ninja │ │ ├── missing-inputs.ninja │ │ ├── modify-retaining-timestamp.ninja │ │ ├── multiple-outputs.ninja │ │ ├── multiple-targets.ninja │ │ ├── ninja-symlink.ninja │ │ ├── no-db.ninja │ │ ├── no-inputs.ninja │ │ ├── nonexistent-subdir.ninja │ │ ├── normalize-path.ninja │ │ ├── order-only-deps.ninja │ │ ├── order-only-remove.ninja │ │ ├── order-only-skip.ninja │ │ ├── output-timestamps.ninja │ │ ├── outputs.ninja │ │ ├── parallel.ninja │ │ ├── phony-extra-inputs.ninja │ │ ├── phony-inputs.ninja │ │ ├── rebuild-manifest.ninja │ │ ├── removed-makefile-implicit-dep.ninja │ │ ├── response-files.ninja │ │ ├── restat.ninja │ │ ├── root-targets.ninja │ │ ├── signal-handling.ninja │ │ ├── strip-colors.ninja │ │ ├── t-clean.ninja │ │ ├── targets-tool.ninja │ │ ├── timestamp-collision.ninja │ │ ├── tracing-scanning.ninja │ │ ├── tracing.ninja │ │ └── verbose.ninja │ ├── Lexer │ │ ├── basic.ninja │ │ └── whitespace-skipping.ninja │ ├── Loader │ │ ├── Inputs │ │ │ ├── include-b-2.ninja │ │ │ ├── include-b.ninja │ │ │ ├── include-with-error.ninja │ │ │ ├── subninja-rule-scoping-1.ninja │ │ │ └── subninja-rule-scoping-2.ninja │ │ ├── builds.ninja │ │ ├── console-pool.ninja │ │ ├── default.ninja │ │ ├── dependency-format.ninja │ │ ├── include.ninja │ │ ├── json-dumping.ninja │ │ ├── pools.ninja │ │ ├── rules.ninja │ │ ├── subninja-rule-scoping.ninja │ │ └── variable-expansion.ninja │ ├── Parser │ │ ├── basic.ninja │ │ ├── identifier-names.ninja │ │ ├── identifier-specific-parsing.ninja │ │ ├── path-string-parsing.ninja │ │ └── variable-string-parsing.ninja │ └── lit.local.cfg ├── Unit │ ├── lit.cfg │ └── lit.site.cfg.in ├── lit.cfg └── lit.site.cfg.in ├── thirdparty ├── BLAKE3 │ ├── LICENSE │ └── c │ │ ├── blake3.c │ │ ├── blake3.h │ │ ├── blake3_dispatch.c │ │ ├── blake3_impl.h │ │ └── blake3_portable.c ├── protobuf │ ├── LICENSE │ ├── src │ │ ├── README.md │ │ └── google │ │ │ └── protobuf │ │ │ ├── any.cc │ │ │ ├── any.h │ │ │ ├── any.pb.cc │ │ │ ├── any.pb.h │ │ │ ├── any.proto │ │ │ ├── any_lite.cc │ │ │ ├── any_test.cc │ │ │ ├── any_test.proto │ │ │ ├── api.pb.cc │ │ │ ├── api.pb.h │ │ │ ├── api.proto │ │ │ ├── arena.cc │ │ │ ├── arena.h │ │ │ ├── arena_align.cc │ │ │ ├── arena_align.h │ │ │ ├── arena_align_test.cc │ │ │ ├── arena_allocation_policy.h │ │ │ ├── arena_cleanup.h │ │ │ ├── arena_test_util.cc │ │ │ ├── arena_test_util.h │ │ │ ├── arena_unittest.cc │ │ │ ├── arenastring.cc │ │ │ ├── arenastring.h │ │ │ ├── arenastring_unittest.cc │ │ │ ├── arenaz_sampler.cc │ │ │ ├── arenaz_sampler.h │ │ │ ├── arenaz_sampler_test.cc │ │ │ ├── bridge │ │ │ └── message_set.proto │ │ │ ├── cpp_edition_defaults.h │ │ │ ├── cpp_features.pb.cc │ │ │ ├── cpp_features.pb.h │ │ │ ├── cpp_features.proto │ │ │ ├── descriptor.cc │ │ │ ├── descriptor.h │ │ │ ├── descriptor.pb.cc │ │ │ ├── descriptor.pb.h │ │ │ ├── descriptor.proto │ │ │ ├── descriptor_database.cc │ │ │ ├── descriptor_database.h │ │ │ ├── descriptor_database_unittest.cc │ │ │ ├── descriptor_legacy.h │ │ │ ├── descriptor_lite.h │ │ │ ├── descriptor_unittest.cc │ │ │ ├── descriptor_visitor.h │ │ │ ├── descriptor_visitor_test.cc │ │ │ ├── drop_unknown_fields_test.cc │ │ │ ├── duration.pb.cc │ │ │ ├── duration.pb.h │ │ │ ├── duration.proto │ │ │ ├── dynamic_message.cc │ │ │ ├── dynamic_message.h │ │ │ ├── dynamic_message_unittest.cc │ │ │ ├── edition_message_unittest.cc │ │ │ ├── edition_unittest.proto │ │ │ ├── empty.pb.cc │ │ │ ├── empty.pb.h │ │ │ ├── empty.proto │ │ │ ├── endian.h │ │ │ ├── explicitly_constructed.h │ │ │ ├── extension_set.cc │ │ │ ├── extension_set.h │ │ │ ├── extension_set_heavy.cc │ │ │ ├── extension_set_inl.h │ │ │ ├── extension_set_unittest.cc │ │ │ ├── feature_resolver.cc │ │ │ ├── feature_resolver.h │ │ │ ├── feature_resolver_test.cc │ │ │ ├── field_access_listener.h │ │ │ ├── field_mask.pb.cc │ │ │ ├── field_mask.pb.h │ │ │ ├── field_mask.proto │ │ │ ├── fully_verify_message_sets_opt_out.cc │ │ │ ├── generated_enum_reflection.h │ │ │ ├── generated_enum_util.cc │ │ │ ├── generated_enum_util.h │ │ │ ├── generated_enum_util_test.cc │ │ │ ├── generated_message_bases.cc │ │ │ ├── generated_message_bases.h │ │ │ ├── generated_message_reflection.cc │ │ │ ├── generated_message_reflection.h │ │ │ ├── generated_message_reflection_unittest.cc │ │ │ ├── generated_message_tctable_decl.h │ │ │ ├── generated_message_tctable_full.cc │ │ │ ├── generated_message_tctable_gen.cc │ │ │ ├── generated_message_tctable_gen.h │ │ │ ├── generated_message_tctable_impl.h │ │ │ ├── generated_message_tctable_lite.cc │ │ │ ├── generated_message_tctable_lite_test.cc │ │ │ ├── generated_message_util.cc │ │ │ ├── generated_message_util.h │ │ │ ├── has_bits.h │ │ │ ├── has_bits_test.cc │ │ │ ├── implicit_weak_message.cc │ │ │ ├── implicit_weak_message.h │ │ │ ├── inlined_string_field.cc │ │ │ ├── inlined_string_field.h │ │ │ ├── inlined_string_field_unittest.cc │ │ │ ├── internal_message_util_unittest.cc │ │ │ ├── internal_visibility.h │ │ │ ├── internal_visibility_for_testing.h │ │ │ ├── io │ │ │ ├── coded_stream.cc │ │ │ ├── coded_stream.h │ │ │ ├── coded_stream_unittest.cc │ │ │ ├── gzip_stream.cc │ │ │ ├── gzip_stream.h │ │ │ ├── io_win32.cc │ │ │ ├── io_win32.h │ │ │ ├── io_win32_unittest.cc │ │ │ ├── package_info.h │ │ │ ├── printer.cc │ │ │ ├── printer.h │ │ │ ├── printer_death_test.cc │ │ │ ├── printer_unittest.cc │ │ │ ├── strtod.cc │ │ │ ├── strtod.h │ │ │ ├── test_zero_copy_stream.h │ │ │ ├── test_zero_copy_stream_test.cc │ │ │ ├── tokenizer.cc │ │ │ ├── tokenizer.h │ │ │ ├── tokenizer_unittest.cc │ │ │ ├── zero_copy_sink.cc │ │ │ ├── zero_copy_sink.h │ │ │ ├── zero_copy_sink_test.cc │ │ │ ├── zero_copy_stream.cc │ │ │ ├── zero_copy_stream.h │ │ │ ├── zero_copy_stream_impl.cc │ │ │ ├── zero_copy_stream_impl.h │ │ │ ├── zero_copy_stream_impl_lite.cc │ │ │ ├── zero_copy_stream_impl_lite.h │ │ │ └── zero_copy_stream_unittest.cc │ │ │ ├── json │ │ │ ├── internal │ │ │ │ ├── descriptor_traits.h │ │ │ │ ├── lexer.cc │ │ │ │ ├── lexer.h │ │ │ │ ├── lexer_test.cc │ │ │ │ ├── message_path.cc │ │ │ │ ├── message_path.h │ │ │ │ ├── parser.cc │ │ │ │ ├── parser.h │ │ │ │ ├── parser_traits.h │ │ │ │ ├── unparser.cc │ │ │ │ ├── unparser.h │ │ │ │ ├── unparser_traits.h │ │ │ │ ├── untyped_message.cc │ │ │ │ ├── untyped_message.h │ │ │ │ ├── writer.cc │ │ │ │ ├── writer.h │ │ │ │ ├── zero_copy_buffered_stream.cc │ │ │ │ ├── zero_copy_buffered_stream.h │ │ │ │ └── zero_copy_buffered_stream_test.cc │ │ │ ├── json.cc │ │ │ ├── json.h │ │ │ └── json_test.cc │ │ │ ├── lite_arena_unittest.cc │ │ │ ├── lite_unittest.cc │ │ │ ├── map.cc │ │ │ ├── map.h │ │ │ ├── map_entry.h │ │ │ ├── map_field.cc │ │ │ ├── map_field.h │ │ │ ├── map_field_inl.h │ │ │ ├── map_field_lite.h │ │ │ ├── map_field_test.cc │ │ │ ├── map_lite_test_util.cc │ │ │ ├── map_lite_test_util.h │ │ │ ├── map_lite_unittest.proto │ │ │ ├── map_probe_benchmark.cc │ │ │ ├── map_proto2_unittest.proto │ │ │ ├── map_proto3_unittest.proto │ │ │ ├── map_test.cc │ │ │ ├── map_test.inc │ │ │ ├── map_test_util.h │ │ │ ├── map_test_util.inc │ │ │ ├── map_test_util_impl.h │ │ │ ├── map_type_handler.h │ │ │ ├── map_unittest.proto │ │ │ ├── message.cc │ │ │ ├── message.h │ │ │ ├── message_lite.cc │ │ │ ├── message_lite.h │ │ │ ├── message_unittest.cc │ │ │ ├── message_unittest.inc │ │ │ ├── message_unittest_legacy_apis.inc │ │ │ ├── metadata.h │ │ │ ├── metadata_lite.h │ │ │ ├── no_field_presence_test.cc │ │ │ ├── package_info.h │ │ │ ├── parse_context.cc │ │ │ ├── parse_context.h │ │ │ ├── port.cc │ │ │ ├── port.h │ │ │ ├── port_def.inc │ │ │ ├── port_test.cc │ │ │ ├── port_undef.inc │ │ │ ├── preserve_unknown_enum_test.cc │ │ │ ├── proto3_arena_lite_unittest.cc │ │ │ ├── proto3_arena_unittest.cc │ │ │ ├── proto3_lite_unittest.cc │ │ │ ├── proto3_lite_unittest.inc │ │ │ ├── raw_ptr.cc │ │ │ ├── raw_ptr.h │ │ │ ├── raw_ptr_test.cc │ │ │ ├── redaction_metric_test.cc │ │ │ ├── reflection.h │ │ │ ├── reflection_internal.h │ │ │ ├── reflection_mode.cc │ │ │ ├── reflection_mode.h │ │ │ ├── reflection_mode_test.cc │ │ │ ├── reflection_ops.cc │ │ │ ├── reflection_ops.h │ │ │ ├── reflection_ops_unittest.cc │ │ │ ├── reflection_tester.cc │ │ │ ├── reflection_tester.h │ │ │ ├── reflection_visit_field_info.h │ │ │ ├── reflection_visit_fields.h │ │ │ ├── reflection_visit_fields_test.cc │ │ │ ├── repeated_field.cc │ │ │ ├── repeated_field.h │ │ │ ├── repeated_field_reflection_unittest.cc │ │ │ ├── repeated_field_reflection_unittest.inc │ │ │ ├── repeated_field_unittest.cc │ │ │ ├── repeated_ptr_field.cc │ │ │ ├── repeated_ptr_field.h │ │ │ ├── retention_test.cc │ │ │ ├── runtime_version.h │ │ │ ├── sample_messages_edition.proto │ │ │ ├── serial_arena.h │ │ │ ├── service.cc │ │ │ ├── service.h │ │ │ ├── source_context.pb.cc │ │ │ ├── source_context.pb.h │ │ │ ├── source_context.proto │ │ │ ├── string_block.h │ │ │ ├── string_block_test.cc │ │ │ ├── string_member_robber.h │ │ │ ├── string_view_test.cc │ │ │ ├── struct.pb.cc │ │ │ ├── struct.pb.h │ │ │ ├── struct.proto │ │ │ ├── stubs │ │ │ ├── callback.h │ │ │ ├── common.cc │ │ │ ├── common.h │ │ │ ├── common_unittest.cc │ │ │ ├── platform_macros.h │ │ │ ├── port.h │ │ │ └── status_macros.h │ │ │ ├── test_messages_proto2.proto │ │ │ ├── test_messages_proto3.proto │ │ │ ├── test_textproto.h │ │ │ ├── test_util.cc │ │ │ ├── test_util.h │ │ │ ├── test_util.inc │ │ │ ├── test_util2.h │ │ │ ├── test_util_lite.cc │ │ │ ├── test_util_lite.h │ │ │ ├── testdata │ │ │ ├── __init__.py │ │ │ ├── bad_utf8_string │ │ │ ├── extdecl │ │ │ │ └── invalid │ │ │ │ │ └── extdecl_field_options.txtpb │ │ │ ├── extdecl_field_options.textpb │ │ │ ├── golden_message │ │ │ ├── golden_message_maps │ │ │ ├── golden_message_oneof_implemented │ │ │ ├── golden_message_proto3 │ │ │ ├── golden_packed_fields_message │ │ │ ├── invalid_extdecl │ │ │ │ └── extdecl_field_options.textpb │ │ │ ├── map_test_data.txt │ │ │ ├── text_format_unittest_data.txt │ │ │ ├── text_format_unittest_data_oneof_implemented.txt │ │ │ ├── text_format_unittest_data_pointy.txt │ │ │ ├── text_format_unittest_data_pointy_oneof.txt │ │ │ ├── text_format_unittest_extensions_data.txt │ │ │ └── text_format_unittest_extensions_data_pointy.txt │ │ │ ├── testing │ │ │ ├── file.cc │ │ │ ├── file.h │ │ │ ├── googletest.cc │ │ │ └── googletest.h │ │ │ ├── text_format.cc │ │ │ ├── text_format.h │ │ │ ├── text_format_unittest.cc │ │ │ ├── thread_safe_arena.h │ │ │ ├── timestamp.pb.cc │ │ │ ├── timestamp.pb.h │ │ │ ├── timestamp.proto │ │ │ ├── type.pb.cc │ │ │ ├── type.pb.h │ │ │ ├── type.proto │ │ │ ├── unittest.proto │ │ │ ├── unittest_arena.proto │ │ │ ├── unittest_custom_options.proto │ │ │ ├── unittest_delimited.proto │ │ │ ├── unittest_delimited_import.proto │ │ │ ├── unittest_drop_unknown_fields.proto │ │ │ ├── unittest_embed_optimize_for.proto │ │ │ ├── unittest_empty.proto │ │ │ ├── unittest_enormous_descriptor.proto │ │ │ ├── unittest_extension_set.proto │ │ │ ├── unittest_features.proto │ │ │ ├── unittest_import.proto │ │ │ ├── unittest_import_lite.proto │ │ │ ├── unittest_import_public.proto │ │ │ ├── unittest_import_public_lite.proto │ │ │ ├── unittest_invalid_features.proto │ │ │ ├── unittest_lazy_dependencies.proto │ │ │ ├── unittest_lazy_dependencies_custom_option.proto │ │ │ ├── unittest_lazy_dependencies_enum.proto │ │ │ ├── unittest_legacy_features.proto │ │ │ ├── unittest_lite.proto │ │ │ ├── unittest_lite_imports_nonlite.proto │ │ │ ├── unittest_mset.proto │ │ │ ├── unittest_mset_wire_format.proto │ │ │ ├── unittest_no_field_presence.proto │ │ │ ├── unittest_no_generic_services.proto │ │ │ ├── unittest_optimize_for.proto │ │ │ ├── unittest_preserve_unknown_enum.proto │ │ │ ├── unittest_preserve_unknown_enum2.proto │ │ │ ├── unittest_proto3.proto │ │ │ ├── unittest_proto3_arena.proto │ │ │ ├── unittest_proto3_arena_lite.proto │ │ │ ├── unittest_proto3_bad_macros.proto │ │ │ ├── unittest_proto3_extensions.proto │ │ │ ├── unittest_proto3_lite.proto │ │ │ ├── unittest_proto3_optional.proto │ │ │ ├── unittest_retention.proto │ │ │ ├── unittest_string_type.proto │ │ │ ├── unittest_string_view.proto │ │ │ ├── unittest_well_known_types.proto │ │ │ ├── unknown_field_set.cc │ │ │ ├── unknown_field_set.h │ │ │ ├── unknown_field_set_unittest.cc │ │ │ ├── unredacted_debug_format_for_test.cc │ │ │ ├── unredacted_debug_format_for_test.h │ │ │ ├── unredacted_debug_format_for_test_test.cc │ │ │ ├── util │ │ │ ├── delimited_message_util.cc │ │ │ ├── delimited_message_util.h │ │ │ ├── delimited_message_util_test.cc │ │ │ ├── field_comparator.cc │ │ │ ├── field_comparator.h │ │ │ ├── field_comparator_test.cc │ │ │ ├── field_mask_util.cc │ │ │ ├── field_mask_util.h │ │ │ ├── field_mask_util_test.cc │ │ │ ├── json_format.proto │ │ │ ├── json_format_proto3.proto │ │ │ ├── json_util.h │ │ │ ├── message_differencer.cc │ │ │ ├── message_differencer.h │ │ │ ├── message_differencer_unittest.cc │ │ │ ├── message_differencer_unittest.proto │ │ │ ├── message_differencer_unittest_proto3.proto │ │ │ ├── package_info.h │ │ │ ├── time_util.cc │ │ │ ├── time_util.h │ │ │ ├── time_util_test.cc │ │ │ ├── type_resolver.h │ │ │ ├── type_resolver_util.cc │ │ │ ├── type_resolver_util.h │ │ │ └── type_resolver_util_test.cc │ │ │ ├── varint_shuffle.h │ │ │ ├── varint_shuffle_test.cc │ │ │ ├── well_known_types_unittest.cc │ │ │ ├── wire_format.cc │ │ │ ├── wire_format.h │ │ │ ├── wire_format_lite.cc │ │ │ ├── wire_format_lite.h │ │ │ ├── wire_format_unittest.cc │ │ │ ├── wire_format_unittest.inc │ │ │ ├── wrappers.pb.cc │ │ │ ├── wrappers.pb.h │ │ │ └── wrappers.proto │ ├── third_party │ │ ├── abseil-cpp │ │ │ ├── .clang-format │ │ │ ├── .github │ │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ │ ├── 00-bug_report.yml │ │ │ │ │ └── config.yml │ │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ │ ├── .gitignore │ │ │ ├── ABSEIL_ISSUE_TEMPLATE.md │ │ │ ├── AUTHORS │ │ │ ├── BUILD.bazel │ │ │ ├── CMake │ │ │ │ ├── AbseilDll.cmake │ │ │ │ ├── AbseilHelpers.cmake │ │ │ │ ├── Googletest │ │ │ │ │ ├── CMakeLists.txt.in │ │ │ │ │ └── DownloadGTest.cmake │ │ │ │ ├── README.md │ │ │ │ ├── abslConfig.cmake.in │ │ │ │ └── install_test_project │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── simple.cc │ │ │ │ │ └── test.sh │ │ │ ├── CMakeLists.txt │ │ │ ├── CONTRIBUTING.md │ │ │ ├── FAQ.md │ │ │ ├── LICENSE │ │ │ ├── MODULE.bazel │ │ │ ├── README.md │ │ │ ├── UPGRADES.md │ │ │ ├── WORKSPACE │ │ │ ├── absl │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── abseil.podspec.gen.py │ │ │ │ ├── algorithm │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── algorithm.h │ │ │ │ │ ├── algorithm_test.cc │ │ │ │ │ ├── container.h │ │ │ │ │ └── container_test.cc │ │ │ │ ├── base │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── attributes.h │ │ │ │ │ ├── bit_cast_test.cc │ │ │ │ │ ├── call_once.h │ │ │ │ │ ├── call_once_test.cc │ │ │ │ │ ├── casts.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── config_test.cc │ │ │ │ │ ├── const_init.h │ │ │ │ │ ├── dynamic_annotations.h │ │ │ │ │ ├── exception_safety_testing_test.cc │ │ │ │ │ ├── inline_variable_test.cc │ │ │ │ │ ├── inline_variable_test_a.cc │ │ │ │ │ ├── inline_variable_test_b.cc │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── atomic_hook.h │ │ │ │ │ │ ├── atomic_hook_test.cc │ │ │ │ │ │ ├── atomic_hook_test_helper.cc │ │ │ │ │ │ ├── atomic_hook_test_helper.h │ │ │ │ │ │ ├── cmake_thread_test.cc │ │ │ │ │ │ ├── cycleclock.cc │ │ │ │ │ │ ├── cycleclock.h │ │ │ │ │ │ ├── cycleclock_config.h │ │ │ │ │ │ ├── direct_mmap.h │ │ │ │ │ │ ├── dynamic_annotations.h │ │ │ │ │ │ ├── endian.h │ │ │ │ │ │ ├── endian_test.cc │ │ │ │ │ │ ├── errno_saver.h │ │ │ │ │ │ ├── errno_saver_test.cc │ │ │ │ │ │ ├── exception_safety_testing.cc │ │ │ │ │ │ ├── exception_safety_testing.h │ │ │ │ │ │ ├── exception_testing.h │ │ │ │ │ │ ├── fast_type_id.h │ │ │ │ │ │ ├── fast_type_id_test.cc │ │ │ │ │ │ ├── hide_ptr.h │ │ │ │ │ │ ├── identity.h │ │ │ │ │ │ ├── inline_variable.h │ │ │ │ │ │ ├── inline_variable_testing.h │ │ │ │ │ │ ├── invoke.h │ │ │ │ │ │ ├── low_level_alloc.cc │ │ │ │ │ │ ├── low_level_alloc.h │ │ │ │ │ │ ├── low_level_alloc_test.cc │ │ │ │ │ │ ├── low_level_scheduling.h │ │ │ │ │ │ ├── nullability_impl.h │ │ │ │ │ │ ├── per_thread_tls.h │ │ │ │ │ │ ├── pretty_function.h │ │ │ │ │ │ ├── raw_logging.cc │ │ │ │ │ │ ├── raw_logging.h │ │ │ │ │ │ ├── scheduling_mode.h │ │ │ │ │ │ ├── scoped_set_env.cc │ │ │ │ │ │ ├── scoped_set_env.h │ │ │ │ │ │ ├── scoped_set_env_test.cc │ │ │ │ │ │ ├── spinlock.cc │ │ │ │ │ │ ├── spinlock.h │ │ │ │ │ │ ├── spinlock_akaros.inc │ │ │ │ │ │ ├── spinlock_benchmark.cc │ │ │ │ │ │ ├── spinlock_linux.inc │ │ │ │ │ │ ├── spinlock_posix.inc │ │ │ │ │ │ ├── spinlock_wait.cc │ │ │ │ │ │ ├── spinlock_wait.h │ │ │ │ │ │ ├── spinlock_win32.inc │ │ │ │ │ │ ├── strerror.cc │ │ │ │ │ │ ├── strerror.h │ │ │ │ │ │ ├── strerror_benchmark.cc │ │ │ │ │ │ ├── strerror_test.cc │ │ │ │ │ │ ├── sysinfo.cc │ │ │ │ │ │ ├── sysinfo.h │ │ │ │ │ │ ├── sysinfo_test.cc │ │ │ │ │ │ ├── thread_identity.cc │ │ │ │ │ │ ├── thread_identity.h │ │ │ │ │ │ ├── thread_identity_benchmark.cc │ │ │ │ │ │ ├── thread_identity_test.cc │ │ │ │ │ │ ├── throw_delegate.cc │ │ │ │ │ │ ├── throw_delegate.h │ │ │ │ │ │ ├── tsan_mutex_interface.h │ │ │ │ │ │ ├── unaligned_access.h │ │ │ │ │ │ ├── unique_small_name_test.cc │ │ │ │ │ │ ├── unscaledcycleclock.cc │ │ │ │ │ │ ├── unscaledcycleclock.h │ │ │ │ │ │ └── unscaledcycleclock_config.h │ │ │ │ │ ├── invoke_test.cc │ │ │ │ │ ├── log_severity.cc │ │ │ │ │ ├── log_severity.h │ │ │ │ │ ├── log_severity_test.cc │ │ │ │ │ ├── macros.h │ │ │ │ │ ├── no_destructor.h │ │ │ │ │ ├── no_destructor_benchmark.cc │ │ │ │ │ ├── no_destructor_test.cc │ │ │ │ │ ├── nullability.h │ │ │ │ │ ├── nullability_test.cc │ │ │ │ │ ├── optimization.h │ │ │ │ │ ├── optimization_test.cc │ │ │ │ │ ├── options.h │ │ │ │ │ ├── policy_checks.h │ │ │ │ │ ├── port.h │ │ │ │ │ ├── prefetch.h │ │ │ │ │ ├── prefetch_test.cc │ │ │ │ │ ├── raw_logging_test.cc │ │ │ │ │ ├── spinlock_test_common.cc │ │ │ │ │ ├── thread_annotations.h │ │ │ │ │ └── throw_delegate_test.cc │ │ │ │ ├── cleanup │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── cleanup.h │ │ │ │ │ ├── cleanup_test.cc │ │ │ │ │ └── internal │ │ │ │ │ │ └── cleanup.h │ │ │ │ ├── container │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── btree_benchmark.cc │ │ │ │ │ ├── btree_map.h │ │ │ │ │ ├── btree_set.h │ │ │ │ │ ├── btree_test.cc │ │ │ │ │ ├── btree_test.h │ │ │ │ │ ├── fixed_array.h │ │ │ │ │ ├── fixed_array_benchmark.cc │ │ │ │ │ ├── fixed_array_exception_safety_test.cc │ │ │ │ │ ├── fixed_array_test.cc │ │ │ │ │ ├── flat_hash_map.h │ │ │ │ │ ├── flat_hash_map_test.cc │ │ │ │ │ ├── flat_hash_set.h │ │ │ │ │ ├── flat_hash_set_test.cc │ │ │ │ │ ├── inlined_vector.h │ │ │ │ │ ├── inlined_vector_benchmark.cc │ │ │ │ │ ├── inlined_vector_exception_safety_test.cc │ │ │ │ │ ├── inlined_vector_test.cc │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── btree.h │ │ │ │ │ │ ├── btree_container.h │ │ │ │ │ │ ├── common.h │ │ │ │ │ │ ├── common_policy_traits.h │ │ │ │ │ │ ├── common_policy_traits_test.cc │ │ │ │ │ │ ├── compressed_tuple.h │ │ │ │ │ │ ├── compressed_tuple_test.cc │ │ │ │ │ │ ├── container_memory.h │ │ │ │ │ │ ├── container_memory_test.cc │ │ │ │ │ │ ├── hash_function_defaults.h │ │ │ │ │ │ ├── hash_function_defaults_test.cc │ │ │ │ │ │ ├── hash_generator_testing.cc │ │ │ │ │ │ ├── hash_generator_testing.h │ │ │ │ │ │ ├── hash_policy_testing.h │ │ │ │ │ │ ├── hash_policy_testing_test.cc │ │ │ │ │ │ ├── hash_policy_traits.h │ │ │ │ │ │ ├── hash_policy_traits_test.cc │ │ │ │ │ │ ├── hashtable_debug.h │ │ │ │ │ │ ├── hashtable_debug_hooks.h │ │ │ │ │ │ ├── hashtablez_sampler.cc │ │ │ │ │ │ ├── hashtablez_sampler.h │ │ │ │ │ │ ├── hashtablez_sampler_force_weak_definition.cc │ │ │ │ │ │ ├── hashtablez_sampler_test.cc │ │ │ │ │ │ ├── inlined_vector.h │ │ │ │ │ │ ├── layout.h │ │ │ │ │ │ ├── layout_benchmark.cc │ │ │ │ │ │ ├── layout_test.cc │ │ │ │ │ │ ├── node_slot_policy.h │ │ │ │ │ │ ├── node_slot_policy_test.cc │ │ │ │ │ │ ├── raw_hash_map.h │ │ │ │ │ │ ├── raw_hash_set.cc │ │ │ │ │ │ ├── raw_hash_set.h │ │ │ │ │ │ ├── raw_hash_set_allocator_test.cc │ │ │ │ │ │ ├── raw_hash_set_benchmark.cc │ │ │ │ │ │ ├── raw_hash_set_probe_benchmark.cc │ │ │ │ │ │ ├── raw_hash_set_test.cc │ │ │ │ │ │ ├── test_allocator.h │ │ │ │ │ │ ├── test_instance_tracker.cc │ │ │ │ │ │ ├── test_instance_tracker.h │ │ │ │ │ │ ├── test_instance_tracker_test.cc │ │ │ │ │ │ ├── tracked.h │ │ │ │ │ │ ├── unordered_map_constructor_test.h │ │ │ │ │ │ ├── unordered_map_lookup_test.h │ │ │ │ │ │ ├── unordered_map_members_test.h │ │ │ │ │ │ ├── unordered_map_modifiers_test.h │ │ │ │ │ │ ├── unordered_map_test.cc │ │ │ │ │ │ ├── unordered_set_constructor_test.h │ │ │ │ │ │ ├── unordered_set_lookup_test.h │ │ │ │ │ │ ├── unordered_set_members_test.h │ │ │ │ │ │ ├── unordered_set_modifiers_test.h │ │ │ │ │ │ └── unordered_set_test.cc │ │ │ │ │ ├── node_hash_map.h │ │ │ │ │ ├── node_hash_map_test.cc │ │ │ │ │ ├── node_hash_set.h │ │ │ │ │ ├── node_hash_set_test.cc │ │ │ │ │ └── sample_element_size_test.cc │ │ │ │ ├── copts │ │ │ │ │ ├── AbseilConfigureCopts.cmake │ │ │ │ │ ├── GENERATED_AbseilCopts.cmake │ │ │ │ │ ├── GENERATED_copts.bzl │ │ │ │ │ ├── configure_copts.bzl │ │ │ │ │ ├── copts.py │ │ │ │ │ └── generate_copts.py │ │ │ │ ├── crc │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── crc32c.cc │ │ │ │ │ ├── crc32c.h │ │ │ │ │ ├── crc32c_benchmark.cc │ │ │ │ │ ├── crc32c_test.cc │ │ │ │ │ └── internal │ │ │ │ │ │ ├── cpu_detect.cc │ │ │ │ │ │ ├── cpu_detect.h │ │ │ │ │ │ ├── crc.cc │ │ │ │ │ │ ├── crc.h │ │ │ │ │ │ ├── crc32_x86_arm_combined_simd.h │ │ │ │ │ │ ├── crc32c.h │ │ │ │ │ │ ├── crc32c_inline.h │ │ │ │ │ │ ├── crc_cord_state.cc │ │ │ │ │ │ ├── crc_cord_state.h │ │ │ │ │ │ ├── crc_cord_state_test.cc │ │ │ │ │ │ ├── crc_internal.h │ │ │ │ │ │ ├── crc_memcpy.h │ │ │ │ │ │ ├── crc_memcpy_fallback.cc │ │ │ │ │ │ ├── crc_memcpy_test.cc │ │ │ │ │ │ ├── crc_memcpy_x86_arm_combined.cc │ │ │ │ │ │ ├── crc_non_temporal_memcpy.cc │ │ │ │ │ │ ├── crc_x86_arm_combined.cc │ │ │ │ │ │ ├── non_temporal_arm_intrinsics.h │ │ │ │ │ │ ├── non_temporal_memcpy.h │ │ │ │ │ │ └── non_temporal_memcpy_test.cc │ │ │ │ ├── debugging │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── failure_signal_handler.cc │ │ │ │ │ ├── failure_signal_handler.h │ │ │ │ │ ├── failure_signal_handler_test.cc │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── address_is_readable.cc │ │ │ │ │ │ ├── address_is_readable.h │ │ │ │ │ │ ├── demangle.cc │ │ │ │ │ │ ├── demangle.h │ │ │ │ │ │ ├── demangle_test.cc │ │ │ │ │ │ ├── elf_mem_image.cc │ │ │ │ │ │ ├── elf_mem_image.h │ │ │ │ │ │ ├── examine_stack.cc │ │ │ │ │ │ ├── examine_stack.h │ │ │ │ │ │ ├── stack_consumption.cc │ │ │ │ │ │ ├── stack_consumption.h │ │ │ │ │ │ ├── stack_consumption_test.cc │ │ │ │ │ │ ├── stacktrace_aarch64-inl.inc │ │ │ │ │ │ ├── stacktrace_arm-inl.inc │ │ │ │ │ │ ├── stacktrace_config.h │ │ │ │ │ │ ├── stacktrace_emscripten-inl.inc │ │ │ │ │ │ ├── stacktrace_generic-inl.inc │ │ │ │ │ │ ├── stacktrace_powerpc-inl.inc │ │ │ │ │ │ ├── stacktrace_riscv-inl.inc │ │ │ │ │ │ ├── stacktrace_unimplemented-inl.inc │ │ │ │ │ │ ├── stacktrace_win32-inl.inc │ │ │ │ │ │ ├── stacktrace_x86-inl.inc │ │ │ │ │ │ ├── symbolize.h │ │ │ │ │ │ ├── vdso_support.cc │ │ │ │ │ │ └── vdso_support.h │ │ │ │ │ ├── leak_check.cc │ │ │ │ │ ├── leak_check.h │ │ │ │ │ ├── leak_check_fail_test.cc │ │ │ │ │ ├── leak_check_test.cc │ │ │ │ │ ├── stacktrace.cc │ │ │ │ │ ├── stacktrace.h │ │ │ │ │ ├── stacktrace_benchmark.cc │ │ │ │ │ ├── stacktrace_test.cc │ │ │ │ │ ├── symbolize.cc │ │ │ │ │ ├── symbolize.h │ │ │ │ │ ├── symbolize_darwin.inc │ │ │ │ │ ├── symbolize_elf.inc │ │ │ │ │ ├── symbolize_emscripten.inc │ │ │ │ │ ├── symbolize_test.cc │ │ │ │ │ ├── symbolize_unimplemented.inc │ │ │ │ │ └── symbolize_win32.inc │ │ │ │ ├── flags │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── commandlineflag.cc │ │ │ │ │ ├── commandlineflag.h │ │ │ │ │ ├── commandlineflag_test.cc │ │ │ │ │ ├── config.h │ │ │ │ │ ├── config_test.cc │ │ │ │ │ ├── declare.h │ │ │ │ │ ├── flag.h │ │ │ │ │ ├── flag_benchmark.cc │ │ │ │ │ ├── flag_benchmark.lds │ │ │ │ │ ├── flag_test.cc │ │ │ │ │ ├── flag_test_defs.cc │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── commandlineflag.cc │ │ │ │ │ │ ├── commandlineflag.h │ │ │ │ │ │ ├── flag.cc │ │ │ │ │ │ ├── flag.h │ │ │ │ │ │ ├── parse.h │ │ │ │ │ │ ├── path_util.h │ │ │ │ │ │ ├── path_util_test.cc │ │ │ │ │ │ ├── private_handle_accessor.cc │ │ │ │ │ │ ├── private_handle_accessor.h │ │ │ │ │ │ ├── program_name.cc │ │ │ │ │ │ ├── program_name.h │ │ │ │ │ │ ├── program_name_test.cc │ │ │ │ │ │ ├── registry.h │ │ │ │ │ │ ├── sequence_lock.h │ │ │ │ │ │ ├── sequence_lock_test.cc │ │ │ │ │ │ ├── usage.cc │ │ │ │ │ │ ├── usage.h │ │ │ │ │ │ └── usage_test.cc │ │ │ │ │ ├── marshalling.cc │ │ │ │ │ ├── marshalling.h │ │ │ │ │ ├── marshalling_test.cc │ │ │ │ │ ├── parse.cc │ │ │ │ │ ├── parse.h │ │ │ │ │ ├── parse_test.cc │ │ │ │ │ ├── reflection.cc │ │ │ │ │ ├── reflection.h │ │ │ │ │ ├── reflection_test.cc │ │ │ │ │ ├── usage.cc │ │ │ │ │ ├── usage.h │ │ │ │ │ ├── usage_config.cc │ │ │ │ │ ├── usage_config.h │ │ │ │ │ └── usage_config_test.cc │ │ │ │ ├── functional │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── any_invocable.h │ │ │ │ │ ├── any_invocable_test.cc │ │ │ │ │ ├── bind_front.h │ │ │ │ │ ├── bind_front_test.cc │ │ │ │ │ ├── function_ref.h │ │ │ │ │ ├── function_ref_test.cc │ │ │ │ │ ├── function_type_benchmark.cc │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── any_invocable.h │ │ │ │ │ │ ├── front_binder.h │ │ │ │ │ │ └── function_ref.h │ │ │ │ │ ├── overload.h │ │ │ │ │ └── overload_test.cc │ │ │ │ ├── hash │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── hash.h │ │ │ │ │ ├── hash_benchmark.cc │ │ │ │ │ ├── hash_instantiated_test.cc │ │ │ │ │ ├── hash_test.cc │ │ │ │ │ ├── hash_testing.h │ │ │ │ │ └── internal │ │ │ │ │ │ ├── city.cc │ │ │ │ │ │ ├── city.h │ │ │ │ │ │ ├── city_test.cc │ │ │ │ │ │ ├── hash.cc │ │ │ │ │ │ ├── hash.h │ │ │ │ │ │ ├── hash_test.h │ │ │ │ │ │ ├── low_level_hash.cc │ │ │ │ │ │ ├── low_level_hash.h │ │ │ │ │ │ ├── low_level_hash_test.cc │ │ │ │ │ │ ├── print_hash_of.cc │ │ │ │ │ │ └── spy_hash_state.h │ │ │ │ ├── log │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── absl_check.h │ │ │ │ │ ├── absl_check_test.cc │ │ │ │ │ ├── absl_log.h │ │ │ │ │ ├── absl_log_basic_test.cc │ │ │ │ │ ├── absl_vlog_is_on.h │ │ │ │ │ ├── check.h │ │ │ │ │ ├── check_test.cc │ │ │ │ │ ├── check_test_impl.inc │ │ │ │ │ ├── die_if_null.cc │ │ │ │ │ ├── die_if_null.h │ │ │ │ │ ├── die_if_null_test.cc │ │ │ │ │ ├── flags.cc │ │ │ │ │ ├── flags.h │ │ │ │ │ ├── flags_test.cc │ │ │ │ │ ├── globals.cc │ │ │ │ │ ├── globals.h │ │ │ │ │ ├── globals_test.cc │ │ │ │ │ ├── initialize.cc │ │ │ │ │ ├── initialize.h │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ │ ├── append_truncated.h │ │ │ │ │ │ ├── check_impl.h │ │ │ │ │ │ ├── check_op.cc │ │ │ │ │ │ ├── check_op.h │ │ │ │ │ │ ├── conditions.cc │ │ │ │ │ │ ├── conditions.h │ │ │ │ │ │ ├── config.h │ │ │ │ │ │ ├── flags.h │ │ │ │ │ │ ├── fnmatch.cc │ │ │ │ │ │ ├── fnmatch.h │ │ │ │ │ │ ├── fnmatch_benchmark.cc │ │ │ │ │ │ ├── fnmatch_test.cc │ │ │ │ │ │ ├── globals.cc │ │ │ │ │ │ ├── globals.h │ │ │ │ │ │ ├── log_format.cc │ │ │ │ │ │ ├── log_format.h │ │ │ │ │ │ ├── log_impl.h │ │ │ │ │ │ ├── log_message.cc │ │ │ │ │ │ ├── log_message.h │ │ │ │ │ │ ├── log_sink_set.cc │ │ │ │ │ │ ├── log_sink_set.h │ │ │ │ │ │ ├── nullguard.cc │ │ │ │ │ │ ├── nullguard.h │ │ │ │ │ │ ├── nullstream.h │ │ │ │ │ │ ├── proto.cc │ │ │ │ │ │ ├── proto.h │ │ │ │ │ │ ├── stderr_log_sink_test.cc │ │ │ │ │ │ ├── strip.h │ │ │ │ │ │ ├── structured.h │ │ │ │ │ │ ├── test_actions.cc │ │ │ │ │ │ ├── test_actions.h │ │ │ │ │ │ ├── test_helpers.cc │ │ │ │ │ │ ├── test_helpers.h │ │ │ │ │ │ ├── test_matchers.cc │ │ │ │ │ │ ├── test_matchers.h │ │ │ │ │ │ ├── vlog_config.cc │ │ │ │ │ │ ├── vlog_config.h │ │ │ │ │ │ ├── vlog_config_benchmark.cc │ │ │ │ │ │ └── voidify.h │ │ │ │ │ ├── log.h │ │ │ │ │ ├── log_basic_test.cc │ │ │ │ │ ├── log_basic_test_impl.inc │ │ │ │ │ ├── log_benchmark.cc │ │ │ │ │ ├── log_entry.cc │ │ │ │ │ ├── log_entry.h │ │ │ │ │ ├── log_entry_test.cc │ │ │ │ │ ├── log_format_test.cc │ │ │ │ │ ├── log_macro_hygiene_test.cc │ │ │ │ │ ├── log_modifier_methods_test.cc │ │ │ │ │ ├── log_sink.cc │ │ │ │ │ ├── log_sink.h │ │ │ │ │ ├── log_sink_registry.h │ │ │ │ │ ├── log_sink_test.cc │ │ │ │ │ ├── log_streamer.h │ │ │ │ │ ├── log_streamer_test.cc │ │ │ │ │ ├── scoped_mock_log.cc │ │ │ │ │ ├── scoped_mock_log.h │ │ │ │ │ ├── scoped_mock_log_test.cc │ │ │ │ │ ├── stripping_test.cc │ │ │ │ │ ├── structured.h │ │ │ │ │ ├── structured_test.cc │ │ │ │ │ ├── vlog_is_on.h │ │ │ │ │ └── vlog_is_on_test.cc │ │ │ │ ├── memory │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── memory.h │ │ │ │ │ └── memory_test.cc │ │ │ │ ├── meta │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── type_traits.h │ │ │ │ │ └── type_traits_test.cc │ │ │ │ ├── numeric │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── bits.h │ │ │ │ │ ├── bits_benchmark.cc │ │ │ │ │ ├── bits_test.cc │ │ │ │ │ ├── int128.cc │ │ │ │ │ ├── int128.h │ │ │ │ │ ├── int128_benchmark.cc │ │ │ │ │ ├── int128_have_intrinsic.inc │ │ │ │ │ ├── int128_no_intrinsic.inc │ │ │ │ │ ├── int128_stream_test.cc │ │ │ │ │ ├── int128_test.cc │ │ │ │ │ └── internal │ │ │ │ │ │ ├── bits.h │ │ │ │ │ │ └── representation.h │ │ │ │ ├── profiling │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── internal │ │ │ │ │ │ ├── exponential_biased.cc │ │ │ │ │ │ ├── exponential_biased.h │ │ │ │ │ │ ├── exponential_biased_test.cc │ │ │ │ │ │ ├── periodic_sampler.cc │ │ │ │ │ │ ├── periodic_sampler.h │ │ │ │ │ │ ├── periodic_sampler_benchmark.cc │ │ │ │ │ │ ├── periodic_sampler_test.cc │ │ │ │ │ │ ├── sample_recorder.h │ │ │ │ │ │ └── sample_recorder_test.cc │ │ │ │ ├── random │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── benchmarks.cc │ │ │ │ │ ├── bernoulli_distribution.h │ │ │ │ │ ├── bernoulli_distribution_test.cc │ │ │ │ │ ├── beta_distribution.h │ │ │ │ │ ├── beta_distribution_test.cc │ │ │ │ │ ├── bit_gen_ref.h │ │ │ │ │ ├── bit_gen_ref_test.cc │ │ │ │ │ ├── discrete_distribution.cc │ │ │ │ │ ├── discrete_distribution.h │ │ │ │ │ ├── discrete_distribution_test.cc │ │ │ │ │ ├── distributions.h │ │ │ │ │ ├── distributions_test.cc │ │ │ │ │ ├── examples_test.cc │ │ │ │ │ ├── exponential_distribution.h │ │ │ │ │ ├── exponential_distribution_test.cc │ │ │ │ │ ├── gaussian_distribution.cc │ │ │ │ │ ├── gaussian_distribution.h │ │ │ │ │ ├── gaussian_distribution_test.cc │ │ │ │ │ ├── generators_test.cc │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ │ ├── chi_square.cc │ │ │ │ │ │ ├── chi_square.h │ │ │ │ │ │ ├── chi_square_test.cc │ │ │ │ │ │ ├── distribution_caller.h │ │ │ │ │ │ ├── distribution_test_util.cc │ │ │ │ │ │ ├── distribution_test_util.h │ │ │ │ │ │ ├── distribution_test_util_test.cc │ │ │ │ │ │ ├── explicit_seed_seq.h │ │ │ │ │ │ ├── explicit_seed_seq_test.cc │ │ │ │ │ │ ├── fast_uniform_bits.h │ │ │ │ │ │ ├── fast_uniform_bits_test.cc │ │ │ │ │ │ ├── fastmath.h │ │ │ │ │ │ ├── fastmath_test.cc │ │ │ │ │ │ ├── gaussian_distribution_gentables.cc │ │ │ │ │ │ ├── generate_real.h │ │ │ │ │ │ ├── generate_real_test.cc │ │ │ │ │ │ ├── iostream_state_saver.h │ │ │ │ │ │ ├── iostream_state_saver_test.cc │ │ │ │ │ │ ├── mock_helpers.h │ │ │ │ │ │ ├── mock_overload_set.h │ │ │ │ │ │ ├── nanobenchmark.cc │ │ │ │ │ │ ├── nanobenchmark.h │ │ │ │ │ │ ├── nanobenchmark_test.cc │ │ │ │ │ │ ├── nonsecure_base.h │ │ │ │ │ │ ├── nonsecure_base_test.cc │ │ │ │ │ │ ├── pcg_engine.h │ │ │ │ │ │ ├── pcg_engine_test.cc │ │ │ │ │ │ ├── platform.h │ │ │ │ │ │ ├── pool_urbg.cc │ │ │ │ │ │ ├── pool_urbg.h │ │ │ │ │ │ ├── pool_urbg_test.cc │ │ │ │ │ │ ├── randen.cc │ │ │ │ │ │ ├── randen.h │ │ │ │ │ │ ├── randen_benchmarks.cc │ │ │ │ │ │ ├── randen_detect.cc │ │ │ │ │ │ ├── randen_detect.h │ │ │ │ │ │ ├── randen_engine.h │ │ │ │ │ │ ├── randen_engine_test.cc │ │ │ │ │ │ ├── randen_hwaes.cc │ │ │ │ │ │ ├── randen_hwaes.h │ │ │ │ │ │ ├── randen_hwaes_test.cc │ │ │ │ │ │ ├── randen_round_keys.cc │ │ │ │ │ │ ├── randen_slow.cc │ │ │ │ │ │ ├── randen_slow.h │ │ │ │ │ │ ├── randen_slow_test.cc │ │ │ │ │ │ ├── randen_test.cc │ │ │ │ │ │ ├── randen_traits.h │ │ │ │ │ │ ├── salted_seed_seq.h │ │ │ │ │ │ ├── salted_seed_seq_test.cc │ │ │ │ │ │ ├── seed_material.cc │ │ │ │ │ │ ├── seed_material.h │ │ │ │ │ │ ├── seed_material_test.cc │ │ │ │ │ │ ├── sequence_urbg.h │ │ │ │ │ │ ├── traits.h │ │ │ │ │ │ ├── traits_test.cc │ │ │ │ │ │ ├── uniform_helper.h │ │ │ │ │ │ ├── uniform_helper_test.cc │ │ │ │ │ │ ├── wide_multiply.h │ │ │ │ │ │ └── wide_multiply_test.cc │ │ │ │ │ ├── log_uniform_int_distribution.h │ │ │ │ │ ├── log_uniform_int_distribution_test.cc │ │ │ │ │ ├── mock_distributions.h │ │ │ │ │ ├── mock_distributions_test.cc │ │ │ │ │ ├── mocking_bit_gen.h │ │ │ │ │ ├── mocking_bit_gen_test.cc │ │ │ │ │ ├── poisson_distribution.h │ │ │ │ │ ├── poisson_distribution_test.cc │ │ │ │ │ ├── random.h │ │ │ │ │ ├── seed_gen_exception.cc │ │ │ │ │ ├── seed_gen_exception.h │ │ │ │ │ ├── seed_sequences.cc │ │ │ │ │ ├── seed_sequences.h │ │ │ │ │ ├── seed_sequences_test.cc │ │ │ │ │ ├── uniform_int_distribution.h │ │ │ │ │ ├── uniform_int_distribution_test.cc │ │ │ │ │ ├── uniform_real_distribution.h │ │ │ │ │ ├── uniform_real_distribution_test.cc │ │ │ │ │ ├── zipf_distribution.h │ │ │ │ │ └── zipf_distribution_test.cc │ │ │ │ ├── status │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── status_internal.cc │ │ │ │ │ │ ├── status_internal.h │ │ │ │ │ │ └── statusor_internal.h │ │ │ │ │ ├── status.cc │ │ │ │ │ ├── status.h │ │ │ │ │ ├── status_payload_printer.cc │ │ │ │ │ ├── status_payload_printer.h │ │ │ │ │ ├── status_test.cc │ │ │ │ │ ├── statusor.cc │ │ │ │ │ ├── statusor.h │ │ │ │ │ └── statusor_test.cc │ │ │ │ ├── strings │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── ascii.cc │ │ │ │ │ ├── ascii.h │ │ │ │ │ ├── ascii_benchmark.cc │ │ │ │ │ ├── ascii_test.cc │ │ │ │ │ ├── atod_manual_test.cc │ │ │ │ │ ├── char_formatting_test.cc │ │ │ │ │ ├── charconv.cc │ │ │ │ │ ├── charconv.h │ │ │ │ │ ├── charconv_benchmark.cc │ │ │ │ │ ├── charconv_test.cc │ │ │ │ │ ├── charset.h │ │ │ │ │ ├── charset_benchmark.cc │ │ │ │ │ ├── charset_test.cc │ │ │ │ │ ├── cord.cc │ │ │ │ │ ├── cord.h │ │ │ │ │ ├── cord_analysis.cc │ │ │ │ │ ├── cord_analysis.h │ │ │ │ │ ├── cord_buffer.cc │ │ │ │ │ ├── cord_buffer.h │ │ │ │ │ ├── cord_buffer_test.cc │ │ │ │ │ ├── cord_test.cc │ │ │ │ │ ├── cord_test_helpers.h │ │ │ │ │ ├── cordz_test.cc │ │ │ │ │ ├── cordz_test_helpers.h │ │ │ │ │ ├── escaping.cc │ │ │ │ │ ├── escaping.h │ │ │ │ │ ├── escaping_benchmark.cc │ │ │ │ │ ├── escaping_test.cc │ │ │ │ │ ├── has_absl_stringify.h │ │ │ │ │ ├── has_absl_stringify_test.cc │ │ │ │ │ ├── has_ostream_operator.h │ │ │ │ │ ├── has_ostream_operator_test.cc │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── charconv_bigint.cc │ │ │ │ │ │ ├── charconv_bigint.h │ │ │ │ │ │ ├── charconv_bigint_test.cc │ │ │ │ │ │ ├── charconv_parse.cc │ │ │ │ │ │ ├── charconv_parse.h │ │ │ │ │ │ ├── charconv_parse_test.cc │ │ │ │ │ │ ├── cord_data_edge.h │ │ │ │ │ │ ├── cord_data_edge_test.cc │ │ │ │ │ │ ├── cord_internal.cc │ │ │ │ │ │ ├── cord_internal.h │ │ │ │ │ │ ├── cord_rep_btree.cc │ │ │ │ │ │ ├── cord_rep_btree.h │ │ │ │ │ │ ├── cord_rep_btree_navigator.cc │ │ │ │ │ │ ├── cord_rep_btree_navigator.h │ │ │ │ │ │ ├── cord_rep_btree_navigator_test.cc │ │ │ │ │ │ ├── cord_rep_btree_reader.cc │ │ │ │ │ │ ├── cord_rep_btree_reader.h │ │ │ │ │ │ ├── cord_rep_btree_reader_test.cc │ │ │ │ │ │ ├── cord_rep_btree_test.cc │ │ │ │ │ │ ├── cord_rep_consume.cc │ │ │ │ │ │ ├── cord_rep_consume.h │ │ │ │ │ │ ├── cord_rep_crc.cc │ │ │ │ │ │ ├── cord_rep_crc.h │ │ │ │ │ │ ├── cord_rep_crc_test.cc │ │ │ │ │ │ ├── cord_rep_flat.h │ │ │ │ │ │ ├── cord_rep_test_util.h │ │ │ │ │ │ ├── cordz_functions.cc │ │ │ │ │ │ ├── cordz_functions.h │ │ │ │ │ │ ├── cordz_functions_test.cc │ │ │ │ │ │ ├── cordz_handle.cc │ │ │ │ │ │ ├── cordz_handle.h │ │ │ │ │ │ ├── cordz_handle_test.cc │ │ │ │ │ │ ├── cordz_info.cc │ │ │ │ │ │ ├── cordz_info.h │ │ │ │ │ │ ├── cordz_info_statistics_test.cc │ │ │ │ │ │ ├── cordz_info_test.cc │ │ │ │ │ │ ├── cordz_sample_token.cc │ │ │ │ │ │ ├── cordz_sample_token.h │ │ │ │ │ │ ├── cordz_sample_token_test.cc │ │ │ │ │ │ ├── cordz_statistics.h │ │ │ │ │ │ ├── cordz_update_scope.h │ │ │ │ │ │ ├── cordz_update_scope_test.cc │ │ │ │ │ │ ├── cordz_update_tracker.h │ │ │ │ │ │ ├── cordz_update_tracker_test.cc │ │ │ │ │ │ ├── damerau_levenshtein_distance.cc │ │ │ │ │ │ ├── damerau_levenshtein_distance.h │ │ │ │ │ │ ├── damerau_levenshtein_distance_test.cc │ │ │ │ │ │ ├── escaping.cc │ │ │ │ │ │ ├── escaping.h │ │ │ │ │ │ ├── escaping_test_common.h │ │ │ │ │ │ ├── has_absl_stringify.h │ │ │ │ │ │ ├── memutil.cc │ │ │ │ │ │ ├── memutil.h │ │ │ │ │ │ ├── memutil_benchmark.cc │ │ │ │ │ │ ├── memutil_test.cc │ │ │ │ │ │ ├── numbers_test_common.h │ │ │ │ │ │ ├── ostringstream.cc │ │ │ │ │ │ ├── ostringstream.h │ │ │ │ │ │ ├── ostringstream_benchmark.cc │ │ │ │ │ │ ├── ostringstream_test.cc │ │ │ │ │ │ ├── pow10_helper.cc │ │ │ │ │ │ ├── pow10_helper.h │ │ │ │ │ │ ├── pow10_helper_test.cc │ │ │ │ │ │ ├── resize_uninitialized.h │ │ │ │ │ │ ├── resize_uninitialized_test.cc │ │ │ │ │ │ ├── stl_type_traits.h │ │ │ │ │ │ ├── str_format │ │ │ │ │ │ │ ├── arg.cc │ │ │ │ │ │ │ ├── arg.h │ │ │ │ │ │ │ ├── arg_test.cc │ │ │ │ │ │ │ ├── bind.cc │ │ │ │ │ │ │ ├── bind.h │ │ │ │ │ │ │ ├── bind_test.cc │ │ │ │ │ │ │ ├── checker.h │ │ │ │ │ │ │ ├── checker_test.cc │ │ │ │ │ │ │ ├── constexpr_parser.h │ │ │ │ │ │ │ ├── convert_test.cc │ │ │ │ │ │ │ ├── extension.cc │ │ │ │ │ │ │ ├── extension.h │ │ │ │ │ │ │ ├── extension_test.cc │ │ │ │ │ │ │ ├── float_conversion.cc │ │ │ │ │ │ │ ├── float_conversion.h │ │ │ │ │ │ │ ├── output.cc │ │ │ │ │ │ │ ├── output.h │ │ │ │ │ │ │ ├── output_test.cc │ │ │ │ │ │ │ ├── parser.cc │ │ │ │ │ │ │ ├── parser.h │ │ │ │ │ │ │ └── parser_test.cc │ │ │ │ │ │ ├── str_join_internal.h │ │ │ │ │ │ ├── str_split_internal.h │ │ │ │ │ │ ├── string_constant.h │ │ │ │ │ │ ├── string_constant_test.cc │ │ │ │ │ │ ├── stringify_sink.cc │ │ │ │ │ │ ├── stringify_sink.h │ │ │ │ │ │ ├── utf8.cc │ │ │ │ │ │ ├── utf8.h │ │ │ │ │ │ └── utf8_test.cc │ │ │ │ │ ├── match.cc │ │ │ │ │ ├── match.h │ │ │ │ │ ├── match_test.cc │ │ │ │ │ ├── numbers.cc │ │ │ │ │ ├── numbers.h │ │ │ │ │ ├── numbers_benchmark.cc │ │ │ │ │ ├── numbers_test.cc │ │ │ │ │ ├── str_cat.cc │ │ │ │ │ ├── str_cat.h │ │ │ │ │ ├── str_cat_benchmark.cc │ │ │ │ │ ├── str_cat_test.cc │ │ │ │ │ ├── str_format.h │ │ │ │ │ ├── str_format_test.cc │ │ │ │ │ ├── str_join.h │ │ │ │ │ ├── str_join_benchmark.cc │ │ │ │ │ ├── str_join_test.cc │ │ │ │ │ ├── str_replace.cc │ │ │ │ │ ├── str_replace.h │ │ │ │ │ ├── str_replace_benchmark.cc │ │ │ │ │ ├── str_replace_test.cc │ │ │ │ │ ├── str_split.cc │ │ │ │ │ ├── str_split.h │ │ │ │ │ ├── str_split_benchmark.cc │ │ │ │ │ ├── str_split_test.cc │ │ │ │ │ ├── string_view.cc │ │ │ │ │ ├── string_view.h │ │ │ │ │ ├── string_view_benchmark.cc │ │ │ │ │ ├── string_view_test.cc │ │ │ │ │ ├── strip.h │ │ │ │ │ ├── strip_test.cc │ │ │ │ │ ├── substitute.cc │ │ │ │ │ ├── substitute.h │ │ │ │ │ └── substitute_test.cc │ │ │ │ ├── synchronization │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── barrier.cc │ │ │ │ │ ├── barrier.h │ │ │ │ │ ├── barrier_test.cc │ │ │ │ │ ├── blocking_counter.cc │ │ │ │ │ ├── blocking_counter.h │ │ │ │ │ ├── blocking_counter_benchmark.cc │ │ │ │ │ ├── blocking_counter_test.cc │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── create_thread_identity.cc │ │ │ │ │ │ ├── create_thread_identity.h │ │ │ │ │ │ ├── futex.h │ │ │ │ │ │ ├── futex_waiter.cc │ │ │ │ │ │ ├── futex_waiter.h │ │ │ │ │ │ ├── graphcycles.cc │ │ │ │ │ │ ├── graphcycles.h │ │ │ │ │ │ ├── graphcycles_benchmark.cc │ │ │ │ │ │ ├── graphcycles_test.cc │ │ │ │ │ │ ├── kernel_timeout.cc │ │ │ │ │ │ ├── kernel_timeout.h │ │ │ │ │ │ ├── kernel_timeout_test.cc │ │ │ │ │ │ ├── per_thread_sem.cc │ │ │ │ │ │ ├── per_thread_sem.h │ │ │ │ │ │ ├── per_thread_sem_test.cc │ │ │ │ │ │ ├── pthread_waiter.cc │ │ │ │ │ │ ├── pthread_waiter.h │ │ │ │ │ │ ├── sem_waiter.cc │ │ │ │ │ │ ├── sem_waiter.h │ │ │ │ │ │ ├── stdcpp_waiter.cc │ │ │ │ │ │ ├── stdcpp_waiter.h │ │ │ │ │ │ ├── thread_pool.h │ │ │ │ │ │ ├── waiter.h │ │ │ │ │ │ ├── waiter_base.cc │ │ │ │ │ │ ├── waiter_base.h │ │ │ │ │ │ ├── waiter_test.cc │ │ │ │ │ │ ├── win32_waiter.cc │ │ │ │ │ │ └── win32_waiter.h │ │ │ │ │ ├── lifetime_test.cc │ │ │ │ │ ├── mutex.cc │ │ │ │ │ ├── mutex.h │ │ │ │ │ ├── mutex_benchmark.cc │ │ │ │ │ ├── mutex_method_pointer_test.cc │ │ │ │ │ ├── mutex_test.cc │ │ │ │ │ ├── notification.cc │ │ │ │ │ ├── notification.h │ │ │ │ │ └── notification_test.cc │ │ │ │ ├── time │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── civil_time.cc │ │ │ │ │ ├── civil_time.h │ │ │ │ │ ├── civil_time_benchmark.cc │ │ │ │ │ ├── civil_time_test.cc │ │ │ │ │ ├── clock.cc │ │ │ │ │ ├── clock.h │ │ │ │ │ ├── clock_benchmark.cc │ │ │ │ │ ├── clock_test.cc │ │ │ │ │ ├── duration.cc │ │ │ │ │ ├── duration_benchmark.cc │ │ │ │ │ ├── duration_test.cc │ │ │ │ │ ├── flag_test.cc │ │ │ │ │ ├── format.cc │ │ │ │ │ ├── format_benchmark.cc │ │ │ │ │ ├── format_test.cc │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── cctz │ │ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ │ └── cctz │ │ │ │ │ │ │ │ │ ├── civil_time.h │ │ │ │ │ │ │ │ │ ├── civil_time_detail.h │ │ │ │ │ │ │ │ │ ├── time_zone.h │ │ │ │ │ │ │ │ │ └── zone_info_source.h │ │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ │ ├── cctz_benchmark.cc │ │ │ │ │ │ │ │ ├── civil_time_detail.cc │ │ │ │ │ │ │ │ ├── civil_time_test.cc │ │ │ │ │ │ │ │ ├── time_zone_fixed.cc │ │ │ │ │ │ │ │ ├── time_zone_fixed.h │ │ │ │ │ │ │ │ ├── time_zone_format.cc │ │ │ │ │ │ │ │ ├── time_zone_format_test.cc │ │ │ │ │ │ │ │ ├── time_zone_if.cc │ │ │ │ │ │ │ │ ├── time_zone_if.h │ │ │ │ │ │ │ │ ├── time_zone_impl.cc │ │ │ │ │ │ │ │ ├── time_zone_impl.h │ │ │ │ │ │ │ │ ├── time_zone_info.cc │ │ │ │ │ │ │ │ ├── time_zone_info.h │ │ │ │ │ │ │ │ ├── time_zone_libc.cc │ │ │ │ │ │ │ │ ├── time_zone_libc.h │ │ │ │ │ │ │ │ ├── time_zone_lookup.cc │ │ │ │ │ │ │ │ ├── time_zone_lookup_test.cc │ │ │ │ │ │ │ │ ├── time_zone_posix.cc │ │ │ │ │ │ │ │ ├── time_zone_posix.h │ │ │ │ │ │ │ │ ├── tzfile.h │ │ │ │ │ │ │ │ └── zone_info_source.cc │ │ │ │ │ │ │ └── testdata │ │ │ │ │ │ │ │ ├── README.zoneinfo │ │ │ │ │ │ │ │ ├── version │ │ │ │ │ │ │ │ └── zoneinfo │ │ │ │ │ │ │ │ ├── Africa │ │ │ │ │ │ │ │ ├── Abidjan │ │ │ │ │ │ │ │ ├── Accra │ │ │ │ │ │ │ │ ├── Addis_Ababa │ │ │ │ │ │ │ │ ├── Algiers │ │ │ │ │ │ │ │ ├── Asmara │ │ │ │ │ │ │ │ ├── Asmera │ │ │ │ │ │ │ │ ├── Bamako │ │ │ │ │ │ │ │ ├── Bangui │ │ │ │ │ │ │ │ ├── Banjul │ │ │ │ │ │ │ │ ├── Bissau │ │ │ │ │ │ │ │ ├── Blantyre │ │ │ │ │ │ │ │ ├── Brazzaville │ │ │ │ │ │ │ │ ├── Bujumbura │ │ │ │ │ │ │ │ ├── Cairo │ │ │ │ │ │ │ │ ├── Casablanca │ │ │ │ │ │ │ │ ├── Ceuta │ │ │ │ │ │ │ │ ├── Conakry │ │ │ │ │ │ │ │ ├── Dakar │ │ │ │ │ │ │ │ ├── Dar_es_Salaam │ │ │ │ │ │ │ │ ├── Djibouti │ │ │ │ │ │ │ │ ├── Douala │ │ │ │ │ │ │ │ ├── El_Aaiun │ │ │ │ │ │ │ │ ├── Freetown │ │ │ │ │ │ │ │ ├── Gaborone │ │ │ │ │ │ │ │ ├── Harare │ │ │ │ │ │ │ │ ├── Johannesburg │ │ │ │ │ │ │ │ ├── Juba │ │ │ │ │ │ │ │ ├── Kampala │ │ │ │ │ │ │ │ ├── Khartoum │ │ │ │ │ │ │ │ ├── Kigali │ │ │ │ │ │ │ │ ├── Kinshasa │ │ │ │ │ │ │ │ ├── Lagos │ │ │ │ │ │ │ │ ├── Libreville │ │ │ │ │ │ │ │ ├── Lome │ │ │ │ │ │ │ │ ├── Luanda │ │ │ │ │ │ │ │ ├── Lubumbashi │ │ │ │ │ │ │ │ ├── Lusaka │ │ │ │ │ │ │ │ ├── Malabo │ │ │ │ │ │ │ │ ├── Maputo │ │ │ │ │ │ │ │ ├── Maseru │ │ │ │ │ │ │ │ ├── Mbabane │ │ │ │ │ │ │ │ ├── Mogadishu │ │ │ │ │ │ │ │ ├── Monrovia │ │ │ │ │ │ │ │ ├── Nairobi │ │ │ │ │ │ │ │ ├── Ndjamena │ │ │ │ │ │ │ │ ├── Niamey │ │ │ │ │ │ │ │ ├── Nouakchott │ │ │ │ │ │ │ │ ├── Ouagadougou │ │ │ │ │ │ │ │ ├── Porto-Novo │ │ │ │ │ │ │ │ ├── Sao_Tome │ │ │ │ │ │ │ │ ├── Timbuktu │ │ │ │ │ │ │ │ ├── Tripoli │ │ │ │ │ │ │ │ ├── Tunis │ │ │ │ │ │ │ │ └── Windhoek │ │ │ │ │ │ │ │ ├── America │ │ │ │ │ │ │ │ ├── Adak │ │ │ │ │ │ │ │ ├── Anchorage │ │ │ │ │ │ │ │ ├── Anguilla │ │ │ │ │ │ │ │ ├── Antigua │ │ │ │ │ │ │ │ ├── Araguaina │ │ │ │ │ │ │ │ ├── Argentina │ │ │ │ │ │ │ │ │ ├── Buenos_Aires │ │ │ │ │ │ │ │ │ ├── Catamarca │ │ │ │ │ │ │ │ │ ├── ComodRivadavia │ │ │ │ │ │ │ │ │ ├── Cordoba │ │ │ │ │ │ │ │ │ ├── Jujuy │ │ │ │ │ │ │ │ │ ├── La_Rioja │ │ │ │ │ │ │ │ │ ├── Mendoza │ │ │ │ │ │ │ │ │ ├── Rio_Gallegos │ │ │ │ │ │ │ │ │ ├── Salta │ │ │ │ │ │ │ │ │ ├── San_Juan │ │ │ │ │ │ │ │ │ ├── San_Luis │ │ │ │ │ │ │ │ │ ├── Tucuman │ │ │ │ │ │ │ │ │ └── Ushuaia │ │ │ │ │ │ │ │ ├── Aruba │ │ │ │ │ │ │ │ ├── Asuncion │ │ │ │ │ │ │ │ ├── Atikokan │ │ │ │ │ │ │ │ ├── Atka │ │ │ │ │ │ │ │ ├── Bahia │ │ │ │ │ │ │ │ ├── Bahia_Banderas │ │ │ │ │ │ │ │ ├── Barbados │ │ │ │ │ │ │ │ ├── Belem │ │ │ │ │ │ │ │ ├── Belize │ │ │ │ │ │ │ │ ├── Blanc-Sablon │ │ │ │ │ │ │ │ ├── Boa_Vista │ │ │ │ │ │ │ │ ├── Bogota │ │ │ │ │ │ │ │ ├── Boise │ │ │ │ │ │ │ │ ├── Buenos_Aires │ │ │ │ │ │ │ │ ├── Cambridge_Bay │ │ │ │ │ │ │ │ ├── Campo_Grande │ │ │ │ │ │ │ │ ├── Cancun │ │ │ │ │ │ │ │ ├── Caracas │ │ │ │ │ │ │ │ ├── Catamarca │ │ │ │ │ │ │ │ ├── Cayenne │ │ │ │ │ │ │ │ ├── Cayman │ │ │ │ │ │ │ │ ├── Chicago │ │ │ │ │ │ │ │ ├── Chihuahua │ │ │ │ │ │ │ │ ├── Ciudad_Juarez │ │ │ │ │ │ │ │ ├── Coral_Harbour │ │ │ │ │ │ │ │ ├── Cordoba │ │ │ │ │ │ │ │ ├── Costa_Rica │ │ │ │ │ │ │ │ ├── Creston │ │ │ │ │ │ │ │ ├── Cuiaba │ │ │ │ │ │ │ │ ├── Curacao │ │ │ │ │ │ │ │ ├── Danmarkshavn │ │ │ │ │ │ │ │ ├── Dawson │ │ │ │ │ │ │ │ ├── Dawson_Creek │ │ │ │ │ │ │ │ ├── Denver │ │ │ │ │ │ │ │ ├── Detroit │ │ │ │ │ │ │ │ ├── Dominica │ │ │ │ │ │ │ │ ├── Edmonton │ │ │ │ │ │ │ │ ├── Eirunepe │ │ │ │ │ │ │ │ ├── El_Salvador │ │ │ │ │ │ │ │ ├── Ensenada │ │ │ │ │ │ │ │ ├── Fort_Nelson │ │ │ │ │ │ │ │ ├── Fort_Wayne │ │ │ │ │ │ │ │ ├── Fortaleza │ │ │ │ │ │ │ │ ├── Glace_Bay │ │ │ │ │ │ │ │ ├── Godthab │ │ │ │ │ │ │ │ ├── Goose_Bay │ │ │ │ │ │ │ │ ├── Grand_Turk │ │ │ │ │ │ │ │ ├── Grenada │ │ │ │ │ │ │ │ ├── Guadeloupe │ │ │ │ │ │ │ │ ├── Guatemala │ │ │ │ │ │ │ │ ├── Guayaquil │ │ │ │ │ │ │ │ ├── Guyana │ │ │ │ │ │ │ │ ├── Halifax │ │ │ │ │ │ │ │ ├── Havana │ │ │ │ │ │ │ │ ├── Hermosillo │ │ │ │ │ │ │ │ ├── Indiana │ │ │ │ │ │ │ │ │ ├── Indianapolis │ │ │ │ │ │ │ │ │ ├── Knox │ │ │ │ │ │ │ │ │ ├── Marengo │ │ │ │ │ │ │ │ │ ├── Petersburg │ │ │ │ │ │ │ │ │ ├── Tell_City │ │ │ │ │ │ │ │ │ ├── Vevay │ │ │ │ │ │ │ │ │ ├── Vincennes │ │ │ │ │ │ │ │ │ └── Winamac │ │ │ │ │ │ │ │ ├── Indianapolis │ │ │ │ │ │ │ │ ├── Inuvik │ │ │ │ │ │ │ │ ├── Iqaluit │ │ │ │ │ │ │ │ ├── Jamaica │ │ │ │ │ │ │ │ ├── Jujuy │ │ │ │ │ │ │ │ ├── Juneau │ │ │ │ │ │ │ │ ├── Kentucky │ │ │ │ │ │ │ │ │ ├── Louisville │ │ │ │ │ │ │ │ │ └── Monticello │ │ │ │ │ │ │ │ ├── Knox_IN │ │ │ │ │ │ │ │ ├── Kralendijk │ │ │ │ │ │ │ │ ├── La_Paz │ │ │ │ │ │ │ │ ├── Lima │ │ │ │ │ │ │ │ ├── Los_Angeles │ │ │ │ │ │ │ │ ├── Louisville │ │ │ │ │ │ │ │ ├── Lower_Princes │ │ │ │ │ │ │ │ ├── Maceio │ │ │ │ │ │ │ │ ├── Managua │ │ │ │ │ │ │ │ ├── Manaus │ │ │ │ │ │ │ │ ├── Marigot │ │ │ │ │ │ │ │ ├── Martinique │ │ │ │ │ │ │ │ ├── Matamoros │ │ │ │ │ │ │ │ ├── Mazatlan │ │ │ │ │ │ │ │ ├── Mendoza │ │ │ │ │ │ │ │ ├── Menominee │ │ │ │ │ │ │ │ ├── Merida │ │ │ │ │ │ │ │ ├── Metlakatla │ │ │ │ │ │ │ │ ├── Mexico_City │ │ │ │ │ │ │ │ ├── Miquelon │ │ │ │ │ │ │ │ ├── Moncton │ │ │ │ │ │ │ │ ├── Monterrey │ │ │ │ │ │ │ │ ├── Montevideo │ │ │ │ │ │ │ │ ├── Montreal │ │ │ │ │ │ │ │ ├── Montserrat │ │ │ │ │ │ │ │ ├── Nassau │ │ │ │ │ │ │ │ ├── New_York │ │ │ │ │ │ │ │ ├── Nipigon │ │ │ │ │ │ │ │ ├── Nome │ │ │ │ │ │ │ │ ├── Noronha │ │ │ │ │ │ │ │ ├── North_Dakota │ │ │ │ │ │ │ │ │ ├── Beulah │ │ │ │ │ │ │ │ │ ├── Center │ │ │ │ │ │ │ │ │ └── New_Salem │ │ │ │ │ │ │ │ ├── Nuuk │ │ │ │ │ │ │ │ ├── Ojinaga │ │ │ │ │ │ │ │ ├── Panama │ │ │ │ │ │ │ │ ├── Pangnirtung │ │ │ │ │ │ │ │ ├── Paramaribo │ │ │ │ │ │ │ │ ├── Phoenix │ │ │ │ │ │ │ │ ├── Port-au-Prince │ │ │ │ │ │ │ │ ├── Port_of_Spain │ │ │ │ │ │ │ │ ├── Porto_Acre │ │ │ │ │ │ │ │ ├── Porto_Velho │ │ │ │ │ │ │ │ ├── Puerto_Rico │ │ │ │ │ │ │ │ ├── Punta_Arenas │ │ │ │ │ │ │ │ ├── Rainy_River │ │ │ │ │ │ │ │ ├── Rankin_Inlet │ │ │ │ │ │ │ │ ├── Recife │ │ │ │ │ │ │ │ ├── Regina │ │ │ │ │ │ │ │ ├── Resolute │ │ │ │ │ │ │ │ ├── Rio_Branco │ │ │ │ │ │ │ │ ├── Rosario │ │ │ │ │ │ │ │ ├── Santa_Isabel │ │ │ │ │ │ │ │ ├── Santarem │ │ │ │ │ │ │ │ ├── Santiago │ │ │ │ │ │ │ │ ├── Santo_Domingo │ │ │ │ │ │ │ │ ├── Sao_Paulo │ │ │ │ │ │ │ │ ├── Scoresbysund │ │ │ │ │ │ │ │ ├── Shiprock │ │ │ │ │ │ │ │ ├── Sitka │ │ │ │ │ │ │ │ ├── St_Barthelemy │ │ │ │ │ │ │ │ ├── St_Johns │ │ │ │ │ │ │ │ ├── St_Kitts │ │ │ │ │ │ │ │ ├── St_Lucia │ │ │ │ │ │ │ │ ├── St_Thomas │ │ │ │ │ │ │ │ ├── St_Vincent │ │ │ │ │ │ │ │ ├── Swift_Current │ │ │ │ │ │ │ │ ├── Tegucigalpa │ │ │ │ │ │ │ │ ├── Thule │ │ │ │ │ │ │ │ ├── Thunder_Bay │ │ │ │ │ │ │ │ ├── Tijuana │ │ │ │ │ │ │ │ ├── Toronto │ │ │ │ │ │ │ │ ├── Tortola │ │ │ │ │ │ │ │ ├── Vancouver │ │ │ │ │ │ │ │ ├── Virgin │ │ │ │ │ │ │ │ ├── Whitehorse │ │ │ │ │ │ │ │ ├── Winnipeg │ │ │ │ │ │ │ │ ├── Yakutat │ │ │ │ │ │ │ │ └── Yellowknife │ │ │ │ │ │ │ │ ├── Antarctica │ │ │ │ │ │ │ │ ├── Casey │ │ │ │ │ │ │ │ ├── Davis │ │ │ │ │ │ │ │ ├── DumontDUrville │ │ │ │ │ │ │ │ ├── Macquarie │ │ │ │ │ │ │ │ ├── Mawson │ │ │ │ │ │ │ │ ├── McMurdo │ │ │ │ │ │ │ │ ├── Palmer │ │ │ │ │ │ │ │ ├── Rothera │ │ │ │ │ │ │ │ ├── South_Pole │ │ │ │ │ │ │ │ ├── Syowa │ │ │ │ │ │ │ │ ├── Troll │ │ │ │ │ │ │ │ └── Vostok │ │ │ │ │ │ │ │ ├── Arctic │ │ │ │ │ │ │ │ └── Longyearbyen │ │ │ │ │ │ │ │ ├── Asia │ │ │ │ │ │ │ │ ├── Aden │ │ │ │ │ │ │ │ ├── Almaty │ │ │ │ │ │ │ │ ├── Amman │ │ │ │ │ │ │ │ ├── Anadyr │ │ │ │ │ │ │ │ ├── Aqtau │ │ │ │ │ │ │ │ ├── Aqtobe │ │ │ │ │ │ │ │ ├── Ashgabat │ │ │ │ │ │ │ │ ├── Ashkhabad │ │ │ │ │ │ │ │ ├── Atyrau │ │ │ │ │ │ │ │ ├── Baghdad │ │ │ │ │ │ │ │ ├── Bahrain │ │ │ │ │ │ │ │ ├── Baku │ │ │ │ │ │ │ │ ├── Bangkok │ │ │ │ │ │ │ │ ├── Barnaul │ │ │ │ │ │ │ │ ├── Beirut │ │ │ │ │ │ │ │ ├── Bishkek │ │ │ │ │ │ │ │ ├── Brunei │ │ │ │ │ │ │ │ ├── Calcutta │ │ │ │ │ │ │ │ ├── Chita │ │ │ │ │ │ │ │ ├── Choibalsan │ │ │ │ │ │ │ │ ├── Chongqing │ │ │ │ │ │ │ │ ├── Chungking │ │ │ │ │ │ │ │ ├── Colombo │ │ │ │ │ │ │ │ ├── Dacca │ │ │ │ │ │ │ │ ├── Damascus │ │ │ │ │ │ │ │ ├── Dhaka │ │ │ │ │ │ │ │ ├── Dili │ │ │ │ │ │ │ │ ├── Dubai │ │ │ │ │ │ │ │ ├── Dushanbe │ │ │ │ │ │ │ │ ├── Famagusta │ │ │ │ │ │ │ │ ├── Gaza │ │ │ │ │ │ │ │ ├── Harbin │ │ │ │ │ │ │ │ ├── Hebron │ │ │ │ │ │ │ │ ├── Ho_Chi_Minh │ │ │ │ │ │ │ │ ├── Hong_Kong │ │ │ │ │ │ │ │ ├── Hovd │ │ │ │ │ │ │ │ ├── Irkutsk │ │ │ │ │ │ │ │ ├── Istanbul │ │ │ │ │ │ │ │ ├── Jakarta │ │ │ │ │ │ │ │ ├── Jayapura │ │ │ │ │ │ │ │ ├── Jerusalem │ │ │ │ │ │ │ │ ├── Kabul │ │ │ │ │ │ │ │ ├── Kamchatka │ │ │ │ │ │ │ │ ├── Karachi │ │ │ │ │ │ │ │ ├── Kashgar │ │ │ │ │ │ │ │ ├── Kathmandu │ │ │ │ │ │ │ │ ├── Katmandu │ │ │ │ │ │ │ │ ├── Khandyga │ │ │ │ │ │ │ │ ├── Kolkata │ │ │ │ │ │ │ │ ├── Krasnoyarsk │ │ │ │ │ │ │ │ ├── Kuala_Lumpur │ │ │ │ │ │ │ │ ├── Kuching │ │ │ │ │ │ │ │ ├── Kuwait │ │ │ │ │ │ │ │ ├── Macao │ │ │ │ │ │ │ │ ├── Macau │ │ │ │ │ │ │ │ ├── Magadan │ │ │ │ │ │ │ │ ├── Makassar │ │ │ │ │ │ │ │ ├── Manila │ │ │ │ │ │ │ │ ├── Muscat │ │ │ │ │ │ │ │ ├── Nicosia │ │ │ │ │ │ │ │ ├── Novokuznetsk │ │ │ │ │ │ │ │ ├── Novosibirsk │ │ │ │ │ │ │ │ ├── Omsk │ │ │ │ │ │ │ │ ├── Oral │ │ │ │ │ │ │ │ ├── Phnom_Penh │ │ │ │ │ │ │ │ ├── Pontianak │ │ │ │ │ │ │ │ ├── Pyongyang │ │ │ │ │ │ │ │ ├── Qatar │ │ │ │ │ │ │ │ ├── Qostanay │ │ │ │ │ │ │ │ ├── Qyzylorda │ │ │ │ │ │ │ │ ├── Rangoon │ │ │ │ │ │ │ │ ├── Riyadh │ │ │ │ │ │ │ │ ├── Saigon │ │ │ │ │ │ │ │ ├── Sakhalin │ │ │ │ │ │ │ │ ├── Samarkand │ │ │ │ │ │ │ │ ├── Seoul │ │ │ │ │ │ │ │ ├── Shanghai │ │ │ │ │ │ │ │ ├── Singapore │ │ │ │ │ │ │ │ ├── Srednekolymsk │ │ │ │ │ │ │ │ ├── Taipei │ │ │ │ │ │ │ │ ├── Tashkent │ │ │ │ │ │ │ │ ├── Tbilisi │ │ │ │ │ │ │ │ ├── Tehran │ │ │ │ │ │ │ │ ├── Tel_Aviv │ │ │ │ │ │ │ │ ├── Thimbu │ │ │ │ │ │ │ │ ├── Thimphu │ │ │ │ │ │ │ │ ├── Tokyo │ │ │ │ │ │ │ │ ├── Tomsk │ │ │ │ │ │ │ │ ├── Ujung_Pandang │ │ │ │ │ │ │ │ ├── Ulaanbaatar │ │ │ │ │ │ │ │ ├── Ulan_Bator │ │ │ │ │ │ │ │ ├── Urumqi │ │ │ │ │ │ │ │ ├── Ust-Nera │ │ │ │ │ │ │ │ ├── Vientiane │ │ │ │ │ │ │ │ ├── Vladivostok │ │ │ │ │ │ │ │ ├── Yakutsk │ │ │ │ │ │ │ │ ├── Yangon │ │ │ │ │ │ │ │ ├── Yekaterinburg │ │ │ │ │ │ │ │ └── Yerevan │ │ │ │ │ │ │ │ ├── Atlantic │ │ │ │ │ │ │ │ ├── Azores │ │ │ │ │ │ │ │ ├── Bermuda │ │ │ │ │ │ │ │ ├── Canary │ │ │ │ │ │ │ │ ├── Cape_Verde │ │ │ │ │ │ │ │ ├── Faeroe │ │ │ │ │ │ │ │ ├── Faroe │ │ │ │ │ │ │ │ ├── Jan_Mayen │ │ │ │ │ │ │ │ ├── Madeira │ │ │ │ │ │ │ │ ├── Reykjavik │ │ │ │ │ │ │ │ ├── South_Georgia │ │ │ │ │ │ │ │ ├── St_Helena │ │ │ │ │ │ │ │ └── Stanley │ │ │ │ │ │ │ │ ├── Australia │ │ │ │ │ │ │ │ ├── ACT │ │ │ │ │ │ │ │ ├── Adelaide │ │ │ │ │ │ │ │ ├── Brisbane │ │ │ │ │ │ │ │ ├── Broken_Hill │ │ │ │ │ │ │ │ ├── Canberra │ │ │ │ │ │ │ │ ├── Currie │ │ │ │ │ │ │ │ ├── Darwin │ │ │ │ │ │ │ │ ├── Eucla │ │ │ │ │ │ │ │ ├── Hobart │ │ │ │ │ │ │ │ ├── LHI │ │ │ │ │ │ │ │ ├── Lindeman │ │ │ │ │ │ │ │ ├── Lord_Howe │ │ │ │ │ │ │ │ ├── Melbourne │ │ │ │ │ │ │ │ ├── NSW │ │ │ │ │ │ │ │ ├── North │ │ │ │ │ │ │ │ ├── Perth │ │ │ │ │ │ │ │ ├── Queensland │ │ │ │ │ │ │ │ ├── South │ │ │ │ │ │ │ │ ├── Sydney │ │ │ │ │ │ │ │ ├── Tasmania │ │ │ │ │ │ │ │ ├── Victoria │ │ │ │ │ │ │ │ ├── West │ │ │ │ │ │ │ │ └── Yancowinna │ │ │ │ │ │ │ │ ├── Brazil │ │ │ │ │ │ │ │ ├── Acre │ │ │ │ │ │ │ │ ├── DeNoronha │ │ │ │ │ │ │ │ ├── East │ │ │ │ │ │ │ │ └── West │ │ │ │ │ │ │ │ ├── CET │ │ │ │ │ │ │ │ ├── CST6CDT │ │ │ │ │ │ │ │ ├── Canada │ │ │ │ │ │ │ │ ├── Atlantic │ │ │ │ │ │ │ │ ├── Central │ │ │ │ │ │ │ │ ├── Eastern │ │ │ │ │ │ │ │ ├── Mountain │ │ │ │ │ │ │ │ ├── Newfoundland │ │ │ │ │ │ │ │ ├── Pacific │ │ │ │ │ │ │ │ ├── Saskatchewan │ │ │ │ │ │ │ │ └── Yukon │ │ │ │ │ │ │ │ ├── Chile │ │ │ │ │ │ │ │ ├── Continental │ │ │ │ │ │ │ │ └── EasterIsland │ │ │ │ │ │ │ │ ├── Cuba │ │ │ │ │ │ │ │ ├── EET │ │ │ │ │ │ │ │ ├── EST │ │ │ │ │ │ │ │ ├── EST5EDT │ │ │ │ │ │ │ │ ├── Egypt │ │ │ │ │ │ │ │ ├── Eire │ │ │ │ │ │ │ │ ├── Etc │ │ │ │ │ │ │ │ ├── GMT │ │ │ │ │ │ │ │ ├── GMT+0 │ │ │ │ │ │ │ │ ├── GMT+1 │ │ │ │ │ │ │ │ ├── GMT+10 │ │ │ │ │ │ │ │ ├── GMT+11 │ │ │ │ │ │ │ │ ├── GMT+12 │ │ │ │ │ │ │ │ ├── GMT+2 │ │ │ │ │ │ │ │ ├── GMT+3 │ │ │ │ │ │ │ │ ├── GMT+4 │ │ │ │ │ │ │ │ ├── GMT+5 │ │ │ │ │ │ │ │ ├── GMT+6 │ │ │ │ │ │ │ │ ├── GMT+7 │ │ │ │ │ │ │ │ ├── GMT+8 │ │ │ │ │ │ │ │ ├── GMT+9 │ │ │ │ │ │ │ │ ├── GMT-0 │ │ │ │ │ │ │ │ ├── GMT-1 │ │ │ │ │ │ │ │ ├── GMT-10 │ │ │ │ │ │ │ │ ├── GMT-11 │ │ │ │ │ │ │ │ ├── GMT-12 │ │ │ │ │ │ │ │ ├── GMT-13 │ │ │ │ │ │ │ │ ├── GMT-14 │ │ │ │ │ │ │ │ ├── GMT-2 │ │ │ │ │ │ │ │ ├── GMT-3 │ │ │ │ │ │ │ │ ├── GMT-4 │ │ │ │ │ │ │ │ ├── GMT-5 │ │ │ │ │ │ │ │ ├── GMT-6 │ │ │ │ │ │ │ │ ├── GMT-7 │ │ │ │ │ │ │ │ ├── GMT-8 │ │ │ │ │ │ │ │ ├── GMT-9 │ │ │ │ │ │ │ │ ├── GMT0 │ │ │ │ │ │ │ │ ├── Greenwich │ │ │ │ │ │ │ │ ├── UCT │ │ │ │ │ │ │ │ ├── UTC │ │ │ │ │ │ │ │ ├── Universal │ │ │ │ │ │ │ │ └── Zulu │ │ │ │ │ │ │ │ ├── Europe │ │ │ │ │ │ │ │ ├── Amsterdam │ │ │ │ │ │ │ │ ├── Andorra │ │ │ │ │ │ │ │ ├── Astrakhan │ │ │ │ │ │ │ │ ├── Athens │ │ │ │ │ │ │ │ ├── Belfast │ │ │ │ │ │ │ │ ├── Belgrade │ │ │ │ │ │ │ │ ├── Berlin │ │ │ │ │ │ │ │ ├── Bratislava │ │ │ │ │ │ │ │ ├── Brussels │ │ │ │ │ │ │ │ ├── Bucharest │ │ │ │ │ │ │ │ ├── Budapest │ │ │ │ │ │ │ │ ├── Busingen │ │ │ │ │ │ │ │ ├── Chisinau │ │ │ │ │ │ │ │ ├── Copenhagen │ │ │ │ │ │ │ │ ├── Dublin │ │ │ │ │ │ │ │ ├── Gibraltar │ │ │ │ │ │ │ │ ├── Guernsey │ │ │ │ │ │ │ │ ├── Helsinki │ │ │ │ │ │ │ │ ├── Isle_of_Man │ │ │ │ │ │ │ │ ├── Istanbul │ │ │ │ │ │ │ │ ├── Jersey │ │ │ │ │ │ │ │ ├── Kaliningrad │ │ │ │ │ │ │ │ ├── Kiev │ │ │ │ │ │ │ │ ├── Kirov │ │ │ │ │ │ │ │ ├── Kyiv │ │ │ │ │ │ │ │ ├── Lisbon │ │ │ │ │ │ │ │ ├── Ljubljana │ │ │ │ │ │ │ │ ├── London │ │ │ │ │ │ │ │ ├── Luxembourg │ │ │ │ │ │ │ │ ├── Madrid │ │ │ │ │ │ │ │ ├── Malta │ │ │ │ │ │ │ │ ├── Mariehamn │ │ │ │ │ │ │ │ ├── Minsk │ │ │ │ │ │ │ │ ├── Monaco │ │ │ │ │ │ │ │ ├── Moscow │ │ │ │ │ │ │ │ ├── Nicosia │ │ │ │ │ │ │ │ ├── Oslo │ │ │ │ │ │ │ │ ├── Paris │ │ │ │ │ │ │ │ ├── Podgorica │ │ │ │ │ │ │ │ ├── Prague │ │ │ │ │ │ │ │ ├── Riga │ │ │ │ │ │ │ │ ├── Rome │ │ │ │ │ │ │ │ ├── Samara │ │ │ │ │ │ │ │ ├── San_Marino │ │ │ │ │ │ │ │ ├── Sarajevo │ │ │ │ │ │ │ │ ├── Saratov │ │ │ │ │ │ │ │ ├── Simferopol │ │ │ │ │ │ │ │ ├── Skopje │ │ │ │ │ │ │ │ ├── Sofia │ │ │ │ │ │ │ │ ├── Stockholm │ │ │ │ │ │ │ │ ├── Tallinn │ │ │ │ │ │ │ │ ├── Tirane │ │ │ │ │ │ │ │ ├── Tiraspol │ │ │ │ │ │ │ │ ├── Ulyanovsk │ │ │ │ │ │ │ │ ├── Uzhgorod │ │ │ │ │ │ │ │ ├── Vaduz │ │ │ │ │ │ │ │ ├── Vatican │ │ │ │ │ │ │ │ ├── Vienna │ │ │ │ │ │ │ │ ├── Vilnius │ │ │ │ │ │ │ │ ├── Volgograd │ │ │ │ │ │ │ │ ├── Warsaw │ │ │ │ │ │ │ │ ├── Zagreb │ │ │ │ │ │ │ │ ├── Zaporozhye │ │ │ │ │ │ │ │ └── Zurich │ │ │ │ │ │ │ │ ├── Factory │ │ │ │ │ │ │ │ ├── GB │ │ │ │ │ │ │ │ ├── GB-Eire │ │ │ │ │ │ │ │ ├── GMT │ │ │ │ │ │ │ │ ├── GMT+0 │ │ │ │ │ │ │ │ ├── GMT-0 │ │ │ │ │ │ │ │ ├── GMT0 │ │ │ │ │ │ │ │ ├── Greenwich │ │ │ │ │ │ │ │ ├── HST │ │ │ │ │ │ │ │ ├── Hongkong │ │ │ │ │ │ │ │ ├── Iceland │ │ │ │ │ │ │ │ ├── Indian │ │ │ │ │ │ │ │ ├── Antananarivo │ │ │ │ │ │ │ │ ├── Chagos │ │ │ │ │ │ │ │ ├── Christmas │ │ │ │ │ │ │ │ ├── Cocos │ │ │ │ │ │ │ │ ├── Comoro │ │ │ │ │ │ │ │ ├── Kerguelen │ │ │ │ │ │ │ │ ├── Mahe │ │ │ │ │ │ │ │ ├── Maldives │ │ │ │ │ │ │ │ ├── Mauritius │ │ │ │ │ │ │ │ ├── Mayotte │ │ │ │ │ │ │ │ └── Reunion │ │ │ │ │ │ │ │ ├── Iran │ │ │ │ │ │ │ │ ├── Israel │ │ │ │ │ │ │ │ ├── Jamaica │ │ │ │ │ │ │ │ ├── Japan │ │ │ │ │ │ │ │ ├── Kwajalein │ │ │ │ │ │ │ │ ├── Libya │ │ │ │ │ │ │ │ ├── MET │ │ │ │ │ │ │ │ ├── MST │ │ │ │ │ │ │ │ ├── MST7MDT │ │ │ │ │ │ │ │ ├── Mexico │ │ │ │ │ │ │ │ ├── BajaNorte │ │ │ │ │ │ │ │ ├── BajaSur │ │ │ │ │ │ │ │ └── General │ │ │ │ │ │ │ │ ├── NZ │ │ │ │ │ │ │ │ ├── NZ-CHAT │ │ │ │ │ │ │ │ ├── Navajo │ │ │ │ │ │ │ │ ├── PRC │ │ │ │ │ │ │ │ ├── PST8PDT │ │ │ │ │ │ │ │ ├── Pacific │ │ │ │ │ │ │ │ ├── Apia │ │ │ │ │ │ │ │ ├── Auckland │ │ │ │ │ │ │ │ ├── Bougainville │ │ │ │ │ │ │ │ ├── Chatham │ │ │ │ │ │ │ │ ├── Chuuk │ │ │ │ │ │ │ │ ├── Easter │ │ │ │ │ │ │ │ ├── Efate │ │ │ │ │ │ │ │ ├── Enderbury │ │ │ │ │ │ │ │ ├── Fakaofo │ │ │ │ │ │ │ │ ├── Fiji │ │ │ │ │ │ │ │ ├── Funafuti │ │ │ │ │ │ │ │ ├── Galapagos │ │ │ │ │ │ │ │ ├── Gambier │ │ │ │ │ │ │ │ ├── Guadalcanal │ │ │ │ │ │ │ │ ├── Guam │ │ │ │ │ │ │ │ ├── Honolulu │ │ │ │ │ │ │ │ ├── Johnston │ │ │ │ │ │ │ │ ├── Kanton │ │ │ │ │ │ │ │ ├── Kiritimati │ │ │ │ │ │ │ │ ├── Kosrae │ │ │ │ │ │ │ │ ├── Kwajalein │ │ │ │ │ │ │ │ ├── Majuro │ │ │ │ │ │ │ │ ├── Marquesas │ │ │ │ │ │ │ │ ├── Midway │ │ │ │ │ │ │ │ ├── Nauru │ │ │ │ │ │ │ │ ├── Niue │ │ │ │ │ │ │ │ ├── Norfolk │ │ │ │ │ │ │ │ ├── Noumea │ │ │ │ │ │ │ │ ├── Pago_Pago │ │ │ │ │ │ │ │ ├── Palau │ │ │ │ │ │ │ │ ├── Pitcairn │ │ │ │ │ │ │ │ ├── Pohnpei │ │ │ │ │ │ │ │ ├── Ponape │ │ │ │ │ │ │ │ ├── Port_Moresby │ │ │ │ │ │ │ │ ├── Rarotonga │ │ │ │ │ │ │ │ ├── Saipan │ │ │ │ │ │ │ │ ├── Samoa │ │ │ │ │ │ │ │ ├── Tahiti │ │ │ │ │ │ │ │ ├── Tarawa │ │ │ │ │ │ │ │ ├── Tongatapu │ │ │ │ │ │ │ │ ├── Truk │ │ │ │ │ │ │ │ ├── Wake │ │ │ │ │ │ │ │ ├── Wallis │ │ │ │ │ │ │ │ └── Yap │ │ │ │ │ │ │ │ ├── Poland │ │ │ │ │ │ │ │ ├── Portugal │ │ │ │ │ │ │ │ ├── ROC │ │ │ │ │ │ │ │ ├── ROK │ │ │ │ │ │ │ │ ├── Singapore │ │ │ │ │ │ │ │ ├── Turkey │ │ │ │ │ │ │ │ ├── UCT │ │ │ │ │ │ │ │ ├── US │ │ │ │ │ │ │ │ ├── Alaska │ │ │ │ │ │ │ │ ├── Aleutian │ │ │ │ │ │ │ │ ├── Arizona │ │ │ │ │ │ │ │ ├── Central │ │ │ │ │ │ │ │ ├── East-Indiana │ │ │ │ │ │ │ │ ├── Eastern │ │ │ │ │ │ │ │ ├── Hawaii │ │ │ │ │ │ │ │ ├── Indiana-Starke │ │ │ │ │ │ │ │ ├── Michigan │ │ │ │ │ │ │ │ ├── Mountain │ │ │ │ │ │ │ │ ├── Pacific │ │ │ │ │ │ │ │ └── Samoa │ │ │ │ │ │ │ │ ├── UTC │ │ │ │ │ │ │ │ ├── Universal │ │ │ │ │ │ │ │ ├── W-SU │ │ │ │ │ │ │ │ ├── WET │ │ │ │ │ │ │ │ ├── Zulu │ │ │ │ │ │ │ │ ├── iso3166.tab │ │ │ │ │ │ │ │ ├── zone1970.tab │ │ │ │ │ │ │ │ └── zonenow.tab │ │ │ │ │ │ ├── get_current_time_chrono.inc │ │ │ │ │ │ ├── get_current_time_posix.inc │ │ │ │ │ │ ├── test_util.cc │ │ │ │ │ │ └── test_util.h │ │ │ │ │ ├── time.cc │ │ │ │ │ ├── time.h │ │ │ │ │ ├── time_benchmark.cc │ │ │ │ │ ├── time_test.cc │ │ │ │ │ └── time_zone_test.cc │ │ │ │ ├── types │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── any.h │ │ │ │ │ ├── any_exception_safety_test.cc │ │ │ │ │ ├── any_test.cc │ │ │ │ │ ├── bad_any_cast.cc │ │ │ │ │ ├── bad_any_cast.h │ │ │ │ │ ├── bad_optional_access.cc │ │ │ │ │ ├── bad_optional_access.h │ │ │ │ │ ├── bad_variant_access.cc │ │ │ │ │ ├── bad_variant_access.h │ │ │ │ │ ├── compare.h │ │ │ │ │ ├── compare_test.cc │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── optional.h │ │ │ │ │ │ ├── span.h │ │ │ │ │ │ └── variant.h │ │ │ │ │ ├── optional.h │ │ │ │ │ ├── optional_exception_safety_test.cc │ │ │ │ │ ├── optional_test.cc │ │ │ │ │ ├── span.h │ │ │ │ │ ├── span_test.cc │ │ │ │ │ ├── variant.h │ │ │ │ │ ├── variant_benchmark.cc │ │ │ │ │ ├── variant_exception_safety_test.cc │ │ │ │ │ └── variant_test.cc │ │ │ │ └── utility │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── internal │ │ │ │ │ ├── if_constexpr.h │ │ │ │ │ └── if_constexpr_test.cc │ │ │ │ │ ├── utility.h │ │ │ │ │ └── utility_test.cc │ │ │ ├── ci │ │ │ │ ├── absl_alternate_options.h │ │ │ │ ├── cmake_common.sh │ │ │ │ ├── cmake_install_test.sh │ │ │ │ ├── linux_arm_clang-latest_libcxx_bazel.sh │ │ │ │ ├── linux_clang-latest_libcxx_asan_bazel.sh │ │ │ │ ├── linux_clang-latest_libcxx_bazel.sh │ │ │ │ ├── linux_clang-latest_libcxx_tsan_bazel.sh │ │ │ │ ├── linux_clang-latest_libstdcxx_bazel.sh │ │ │ │ ├── linux_docker_containers.sh │ │ │ │ ├── linux_gcc-floor_libstdcxx_bazel.sh │ │ │ │ ├── linux_gcc-latest_libstdcxx_bazel.sh │ │ │ │ ├── linux_gcc-latest_libstdcxx_cmake.sh │ │ │ │ ├── linux_gcc_alpine_cmake.sh │ │ │ │ ├── macos_xcode_bazel.sh │ │ │ │ ├── macos_xcode_cmake.sh │ │ │ │ ├── windows_clangcl_bazel.bat │ │ │ │ ├── windows_msvc_bazel.bat │ │ │ │ └── windows_msvc_cmake.bat │ │ │ ├── conanfile.py │ │ │ └── create_lts.py │ │ ├── jsoncpp │ │ │ ├── .clang-format │ │ │ ├── .clang-tidy │ │ │ ├── .gitattributes │ │ │ ├── .github │ │ │ │ └── ISSUE_TEMPLATE │ │ │ │ │ ├── bug_report.md │ │ │ │ │ └── feature_request.md │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── .travis_scripts │ │ │ │ ├── cmake_builder.sh │ │ │ │ ├── meson_builder.sh │ │ │ │ ├── run-clang-format.py │ │ │ │ ├── run-clang-format.sh │ │ │ │ ├── travis.before_install.linux.sh │ │ │ │ ├── travis.before_install.osx.sh │ │ │ │ ├── travis.install.linux.sh │ │ │ │ └── travis.install.osx.sh │ │ │ ├── AUTHORS │ │ │ ├── CMakeLists.txt │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CTestConfig.cmake │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── amalgamate.py │ │ │ ├── appveyor.yml │ │ │ ├── cmake │ │ │ │ └── JoinPaths.cmake │ │ │ ├── dev.makefile │ │ │ ├── devtools │ │ │ │ ├── __init__.py │ │ │ │ ├── agent_vmw7.json │ │ │ │ ├── agent_vmxp.json │ │ │ │ ├── antglob.py │ │ │ │ ├── batchbuild.py │ │ │ │ ├── fixeol.py │ │ │ │ ├── licenseupdater.py │ │ │ │ └── tarball.py │ │ │ ├── doc │ │ │ │ ├── doxyfile.in │ │ │ │ ├── footer.html │ │ │ │ ├── header.html │ │ │ │ ├── jsoncpp.dox │ │ │ │ ├── readme.txt │ │ │ │ ├── roadmap.dox │ │ │ │ └── web_doxyfile.in │ │ │ ├── doxybuild.py │ │ │ ├── example │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── README.md │ │ │ │ ├── readFromStream │ │ │ │ │ ├── errorFormat.json │ │ │ │ │ ├── readFromStream.cpp │ │ │ │ │ └── withComment.json │ │ │ │ ├── readFromString │ │ │ │ │ └── readFromString.cpp │ │ │ │ ├── streamWrite │ │ │ │ │ └── streamWrite.cpp │ │ │ │ └── stringWrite │ │ │ │ │ └── stringWrite.cpp │ │ │ ├── include │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── json │ │ │ │ │ ├── allocator.h │ │ │ │ │ ├── assertions.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── forwards.h │ │ │ │ │ ├── json.h │ │ │ │ │ ├── json_features.h │ │ │ │ │ ├── reader.h │ │ │ │ │ ├── value.h │ │ │ │ │ ├── version.h │ │ │ │ │ └── writer.h │ │ │ ├── meson.build │ │ │ ├── meson_options.txt │ │ │ ├── pkg-config │ │ │ │ └── jsoncpp.pc.in │ │ │ ├── src │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── jsontestrunner │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── main.cpp │ │ │ │ ├── lib_json │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── json_reader.cpp │ │ │ │ │ ├── json_tool.h │ │ │ │ │ ├── json_value.cpp │ │ │ │ │ ├── json_valueiterator.inl │ │ │ │ │ └── json_writer.cpp │ │ │ │ └── test_lib_json │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── fuzz.cpp │ │ │ │ │ ├── fuzz.dict │ │ │ │ │ ├── fuzz.h │ │ │ │ │ ├── jsontest.cpp │ │ │ │ │ ├── jsontest.h │ │ │ │ │ └── main.cpp │ │ │ ├── test │ │ │ │ ├── cleantests.py │ │ │ │ ├── data │ │ │ │ │ ├── fail_invalid_quote.json │ │ │ │ │ ├── fail_test_array_01.json │ │ │ │ │ ├── fail_test_array_02.json │ │ │ │ │ ├── fail_test_object_01.json │ │ │ │ │ ├── fail_test_stack_limit.json │ │ │ │ │ ├── legacy_test_array_01.expected │ │ │ │ │ ├── legacy_test_array_01.json │ │ │ │ │ ├── legacy_test_array_02.expected │ │ │ │ │ ├── legacy_test_array_02.json │ │ │ │ │ ├── legacy_test_array_03.expected │ │ │ │ │ ├── legacy_test_array_03.json │ │ │ │ │ ├── legacy_test_array_04.expected │ │ │ │ │ ├── legacy_test_array_04.json │ │ │ │ │ ├── legacy_test_array_05.expected │ │ │ │ │ ├── legacy_test_array_05.json │ │ │ │ │ ├── legacy_test_array_06.expected │ │ │ │ │ ├── legacy_test_array_06.json │ │ │ │ │ ├── legacy_test_array_07.expected │ │ │ │ │ ├── legacy_test_array_07.json │ │ │ │ │ ├── legacy_test_basic_01.expected │ │ │ │ │ ├── legacy_test_basic_01.json │ │ │ │ │ ├── legacy_test_basic_02.expected │ │ │ │ │ ├── legacy_test_basic_02.json │ │ │ │ │ ├── legacy_test_basic_03.expected │ │ │ │ │ ├── legacy_test_basic_03.json │ │ │ │ │ ├── legacy_test_basic_04.expected │ │ │ │ │ ├── legacy_test_basic_04.json │ │ │ │ │ ├── legacy_test_basic_05.expected │ │ │ │ │ ├── legacy_test_basic_05.json │ │ │ │ │ ├── legacy_test_basic_06.expected │ │ │ │ │ ├── legacy_test_basic_06.json │ │ │ │ │ ├── legacy_test_basic_07.expected │ │ │ │ │ ├── legacy_test_basic_07.json │ │ │ │ │ ├── legacy_test_basic_08.expected │ │ │ │ │ ├── legacy_test_basic_08.json │ │ │ │ │ ├── legacy_test_basic_09.expected │ │ │ │ │ ├── legacy_test_basic_09.json │ │ │ │ │ ├── legacy_test_comment_00.expected │ │ │ │ │ ├── legacy_test_comment_00.json │ │ │ │ │ ├── legacy_test_comment_01.expected │ │ │ │ │ ├── legacy_test_comment_01.json │ │ │ │ │ ├── legacy_test_comment_02.expected │ │ │ │ │ ├── legacy_test_comment_02.json │ │ │ │ │ ├── legacy_test_complex_01.expected │ │ │ │ │ ├── legacy_test_complex_01.json │ │ │ │ │ ├── legacy_test_integer_01.expected │ │ │ │ │ ├── legacy_test_integer_01.json │ │ │ │ │ ├── legacy_test_integer_02.expected │ │ │ │ │ ├── legacy_test_integer_02.json │ │ │ │ │ ├── legacy_test_integer_03.expected │ │ │ │ │ ├── legacy_test_integer_03.json │ │ │ │ │ ├── legacy_test_integer_04.expected │ │ │ │ │ ├── legacy_test_integer_04.json │ │ │ │ │ ├── legacy_test_integer_05.expected │ │ │ │ │ ├── legacy_test_integer_05.json │ │ │ │ │ ├── legacy_test_integer_06_64bits.expected │ │ │ │ │ ├── legacy_test_integer_06_64bits.json │ │ │ │ │ ├── legacy_test_integer_07_64bits.expected │ │ │ │ │ ├── legacy_test_integer_07_64bits.json │ │ │ │ │ ├── legacy_test_integer_08_64bits.expected │ │ │ │ │ ├── legacy_test_integer_08_64bits.json │ │ │ │ │ ├── legacy_test_large_01.expected │ │ │ │ │ ├── legacy_test_large_01.json │ │ │ │ │ ├── legacy_test_object_01.expected │ │ │ │ │ ├── legacy_test_object_01.json │ │ │ │ │ ├── legacy_test_object_02.expected │ │ │ │ │ ├── legacy_test_object_02.json │ │ │ │ │ ├── legacy_test_object_03.expected │ │ │ │ │ ├── legacy_test_object_03.json │ │ │ │ │ ├── legacy_test_object_04.expected │ │ │ │ │ ├── legacy_test_object_04.json │ │ │ │ │ ├── legacy_test_preserve_comment_01.expected │ │ │ │ │ ├── legacy_test_preserve_comment_01.json │ │ │ │ │ ├── legacy_test_real_01.expected │ │ │ │ │ ├── legacy_test_real_01.json │ │ │ │ │ ├── legacy_test_real_02.expected │ │ │ │ │ ├── legacy_test_real_02.json │ │ │ │ │ ├── legacy_test_real_03.expected │ │ │ │ │ ├── legacy_test_real_03.json │ │ │ │ │ ├── legacy_test_real_04.expected │ │ │ │ │ ├── legacy_test_real_04.json │ │ │ │ │ ├── legacy_test_real_05.expected │ │ │ │ │ ├── legacy_test_real_05.json │ │ │ │ │ ├── legacy_test_real_06.expected │ │ │ │ │ ├── legacy_test_real_06.json │ │ │ │ │ ├── legacy_test_real_07.expected │ │ │ │ │ ├── legacy_test_real_07.json │ │ │ │ │ ├── legacy_test_real_08.expected │ │ │ │ │ ├── legacy_test_real_08.json │ │ │ │ │ ├── legacy_test_real_09.expected │ │ │ │ │ ├── legacy_test_real_09.json │ │ │ │ │ ├── legacy_test_real_10.expected │ │ │ │ │ ├── legacy_test_real_10.json │ │ │ │ │ ├── legacy_test_real_11.expected │ │ │ │ │ ├── legacy_test_real_11.json │ │ │ │ │ ├── legacy_test_real_12.expected │ │ │ │ │ ├── legacy_test_real_12.json │ │ │ │ │ ├── legacy_test_string_01.expected │ │ │ │ │ ├── legacy_test_string_01.json │ │ │ │ │ ├── legacy_test_string_02.expected │ │ │ │ │ ├── legacy_test_string_02.json │ │ │ │ │ ├── legacy_test_string_03.expected │ │ │ │ │ ├── legacy_test_string_03.json │ │ │ │ │ ├── legacy_test_string_04.expected │ │ │ │ │ ├── legacy_test_string_04.json │ │ │ │ │ ├── legacy_test_string_05.expected │ │ │ │ │ ├── legacy_test_string_05.json │ │ │ │ │ ├── legacy_test_string_unicode_01.expected │ │ │ │ │ ├── legacy_test_string_unicode_01.json │ │ │ │ │ ├── legacy_test_string_unicode_02.expected │ │ │ │ │ ├── legacy_test_string_unicode_02.json │ │ │ │ │ ├── legacy_test_string_unicode_03.expected │ │ │ │ │ ├── legacy_test_string_unicode_03.json │ │ │ │ │ ├── legacy_test_string_unicode_04.expected │ │ │ │ │ ├── legacy_test_string_unicode_04.json │ │ │ │ │ ├── legacy_test_string_unicode_05.expected │ │ │ │ │ ├── legacy_test_string_unicode_05.json │ │ │ │ │ ├── test_array_08.expected │ │ │ │ │ ├── test_array_08.json │ │ │ │ │ ├── test_object_05.expected │ │ │ │ │ └── test_object_05.json │ │ │ │ ├── generate_expected.py │ │ │ │ ├── jsonchecker │ │ │ │ │ ├── fail1.json │ │ │ │ │ ├── fail10.json │ │ │ │ │ ├── fail11.json │ │ │ │ │ ├── fail12.json │ │ │ │ │ ├── fail13.json │ │ │ │ │ ├── fail14.json │ │ │ │ │ ├── fail15.json │ │ │ │ │ ├── fail16.json │ │ │ │ │ ├── fail17.json │ │ │ │ │ ├── fail18.json │ │ │ │ │ ├── fail19.json │ │ │ │ │ ├── fail2.json │ │ │ │ │ ├── fail20.json │ │ │ │ │ ├── fail21.json │ │ │ │ │ ├── fail22.json │ │ │ │ │ ├── fail23.json │ │ │ │ │ ├── fail24.json │ │ │ │ │ ├── fail25.json │ │ │ │ │ ├── fail26.json │ │ │ │ │ ├── fail27.json │ │ │ │ │ ├── fail28.json │ │ │ │ │ ├── fail29.json │ │ │ │ │ ├── fail3.json │ │ │ │ │ ├── fail30.json │ │ │ │ │ ├── fail31.json │ │ │ │ │ ├── fail32.json │ │ │ │ │ ├── fail33.json │ │ │ │ │ ├── fail4.json │ │ │ │ │ ├── fail5.json │ │ │ │ │ ├── fail6.json │ │ │ │ │ ├── fail7.json │ │ │ │ │ ├── fail8.json │ │ │ │ │ ├── fail9.json │ │ │ │ │ ├── pass1.json │ │ │ │ │ ├── pass2.json │ │ │ │ │ ├── pass3.json │ │ │ │ │ └── readme.txt │ │ │ │ ├── pyjsontestrunner.py │ │ │ │ ├── runjsontests.py │ │ │ │ └── rununittests.py │ │ │ └── version.in │ │ └── utf8_range │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── UTF-8-demo.txt │ │ │ ├── ascii.cpp │ │ │ ├── boost.cpp │ │ │ ├── cmake │ │ │ ├── utf8_range-config.cmake.in │ │ │ └── utf8_range.pc.cmake │ │ │ ├── fuzz │ │ │ ├── BUILD.bazel │ │ │ ├── utf8_fuzzer.dict │ │ │ └── utf8_validity_fuzzer.cc │ │ │ ├── lemire-avx2.c │ │ │ ├── lemire-neon.c │ │ │ ├── lemire-sse.c │ │ │ ├── lookup.c │ │ │ ├── main.c │ │ │ ├── naive.c │ │ │ ├── range-avx2.c │ │ │ ├── range-neon.c │ │ │ ├── range-sse.c │ │ │ ├── range2-neon.c │ │ │ ├── range2-sse.c │ │ │ ├── utf8_corpus_dir │ │ │ ├── utf8_corpus_durst.txt │ │ │ └── utf8_corpus_kuhn.txt │ │ │ ├── utf8_range.c │ │ │ ├── utf8_range.h │ │ │ ├── utf8_to_utf16 │ │ │ ├── Makefile │ │ │ ├── iconv.c │ │ │ ├── main.c │ │ │ └── naive.c │ │ │ ├── utf8_validity.cc │ │ │ ├── utf8_validity.h │ │ │ └── utf8_validity_test.cc │ └── version.json ├── stduuid │ ├── LICENSE │ ├── README.md │ └── include │ │ └── uuid.h └── swift-protobuf │ ├── .github │ ├── issue_template.md │ └── workflows │ │ ├── build.yml │ │ ├── check_upstream_protos.yml │ │ └── regular_conformance.yml │ ├── .gitignore │ ├── .jazzy.yaml │ ├── .spi.yml │ ├── CMakeLists.txt │ ├── CompileTests │ └── MultiModule │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ ├── ImportsAPublicly │ │ │ └── imports_a_publicly.pb.swift │ │ ├── ImportsImportsAPublicly │ │ │ └── imports_imports_a_publicly.pb.swift │ │ └── ModuleA │ │ │ └── a.pb.swift │ │ └── Tests │ │ ├── Test1 │ │ ├── test1.swift │ │ └── uses_a_transitively.pb.swift │ │ └── Test2 │ │ ├── test2.swift │ │ └── uses_a_transitively2.pb.swift │ ├── DevTools │ ├── CopyrightFixup.sh │ └── LibraryVersions.py │ ├── Documentation │ ├── API.md │ ├── CONFORMANCE_TESTS.md │ ├── FAQ.md │ ├── INTERNALS.md │ ├── PLUGIN.md │ ├── RELEASING.md │ └── STYLE_GUIDELINES.md │ ├── FuzzTesting │ ├── .gitignore │ ├── FailCases │ │ ├── Binary-packed-float-double-growth │ │ ├── JSON-Any │ │ ├── JSON-malformed-utf8 │ │ ├── TextFormat-ending-minus │ │ ├── TextFormat-ending-zero │ │ ├── TextFormat-map-loops-forever │ │ ├── TextFormat-map-loops-forever2 │ │ ├── TextFormat-octal-out-of-range │ │ ├── clusterfuzz-testcase-FuzzJSON_release-5596804654694400 │ │ ├── clusterfuzz-testcase-FuzzTextFormat_release-4619956026146816 │ │ ├── clusterfuzz-testcase-minimized-FuzzAsyncMessageSequence_debug-5217919734513664 │ │ ├── clusterfuzz-testcase-minimized-FuzzBinaryDelimited_debug-4802082831204352 │ │ ├── clusterfuzz-testcase-minimized-FuzzBinaryDelimited_debug-5927982738046976 │ │ ├── clusterfuzz-testcase-minimized-FuzzBinaryDelimited_release-5166893326794752 │ │ ├── clusterfuzz-testcase-minimized-FuzzBinary_release-5649532441460736 │ │ ├── clusterfuzz-testcase-minimized-FuzzJSON_debug-4506617283477504 │ │ ├── clusterfuzz-testcase-minimized-FuzzJSON_debug-5207244346621952 │ │ ├── clusterfuzz-testcase-minimized-FuzzJSON_debug-5467498116415488 │ │ ├── clusterfuzz-testcase-minimized-FuzzJSON_debug-5491136978878464 │ │ ├── clusterfuzz-testcase-minimized-FuzzJSON_release-4623064839618560 │ │ ├── clusterfuzz-testcase-minimized-FuzzJSON_release-4827369236463616 │ │ ├── clusterfuzz-testcase-minimized-FuzzJSON_release-4929034878844928 │ │ ├── clusterfuzz-testcase-minimized-FuzzJSON_release-5689942715006976 │ │ ├── clusterfuzz-testcase-minimized-FuzzTextFormat_debug-5687602305433600 │ │ ├── clusterfuzz-testcase-minimized-FuzzTextFormat_debug-5700784104275968 │ │ ├── clusterfuzz-testcase-minimized-FuzzTextFormat_release-4519429842010112 │ │ ├── clusterfuzz-testcase-minimized-FuzzTextFormat_release-4619956026146816 │ │ ├── clusterfuzz-testcase-minimized-FuzzTextFormat_release-4769249378304000 │ │ ├── clusterfuzz-testcase-minimized-FuzzTextFormat_release-5003886170537984 │ │ ├── clusterfuzz-testcase-minimized-FuzzTextFormat_release-5109315292233728 │ │ ├── clusterfuzz-testcase-minimized-FuzzTextFormat_release-5835603108298752 │ │ ├── clusterfuzz-testcase-minimized-FuzzTextFormat_release-5836572361621504 │ │ ├── clusterfuzz-testcase-minimized-FuzzTextFormat_release-6026353006215168 │ │ ├── clusterfuzz-testcase-minimized-swift-protobuf-fuzz-4649469707681792 │ │ ├── clusterfuzz-testcase-minimized-swift-protobuf-fuzz-4901281945747456 │ │ ├── clusterfuzz-testcase-minimized-swift-protobuf-fuzz-5029515526012928 │ │ └── oom-fb8c6ebb36a5ad53472bc2c006de6e7c6e2d10e3 │ ├── FuzzAsyncMessageSequence.dict │ ├── FuzzBinary.dict │ ├── FuzzBinaryDelimited.dict │ ├── FuzzJSON.dict │ ├── FuzzTextFormat.dict │ ├── Package.swift │ ├── README.md │ ├── Sources │ │ ├── FuzzAsyncMessageSequence │ │ │ └── main.swift │ │ ├── FuzzBinary │ │ │ └── main.swift │ │ ├── FuzzBinaryDelimited │ │ │ └── main.swift │ │ ├── FuzzCommon │ │ │ ├── Options.swift │ │ │ └── fuzz_testing.pb.swift │ │ ├── FuzzJSON │ │ │ └── main.swift │ │ └── FuzzTextFormat │ │ │ └── main.swift │ ├── Tests │ │ └── FuzzCommonTests │ │ │ └── Test_Options.swift │ ├── do_build.sh │ └── make_FuzzBinary_dict │ ├── LICENSE.txt │ ├── Makefile │ ├── Package.swift │ ├── Performance │ ├── .gitignore │ ├── Harness.cc │ ├── Harness.h │ ├── Harness.swift │ ├── Protobuf.tracetemplate │ ├── css │ │ └── harness-visualization.css │ ├── generators │ │ ├── cpp.sh │ │ ├── proto.sh │ │ └── swift.sh │ ├── harness-visualization.html │ ├── js │ │ ├── harness-visualization.js │ │ └── results.js.template │ ├── main.cc │ ├── main.swift │ ├── perf_runner.sh │ └── runners │ │ ├── CMakeLists.txt │ │ ├── cpp.sh │ │ └── swift.sh │ ├── PluginExamples │ ├── Package.swift │ └── Sources │ │ ├── ExampleTests │ │ └── ExampleTests.swift │ │ ├── Import │ │ ├── Bar │ │ │ └── Bar.proto │ │ ├── Foo │ │ │ └── Foo.proto │ │ ├── empty.swift │ │ └── swift-protobuf-config.json │ │ ├── Nested │ │ ├── Nested │ │ │ └── Nested.proto │ │ ├── empty.swift │ │ └── swift-protobuf-config.json │ │ └── Simple │ │ ├── Simple.proto │ │ ├── empty.swift │ │ └── swift-protobuf-config.json │ ├── Plugins │ └── SwiftProtobufPlugin │ │ └── plugin.swift │ ├── Protos │ ├── CompileTests │ │ └── MultiModule │ │ │ ├── Sources │ │ │ ├── ImportsAPublicly │ │ │ │ └── imports_a_publicly.proto │ │ │ ├── ImportsImportsAPublicly │ │ │ │ └── imports_imports_a_publicly.proto │ │ │ └── ModuleA │ │ │ │ └── a.proto │ │ │ ├── Tests │ │ │ ├── Test1 │ │ │ │ └── uses_a_transitively.proto │ │ │ └── Test2 │ │ │ │ └── uses_a_transitively2.proto │ │ │ └── module_mappings.pbascii │ ├── Conformance │ │ ├── conformance │ │ │ ├── conformance.proto │ │ │ └── test_protos │ │ │ │ └── test_messages_edition2023.proto │ │ ├── editions │ │ │ ├── test_messages_proto2_editions.proto │ │ │ └── test_messages_proto3_editions.proto │ │ └── google │ │ │ └── protobuf │ │ │ ├── test_messages_proto2.proto │ │ │ └── test_messages_proto3.proto │ ├── README.md │ ├── SwiftProtobuf │ │ └── google │ │ │ └── protobuf │ │ │ ├── any.proto │ │ │ ├── api.proto │ │ │ ├── descriptor.proto │ │ │ ├── duration.proto │ │ │ ├── empty.proto │ │ │ ├── field_mask.proto │ │ │ ├── source_context.proto │ │ │ ├── struct.proto │ │ │ ├── timestamp.proto │ │ │ ├── type.proto │ │ │ └── wrappers.proto │ ├── SwiftProtobufPluginLibrary │ │ ├── google │ │ │ └── protobuf │ │ │ │ └── compiler │ │ │ │ └── plugin.proto │ │ └── swift_protobuf_module_mappings.proto │ ├── SwiftProtobufPluginLibraryTests │ │ ├── google │ │ │ └── protobuf │ │ │ │ ├── unittest_delimited.proto │ │ │ │ └── unittest_delimited_import.proto │ │ ├── module_mappings.pbascii │ │ ├── pluginlib_descriptor_delimited.proto │ │ ├── pluginlib_descriptor_test.proto │ │ ├── pluginlib_descriptor_test2.proto │ │ └── test_features.proto │ ├── SwiftProtobufTests │ │ ├── any_test.proto │ │ ├── fuzz_testing.proto │ │ ├── generated_swift_names_enum_cases.proto │ │ ├── generated_swift_names_enums.proto │ │ ├── generated_swift_names_fields.proto │ │ ├── generated_swift_names_messages.proto │ │ ├── map_proto2_unittest.proto │ │ ├── map_unittest.proto │ │ ├── test_messages_proto3.proto │ │ ├── unittest.proto │ │ ├── unittest_import.proto │ │ ├── unittest_import_public.proto │ │ ├── unittest_mset.proto │ │ ├── unittest_mset_wire_format.proto │ │ ├── unittest_preserve_unknown_enum.proto │ │ ├── unittest_preserve_unknown_enum2.proto │ │ ├── unittest_proto3.proto │ │ ├── unittest_proto3_optional.proto │ │ ├── unittest_swift_all_required_types.proto │ │ ├── unittest_swift_cycle.proto │ │ ├── unittest_swift_deprecated.proto │ │ ├── unittest_swift_deprecated_file.proto │ │ ├── unittest_swift_enum_optional_default.proto │ │ ├── unittest_swift_enum_proto2.proto │ │ ├── unittest_swift_enum_proto3.proto │ │ ├── unittest_swift_extension.proto │ │ ├── unittest_swift_extension2.proto │ │ ├── unittest_swift_extension3.proto │ │ ├── unittest_swift_extension4.proto │ │ ├── unittest_swift_fieldorder.proto │ │ ├── unittest_swift_groups.proto │ │ ├── unittest_swift_json.proto │ │ ├── unittest_swift_naming.proto │ │ ├── unittest_swift_naming_no_prefix.proto │ │ ├── unittest_swift_naming_number_prefix.proto │ │ ├── unittest_swift_oneof_all_required.proto │ │ ├── unittest_swift_oneof_merging.proto │ │ ├── unittest_swift_reserved.proto │ │ ├── unittest_swift_reserved_ext.proto │ │ ├── unittest_swift_runtime_proto2.proto │ │ ├── unittest_swift_runtime_proto3.proto │ │ └── unittest_well_known_types.proto │ ├── protoc-gen-swiftTests │ │ └── plugin_descriptor_test.proto │ └── upstream │ │ ├── conformance │ │ ├── conformance.proto │ │ └── test_protos │ │ │ └── test_messages_edition2023.proto │ │ ├── editions │ │ └── golden │ │ │ ├── test_messages_proto2_editions.proto │ │ │ └── test_messages_proto3_editions.proto │ │ └── google │ │ └── protobuf │ │ ├── any.proto │ │ ├── any_test.proto │ │ ├── api.proto │ │ ├── compiler │ │ └── plugin.proto │ │ ├── cpp_features.proto │ │ ├── descriptor.proto │ │ ├── duration.proto │ │ ├── edition_unittest.proto │ │ ├── empty.proto │ │ ├── field_mask.proto │ │ ├── map_lite_unittest.proto │ │ ├── map_proto2_unittest.proto │ │ ├── map_proto3_unittest.proto │ │ ├── map_unittest.proto │ │ ├── sample_messages_edition.proto │ │ ├── source_context.proto │ │ ├── struct.proto │ │ ├── test_messages_proto2.proto │ │ ├── test_messages_proto3.proto │ │ ├── timestamp.proto │ │ ├── type.proto │ │ ├── unittest.proto │ │ ├── unittest_arena.proto │ │ ├── unittest_custom_options.proto │ │ ├── unittest_delimited.proto │ │ ├── unittest_delimited_import.proto │ │ ├── unittest_drop_unknown_fields.proto │ │ ├── unittest_embed_optimize_for.proto │ │ ├── unittest_empty.proto │ │ ├── unittest_enormous_descriptor.proto │ │ ├── unittest_extension_set.proto │ │ ├── unittest_features.proto │ │ ├── unittest_import.proto │ │ ├── unittest_import_lite.proto │ │ ├── unittest_import_public.proto │ │ ├── unittest_import_public_lite.proto │ │ ├── unittest_invalid_features.proto │ │ ├── unittest_lazy_dependencies.proto │ │ ├── unittest_lazy_dependencies_custom_option.proto │ │ ├── unittest_lazy_dependencies_enum.proto │ │ ├── unittest_legacy_features.proto │ │ ├── unittest_lite.proto │ │ ├── unittest_lite_imports_nonlite.proto │ │ ├── unittest_mset.proto │ │ ├── unittest_mset_wire_format.proto │ │ ├── unittest_no_field_presence.proto │ │ ├── unittest_no_generic_services.proto │ │ ├── unittest_optimize_for.proto │ │ ├── unittest_preserve_unknown_enum.proto │ │ ├── unittest_preserve_unknown_enum2.proto │ │ ├── unittest_proto3.proto │ │ ├── unittest_proto3_arena.proto │ │ ├── unittest_proto3_arena_lite.proto │ │ ├── unittest_proto3_bad_macros.proto │ │ ├── unittest_proto3_extensions.proto │ │ ├── unittest_proto3_lite.proto │ │ ├── unittest_proto3_optional.proto │ │ ├── unittest_retention.proto │ │ ├── unittest_string_type.proto │ │ ├── unittest_string_view.proto │ │ ├── unittest_well_known_types.proto │ │ └── wrappers.proto │ ├── README.md │ ├── Reference │ ├── CompileTests │ │ └── MultiModule │ │ │ ├── Sources │ │ │ ├── ImportsAPublicly │ │ │ │ └── imports_a_publicly.pb.swift │ │ │ ├── ImportsImportsAPublicly │ │ │ │ └── imports_imports_a_publicly.pb.swift │ │ │ └── ModuleA │ │ │ │ └── a.pb.swift │ │ │ └── Tests │ │ │ ├── Test1 │ │ │ └── uses_a_transitively.pb.swift │ │ │ └── Test2 │ │ │ └── uses_a_transitively2.pb.swift │ ├── Conformance │ │ ├── conformance │ │ │ ├── conformance.pb.swift │ │ │ └── test_protos │ │ │ │ └── test_messages_edition2023.pb.swift │ │ ├── editions │ │ │ ├── test_messages_proto2_editions.pb.swift │ │ │ └── test_messages_proto3_editions.pb.swift │ │ └── google │ │ │ └── protobuf │ │ │ ├── test_messages_proto2.pb.swift │ │ │ └── test_messages_proto3.pb.swift │ ├── SwiftProtobuf │ │ └── google │ │ │ └── protobuf │ │ │ ├── any.pb.swift │ │ │ ├── api.pb.swift │ │ │ ├── descriptor.pb.swift │ │ │ ├── duration.pb.swift │ │ │ ├── empty.pb.swift │ │ │ ├── field_mask.pb.swift │ │ │ ├── source_context.pb.swift │ │ │ ├── struct.pb.swift │ │ │ ├── timestamp.pb.swift │ │ │ ├── type.pb.swift │ │ │ └── wrappers.pb.swift │ ├── SwiftProtobufPluginLibrary │ │ ├── google │ │ │ └── protobuf │ │ │ │ └── compiler │ │ │ │ └── plugin.pb.swift │ │ └── swift_protobuf_module_mappings.pb.swift │ ├── SwiftProtobufPluginLibraryTests │ │ ├── google │ │ │ └── protobuf │ │ │ │ ├── unittest_delimited.pb.swift │ │ │ │ └── unittest_delimited_import.pb.swift │ │ ├── pluginlib_descriptor_delimited.pb.swift │ │ ├── pluginlib_descriptor_test.pb.swift │ │ ├── pluginlib_descriptor_test2.pb.swift │ │ └── test_features.pb.swift │ ├── SwiftProtobufTests │ │ ├── any_test.pb.swift │ │ ├── fuzz_testing.pb.swift │ │ ├── generated_swift_names_enum_cases.pb.swift │ │ ├── generated_swift_names_enums.pb.swift │ │ ├── generated_swift_names_fields.pb.swift │ │ ├── generated_swift_names_messages.pb.swift │ │ ├── map_proto2_unittest.pb.swift │ │ ├── map_unittest.pb.swift │ │ ├── test_messages_proto3.pb.swift │ │ ├── unittest.pb.swift │ │ ├── unittest_import.pb.swift │ │ ├── unittest_import_public.pb.swift │ │ ├── unittest_mset.pb.swift │ │ ├── unittest_mset_wire_format.pb.swift │ │ ├── unittest_preserve_unknown_enum.pb.swift │ │ ├── unittest_preserve_unknown_enum2.pb.swift │ │ ├── unittest_proto3.pb.swift │ │ ├── unittest_proto3_optional.pb.swift │ │ ├── unittest_swift_all_required_types.pb.swift │ │ ├── unittest_swift_cycle.pb.swift │ │ ├── unittest_swift_deprecated.pb.swift │ │ ├── unittest_swift_deprecated_file.pb.swift │ │ ├── unittest_swift_enum_optional_default.pb.swift │ │ ├── unittest_swift_enum_proto2.pb.swift │ │ ├── unittest_swift_enum_proto3.pb.swift │ │ ├── unittest_swift_extension.pb.swift │ │ ├── unittest_swift_extension2.pb.swift │ │ ├── unittest_swift_extension3.pb.swift │ │ ├── unittest_swift_extension4.pb.swift │ │ ├── unittest_swift_fieldorder.pb.swift │ │ ├── unittest_swift_groups.pb.swift │ │ ├── unittest_swift_json.pb.swift │ │ ├── unittest_swift_naming.pb.swift │ │ ├── unittest_swift_naming_no_prefix.pb.swift │ │ ├── unittest_swift_naming_number_prefix.pb.swift │ │ ├── unittest_swift_oneof_all_required.pb.swift │ │ ├── unittest_swift_oneof_merging.pb.swift │ │ ├── unittest_swift_reserved.pb.swift │ │ ├── unittest_swift_reserved_ext.pb.swift │ │ ├── unittest_swift_runtime_proto2.pb.swift │ │ ├── unittest_swift_runtime_proto3.pb.swift │ │ └── unittest_well_known_types.pb.swift │ ├── protoc-gen-swiftTests │ │ └── plugin_descriptor_test.pb.swift │ └── upstream │ │ ├── conformance │ │ ├── conformance.pb.swift │ │ └── test_protos │ │ │ └── test_messages_edition2023.pb.swift │ │ ├── editions │ │ └── golden │ │ │ ├── test_messages_proto2_editions.pb.swift │ │ │ └── test_messages_proto3_editions.pb.swift │ │ └── google │ │ └── protobuf │ │ ├── any.pb.swift │ │ ├── any_test.pb.swift │ │ ├── api.pb.swift │ │ ├── compiler │ │ └── plugin.pb.swift │ │ ├── cpp_features.pb.swift │ │ ├── descriptor.pb.swift │ │ ├── duration.pb.swift │ │ ├── edition_unittest.pb.swift │ │ ├── empty.pb.swift │ │ ├── field_mask.pb.swift │ │ ├── map_lite_unittest.pb.swift │ │ ├── map_proto2_unittest.pb.swift │ │ ├── map_proto3_unittest.pb.swift │ │ ├── map_unittest.pb.swift │ │ ├── sample_messages_edition.pb.swift │ │ ├── source_context.pb.swift │ │ ├── struct.pb.swift │ │ ├── test_messages_proto2.pb.swift │ │ ├── test_messages_proto3.pb.swift │ │ ├── timestamp.pb.swift │ │ ├── type.pb.swift │ │ ├── unittest.pb.swift │ │ ├── unittest_arena.pb.swift │ │ ├── unittest_custom_options.pb.swift │ │ ├── unittest_delimited.pb.swift │ │ ├── unittest_delimited_import.pb.swift │ │ ├── unittest_drop_unknown_fields.pb.swift │ │ ├── unittest_embed_optimize_for.pb.swift │ │ ├── unittest_empty.pb.swift │ │ ├── unittest_enormous_descriptor.pb.swift │ │ ├── unittest_extension_set.pb.swift │ │ ├── unittest_features.pb.swift │ │ ├── unittest_import.pb.swift │ │ ├── unittest_import_lite.pb.swift │ │ ├── unittest_import_public.pb.swift │ │ ├── unittest_import_public_lite.pb.swift │ │ ├── unittest_invalid_features.pb.swift │ │ ├── unittest_lazy_dependencies.pb.swift │ │ ├── unittest_lazy_dependencies_custom_option.pb.swift │ │ ├── unittest_lazy_dependencies_enum.pb.swift │ │ ├── unittest_legacy_features.pb.swift │ │ ├── unittest_lite.pb.swift │ │ ├── unittest_lite_imports_nonlite.pb.swift │ │ ├── unittest_mset.pb.swift │ │ ├── unittest_mset_wire_format.pb.swift │ │ ├── unittest_no_field_presence.pb.swift │ │ ├── unittest_no_generic_services.pb.swift │ │ ├── unittest_optimize_for.pb.swift │ │ ├── unittest_preserve_unknown_enum.pb.swift │ │ ├── unittest_preserve_unknown_enum2.pb.swift │ │ ├── unittest_proto3.pb.swift │ │ ├── unittest_proto3_arena.pb.swift │ │ ├── unittest_proto3_arena_lite.pb.swift │ │ ├── unittest_proto3_bad_macros.pb.swift │ │ ├── unittest_proto3_extensions.pb.swift │ │ ├── unittest_proto3_lite.pb.swift │ │ ├── unittest_proto3_optional.pb.swift │ │ ├── unittest_retention.pb.swift │ │ ├── unittest_string_type.pb.swift │ │ ├── unittest_string_view.pb.swift │ │ ├── unittest_well_known_types.pb.swift │ │ └── wrappers.pb.swift │ ├── Sources │ ├── CMakeLists.txt │ ├── Conformance │ │ ├── Docs.docc │ │ │ └── index.md │ │ ├── conformance.pb.swift │ │ ├── failure_list_swift.txt │ │ ├── main.swift │ │ ├── test_messages_edition2023.pb.swift │ │ ├── test_messages_proto2.pb.swift │ │ ├── test_messages_proto2_editions.pb.swift │ │ ├── test_messages_proto3.pb.swift │ │ ├── test_messages_proto3_editions.pb.swift │ │ └── text_format_failure_list_swift.txt │ ├── SwiftProtobuf │ │ ├── AnyMessageStorage.swift │ │ ├── AnyUnpackError.swift │ │ ├── AsyncMessageSequence.swift │ │ ├── BinaryDecoder.swift │ │ ├── BinaryDecodingError.swift │ │ ├── BinaryDecodingOptions.swift │ │ ├── BinaryDelimited.swift │ │ ├── BinaryEncoder.swift │ │ ├── BinaryEncodingError.swift │ │ ├── BinaryEncodingOptions.swift │ │ ├── BinaryEncodingSizeVisitor.swift │ │ ├── BinaryEncodingVisitor.swift │ │ ├── CMakeLists.txt │ │ ├── CustomJSONCodable.swift │ │ ├── Decoder.swift │ │ ├── Docs.docc │ │ │ ├── API.md │ │ │ └── index.md │ │ ├── DoubleParser.swift │ │ ├── Enum.swift │ │ ├── ExtensibleMessage.swift │ │ ├── ExtensionFieldValueSet.swift │ │ ├── ExtensionFields.swift │ │ ├── ExtensionMap.swift │ │ ├── FieldTag.swift │ │ ├── FieldTypes.swift │ │ ├── Google_Protobuf_Any+Extensions.swift │ │ ├── Google_Protobuf_Any+Registry.swift │ │ ├── Google_Protobuf_Duration+Extensions.swift │ │ ├── Google_Protobuf_FieldMask+Extensions.swift │ │ ├── Google_Protobuf_ListValue+Extensions.swift │ │ ├── Google_Protobuf_NullValue+Extensions.swift │ │ ├── Google_Protobuf_Struct+Extensions.swift │ │ ├── Google_Protobuf_Timestamp+Extensions.swift │ │ ├── Google_Protobuf_Value+Extensions.swift │ │ ├── Google_Protobuf_Wrappers+Extensions.swift │ │ ├── HashVisitor.swift │ │ ├── Internal.swift │ │ ├── JSONDecoder.swift │ │ ├── JSONDecodingError.swift │ │ ├── JSONDecodingOptions.swift │ │ ├── JSONEncoder.swift │ │ ├── JSONEncodingError.swift │ │ ├── JSONEncodingOptions.swift │ │ ├── JSONEncodingVisitor.swift │ │ ├── JSONMapEncodingVisitor.swift │ │ ├── JSONScanner.swift │ │ ├── MathUtils.swift │ │ ├── Message+AnyAdditions.swift │ │ ├── Message+BinaryAdditions.swift │ │ ├── Message+BinaryAdditions_Data.swift │ │ ├── Message+JSONAdditions.swift │ │ ├── Message+JSONAdditions_Data.swift │ │ ├── Message+JSONArrayAdditions.swift │ │ ├── Message+JSONArrayAdditions_Data.swift │ │ ├── Message+TextFormatAdditions.swift │ │ ├── Message.swift │ │ ├── MessageExtension.swift │ │ ├── NameMap.swift │ │ ├── PrivacyInfo.xcprivacy │ │ ├── ProtoNameProviding.swift │ │ ├── ProtobufAPIVersionCheck.swift │ │ ├── ProtobufMap.swift │ │ ├── SelectiveVisitor.swift │ │ ├── SimpleExtensionMap.swift │ │ ├── StringUtils.swift │ │ ├── SwiftProtobufContiguousBytes.swift │ │ ├── SwiftProtobufError.swift │ │ ├── TextFormatDecoder.swift │ │ ├── TextFormatDecodingError.swift │ │ ├── TextFormatDecodingOptions.swift │ │ ├── TextFormatEncoder.swift │ │ ├── TextFormatEncodingOptions.swift │ │ ├── TextFormatEncodingVisitor.swift │ │ ├── TextFormatScanner.swift │ │ ├── TimeUtils.swift │ │ ├── UnknownStorage.swift │ │ ├── UnsafeRawPointer+Shims.swift │ │ ├── Varint.swift │ │ ├── Version.swift │ │ ├── Visitor.swift │ │ ├── WireFormat.swift │ │ ├── ZigZag.swift │ │ ├── any.pb.swift │ │ ├── api.pb.swift │ │ ├── descriptor.pb.swift │ │ ├── duration.pb.swift │ │ ├── empty.pb.swift │ │ ├── field_mask.pb.swift │ │ ├── source_context.pb.swift │ │ ├── struct.pb.swift │ │ ├── timestamp.pb.swift │ │ ├── type.pb.swift │ │ └── wrappers.pb.swift │ ├── SwiftProtobufPluginLibrary │ │ ├── CMakeLists.txt │ │ ├── CodeGenerator.swift │ │ ├── CodeGeneratorParameter.swift │ │ ├── CodePrinter.swift │ │ ├── Descriptor+Extensions.swift │ │ ├── Descriptor.swift │ │ ├── Docs.docc │ │ │ └── index.md │ │ ├── FeatureResolver.swift │ │ ├── FieldNumbers.swift │ │ ├── GeneratorOutputs.swift │ │ ├── Google_Protobuf_Compiler_CodeGeneratorResponse+Extensions.swift │ │ ├── Google_Protobuf_Edition+Extensions.swift │ │ ├── Google_Protobuf_SourceCodeInfo+Extensions.swift │ │ ├── NamingUtils.swift │ │ ├── PluginLibEditionDefaults.swift │ │ ├── PrivacyInfo.xcprivacy │ │ ├── ProtoCompilerContext.swift │ │ ├── ProtoFileToModuleMappings.swift │ │ ├── ProvidesDeprecationComment.swift │ │ ├── ProvidesLocationPath.swift │ │ ├── ProvidesSourceCodeLocation.swift │ │ ├── StandardErrorOutputStream.swift │ │ ├── StringUtils.swift │ │ ├── SwiftLanguage.swift │ │ ├── SwiftProtobufInfo.swift │ │ ├── SwiftProtobufNamer.swift │ │ ├── UnicodeScalar+Extensions.swift │ │ ├── plugin.pb.swift │ │ └── swift_protobuf_module_mappings.pb.swift │ ├── SwiftProtobufTestHelpers │ │ └── Descriptor+TestHelpers.swift │ └── protoc-gen-swift │ │ ├── CMakeLists.txt │ │ ├── CommandLine+Extensions.swift │ │ ├── Descriptor+Extensions.swift │ │ ├── Docs.docc │ │ ├── index.md │ │ └── spm-plugin.md │ │ ├── EnumGenerator.swift │ │ ├── ExtensionSetGenerator.swift │ │ ├── FieldGenerator.swift │ │ ├── FileGenerator.swift │ │ ├── FileIo.swift │ │ ├── GenerationError.swift │ │ ├── GeneratorOptions.swift │ │ ├── Google_Protobuf_FileDescriptorProto+Extensions.swift │ │ ├── MessageFieldGenerator.swift │ │ ├── MessageGenerator.swift │ │ ├── MessageStorageClassGenerator.swift │ │ ├── MessageStorageDecision.swift │ │ ├── OneofGenerator.swift │ │ ├── ProvidesDeprecationComment+Extensions.swift │ │ ├── ProvidesSourceCodeLocation+Extensions.swift │ │ ├── Range+Extensions.swift │ │ ├── StringUtils.swift │ │ ├── SwiftGeneratorPlugin.swift │ │ ├── SwiftProtobufNamer+Extensions.swift │ │ └── Version.swift │ ├── SwiftProtobuf.podspec │ ├── Tests │ ├── SwiftProtobufPluginLibraryTests │ │ ├── DescriptorTestData.swift │ │ ├── PluginLibTestingEditionDefaults.swift │ │ ├── Test_Descriptor.swift │ │ ├── Test_Descriptor_FeatureResolution.swift │ │ ├── Test_FeatureResolver.swift │ │ ├── Test_NamingUtils.swift │ │ ├── Test_ProtoFileToModuleMappings.swift │ │ ├── Test_SwiftLanguage.swift │ │ ├── Test_SwiftProtobufNamer.swift │ │ ├── pluginlib_descriptor_delimited.pb.swift │ │ ├── pluginlib_descriptor_test.pb.swift │ │ ├── pluginlib_descriptor_test2.pb.swift │ │ ├── test_features.pb.swift │ │ ├── unittest_delimited.pb.swift │ │ └── unittest_delimited_import.pb.swift │ ├── SwiftProtobufTests │ │ ├── Data+TestHelpers.swift │ │ ├── TestHelpers.swift │ │ ├── Test_AllTypes.swift │ │ ├── Test_AllTypes_Proto3.swift │ │ ├── Test_AllTypes_Proto3_Optional.swift │ │ ├── Test_Any.swift │ │ ├── Test_Api.swift │ │ ├── Test_AsyncMessageSequence.swift │ │ ├── Test_BasicFields_Access_Proto2.swift │ │ ├── Test_BasicFields_Access_Proto3.swift │ │ ├── Test_BinaryDecodingOptions.swift │ │ ├── Test_BinaryDelimited.swift │ │ ├── Test_BinaryEncodingOptions.swift │ │ ├── Test_Conformance.swift │ │ ├── Test_Duration.swift │ │ ├── Test_Empty.swift │ │ ├── Test_Enum.swift │ │ ├── Test_EnumWithAliases.swift │ │ ├── Test_Enum_Proto2.swift │ │ ├── Test_Extensions.swift │ │ ├── Test_ExtremeDefaultValues.swift │ │ ├── Test_FieldMask.swift │ │ ├── Test_FieldOrdering.swift │ │ ├── Test_FuzzTests.swift │ │ ├── Test_GroupWithGroups.swift │ │ ├── Test_JSON.swift │ │ ├── Test_JSONDecodingOptions.swift │ │ ├── Test_JSONEncodingOptions.swift │ │ ├── Test_JSON_Array.swift │ │ ├── Test_JSON_Conformance.swift │ │ ├── Test_JSON_Extensions.swift │ │ ├── Test_JSON_Group.swift │ │ ├── Test_JSON_Performance.swift │ │ ├── Test_Map.swift │ │ ├── Test_MapFields_Access_Proto2.swift │ │ ├── Test_MapFields_Access_Proto3.swift │ │ ├── Test_Map_JSON.swift │ │ ├── Test_Merge.swift │ │ ├── Test_MessageSet.swift │ │ ├── Test_Naming.swift │ │ ├── Test_OneofFields_Access_Proto2.swift │ │ ├── Test_OneofFields_Access_Proto3.swift │ │ ├── Test_Packed.swift │ │ ├── Test_ParsingMerge.swift │ │ ├── Test_ReallyLargeTagNumber.swift │ │ ├── Test_RecursiveMap.swift │ │ ├── Test_Required.swift │ │ ├── Test_Reserved.swift │ │ ├── Test_SimpleExtensionMap.swift │ │ ├── Test_Struct.swift │ │ ├── Test_TextFormatDecodingOptions.swift │ │ ├── Test_TextFormat_Map_proto3.swift │ │ ├── Test_TextFormat_Performance.swift │ │ ├── Test_TextFormat_Unknown.swift │ │ ├── Test_TextFormat_WKT_proto3.swift │ │ ├── Test_TextFormat_proto2.swift │ │ ├── Test_TextFormat_proto2_extensions.swift │ │ ├── Test_TextFormat_proto3.swift │ │ ├── Test_Timestamp.swift │ │ ├── Test_Type.swift │ │ ├── Test_Unknown_proto2.swift │ │ ├── Test_Unknown_proto3.swift │ │ ├── Test_Wrappers.swift │ │ ├── any_test.pb.swift │ │ ├── fuzz_testing.pb.swift │ │ ├── generated_swift_names_enum_cases.pb.swift │ │ ├── generated_swift_names_enums.pb.swift │ │ ├── generated_swift_names_fields.pb.swift │ │ ├── generated_swift_names_messages.pb.swift │ │ ├── map_proto2_unittest.pb.swift │ │ ├── map_unittest.pb.swift │ │ ├── test_messages_proto3.pb.swift │ │ ├── unittest.pb.swift │ │ ├── unittest_import.pb.swift │ │ ├── unittest_import_public.pb.swift │ │ ├── unittest_mset.pb.swift │ │ ├── unittest_mset_wire_format.pb.swift │ │ ├── unittest_preserve_unknown_enum.pb.swift │ │ ├── unittest_preserve_unknown_enum2.pb.swift │ │ ├── unittest_proto3.pb.swift │ │ ├── unittest_proto3_optional.pb.swift │ │ ├── unittest_swift_all_required_types.pb.swift │ │ ├── unittest_swift_cycle.pb.swift │ │ ├── unittest_swift_deprecated.pb.swift │ │ ├── unittest_swift_deprecated_file.pb.swift │ │ ├── unittest_swift_enum_optional_default.pb.swift │ │ ├── unittest_swift_enum_proto2.pb.swift │ │ ├── unittest_swift_enum_proto3.pb.swift │ │ ├── unittest_swift_extension.pb.swift │ │ ├── unittest_swift_extension2.pb.swift │ │ ├── unittest_swift_extension3.pb.swift │ │ ├── unittest_swift_extension4.pb.swift │ │ ├── unittest_swift_fieldorder.pb.swift │ │ ├── unittest_swift_groups.pb.swift │ │ ├── unittest_swift_json.pb.swift │ │ ├── unittest_swift_naming.pb.swift │ │ ├── unittest_swift_naming_no_prefix.pb.swift │ │ ├── unittest_swift_naming_number_prefix.pb.swift │ │ ├── unittest_swift_oneof_all_required.pb.swift │ │ ├── unittest_swift_oneof_merging.pb.swift │ │ ├── unittest_swift_reserved.pb.swift │ │ ├── unittest_swift_reserved_ext.pb.swift │ │ ├── unittest_swift_runtime_proto2.pb.swift │ │ ├── unittest_swift_runtime_proto3.pb.swift │ │ └── unittest_well_known_types.pb.swift │ └── protoc-gen-swiftTests │ │ ├── DescriptorTestData.swift │ │ ├── Test_DescriptorExtensions.swift │ │ └── Test_SwiftProtobufNamerExtensions.swift │ └── cmake │ └── modules │ └── SwiftSupport.cmake ├── unittests ├── Analysis │ └── CriticalPathTests.swift ├── Basic │ ├── BinaryCodingTests.cpp │ ├── CMakeLists.txt │ ├── Defer.cpp │ ├── FileSystemTest.cpp │ ├── LaneBasedExecutionQueueTest.cpp │ ├── POSIXEnvironmentTest.cpp │ ├── SerialQueueTest.cpp │ ├── ShellUtilityTest.cpp │ ├── TempDir.cpp │ ├── TempDir.h │ └── main.cpp ├── BuildSystem │ ├── BuildSystemFrontendTest.cpp │ ├── BuildSystemTaskTests.cpp │ ├── BuildValueTest.cpp │ ├── CMakeLists.txt │ ├── MockBuildSystemDelegate.cpp │ ├── MockBuildSystemDelegate.h │ ├── TempDir.cpp │ ├── TempDir.h │ └── main.cpp ├── CAPI │ ├── BuildSystem-C-API.cpp │ ├── C-API.cpp │ └── CMakeLists.txt ├── CMakeLists.txt ├── Core │ ├── BuildEngineCancellationTest.cpp │ ├── BuildEngineTest.cpp │ ├── CMakeLists.txt │ ├── DependencyInfoParserTest.cpp │ ├── DepsBuildEngineTest.cpp │ ├── MakefileDepsParserTest.cpp │ ├── SQLiteBuildDBTest.cpp │ └── main.cpp ├── Evo │ └── main.cpp ├── Ninja │ ├── CMakeLists.txt │ ├── LexerTest.cpp │ ├── ManifestTest.cpp │ └── main.cpp ├── Swift │ ├── BuildDBBindingsTests.swift │ ├── BuildKeyTests.swift │ ├── BuildSystemBindingsTests.swift │ ├── BuildSystemEngineTests.swift │ ├── BuildValueTests.swift │ └── SwiftNinjaTests.swift ├── TestSupport │ └── XCTestCase+Extensions.swift └── llbuild3CoreTests │ ├── CASTests.swift │ └── EngineTests.swift ├── utils ├── Xcode │ ├── LitXCTestAdaptor │ │ ├── LitTests.m │ │ └── LitTests.py │ ├── README.md │ ├── build-sphinx-docs.sh │ ├── create-lit-site-cfg.sh │ ├── create-target-link.sh │ ├── execute-lit-tests.sh │ ├── install-user-lit.sh │ └── install-user-sphinx.sh ├── adjust-times │ ├── CMakeLists.txt │ └── adjust-times.cpp ├── build-and-test ├── build_proto_toolchain.sh ├── check-all ├── check-coverage ├── create-dummy-ninja-from-DB.py ├── docker │ ├── Dockerfile-14.04 │ ├── Dockerfile-16.04 │ ├── Dockerfile-18.04 │ ├── docker-utils │ └── requirements.txt ├── emacs │ ├── README.md │ └── llbuild-project-settings.el ├── import-llvm │ ├── cmake │ │ ├── demangleCMakeLists.txt │ │ ├── llvmCMakeLists.txt │ │ └── supportCMakeLists.txt │ ├── import-llvm │ └── include │ │ └── llvm │ │ └── Config │ │ ├── abi-breaking.h │ │ ├── config.h │ │ └── llvm-config.h ├── install-sources ├── manifest-generator │ └── generate-llbuild-manifest ├── ptreetime │ ├── README.md │ ├── libptreetime │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── ptreetime.dtrace │ │ └── ptreetime_interpose.c │ └── ptreetime.py ├── unittest │ ├── CMakeLists.txt │ ├── UnitTestMain │ │ ├── CMakeLists.txt │ │ └── TestMain.cpp │ ├── googlemock │ │ ├── LICENSE.txt │ │ ├── README.LLVM │ │ ├── include │ │ │ └── gmock │ │ │ │ ├── gmock-actions.h │ │ │ │ ├── gmock-cardinalities.h │ │ │ │ ├── gmock-function-mocker.h │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ ├── gmock-generated-function-mockers.h │ │ │ │ ├── gmock-generated-matchers.h │ │ │ │ ├── gmock-matchers.h │ │ │ │ ├── gmock-more-actions.h │ │ │ │ ├── gmock-more-matchers.h │ │ │ │ ├── gmock-nice-strict.h │ │ │ │ ├── gmock-spec-builders.h │ │ │ │ ├── gmock.h │ │ │ │ └── internal │ │ │ │ ├── custom │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ ├── gmock-matchers.h │ │ │ │ └── gmock-port.h │ │ │ │ ├── gmock-internal-utils.h │ │ │ │ ├── gmock-port.h │ │ │ │ └── gmock-pp.h │ │ └── src │ │ │ ├── gmock-all.cc │ │ │ ├── gmock-cardinalities.cc │ │ │ ├── gmock-internal-utils.cc │ │ │ ├── gmock-matchers.cc │ │ │ ├── gmock-spec-builders.cc │ │ │ └── gmock.cc │ └── googletest │ │ ├── LICENSE.TXT │ │ ├── README.LLVM │ │ ├── include │ │ └── gtest │ │ │ ├── gtest-death-test.h │ │ │ ├── gtest-matchers.h │ │ │ ├── gtest-message.h │ │ │ ├── gtest-param-test.h │ │ │ ├── gtest-printers.h │ │ │ ├── gtest-spi.h │ │ │ ├── gtest-test-part.h │ │ │ ├── gtest-typed-test.h │ │ │ ├── gtest.h │ │ │ ├── gtest_pred_impl.h │ │ │ ├── gtest_prod.h │ │ │ └── internal │ │ │ ├── custom │ │ │ ├── gtest-port.h │ │ │ ├── gtest-printers.h │ │ │ ├── gtest.h │ │ │ └── raw-ostream.h │ │ │ ├── gtest-death-test-internal.h │ │ │ ├── gtest-filepath.h │ │ │ ├── gtest-internal.h │ │ │ ├── gtest-param-util.h │ │ │ ├── gtest-port-arch.h │ │ │ ├── gtest-port.h │ │ │ ├── gtest-string.h │ │ │ └── gtest-type-util.h │ │ └── src │ │ ├── gtest-all.cc │ │ ├── gtest-death-test.cc │ │ ├── gtest-filepath.cc │ │ ├── gtest-internal-inl.h │ │ ├── gtest-matchers.cc │ │ ├── gtest-port.cc │ │ ├── gtest-printers.cc │ │ ├── gtest-test-part.cc │ │ ├── gtest-typed-test.cc │ │ └── gtest.cc └── write-swift-version └── vcpkg.json /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/.clang-format -------------------------------------------------------------------------------- /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/.mailmap -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/Makefile -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/Package.swift -------------------------------------------------------------------------------- /README.llbuild3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/README.llbuild3.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/Vagrantfile -------------------------------------------------------------------------------- /Xcode/Configs/Common.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/Xcode/Configs/Common.xcconfig -------------------------------------------------------------------------------- /Xcode/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/Xcode/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /Xcode/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/Xcode/Configs/Release.xcconfig -------------------------------------------------------------------------------- /Xcode/Configs/Version.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/Xcode/Configs/Version.xcconfig -------------------------------------------------------------------------------- /Xcode/Configs/llbuild3Common.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/Xcode/Configs/llbuild3Common.xcconfig -------------------------------------------------------------------------------- /Xcode/Configs/llbuild3Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/Xcode/Configs/llbuild3Debug.xcconfig -------------------------------------------------------------------------------- /Xcode/Configs/llbuild3Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/Xcode/Configs/llbuild3Release.xcconfig -------------------------------------------------------------------------------- /Xcode/llbuild.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/Xcode/llbuild.xctestplan -------------------------------------------------------------------------------- /Xcode/llbuild3.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/Xcode/llbuild3.xctestplan -------------------------------------------------------------------------------- /bindings/python/llbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/bindings/python/llbuild.py -------------------------------------------------------------------------------- /cmake/modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/cmake/modules/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/modules/FindFileCheck.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/cmake/modules/FindFileCheck.cmake -------------------------------------------------------------------------------- /cmake/modules/FindLit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/cmake/modules/FindLit.cmake -------------------------------------------------------------------------------- /cmake/modules/LLBuildConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/cmake/modules/LLBuildConfig.cmake.in -------------------------------------------------------------------------------- /cmake/modules/Utility.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/cmake/modules/Utility.cmake -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/TODO.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/docs/TODO.rst -------------------------------------------------------------------------------- /docs/_templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/docs/_templates/index.html -------------------------------------------------------------------------------- /docs/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/docs/_templates/layout.html -------------------------------------------------------------------------------- /docs/buildengine.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/docs/buildengine.rst -------------------------------------------------------------------------------- /docs/buildsystem-extensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/docs/buildsystem-extensions.md -------------------------------------------------------------------------------- /docs/buildsystem-internals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/docs/buildsystem-internals.md -------------------------------------------------------------------------------- /docs/buildsystem.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/docs/buildsystem.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/docs/contents.rst -------------------------------------------------------------------------------- /docs/development.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/docs/development.rst -------------------------------------------------------------------------------- /docs/im-an-llbuild-ninja-sticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/docs/im-an-llbuild-ninja-sticker.png -------------------------------------------------------------------------------- /docs/im-an-llbuild-ninja-sticker.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/docs/im-an-llbuild-ninja-sticker.psd -------------------------------------------------------------------------------- /docs/llbuild-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/docs/llbuild-profile.png -------------------------------------------------------------------------------- /docs/llbuild3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/docs/llbuild3.jpg -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | recommonmark==0.4.0 2 | -------------------------------------------------------------------------------- /examples/GameOfLife/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/examples/GameOfLife/.gitignore -------------------------------------------------------------------------------- /examples/GameOfLife/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/examples/GameOfLife/Package.swift -------------------------------------------------------------------------------- /examples/GameOfLife/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/examples/GameOfLife/README.md -------------------------------------------------------------------------------- /examples/c-api/buildsystem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/examples/c-api/buildsystem/README.md -------------------------------------------------------------------------------- /examples/c-api/buildsystem/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/examples/c-api/buildsystem/main.c -------------------------------------------------------------------------------- /examples/simple-make/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/examples/simple-make/README.md -------------------------------------------------------------------------------- /examples/simple-make/count-lines-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/examples/simple-make/count-lines-1 -------------------------------------------------------------------------------- /examples/simple-make/count-lines-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/examples/simple-make/count-lines-2 -------------------------------------------------------------------------------- /examples/simple-make/count-lines-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/examples/simple-make/count-lines-3 -------------------------------------------------------------------------------- /examples/simple-make/count-lines-4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/examples/simple-make/count-lines-4 -------------------------------------------------------------------------------- /examples/simple-make/simple-make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/examples/simple-make/simple-make -------------------------------------------------------------------------------- /examples/simple-make/simplebuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/examples/simple-make/simplebuild.py -------------------------------------------------------------------------------- /examples/simple-make/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/examples/simple-make/util.py -------------------------------------------------------------------------------- /examples/swift-bindings/core/basic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/examples/swift-bindings/core/basic.swift -------------------------------------------------------------------------------- /include/libstdc++14-workaround.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/libstdc++14-workaround.h -------------------------------------------------------------------------------- /include/llbuild/Basic/BinaryCoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/Basic/BinaryCoding.h -------------------------------------------------------------------------------- /include/llbuild/Basic/Clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/Basic/Clock.h -------------------------------------------------------------------------------- /include/llbuild/Basic/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/Basic/Compiler.h -------------------------------------------------------------------------------- /include/llbuild/Basic/Defer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/Basic/Defer.h -------------------------------------------------------------------------------- /include/llbuild/Basic/ExecutionQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/Basic/ExecutionQueue.h -------------------------------------------------------------------------------- /include/llbuild/Basic/FileInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/Basic/FileInfo.h -------------------------------------------------------------------------------- /include/llbuild/Basic/FileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/Basic/FileSystem.h -------------------------------------------------------------------------------- /include/llbuild/Basic/Hashing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/Basic/Hashing.h -------------------------------------------------------------------------------- /include/llbuild/Basic/JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/Basic/JSON.h -------------------------------------------------------------------------------- /include/llbuild/Basic/LLVM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/Basic/LLVM.h -------------------------------------------------------------------------------- /include/llbuild/Basic/POSIXEnvironment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/Basic/POSIXEnvironment.h -------------------------------------------------------------------------------- /include/llbuild/Basic/PlatformUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/Basic/PlatformUtility.h -------------------------------------------------------------------------------- /include/llbuild/Basic/SerialQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/Basic/SerialQueue.h -------------------------------------------------------------------------------- /include/llbuild/Basic/ShellUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/Basic/ShellUtility.h -------------------------------------------------------------------------------- /include/llbuild/Basic/Stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/Basic/Stat.h -------------------------------------------------------------------------------- /include/llbuild/Basic/StringList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/Basic/StringList.h -------------------------------------------------------------------------------- /include/llbuild/Basic/Subprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/Basic/Subprocess.h -------------------------------------------------------------------------------- /include/llbuild/Basic/Tracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/Basic/Tracing.h -------------------------------------------------------------------------------- /include/llbuild/Basic/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/Basic/Version.h -------------------------------------------------------------------------------- /include/llbuild/BuildSystem/BuildDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/BuildSystem/BuildDescription.h -------------------------------------------------------------------------------- /include/llbuild/BuildSystem/BuildFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/BuildSystem/BuildFile.h -------------------------------------------------------------------------------- /include/llbuild/BuildSystem/BuildKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/BuildSystem/BuildKey.h -------------------------------------------------------------------------------- /include/llbuild/BuildSystem/BuildNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/BuildSystem/BuildNode.h -------------------------------------------------------------------------------- /include/llbuild/BuildSystem/BuildSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/BuildSystem/BuildSystem.h -------------------------------------------------------------------------------- /include/llbuild/BuildSystem/BuildSystemFrontend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/BuildSystem/BuildSystemFrontend.h -------------------------------------------------------------------------------- /include/llbuild/BuildSystem/BuildSystemHandlers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/BuildSystem/BuildSystemHandlers.h -------------------------------------------------------------------------------- /include/llbuild/BuildSystem/BuildValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/BuildSystem/BuildValue.h -------------------------------------------------------------------------------- /include/llbuild/BuildSystem/Command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/BuildSystem/Command.h -------------------------------------------------------------------------------- /include/llbuild/BuildSystem/ExternalCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/BuildSystem/ExternalCommand.h -------------------------------------------------------------------------------- /include/llbuild/BuildSystem/ShellCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/BuildSystem/ShellCommand.h -------------------------------------------------------------------------------- /include/llbuild/BuildSystem/Tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/BuildSystem/Tool.h -------------------------------------------------------------------------------- /include/llbuild/Commands/Commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/Commands/Commands.h -------------------------------------------------------------------------------- /include/llbuild/Core/BuildDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/Core/BuildDB.h -------------------------------------------------------------------------------- /include/llbuild/Core/BuildEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/Core/BuildEngine.h -------------------------------------------------------------------------------- /include/llbuild/Core/DependencyInfoParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/Core/DependencyInfoParser.h -------------------------------------------------------------------------------- /include/llbuild/Core/DependencyKeyIDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/Core/DependencyKeyIDs.h -------------------------------------------------------------------------------- /include/llbuild/Core/KeyID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/Core/KeyID.h -------------------------------------------------------------------------------- /include/llbuild/Core/MakefileDepsParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/Core/MakefileDepsParser.h -------------------------------------------------------------------------------- /include/llbuild/Ninja/Lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/Ninja/Lexer.h -------------------------------------------------------------------------------- /include/llbuild/Ninja/Manifest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/Ninja/Manifest.h -------------------------------------------------------------------------------- /include/llbuild/Ninja/ManifestLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/Ninja/ManifestLoader.h -------------------------------------------------------------------------------- /include/llbuild/Ninja/Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llbuild/Ninja/Parser.h -------------------------------------------------------------------------------- /include/llvm-c/DataTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm-c/DataTypes.h -------------------------------------------------------------------------------- /include/llvm-c/ErrorHandling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm-c/ErrorHandling.h -------------------------------------------------------------------------------- /include/llvm-c/Support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm-c/Support.h -------------------------------------------------------------------------------- /include/llvm-c/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm-c/Types.h -------------------------------------------------------------------------------- /include/llvm/ADT/APFloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/ADT/APFloat.h -------------------------------------------------------------------------------- /include/llvm/ADT/APInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/ADT/APInt.h -------------------------------------------------------------------------------- /include/llvm/ADT/APSInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/ADT/APSInt.h -------------------------------------------------------------------------------- /include/llvm/ADT/AllocatorList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/ADT/AllocatorList.h -------------------------------------------------------------------------------- /include/llvm/ADT/ArrayRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/ADT/ArrayRef.h -------------------------------------------------------------------------------- /include/llvm/ADT/DenseMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/ADT/DenseMap.h -------------------------------------------------------------------------------- /include/llvm/ADT/DenseMapInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/ADT/DenseMapInfo.h -------------------------------------------------------------------------------- /include/llvm/ADT/DenseSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/ADT/DenseSet.h -------------------------------------------------------------------------------- /include/llvm/ADT/EpochTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/ADT/EpochTracker.h -------------------------------------------------------------------------------- /include/llvm/ADT/FoldingSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/ADT/FoldingSet.h -------------------------------------------------------------------------------- /include/llvm/ADT/Hashing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/ADT/Hashing.h -------------------------------------------------------------------------------- /include/llvm/ADT/IntrusiveRefCntPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/ADT/IntrusiveRefCntPtr.h -------------------------------------------------------------------------------- /include/llvm/ADT/None.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/ADT/None.h -------------------------------------------------------------------------------- /include/llvm/ADT/Optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/ADT/Optional.h -------------------------------------------------------------------------------- /include/llvm/ADT/PointerIntPair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/ADT/PointerIntPair.h -------------------------------------------------------------------------------- /include/llvm/ADT/PointerUnion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/ADT/PointerUnion.h -------------------------------------------------------------------------------- /include/llvm/ADT/STLExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/ADT/STLExtras.h -------------------------------------------------------------------------------- /include/llvm/ADT/SmallPtrSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/ADT/SmallPtrSet.h -------------------------------------------------------------------------------- /include/llvm/ADT/SmallSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/ADT/SmallSet.h -------------------------------------------------------------------------------- /include/llvm/ADT/SmallString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/ADT/SmallString.h -------------------------------------------------------------------------------- /include/llvm/ADT/SmallVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/ADT/SmallVector.h -------------------------------------------------------------------------------- /include/llvm/ADT/StringExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/ADT/StringExtras.h -------------------------------------------------------------------------------- /include/llvm/ADT/StringMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/ADT/StringMap.h -------------------------------------------------------------------------------- /include/llvm/ADT/StringRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/ADT/StringRef.h -------------------------------------------------------------------------------- /include/llvm/ADT/StringSwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/ADT/StringSwitch.h -------------------------------------------------------------------------------- /include/llvm/ADT/Triple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/ADT/Triple.h -------------------------------------------------------------------------------- /include/llvm/ADT/Twine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/ADT/Twine.h -------------------------------------------------------------------------------- /include/llvm/ADT/edit_distance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/ADT/edit_distance.h -------------------------------------------------------------------------------- /include/llvm/ADT/ilist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/ADT/ilist.h -------------------------------------------------------------------------------- /include/llvm/ADT/ilist_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/ADT/ilist_base.h -------------------------------------------------------------------------------- /include/llvm/ADT/ilist_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/ADT/ilist_iterator.h -------------------------------------------------------------------------------- /include/llvm/ADT/ilist_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/ADT/ilist_node.h -------------------------------------------------------------------------------- /include/llvm/ADT/ilist_node_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/ADT/ilist_node_base.h -------------------------------------------------------------------------------- /include/llvm/ADT/ilist_node_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/ADT/ilist_node_options.h -------------------------------------------------------------------------------- /include/llvm/ADT/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/ADT/iterator.h -------------------------------------------------------------------------------- /include/llvm/ADT/iterator_range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/ADT/iterator_range.h -------------------------------------------------------------------------------- /include/llvm/ADT/simple_ilist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/ADT/simple_ilist.h -------------------------------------------------------------------------------- /include/llvm/Config/abi-breaking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Config/abi-breaking.h -------------------------------------------------------------------------------- /include/llvm/Config/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Config/config.h -------------------------------------------------------------------------------- /include/llvm/Config/llvm-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Config/llvm-config.h -------------------------------------------------------------------------------- /include/llvm/Demangle/Demangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Demangle/Demangle.h -------------------------------------------------------------------------------- /include/llvm/Support/AArch64TargetParser.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/AArch64TargetParser.def -------------------------------------------------------------------------------- /include/llvm/Support/ARMBuildAttributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/ARMBuildAttributes.h -------------------------------------------------------------------------------- /include/llvm/Support/ARMTargetParser.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/ARMTargetParser.def -------------------------------------------------------------------------------- /include/llvm/Support/AlignOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/AlignOf.h -------------------------------------------------------------------------------- /include/llvm/Support/Allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/Allocator.h -------------------------------------------------------------------------------- /include/llvm/Support/Atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/Atomic.h -------------------------------------------------------------------------------- /include/llvm/Support/CBindingWrapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/CBindingWrapping.h -------------------------------------------------------------------------------- /include/llvm/Support/Casting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/Casting.h -------------------------------------------------------------------------------- /include/llvm/Support/Chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/Chrono.h -------------------------------------------------------------------------------- /include/llvm/Support/CommandLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/CommandLine.h -------------------------------------------------------------------------------- /include/llvm/Support/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/Compiler.h -------------------------------------------------------------------------------- /include/llvm/Support/ConvertUTF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/ConvertUTF.h -------------------------------------------------------------------------------- /include/llvm/Support/DJB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/DJB.h -------------------------------------------------------------------------------- /include/llvm/Support/DataTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/DataTypes.h -------------------------------------------------------------------------------- /include/llvm/Support/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/Debug.h -------------------------------------------------------------------------------- /include/llvm/Support/Endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/Endian.h -------------------------------------------------------------------------------- /include/llvm/Support/Errc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/Errc.h -------------------------------------------------------------------------------- /include/llvm/Support/Errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/Errno.h -------------------------------------------------------------------------------- /include/llvm/Support/Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/Error.h -------------------------------------------------------------------------------- /include/llvm/Support/ErrorHandling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/ErrorHandling.h -------------------------------------------------------------------------------- /include/llvm/Support/ErrorOr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/ErrorOr.h -------------------------------------------------------------------------------- /include/llvm/Support/FileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/FileSystem.h -------------------------------------------------------------------------------- /include/llvm/Support/FileUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/FileUtilities.h -------------------------------------------------------------------------------- /include/llvm/Support/Format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/Format.h -------------------------------------------------------------------------------- /include/llvm/Support/FormatCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/FormatCommon.h -------------------------------------------------------------------------------- /include/llvm/Support/FormatProviders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/FormatProviders.h -------------------------------------------------------------------------------- /include/llvm/Support/FormatVariadic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/FormatVariadic.h -------------------------------------------------------------------------------- /include/llvm/Support/FormatVariadicDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/FormatVariadicDetails.h -------------------------------------------------------------------------------- /include/llvm/Support/Host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/Host.h -------------------------------------------------------------------------------- /include/llvm/Support/Locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/Locale.h -------------------------------------------------------------------------------- /include/llvm/Support/MD5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/MD5.h -------------------------------------------------------------------------------- /include/llvm/Support/ManagedStatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/ManagedStatic.h -------------------------------------------------------------------------------- /include/llvm/Support/MathExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/MathExtras.h -------------------------------------------------------------------------------- /include/llvm/Support/MemAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/MemAlloc.h -------------------------------------------------------------------------------- /include/llvm/Support/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/Memory.h -------------------------------------------------------------------------------- /include/llvm/Support/MemoryBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/MemoryBuffer.h -------------------------------------------------------------------------------- /include/llvm/Support/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/Mutex.h -------------------------------------------------------------------------------- /include/llvm/Support/MutexGuard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/MutexGuard.h -------------------------------------------------------------------------------- /include/llvm/Support/NativeFormatting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/NativeFormatting.h -------------------------------------------------------------------------------- /include/llvm/Support/Options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/Options.h -------------------------------------------------------------------------------- /include/llvm/Support/Path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/Path.h -------------------------------------------------------------------------------- /include/llvm/Support/PointerLikeTypeTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/PointerLikeTypeTraits.h -------------------------------------------------------------------------------- /include/llvm/Support/Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/Process.h -------------------------------------------------------------------------------- /include/llvm/Support/Program.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/Program.h -------------------------------------------------------------------------------- /include/llvm/Support/Recycler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/Recycler.h -------------------------------------------------------------------------------- /include/llvm/Support/ReverseIteration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/ReverseIteration.h -------------------------------------------------------------------------------- /include/llvm/Support/SMLoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/SMLoc.h -------------------------------------------------------------------------------- /include/llvm/Support/Signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/Signals.h -------------------------------------------------------------------------------- /include/llvm/Support/SmallVectorMemoryBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/SmallVectorMemoryBuffer.h -------------------------------------------------------------------------------- /include/llvm/Support/SourceMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/SourceMgr.h -------------------------------------------------------------------------------- /include/llvm/Support/StringSaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/StringSaver.h -------------------------------------------------------------------------------- /include/llvm/Support/SwapByteOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/SwapByteOrder.h -------------------------------------------------------------------------------- /include/llvm/Support/TargetParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/TargetParser.h -------------------------------------------------------------------------------- /include/llvm/Support/Threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/Threading.h -------------------------------------------------------------------------------- /include/llvm/Support/Unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/Unicode.h -------------------------------------------------------------------------------- /include/llvm/Support/UnicodeCharRanges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/UnicodeCharRanges.h -------------------------------------------------------------------------------- /include/llvm/Support/UniqueLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/UniqueLock.h -------------------------------------------------------------------------------- /include/llvm/Support/Valgrind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/Valgrind.h -------------------------------------------------------------------------------- /include/llvm/Support/WindowsError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/WindowsError.h -------------------------------------------------------------------------------- /include/llvm/Support/X86TargetParser.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/X86TargetParser.def -------------------------------------------------------------------------------- /include/llvm/Support/YAMLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/YAMLParser.h -------------------------------------------------------------------------------- /include/llvm/Support/circular_raw_ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/circular_raw_ostream.h -------------------------------------------------------------------------------- /include/llvm/Support/raw_ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/raw_ostream.h -------------------------------------------------------------------------------- /include/llvm/Support/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/include/llvm/Support/type_traits.h -------------------------------------------------------------------------------- /lib/Analysis/CriticalBuildPath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/Analysis/CriticalBuildPath.swift -------------------------------------------------------------------------------- /lib/Analysis/CriticalPath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/Analysis/CriticalPath.swift -------------------------------------------------------------------------------- /lib/Analysis/IdentifierFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/Analysis/IdentifierFactory.swift -------------------------------------------------------------------------------- /lib/Basic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/Basic/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Basic/ExecutionQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/Basic/ExecutionQueue.cpp -------------------------------------------------------------------------------- /lib/Basic/FileInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/Basic/FileInfo.cpp -------------------------------------------------------------------------------- /lib/Basic/FileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/Basic/FileSystem.cpp -------------------------------------------------------------------------------- /lib/Basic/Hashing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/Basic/Hashing.cpp -------------------------------------------------------------------------------- /lib/Basic/LaneBasedExecutionQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/Basic/LaneBasedExecutionQueue.cpp -------------------------------------------------------------------------------- /lib/Basic/LeanWindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/Basic/LeanWindows.h -------------------------------------------------------------------------------- /lib/Basic/PlatformUtility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/Basic/PlatformUtility.cpp -------------------------------------------------------------------------------- /lib/Basic/SerialQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/Basic/SerialQueue.cpp -------------------------------------------------------------------------------- /lib/Basic/ShellUtility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/Basic/ShellUtility.cpp -------------------------------------------------------------------------------- /lib/Basic/Subprocess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/Basic/Subprocess.cpp -------------------------------------------------------------------------------- /lib/Basic/Tracing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/Basic/Tracing.cpp -------------------------------------------------------------------------------- /lib/Basic/Version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/Basic/Version.cpp -------------------------------------------------------------------------------- /lib/Basic/include/llbuild/Basic: -------------------------------------------------------------------------------- 1 | ../../../../include/llbuild/Basic -------------------------------------------------------------------------------- /lib/BuildSystem/BuildDescription.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/BuildSystem/BuildDescription.cpp -------------------------------------------------------------------------------- /lib/BuildSystem/BuildFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/BuildSystem/BuildFile.cpp -------------------------------------------------------------------------------- /lib/BuildSystem/BuildKey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/BuildSystem/BuildKey.cpp -------------------------------------------------------------------------------- /lib/BuildSystem/BuildNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/BuildSystem/BuildNode.cpp -------------------------------------------------------------------------------- /lib/BuildSystem/BuildSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/BuildSystem/BuildSystem.cpp -------------------------------------------------------------------------------- /lib/BuildSystem/BuildSystemExtensionManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/BuildSystem/BuildSystemExtensionManager.cpp -------------------------------------------------------------------------------- /lib/BuildSystem/BuildSystemFrontend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/BuildSystem/BuildSystemFrontend.cpp -------------------------------------------------------------------------------- /lib/BuildSystem/BuildValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/BuildSystem/BuildValue.cpp -------------------------------------------------------------------------------- /lib/BuildSystem/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/BuildSystem/CMakeLists.txt -------------------------------------------------------------------------------- /lib/BuildSystem/ExternalCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/BuildSystem/ExternalCommand.cpp -------------------------------------------------------------------------------- /lib/BuildSystem/ShellCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/BuildSystem/ShellCommand.cpp -------------------------------------------------------------------------------- /lib/BuildSystem/include/llbuild/BuildSystem: -------------------------------------------------------------------------------- 1 | ../../../../include/llbuild/BuildSystem -------------------------------------------------------------------------------- /lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Commands/BuildEngineCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/Commands/BuildEngineCommand.cpp -------------------------------------------------------------------------------- /lib/Commands/BuildSystemCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/Commands/BuildSystemCommand.cpp -------------------------------------------------------------------------------- /lib/Commands/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/Commands/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Commands/CommandLineStatusOutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/Commands/CommandLineStatusOutput.cpp -------------------------------------------------------------------------------- /lib/Commands/CommandLineStatusOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/Commands/CommandLineStatusOutput.h -------------------------------------------------------------------------------- /lib/Commands/CommandUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/Commands/CommandUtil.cpp -------------------------------------------------------------------------------- /lib/Commands/CommandUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/Commands/CommandUtil.h -------------------------------------------------------------------------------- /lib/Commands/NinjaBuildCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/Commands/NinjaBuildCommand.cpp -------------------------------------------------------------------------------- /lib/Commands/NinjaBuildCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/Commands/NinjaBuildCommand.h -------------------------------------------------------------------------------- /lib/Commands/NinjaCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/Commands/NinjaCommand.cpp -------------------------------------------------------------------------------- /lib/Commands/include/llbuild/Commands: -------------------------------------------------------------------------------- 1 | ../../../../include/llbuild/Commands -------------------------------------------------------------------------------- /lib/Core/BuildDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/Core/BuildDB.cpp -------------------------------------------------------------------------------- /lib/Core/BuildEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/Core/BuildEngine.cpp -------------------------------------------------------------------------------- /lib/Core/BuildEngineTrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/Core/BuildEngineTrace.cpp -------------------------------------------------------------------------------- /lib/Core/BuildEngineTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/Core/BuildEngineTrace.h -------------------------------------------------------------------------------- /lib/Core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/Core/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Core/DependencyInfoParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/Core/DependencyInfoParser.cpp -------------------------------------------------------------------------------- /lib/Core/MakefileDepsParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/Core/MakefileDepsParser.cpp -------------------------------------------------------------------------------- /lib/Core/SQLiteBuildDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/Core/SQLiteBuildDB.cpp -------------------------------------------------------------------------------- /lib/Core/include/llbuild/Core: -------------------------------------------------------------------------------- 1 | ../../../../include/llbuild/Core -------------------------------------------------------------------------------- /lib/Evo/include/llbuild/Evo: -------------------------------------------------------------------------------- 1 | ../../../../include/llbuild/Evo -------------------------------------------------------------------------------- /lib/Ninja/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/Ninja/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Ninja/Lexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/Ninja/Lexer.cpp -------------------------------------------------------------------------------- /lib/Ninja/Manifest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/Ninja/Manifest.cpp -------------------------------------------------------------------------------- /lib/Ninja/ManifestLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/Ninja/ManifestLoader.cpp -------------------------------------------------------------------------------- /lib/Ninja/Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/Ninja/Parser.cpp -------------------------------------------------------------------------------- /lib/Ninja/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/Ninja/README.md -------------------------------------------------------------------------------- /lib/Ninja/include/llbuild/Ninja: -------------------------------------------------------------------------------- 1 | ../../../../include/llbuild/Ninja -------------------------------------------------------------------------------- /lib/llvm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/CMakeLists.txt -------------------------------------------------------------------------------- /lib/llvm/Demangle/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Demangle/CMakeLists.txt -------------------------------------------------------------------------------- /lib/llvm/Demangle/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Demangle/Compiler.h -------------------------------------------------------------------------------- /lib/llvm/Demangle/ItaniumDemangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Demangle/ItaniumDemangle.cpp -------------------------------------------------------------------------------- /lib/llvm/Demangle/LLVMBuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Demangle/LLVMBuild.txt -------------------------------------------------------------------------------- /lib/llvm/Demangle/MicrosoftDemangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Demangle/MicrosoftDemangle.cpp -------------------------------------------------------------------------------- /lib/llvm/Demangle/StringView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Demangle/StringView.h -------------------------------------------------------------------------------- /lib/llvm/Demangle/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Demangle/Utility.h -------------------------------------------------------------------------------- /lib/llvm/Demangle/include/llvm/Demangle: -------------------------------------------------------------------------------- 1 | ../../../../../include/llvm/Demangle -------------------------------------------------------------------------------- /lib/llvm/Support/APFloat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/APFloat.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/APInt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/APInt.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/APSInt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/APSInt.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/Allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/Allocator.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/Atomic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/Atomic.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/CMakeLists.txt -------------------------------------------------------------------------------- /lib/llvm/Support/Chrono.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/Chrono.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/CommandLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/CommandLine.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/ConvertUTF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/ConvertUTF.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/ConvertUTFWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/ConvertUTFWrapper.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/DJB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/DJB.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/Debug.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/Errno.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/Errno.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/Error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/Error.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/ErrorHandling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/ErrorHandling.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/FileUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/FileUtilities.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/FoldingSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/FoldingSet.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/FormatVariadic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/FormatVariadic.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/Hashing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/Hashing.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/Host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/Host.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/Locale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/Locale.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/MD5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/MD5.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/ManagedStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/ManagedStatic.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/MathExtras.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/MathExtras.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/Memory.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/MemoryBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/MemoryBuffer.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/Mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/Mutex.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/NativeFormatting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/NativeFormatting.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/Options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/Options.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/Path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/Path.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/Process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/Process.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/Program.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/Program.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/Signals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/Signals.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/SmallPtrSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/SmallPtrSet.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/SmallVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/SmallVector.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/SourceMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/SourceMgr.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/StringExtras.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/StringExtras.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/StringMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/StringMap.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/StringRef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/StringRef.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/StringSaver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/StringSaver.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/TargetParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/TargetParser.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/Threading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/Threading.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/Triple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/Triple.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/Twine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/Twine.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/Unicode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/Unicode.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/UnicodeCaseFold.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/UnicodeCaseFold.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/Unix/Host.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/Unix/Host.inc -------------------------------------------------------------------------------- /lib/llvm/Support/Unix/Memory.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/Unix/Memory.inc -------------------------------------------------------------------------------- /lib/llvm/Support/Unix/Mutex.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/Unix/Mutex.inc -------------------------------------------------------------------------------- /lib/llvm/Support/Unix/Path.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/Unix/Path.inc -------------------------------------------------------------------------------- /lib/llvm/Support/Unix/Process.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/Unix/Process.inc -------------------------------------------------------------------------------- /lib/llvm/Support/Unix/Program.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/Unix/Program.inc -------------------------------------------------------------------------------- /lib/llvm/Support/Unix/Signals.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/Unix/Signals.inc -------------------------------------------------------------------------------- /lib/llvm/Support/Unix/Threading.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/Unix/Threading.inc -------------------------------------------------------------------------------- /lib/llvm/Support/Unix/Unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/Unix/Unix.h -------------------------------------------------------------------------------- /lib/llvm/Support/Valgrind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/Valgrind.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/Windows/Host.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/Windows/Host.inc -------------------------------------------------------------------------------- /lib/llvm/Support/Windows/Memory.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/Windows/Memory.inc -------------------------------------------------------------------------------- /lib/llvm/Support/Windows/Mutex.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/Windows/Mutex.inc -------------------------------------------------------------------------------- /lib/llvm/Support/Windows/Path.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/Windows/Path.inc -------------------------------------------------------------------------------- /lib/llvm/Support/Windows/Process.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/Windows/Process.inc -------------------------------------------------------------------------------- /lib/llvm/Support/Windows/Program.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/Windows/Program.inc -------------------------------------------------------------------------------- /lib/llvm/Support/Windows/Signals.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/Windows/Signals.inc -------------------------------------------------------------------------------- /lib/llvm/Support/Windows/Threading.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/Windows/Threading.inc -------------------------------------------------------------------------------- /lib/llvm/Support/Windows/WindowsSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/Windows/WindowsSupport.h -------------------------------------------------------------------------------- /lib/llvm/Support/YAMLParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/YAMLParser.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/circular_raw_ostream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/circular_raw_ostream.cpp -------------------------------------------------------------------------------- /lib/llvm/Support/include/llvm-c: -------------------------------------------------------------------------------- 1 | ../../../../include/llvm-c -------------------------------------------------------------------------------- /lib/llvm/Support/include/llvm/ADT: -------------------------------------------------------------------------------- 1 | ../../../../../include/llvm/ADT -------------------------------------------------------------------------------- /lib/llvm/Support/include/llvm/Config: -------------------------------------------------------------------------------- 1 | ../../../../../include/llvm/Config -------------------------------------------------------------------------------- /lib/llvm/Support/include/llvm/Support: -------------------------------------------------------------------------------- 1 | ../../../../../include/llvm/Support -------------------------------------------------------------------------------- /lib/llvm/Support/raw_ostream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/lib/llvm/Support/raw_ostream.cpp -------------------------------------------------------------------------------- /llbuild.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/llbuild.podspec -------------------------------------------------------------------------------- /llbuild.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/llbuild.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /perftests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/perftests/CMakeLists.txt -------------------------------------------------------------------------------- /perftests/Inputs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/perftests/Inputs/.gitignore -------------------------------------------------------------------------------- /perftests/Inputs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/perftests/Inputs/README.md -------------------------------------------------------------------------------- /perftests/Inputs/llvm-only.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/perftests/Inputs/llvm-only.ninja -------------------------------------------------------------------------------- /perftests/Inputs/pseudo-llvm.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/perftests/Inputs/pseudo-llvm.tgz -------------------------------------------------------------------------------- /perftests/Xcode/PerfTests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/perftests/Xcode/PerfTests/CMakeLists.txt -------------------------------------------------------------------------------- /perftests/Xcode/PerfTests/CorePerfTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/perftests/Xcode/PerfTests/CorePerfTests.mm -------------------------------------------------------------------------------- /perftests/Xcode/PerfTests/NinjaPerfTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/perftests/Xcode/PerfTests/NinjaPerfTests.mm -------------------------------------------------------------------------------- /products/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/CMakeLists.txt -------------------------------------------------------------------------------- /products/libllbuild/BuildDB-C-API.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/libllbuild/BuildDB-C-API.cpp -------------------------------------------------------------------------------- /products/libllbuild/BuildKey-C-API-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/libllbuild/BuildKey-C-API-Private.h -------------------------------------------------------------------------------- /products/libllbuild/BuildKey-C-API.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/libllbuild/BuildKey-C-API.cpp -------------------------------------------------------------------------------- /products/libllbuild/BuildSystem-C-API.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/libllbuild/BuildSystem-C-API.cpp -------------------------------------------------------------------------------- /products/libllbuild/BuildValue-C-API-Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/libllbuild/BuildValue-C-API-Private.h -------------------------------------------------------------------------------- /products/libllbuild/BuildValue-C-API.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/libllbuild/BuildValue-C-API.cpp -------------------------------------------------------------------------------- /products/libllbuild/C-API.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/libllbuild/C-API.cpp -------------------------------------------------------------------------------- /products/libllbuild/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/libllbuild/CMakeLists.txt -------------------------------------------------------------------------------- /products/libllbuild/Core-C-API.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/libllbuild/Core-C-API.cpp -------------------------------------------------------------------------------- /products/libllbuild/Ninja-C-API.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/libllbuild/Ninja-C-API.cpp -------------------------------------------------------------------------------- /products/libllbuild/include/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/libllbuild/include/README.md -------------------------------------------------------------------------------- /products/libllbuild/include/llbuild/buildkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/libllbuild/include/llbuild/buildkey.h -------------------------------------------------------------------------------- /products/libllbuild/include/llbuild/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/libllbuild/include/llbuild/core.h -------------------------------------------------------------------------------- /products/libllbuild/include/llbuild/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/libllbuild/include/llbuild/db.h -------------------------------------------------------------------------------- /products/libllbuild/include/llbuild/llbuild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/libllbuild/include/llbuild/llbuild.h -------------------------------------------------------------------------------- /products/libllbuild/include/llbuild/ninja.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/libllbuild/include/llbuild/ninja.h -------------------------------------------------------------------------------- /products/libllbuild/include/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/libllbuild/include/module.modulemap -------------------------------------------------------------------------------- /products/llbuild-analyze/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/llbuild-analyze/Package.resolved -------------------------------------------------------------------------------- /products/llbuild-analyze/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/llbuild-analyze/Package.swift -------------------------------------------------------------------------------- /products/llbuild-analyze/Sources/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/llbuild-analyze/Sources/main.swift -------------------------------------------------------------------------------- /products/llbuild-framework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/llbuild-framework/README.md -------------------------------------------------------------------------------- /products/llbuild/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/llbuild/CMakeLists.txt -------------------------------------------------------------------------------- /products/llbuild/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/llbuild/main.cpp -------------------------------------------------------------------------------- /products/llbuild3/Errors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/llbuild3/Errors.hpp -------------------------------------------------------------------------------- /products/llbuild3/Result.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/llbuild3/Result.hpp -------------------------------------------------------------------------------- /products/llbuild3/SwiftAdaptors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/llbuild3/SwiftAdaptors.hpp -------------------------------------------------------------------------------- /products/llbuild3/Visibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/llbuild3/Visibility.hpp -------------------------------------------------------------------------------- /products/llbuild3/llbuild3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/llbuild3/llbuild3.h -------------------------------------------------------------------------------- /products/llbuildSwift/BuildDBBindings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/llbuildSwift/BuildDBBindings.swift -------------------------------------------------------------------------------- /products/llbuildSwift/BuildKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/llbuildSwift/BuildKey.swift -------------------------------------------------------------------------------- /products/llbuildSwift/BuildSystemBindings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/llbuildSwift/BuildSystemBindings.swift -------------------------------------------------------------------------------- /products/llbuildSwift/BuildValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/llbuildSwift/BuildValue.swift -------------------------------------------------------------------------------- /products/llbuildSwift/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/llbuildSwift/CMakeLists.txt -------------------------------------------------------------------------------- /products/llbuildSwift/CoreBindings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/llbuildSwift/CoreBindings.swift -------------------------------------------------------------------------------- /products/llbuildSwift/Internals.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/llbuildSwift/Internals.swift -------------------------------------------------------------------------------- /products/llbuildSwift/NinjaManifest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/llbuildSwift/NinjaManifest.swift -------------------------------------------------------------------------------- /products/swift-build-tool/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/swift-build-tool/CMakeLists.txt -------------------------------------------------------------------------------- /products/swift-build-tool/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/swift-build-tool/main.cpp -------------------------------------------------------------------------------- /products/ui/.gitignore: -------------------------------------------------------------------------------- 1 | *.egg-info 2 | 3 | # A local virtualenv, if used. 4 | venv 5 | -------------------------------------------------------------------------------- /products/ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/ui/README.md -------------------------------------------------------------------------------- /products/ui/llbuildui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/ui/llbuildui/__init__.py -------------------------------------------------------------------------------- /products/ui/llbuildui/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/ui/llbuildui/app.py -------------------------------------------------------------------------------- /products/ui/llbuildui/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/ui/llbuildui/database.py -------------------------------------------------------------------------------- /products/ui/llbuildui/graphalgorithms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/ui/llbuildui/graphalgorithms.py -------------------------------------------------------------------------------- /products/ui/llbuildui/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/ui/llbuildui/model.py -------------------------------------------------------------------------------- /products/ui/llbuildui/orderedset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/ui/llbuildui/orderedset.py -------------------------------------------------------------------------------- /products/ui/llbuildui/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/ui/llbuildui/static/style.css -------------------------------------------------------------------------------- /products/ui/llbuildui/templates/db_config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/ui/llbuildui/templates/db_config.html -------------------------------------------------------------------------------- /products/ui/llbuildui/templates/db_root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/ui/llbuildui/templates/db_root.html -------------------------------------------------------------------------------- /products/ui/llbuildui/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/ui/llbuildui/templates/index.html -------------------------------------------------------------------------------- /products/ui/llbuildui/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/ui/llbuildui/templates/layout.html -------------------------------------------------------------------------------- /products/ui/llbuildui/templates/trace_root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/ui/llbuildui/templates/trace_root.html -------------------------------------------------------------------------------- /products/ui/llbuildui/trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/ui/llbuildui/trace.py -------------------------------------------------------------------------------- /products/ui/llbuildui/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/ui/llbuildui/views.py -------------------------------------------------------------------------------- /products/ui/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/products/ui/setup.py -------------------------------------------------------------------------------- /src/llbuild3/Action.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/Action.pb.cc -------------------------------------------------------------------------------- /src/llbuild3/Action.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/Action.pb.h -------------------------------------------------------------------------------- /src/llbuild3/Action.pb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/Action.pb.swift -------------------------------------------------------------------------------- /src/llbuild3/Action.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/Action.proto -------------------------------------------------------------------------------- /src/llbuild3/ActionCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/ActionCache.cpp -------------------------------------------------------------------------------- /src/llbuild3/ActionCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/ActionCache.h -------------------------------------------------------------------------------- /src/llbuild3/ActionCache.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/ActionCache.pb.cc -------------------------------------------------------------------------------- /src/llbuild3/ActionCache.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/ActionCache.pb.h -------------------------------------------------------------------------------- /src/llbuild3/ActionCache.pb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/ActionCache.pb.swift -------------------------------------------------------------------------------- /src/llbuild3/ActionCache.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/ActionCache.proto -------------------------------------------------------------------------------- /src/llbuild3/ActionCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/ActionCache.swift -------------------------------------------------------------------------------- /src/llbuild3/ActionExecutor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/ActionExecutor.cpp -------------------------------------------------------------------------------- /src/llbuild3/ActionExecutor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/ActionExecutor.h -------------------------------------------------------------------------------- /src/llbuild3/ActionExecutor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/ActionExecutor.swift -------------------------------------------------------------------------------- /src/llbuild3/Artifact.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/Artifact.pb.cc -------------------------------------------------------------------------------- /src/llbuild3/Artifact.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/Artifact.pb.h -------------------------------------------------------------------------------- /src/llbuild3/Artifact.pb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/Artifact.pb.swift -------------------------------------------------------------------------------- /src/llbuild3/Artifact.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/Artifact.proto -------------------------------------------------------------------------------- /src/llbuild3/CAS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/CAS.cpp -------------------------------------------------------------------------------- /src/llbuild3/CAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/CAS.h -------------------------------------------------------------------------------- /src/llbuild3/CAS.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/CAS.pb.cc -------------------------------------------------------------------------------- /src/llbuild3/CAS.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/CAS.pb.h -------------------------------------------------------------------------------- /src/llbuild3/CAS.pb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/CAS.pb.swift -------------------------------------------------------------------------------- /src/llbuild3/CAS.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/CAS.proto -------------------------------------------------------------------------------- /src/llbuild3/CAS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/CAS.swift -------------------------------------------------------------------------------- /src/llbuild3/CASLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/CASLog.cpp -------------------------------------------------------------------------------- /src/llbuild3/CASLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/CASLog.h -------------------------------------------------------------------------------- /src/llbuild3/CASTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/CASTree.cpp -------------------------------------------------------------------------------- /src/llbuild3/CASTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/CASTree.h -------------------------------------------------------------------------------- /src/llbuild3/CASTree.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/CASTree.pb.cc -------------------------------------------------------------------------------- /src/llbuild3/CASTree.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/CASTree.pb.h -------------------------------------------------------------------------------- /src/llbuild3/CASTree.pb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/CASTree.pb.swift -------------------------------------------------------------------------------- /src/llbuild3/CASTree.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/CASTree.proto -------------------------------------------------------------------------------- /src/llbuild3/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/Common.h -------------------------------------------------------------------------------- /src/llbuild3/Common.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/Common.pb.cc -------------------------------------------------------------------------------- /src/llbuild3/Common.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/Common.pb.h -------------------------------------------------------------------------------- /src/llbuild3/Common.pb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/Common.pb.swift -------------------------------------------------------------------------------- /src/llbuild3/Common.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/Common.proto -------------------------------------------------------------------------------- /src/llbuild3/Engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/Engine.cpp -------------------------------------------------------------------------------- /src/llbuild3/Engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/Engine.h -------------------------------------------------------------------------------- /src/llbuild3/Engine.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/Engine.pb.cc -------------------------------------------------------------------------------- /src/llbuild3/Engine.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/Engine.pb.h -------------------------------------------------------------------------------- /src/llbuild3/Engine.pb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/Engine.pb.swift -------------------------------------------------------------------------------- /src/llbuild3/Engine.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/Engine.proto -------------------------------------------------------------------------------- /src/llbuild3/Engine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/Engine.swift -------------------------------------------------------------------------------- /src/llbuild3/EngineInternal.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/EngineInternal.pb.cc -------------------------------------------------------------------------------- /src/llbuild3/EngineInternal.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/EngineInternal.pb.h -------------------------------------------------------------------------------- /src/llbuild3/EngineInternal.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/EngineInternal.proto -------------------------------------------------------------------------------- /src/llbuild3/Error.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/Error.pb.cc -------------------------------------------------------------------------------- /src/llbuild3/Error.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/Error.pb.h -------------------------------------------------------------------------------- /src/llbuild3/Error.pb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/Error.pb.swift -------------------------------------------------------------------------------- /src/llbuild3/Error.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/Error.proto -------------------------------------------------------------------------------- /src/llbuild3/Label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/Label.cpp -------------------------------------------------------------------------------- /src/llbuild3/Label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/Label.h -------------------------------------------------------------------------------- /src/llbuild3/Label.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/Label.pb.cc -------------------------------------------------------------------------------- /src/llbuild3/Label.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/Label.pb.h -------------------------------------------------------------------------------- /src/llbuild3/Label.pb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/Label.pb.swift -------------------------------------------------------------------------------- /src/llbuild3/Label.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/Label.proto -------------------------------------------------------------------------------- /src/llbuild3/Label.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/Label.swift -------------------------------------------------------------------------------- /src/llbuild3/LocalExecutor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/LocalExecutor.cpp -------------------------------------------------------------------------------- /src/llbuild3/LocalExecutor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/LocalExecutor.h -------------------------------------------------------------------------------- /src/llbuild3/LocalExecutor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/LocalExecutor.swift -------------------------------------------------------------------------------- /src/llbuild3/Logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/Logging.cpp -------------------------------------------------------------------------------- /src/llbuild3/Logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/Logging.h -------------------------------------------------------------------------------- /src/llbuild3/Logging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/Logging.swift -------------------------------------------------------------------------------- /src/llbuild3/RemoteExecutor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/RemoteExecutor.cpp -------------------------------------------------------------------------------- /src/llbuild3/RemoteExecutor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/RemoteExecutor.h -------------------------------------------------------------------------------- /src/llbuild3/RemoteExecutor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/RemoteExecutor.swift -------------------------------------------------------------------------------- /src/llbuild3/Subtask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/Subtask.h -------------------------------------------------------------------------------- /src/llbuild3/SwiftAdaptors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/SwiftAdaptors.cpp -------------------------------------------------------------------------------- /src/llbuild3/Types.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/Types.swift -------------------------------------------------------------------------------- /src/llbuild3/support/LabelTrie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/llbuild3/support/LabelTrie.h -------------------------------------------------------------------------------- /src/module_map.asciipb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/src/module_map.asciipb -------------------------------------------------------------------------------- /tests/BuildSystem/Build/Inputs/ignore-sigint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/BuildSystem/Build/Inputs/ignore-sigint -------------------------------------------------------------------------------- /tests/BuildSystem/Build/Inputs/wait-for-file: -------------------------------------------------------------------------------- 1 | ../../../Ninja/Build/Inputs/wait-for-file -------------------------------------------------------------------------------- /tests/BuildSystem/Build/archive.llbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/BuildSystem/Build/archive.llbuild -------------------------------------------------------------------------------- /tests/BuildSystem/Build/basic.llbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/BuildSystem/Build/basic.llbuild -------------------------------------------------------------------------------- /tests/BuildSystem/Build/db-placement.llbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/BuildSystem/Build/db-placement.llbuild -------------------------------------------------------------------------------- /tests/BuildSystem/Build/dep-scan-order.llbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/BuildSystem/Build/dep-scan-order.llbuild -------------------------------------------------------------------------------- /tests/BuildSystem/Build/dependencies.llbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/BuildSystem/Build/dependencies.llbuild -------------------------------------------------------------------------------- /tests/BuildSystem/Build/errors.llbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/BuildSystem/Build/errors.llbuild -------------------------------------------------------------------------------- /tests/BuildSystem/Build/exit-status.llbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/BuildSystem/Build/exit-status.llbuild -------------------------------------------------------------------------------- /tests/BuildSystem/Build/lane-release.llbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/BuildSystem/Build/lane-release.llbuild -------------------------------------------------------------------------------- /tests/BuildSystem/Build/missing-inputs.llbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/BuildSystem/Build/missing-inputs.llbuild -------------------------------------------------------------------------------- /tests/BuildSystem/Build/missing-node.llbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/BuildSystem/Build/missing-node.llbuild -------------------------------------------------------------------------------- /tests/BuildSystem/Build/missing-target.llbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/BuildSystem/Build/missing-target.llbuild -------------------------------------------------------------------------------- /tests/BuildSystem/Build/mkdir.llbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/BuildSystem/Build/mkdir.llbuild -------------------------------------------------------------------------------- /tests/BuildSystem/Build/mutable-outputs.llbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/BuildSystem/Build/mutable-outputs.llbuild -------------------------------------------------------------------------------- /tests/BuildSystem/Build/no-control-fd.llbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/BuildSystem/Build/no-control-fd.llbuild -------------------------------------------------------------------------------- /tests/BuildSystem/Build/phony.llbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/BuildSystem/Build/phony.llbuild -------------------------------------------------------------------------------- /tests/BuildSystem/Build/signal-handling.llbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/BuildSystem/Build/signal-handling.llbuild -------------------------------------------------------------------------------- /tests/BuildSystem/Build/signatures.llbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/BuildSystem/Build/signatures.llbuild -------------------------------------------------------------------------------- /tests/BuildSystem/Build/symlink.llbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/BuildSystem/Build/symlink.llbuild -------------------------------------------------------------------------------- /tests/BuildSystem/Build/targets.llbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/BuildSystem/Build/targets.llbuild -------------------------------------------------------------------------------- /tests/BuildSystem/Build/usage.llbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/BuildSystem/Build/usage.llbuild -------------------------------------------------------------------------------- /tests/BuildSystem/Build/virtual-nodes.llbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/BuildSystem/Build/virtual-nodes.llbuild -------------------------------------------------------------------------------- /tests/BuildSystem/Parser/basic.llbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/BuildSystem/Parser/basic.llbuild -------------------------------------------------------------------------------- /tests/BuildSystem/Parser/errors.llbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/BuildSystem/Parser/errors.llbuild -------------------------------------------------------------------------------- /tests/BuildSystem/lit.local.cfg: -------------------------------------------------------------------------------- 1 | config.suffixes = ['.llbuild'] 2 | -------------------------------------------------------------------------------- /tests/BuildSystem/usage.llbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/BuildSystem/usage.llbuild -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/Commands/basic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Commands/basic.txt -------------------------------------------------------------------------------- /tests/Commands/buildengine-ack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Commands/buildengine-ack.txt -------------------------------------------------------------------------------- /tests/Commands/lit.local.cfg: -------------------------------------------------------------------------------- 1 | config.suffixes = ['.txt'] 2 | -------------------------------------------------------------------------------- /tests/Examples/buildsystem-capi.llbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Examples/buildsystem-capi.llbuild -------------------------------------------------------------------------------- /tests/Examples/lit.local.cfg: -------------------------------------------------------------------------------- 1 | config.suffixes = ['.txt', '.llbuild'] 2 | -------------------------------------------------------------------------------- /tests/Ninja/Build/Inputs/check-open-fds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/Inputs/check-open-fds -------------------------------------------------------------------------------- /tests/Ninja/Build/Inputs/get-file-size: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/Inputs/get-file-size -------------------------------------------------------------------------------- /tests/Ninja/Build/Inputs/split-numbers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/Inputs/split-numbers -------------------------------------------------------------------------------- /tests/Ninja/Build/Inputs/ulimited: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/Inputs/ulimited -------------------------------------------------------------------------------- /tests/Ninja/Build/Inputs/wait-for-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/Inputs/wait-for-file -------------------------------------------------------------------------------- /tests/Ninja/Build/absolute-dependencies.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/absolute-dependencies.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/basic.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/basic.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/changed-commands.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/changed-commands.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/command-buffering.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/command-buffering.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/console-pool-input.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/console-pool-input.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/console-pool.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/console-pool.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/continue-on-failure.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/continue-on-failure.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/cycle-detection.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/cycle-detection.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/environment.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/environment.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/exit-status.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/exit-status.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/failing-commands.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/failing-commands.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/fifo.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/fifo.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/file-limit.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/file-limit.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/graphviz-output.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/graphviz-output.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/help.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/help.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/incremental.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/incremental.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/makefile-implicit-deps.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/makefile-implicit-deps.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/max-commands-progress.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/max-commands-progress.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/missing-depfile.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/missing-depfile.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/missing-inputs.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/missing-inputs.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/multiple-outputs.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/multiple-outputs.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/multiple-targets.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/multiple-targets.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/ninja-symlink.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/ninja-symlink.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/no-db.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/no-db.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/no-inputs.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/no-inputs.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/nonexistent-subdir.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/nonexistent-subdir.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/normalize-path.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/normalize-path.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/order-only-deps.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/order-only-deps.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/order-only-remove.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/order-only-remove.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/order-only-skip.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/order-only-skip.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/output-timestamps.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/output-timestamps.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/outputs.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/outputs.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/parallel.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/parallel.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/phony-extra-inputs.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/phony-extra-inputs.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/phony-inputs.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/phony-inputs.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/rebuild-manifest.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/rebuild-manifest.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/response-files.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/response-files.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/restat.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/restat.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/root-targets.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/root-targets.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/signal-handling.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/signal-handling.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/strip-colors.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/strip-colors.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/t-clean.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/t-clean.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/targets-tool.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/targets-tool.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/timestamp-collision.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/timestamp-collision.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/tracing-scanning.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/tracing-scanning.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/tracing.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/tracing.ninja -------------------------------------------------------------------------------- /tests/Ninja/Build/verbose.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Build/verbose.ninja -------------------------------------------------------------------------------- /tests/Ninja/Lexer/basic.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Lexer/basic.ninja -------------------------------------------------------------------------------- /tests/Ninja/Lexer/whitespace-skipping.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Lexer/whitespace-skipping.ninja -------------------------------------------------------------------------------- /tests/Ninja/Loader/Inputs/include-b-2.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Loader/Inputs/include-b-2.ninja -------------------------------------------------------------------------------- /tests/Ninja/Loader/Inputs/include-b.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Loader/Inputs/include-b.ninja -------------------------------------------------------------------------------- /tests/Ninja/Loader/Inputs/include-with-error.ninja: -------------------------------------------------------------------------------- 1 | I have an error on line 1 2 | -------------------------------------------------------------------------------- /tests/Ninja/Loader/builds.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Loader/builds.ninja -------------------------------------------------------------------------------- /tests/Ninja/Loader/console-pool.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Loader/console-pool.ninja -------------------------------------------------------------------------------- /tests/Ninja/Loader/default.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Loader/default.ninja -------------------------------------------------------------------------------- /tests/Ninja/Loader/dependency-format.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Loader/dependency-format.ninja -------------------------------------------------------------------------------- /tests/Ninja/Loader/include.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Loader/include.ninja -------------------------------------------------------------------------------- /tests/Ninja/Loader/json-dumping.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Loader/json-dumping.ninja -------------------------------------------------------------------------------- /tests/Ninja/Loader/pools.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Loader/pools.ninja -------------------------------------------------------------------------------- /tests/Ninja/Loader/rules.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Loader/rules.ninja -------------------------------------------------------------------------------- /tests/Ninja/Loader/subninja-rule-scoping.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Loader/subninja-rule-scoping.ninja -------------------------------------------------------------------------------- /tests/Ninja/Loader/variable-expansion.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Loader/variable-expansion.ninja -------------------------------------------------------------------------------- /tests/Ninja/Parser/basic.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Parser/basic.ninja -------------------------------------------------------------------------------- /tests/Ninja/Parser/identifier-names.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Parser/identifier-names.ninja -------------------------------------------------------------------------------- /tests/Ninja/Parser/path-string-parsing.ninja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Ninja/Parser/path-string-parsing.ninja -------------------------------------------------------------------------------- /tests/Ninja/lit.local.cfg: -------------------------------------------------------------------------------- 1 | config.suffixes = ['.ninja'] 2 | -------------------------------------------------------------------------------- /tests/Unit/lit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Unit/lit.cfg -------------------------------------------------------------------------------- /tests/Unit/lit.site.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/Unit/lit.site.cfg.in -------------------------------------------------------------------------------- /tests/lit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/lit.cfg -------------------------------------------------------------------------------- /tests/lit.site.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/tests/lit.site.cfg.in -------------------------------------------------------------------------------- /thirdparty/BLAKE3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/thirdparty/BLAKE3/LICENSE -------------------------------------------------------------------------------- /thirdparty/BLAKE3/c/blake3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/thirdparty/BLAKE3/c/blake3.c -------------------------------------------------------------------------------- /thirdparty/BLAKE3/c/blake3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/thirdparty/BLAKE3/c/blake3.h -------------------------------------------------------------------------------- /thirdparty/BLAKE3/c/blake3_dispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/thirdparty/BLAKE3/c/blake3_dispatch.c -------------------------------------------------------------------------------- /thirdparty/BLAKE3/c/blake3_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/thirdparty/BLAKE3/c/blake3_impl.h -------------------------------------------------------------------------------- /thirdparty/BLAKE3/c/blake3_portable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/thirdparty/BLAKE3/c/blake3_portable.c -------------------------------------------------------------------------------- /thirdparty/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/thirdparty/protobuf/LICENSE -------------------------------------------------------------------------------- /thirdparty/protobuf/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/thirdparty/protobuf/src/README.md -------------------------------------------------------------------------------- /thirdparty/protobuf/src/google/protobuf/any.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/thirdparty/protobuf/src/google/protobuf/any.cc -------------------------------------------------------------------------------- /thirdparty/protobuf/src/google/protobuf/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/thirdparty/protobuf/src/google/protobuf/any.h -------------------------------------------------------------------------------- /thirdparty/protobuf/src/google/protobuf/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/thirdparty/protobuf/src/google/protobuf/arena.h -------------------------------------------------------------------------------- /thirdparty/protobuf/src/google/protobuf/map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/thirdparty/protobuf/src/google/protobuf/map.cc -------------------------------------------------------------------------------- /thirdparty/protobuf/src/google/protobuf/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/thirdparty/protobuf/src/google/protobuf/map.h -------------------------------------------------------------------------------- /thirdparty/protobuf/src/google/protobuf/port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/thirdparty/protobuf/src/google/protobuf/port.cc -------------------------------------------------------------------------------- /thirdparty/protobuf/src/google/protobuf/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/thirdparty/protobuf/src/google/protobuf/port.h -------------------------------------------------------------------------------- /thirdparty/protobuf/src/google/protobuf/testdata/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/abseil-cpp/absl/time/internal/cctz/testdata/version: -------------------------------------------------------------------------------- 1 | 2023d 2 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/.travis_scripts/travis.before_install.osx.sh: -------------------------------------------------------------------------------- 1 | # NOTHING TO DO HERE 2 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/.travis_scripts/travis.install.osx.sh: -------------------------------------------------------------------------------- 1 | # NOTHING TO DO HERE 2 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/thirdparty/protobuf/third_party/jsoncpp/AUTHORS -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/thirdparty/protobuf/third_party/jsoncpp/LICENSE -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/example/readFromStream/errorFormat.json: -------------------------------------------------------------------------------- 1 | { 2 | 1: "value" 3 | } -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/fail_invalid_quote.json: -------------------------------------------------------------------------------- 1 | {'//this is bad JSON.'} -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/fail_test_array_01.json: -------------------------------------------------------------------------------- 1 | [ 1 2 3] 2 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/fail_test_array_02.json: -------------------------------------------------------------------------------- 1 | [1,,] 2 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/fail_test_object_01.json: -------------------------------------------------------------------------------- 1 | { "count" : 1234,, } 2 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_array_01.expected: -------------------------------------------------------------------------------- 1 | .=[] 2 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_array_01.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_array_02.expected: -------------------------------------------------------------------------------- 1 | .=[] 2 | .[0]=1 3 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_array_02.json: -------------------------------------------------------------------------------- 1 | [1] 2 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_array_03.json: -------------------------------------------------------------------------------- 1 | [ 1, 2 , 3,4,5] 2 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_array_04.json: -------------------------------------------------------------------------------- 1 | [1, "abc" , 12.3, -4] 2 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_basic_01.expected: -------------------------------------------------------------------------------- 1 | .=123456789 2 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_basic_01.json: -------------------------------------------------------------------------------- 1 | 0123456789 2 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_basic_02.expected: -------------------------------------------------------------------------------- 1 | .=-123456789 2 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_basic_02.json: -------------------------------------------------------------------------------- 1 | -0123456789 2 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_basic_03.expected: -------------------------------------------------------------------------------- 1 | .=1.2345678 2 | 3 | 4 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_basic_03.json: -------------------------------------------------------------------------------- 1 | 1.2345678 2 | 3 | 4 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_basic_04.expected: -------------------------------------------------------------------------------- 1 | .="abcdef" 2 | 3 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_basic_04.json: -------------------------------------------------------------------------------- 1 | "abcdef" 2 | 3 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_basic_05.expected: -------------------------------------------------------------------------------- 1 | .=null 2 | 3 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_basic_05.json: -------------------------------------------------------------------------------- 1 | null 2 | 3 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_basic_06.expected: -------------------------------------------------------------------------------- 1 | .=true 2 | 3 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_basic_06.json: -------------------------------------------------------------------------------- 1 | true 2 | 3 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_basic_07.expected: -------------------------------------------------------------------------------- 1 | .=false 2 | 3 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_basic_07.json: -------------------------------------------------------------------------------- 1 | false 2 | 3 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_basic_08.expected: -------------------------------------------------------------------------------- 1 | // C++ style comment 2 | .=null 3 | 4 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_basic_08.json: -------------------------------------------------------------------------------- 1 | // C++ style comment 2 | null 3 | 4 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_basic_09.expected: -------------------------------------------------------------------------------- 1 | /* C style comment 2 | */ 3 | .=null 4 | 5 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_basic_09.json: -------------------------------------------------------------------------------- 1 | /* C style comment 2 | */ 3 | null 4 | 5 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_integer_01.expected: -------------------------------------------------------------------------------- 1 | // Max signed integer 2 | .=2147483647 3 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_integer_01.json: -------------------------------------------------------------------------------- 1 | // Max signed integer 2 | 2147483647 3 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_integer_02.expected: -------------------------------------------------------------------------------- 1 | // Min signed integer 2 | .=-2147483648 3 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_integer_02.json: -------------------------------------------------------------------------------- 1 | // Min signed integer 2 | -2147483648 3 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_integer_03.expected: -------------------------------------------------------------------------------- 1 | // Max unsigned integer 2 | .=4294967295 3 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_integer_03.json: -------------------------------------------------------------------------------- 1 | // Max unsigned integer 2 | 4294967295 3 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_integer_04.expected: -------------------------------------------------------------------------------- 1 | // Min unsigned integer 2 | .=0 3 | 4 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_integer_04.json: -------------------------------------------------------------------------------- 1 | // Min unsigned integer 2 | 0 3 | 4 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_integer_05.expected: -------------------------------------------------------------------------------- 1 | .=1 2 | 3 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_integer_05.json: -------------------------------------------------------------------------------- 1 | 1 2 | 3 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_integer_06_64bits.expected: -------------------------------------------------------------------------------- 1 | .=9223372036854775808 2 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_integer_06_64bits.json: -------------------------------------------------------------------------------- 1 | 9223372036854775808 2 | 3 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_integer_07_64bits.expected: -------------------------------------------------------------------------------- 1 | .=-9223372036854775808 2 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_integer_07_64bits.json: -------------------------------------------------------------------------------- 1 | -9223372036854775808 2 | 3 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_integer_08_64bits.expected: -------------------------------------------------------------------------------- 1 | .=18446744073709551615 2 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_integer_08_64bits.json: -------------------------------------------------------------------------------- 1 | 18446744073709551615 2 | 3 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_object_01.expected: -------------------------------------------------------------------------------- 1 | .={} 2 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_object_01.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_object_02.expected: -------------------------------------------------------------------------------- 1 | .={} 2 | .count=1234 3 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_object_02.json: -------------------------------------------------------------------------------- 1 | { "count" : 1234 } 2 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_object_03.expected: -------------------------------------------------------------------------------- 1 | .={} 2 | .attribute="random" 3 | .count=1234 4 | .name="test" 5 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_object_04.expected: -------------------------------------------------------------------------------- 1 | .={} 2 | .=1234 3 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_object_04.json: -------------------------------------------------------------------------------- 1 | { 2 | "" : 1234 3 | } 4 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_real_01.json: -------------------------------------------------------------------------------- 1 | // 2^33 => out of integer range, switch to double 2 | 8589934592 3 | 4 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_real_12.expected: -------------------------------------------------------------------------------- 1 | // 2^64 -> switch to double. 2 | .=1.844674407370955e+19 3 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_real_12.json: -------------------------------------------------------------------------------- 1 | // 2^64 -> switch to double. 2 | 18446744073709551616 3 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_string_03.expected: -------------------------------------------------------------------------------- 1 | .="http://jsoncpp.sourceforge.net/" -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_string_03.json: -------------------------------------------------------------------------------- 1 | "http:\/\/jsoncpp.sourceforge.net\/" 2 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_string_04.expected: -------------------------------------------------------------------------------- 1 | .=""abc\def"" 2 | 3 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_string_04.json: -------------------------------------------------------------------------------- 1 | "\"abc\\def\"" 2 | 3 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_string_unicode_01.expected: -------------------------------------------------------------------------------- 1 | .="a" 2 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_string_unicode_01.json: -------------------------------------------------------------------------------- 1 | "\u0061" -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_string_unicode_02.expected: -------------------------------------------------------------------------------- 1 | .="¢" 2 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_string_unicode_02.json: -------------------------------------------------------------------------------- 1 | "\u00A2" -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_string_unicode_03.expected: -------------------------------------------------------------------------------- 1 | .="€" 2 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_string_unicode_03.json: -------------------------------------------------------------------------------- 1 | "\u20AC" -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_string_unicode_04.expected: -------------------------------------------------------------------------------- 1 | .="𝄞" 2 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_string_unicode_04.json: -------------------------------------------------------------------------------- 1 | "\uD834\uDD1E" -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_string_unicode_05.expected: -------------------------------------------------------------------------------- 1 | .="Zażółć gęślą jaźń" 2 | 3 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/legacy_test_string_unicode_05.json: -------------------------------------------------------------------------------- 1 | "Zażółć gęślą jaźń" -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/test_array_08.expected: -------------------------------------------------------------------------------- 1 | .=[] 2 | .[0]=1 3 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/test_array_08.json: -------------------------------------------------------------------------------- 1 | [1,] 2 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/test_object_05.expected: -------------------------------------------------------------------------------- 1 | .={} 2 | .count=1234 3 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/data/test_object_05.json: -------------------------------------------------------------------------------- 1 | { "count" : 1234, } 2 | -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/jsonchecker/fail1.json: -------------------------------------------------------------------------------- 1 | "A JSON payload should be an object or array, not a string." -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/jsonchecker/fail11.json: -------------------------------------------------------------------------------- 1 | {"Illegal expression": 1 + 2} -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/jsonchecker/fail12.json: -------------------------------------------------------------------------------- 1 | {"Illegal invocation": alert()} -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/jsonchecker/fail13.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot have leading zeroes": 013} -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/jsonchecker/fail14.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot be hex": 0x14} -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/jsonchecker/fail15.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \x15"] -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/jsonchecker/fail16.json: -------------------------------------------------------------------------------- 1 | [\naked] -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/jsonchecker/fail17.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \017"] -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/jsonchecker/fail19.json: -------------------------------------------------------------------------------- 1 | {"Missing colon" null} -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/jsonchecker/fail2.json: -------------------------------------------------------------------------------- 1 | ["Unclosed array" -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/jsonchecker/fail20.json: -------------------------------------------------------------------------------- 1 | {"Double colon":: null} -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/jsonchecker/fail21.json: -------------------------------------------------------------------------------- 1 | {"Comma instead of colon", null} -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/jsonchecker/fail22.json: -------------------------------------------------------------------------------- 1 | ["Colon instead of comma": false] -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/jsonchecker/fail23.json: -------------------------------------------------------------------------------- 1 | ["Bad value", truth] -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/jsonchecker/fail24.json: -------------------------------------------------------------------------------- 1 | ['single quote'] -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/jsonchecker/fail25.json: -------------------------------------------------------------------------------- 1 | [" tab character in string "] -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/jsonchecker/fail27.json: -------------------------------------------------------------------------------- 1 | ["line 2 | break"] -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/jsonchecker/fail28.json: -------------------------------------------------------------------------------- 1 | ["line\ 2 | break"] -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/jsonchecker/fail29.json: -------------------------------------------------------------------------------- 1 | [0e] -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/jsonchecker/fail30.json: -------------------------------------------------------------------------------- 1 | [0e+] -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/jsonchecker/fail31.json: -------------------------------------------------------------------------------- 1 | [0e+-1] -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/jsonchecker/fail32.json: -------------------------------------------------------------------------------- 1 | {"Comma instead if closing brace": true, -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/jsonchecker/fail33.json: -------------------------------------------------------------------------------- 1 | ["mismatch"} -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/jsonchecker/fail4.json: -------------------------------------------------------------------------------- 1 | ["extra comma",] -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/jsonchecker/fail5.json: -------------------------------------------------------------------------------- 1 | ["double extra comma",,] -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/jsonchecker/fail6.json: -------------------------------------------------------------------------------- 1 | [ , "<-- missing value"] -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/jsonchecker/fail7.json: -------------------------------------------------------------------------------- 1 | ["Comma after the close"], -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/jsonchecker/fail8.json: -------------------------------------------------------------------------------- 1 | ["Extra close"]] -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/test/jsonchecker/fail9.json: -------------------------------------------------------------------------------- 1 | {"Extra comma": true,} -------------------------------------------------------------------------------- /thirdparty/protobuf/third_party/jsoncpp/version.in: -------------------------------------------------------------------------------- 1 | @JSONCPP_VERSION@ 2 | -------------------------------------------------------------------------------- /thirdparty/protobuf/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/thirdparty/protobuf/version.json -------------------------------------------------------------------------------- /thirdparty/stduuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/thirdparty/stduuid/LICENSE -------------------------------------------------------------------------------- /thirdparty/stduuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/thirdparty/stduuid/README.md -------------------------------------------------------------------------------- /thirdparty/stduuid/include/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/thirdparty/stduuid/include/uuid.h -------------------------------------------------------------------------------- /thirdparty/swift-protobuf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/thirdparty/swift-protobuf/.gitignore -------------------------------------------------------------------------------- /thirdparty/swift-protobuf/.jazzy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/thirdparty/swift-protobuf/.jazzy.yaml -------------------------------------------------------------------------------- /thirdparty/swift-protobuf/.spi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/thirdparty/swift-protobuf/.spi.yml -------------------------------------------------------------------------------- /thirdparty/swift-protobuf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/thirdparty/swift-protobuf/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/swift-protobuf/Documentation/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/thirdparty/swift-protobuf/Documentation/API.md -------------------------------------------------------------------------------- /thirdparty/swift-protobuf/Documentation/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/thirdparty/swift-protobuf/Documentation/FAQ.md -------------------------------------------------------------------------------- /thirdparty/swift-protobuf/FuzzTesting/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /.swiftpm 4 | /Packages 5 | /*.xcodeproj 6 | xcuserdata/ 7 | /crash-* 8 | -------------------------------------------------------------------------------- /thirdparty/swift-protobuf/FuzzTesting/FailCases/TextFormat-map-loops-forever: -------------------------------------------------------------------------------- 1 | 104< -------------------------------------------------------------------------------- /thirdparty/swift-protobuf/FuzzTesting/FailCases/TextFormat-map-loops-forever2: -------------------------------------------------------------------------------- 1 | 104{ -------------------------------------------------------------------------------- /thirdparty/swift-protobuf/FuzzTesting/FailCases/TextFormat-octal-out-of-range: -------------------------------------------------------------------------------- 1 | 44:'2\50191<1:' -------------------------------------------------------------------------------- /thirdparty/swift-protobuf/FuzzTesting/FailCases/clusterfuzz-testcase-FuzzTextFormat_release-4619956026146816: -------------------------------------------------------------------------------- 1 | rsingular_sint64:- -------------------------------------------------------------------------------- /thirdparty/swift-protobuf/FuzzTesting/FailCases/clusterfuzz-testcase-minimized-FuzzJSON_release-4929034878844928: -------------------------------------------------------------------------------- 1 | {"wktAny": {}} -------------------------------------------------------------------------------- /thirdparty/swift-protobuf/FuzzTesting/FailCases/clusterfuzz-testcase-minimized-FuzzJSON_release-5689942715006976: -------------------------------------------------------------------------------- 1 | {"[fuzz.testing.singular_enum_ext]":null -------------------------------------------------------------------------------- /thirdparty/swift-protobuf/FuzzTesting/FailCases/clusterfuzz-testcase-minimized-FuzzTextFormat_release-4519429842010112: -------------------------------------------------------------------------------- 1 | 40#BB#4: 2 | : 3 | [0 -------------------------------------------------------------------------------- /thirdparty/swift-protobuf/FuzzTesting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/thirdparty/swift-protobuf/FuzzTesting/README.md -------------------------------------------------------------------------------- /thirdparty/swift-protobuf/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/thirdparty/swift-protobuf/LICENSE.txt -------------------------------------------------------------------------------- /thirdparty/swift-protobuf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/thirdparty/swift-protobuf/Makefile -------------------------------------------------------------------------------- /thirdparty/swift-protobuf/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/thirdparty/swift-protobuf/Package.swift -------------------------------------------------------------------------------- /thirdparty/swift-protobuf/Performance/.gitignore: -------------------------------------------------------------------------------- 1 | _generated/ 2 | _results/ 3 | -------------------------------------------------------------------------------- /thirdparty/swift-protobuf/Performance/Harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/thirdparty/swift-protobuf/Performance/Harness.h -------------------------------------------------------------------------------- /thirdparty/swift-protobuf/Performance/js/results.js.template: -------------------------------------------------------------------------------- 1 | sessions = [ 2 | //NEW-DATA-HERE 3 | ]; 4 | -------------------------------------------------------------------------------- /thirdparty/swift-protobuf/Performance/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/thirdparty/swift-protobuf/Performance/main.cc -------------------------------------------------------------------------------- /thirdparty/swift-protobuf/PluginExamples/Sources/Import/Bar/Bar.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | message Bar { 4 | string name = 1; 5 | } 6 | -------------------------------------------------------------------------------- /thirdparty/swift-protobuf/PluginExamples/Sources/Nested/Nested/Nested.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | message Nested { 4 | string name = 1; 5 | } 6 | -------------------------------------------------------------------------------- /thirdparty/swift-protobuf/PluginExamples/Sources/Simple/Simple.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | message Simple { 4 | string name = 1; 5 | } 6 | -------------------------------------------------------------------------------- /thirdparty/swift-protobuf/Protos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/thirdparty/swift-protobuf/Protos/README.md -------------------------------------------------------------------------------- /thirdparty/swift-protobuf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/thirdparty/swift-protobuf/README.md -------------------------------------------------------------------------------- /thirdparty/swift-protobuf/Sources/Conformance/failure_list_swift.txt: -------------------------------------------------------------------------------- 1 | # No known failures. 2 | -------------------------------------------------------------------------------- /thirdparty/swift-protobuf/Sources/Conformance/text_format_failure_list_swift.txt: -------------------------------------------------------------------------------- 1 | # No know failures. 2 | -------------------------------------------------------------------------------- /thirdparty/swift-protobuf/SwiftProtobuf.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/thirdparty/swift-protobuf/SwiftProtobuf.podspec -------------------------------------------------------------------------------- /unittests/Analysis/CriticalPathTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/unittests/Analysis/CriticalPathTests.swift -------------------------------------------------------------------------------- /unittests/Basic/BinaryCodingTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/unittests/Basic/BinaryCodingTests.cpp -------------------------------------------------------------------------------- /unittests/Basic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/unittests/Basic/CMakeLists.txt -------------------------------------------------------------------------------- /unittests/Basic/Defer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/unittests/Basic/Defer.cpp -------------------------------------------------------------------------------- /unittests/Basic/FileSystemTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/unittests/Basic/FileSystemTest.cpp -------------------------------------------------------------------------------- /unittests/Basic/LaneBasedExecutionQueueTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/unittests/Basic/LaneBasedExecutionQueueTest.cpp -------------------------------------------------------------------------------- /unittests/Basic/POSIXEnvironmentTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/unittests/Basic/POSIXEnvironmentTest.cpp -------------------------------------------------------------------------------- /unittests/Basic/SerialQueueTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/unittests/Basic/SerialQueueTest.cpp -------------------------------------------------------------------------------- /unittests/Basic/ShellUtilityTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/unittests/Basic/ShellUtilityTest.cpp -------------------------------------------------------------------------------- /unittests/Basic/TempDir.cpp: -------------------------------------------------------------------------------- 1 | ../BuildSystem/TempDir.cpp -------------------------------------------------------------------------------- /unittests/Basic/TempDir.h: -------------------------------------------------------------------------------- 1 | ../BuildSystem/TempDir.h -------------------------------------------------------------------------------- /unittests/Basic/main.cpp: -------------------------------------------------------------------------------- 1 | ../../utils/unittest/UnitTestMain/TestMain.cpp -------------------------------------------------------------------------------- /unittests/BuildSystem/BuildSystemTaskTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/unittests/BuildSystem/BuildSystemTaskTests.cpp -------------------------------------------------------------------------------- /unittests/BuildSystem/BuildValueTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/unittests/BuildSystem/BuildValueTest.cpp -------------------------------------------------------------------------------- /unittests/BuildSystem/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/unittests/BuildSystem/CMakeLists.txt -------------------------------------------------------------------------------- /unittests/BuildSystem/MockBuildSystemDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/unittests/BuildSystem/MockBuildSystemDelegate.h -------------------------------------------------------------------------------- /unittests/BuildSystem/TempDir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/unittests/BuildSystem/TempDir.cpp -------------------------------------------------------------------------------- /unittests/BuildSystem/TempDir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/unittests/BuildSystem/TempDir.h -------------------------------------------------------------------------------- /unittests/BuildSystem/main.cpp: -------------------------------------------------------------------------------- 1 | ../../utils/unittest/UnitTestMain/TestMain.cpp -------------------------------------------------------------------------------- /unittests/CAPI/BuildSystem-C-API.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/unittests/CAPI/BuildSystem-C-API.cpp -------------------------------------------------------------------------------- /unittests/CAPI/C-API.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/unittests/CAPI/C-API.cpp -------------------------------------------------------------------------------- /unittests/CAPI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/unittests/CAPI/CMakeLists.txt -------------------------------------------------------------------------------- /unittests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/unittests/CMakeLists.txt -------------------------------------------------------------------------------- /unittests/Core/BuildEngineCancellationTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/unittests/Core/BuildEngineCancellationTest.cpp -------------------------------------------------------------------------------- /unittests/Core/BuildEngineTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/unittests/Core/BuildEngineTest.cpp -------------------------------------------------------------------------------- /unittests/Core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/unittests/Core/CMakeLists.txt -------------------------------------------------------------------------------- /unittests/Core/DependencyInfoParserTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/unittests/Core/DependencyInfoParserTest.cpp -------------------------------------------------------------------------------- /unittests/Core/DepsBuildEngineTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/unittests/Core/DepsBuildEngineTest.cpp -------------------------------------------------------------------------------- /unittests/Core/MakefileDepsParserTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/unittests/Core/MakefileDepsParserTest.cpp -------------------------------------------------------------------------------- /unittests/Core/SQLiteBuildDBTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/unittests/Core/SQLiteBuildDBTest.cpp -------------------------------------------------------------------------------- /unittests/Core/main.cpp: -------------------------------------------------------------------------------- 1 | ../../utils/unittest/UnitTestMain/TestMain.cpp -------------------------------------------------------------------------------- /unittests/Evo/main.cpp: -------------------------------------------------------------------------------- 1 | ../../utils/unittest/UnitTestMain/TestMain.cpp -------------------------------------------------------------------------------- /unittests/Ninja/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/unittests/Ninja/CMakeLists.txt -------------------------------------------------------------------------------- /unittests/Ninja/LexerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/unittests/Ninja/LexerTest.cpp -------------------------------------------------------------------------------- /unittests/Ninja/ManifestTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/unittests/Ninja/ManifestTest.cpp -------------------------------------------------------------------------------- /unittests/Ninja/main.cpp: -------------------------------------------------------------------------------- 1 | ../../utils/unittest/UnitTestMain/TestMain.cpp -------------------------------------------------------------------------------- /unittests/Swift/BuildDBBindingsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/unittests/Swift/BuildDBBindingsTests.swift -------------------------------------------------------------------------------- /unittests/Swift/BuildKeyTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/unittests/Swift/BuildKeyTests.swift -------------------------------------------------------------------------------- /unittests/Swift/BuildSystemBindingsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/unittests/Swift/BuildSystemBindingsTests.swift -------------------------------------------------------------------------------- /unittests/Swift/BuildSystemEngineTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/unittests/Swift/BuildSystemEngineTests.swift -------------------------------------------------------------------------------- /unittests/Swift/BuildValueTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/unittests/Swift/BuildValueTests.swift -------------------------------------------------------------------------------- /unittests/Swift/SwiftNinjaTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/unittests/Swift/SwiftNinjaTests.swift -------------------------------------------------------------------------------- /unittests/llbuild3CoreTests/CASTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/unittests/llbuild3CoreTests/CASTests.swift -------------------------------------------------------------------------------- /unittests/llbuild3CoreTests/EngineTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/unittests/llbuild3CoreTests/EngineTests.swift -------------------------------------------------------------------------------- /utils/Xcode/LitXCTestAdaptor/LitTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/Xcode/LitXCTestAdaptor/LitTests.m -------------------------------------------------------------------------------- /utils/Xcode/LitXCTestAdaptor/LitTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/Xcode/LitXCTestAdaptor/LitTests.py -------------------------------------------------------------------------------- /utils/Xcode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/Xcode/README.md -------------------------------------------------------------------------------- /utils/Xcode/build-sphinx-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/Xcode/build-sphinx-docs.sh -------------------------------------------------------------------------------- /utils/Xcode/create-lit-site-cfg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/Xcode/create-lit-site-cfg.sh -------------------------------------------------------------------------------- /utils/Xcode/create-target-link.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/Xcode/create-target-link.sh -------------------------------------------------------------------------------- /utils/Xcode/execute-lit-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/Xcode/execute-lit-tests.sh -------------------------------------------------------------------------------- /utils/Xcode/install-user-lit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/Xcode/install-user-lit.sh -------------------------------------------------------------------------------- /utils/Xcode/install-user-sphinx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/Xcode/install-user-sphinx.sh -------------------------------------------------------------------------------- /utils/adjust-times/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/adjust-times/CMakeLists.txt -------------------------------------------------------------------------------- /utils/adjust-times/adjust-times.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/adjust-times/adjust-times.cpp -------------------------------------------------------------------------------- /utils/build-and-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/build-and-test -------------------------------------------------------------------------------- /utils/build_proto_toolchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/build_proto_toolchain.sh -------------------------------------------------------------------------------- /utils/check-all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/check-all -------------------------------------------------------------------------------- /utils/check-coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/check-coverage -------------------------------------------------------------------------------- /utils/create-dummy-ninja-from-DB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/create-dummy-ninja-from-DB.py -------------------------------------------------------------------------------- /utils/docker/Dockerfile-14.04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/docker/Dockerfile-14.04 -------------------------------------------------------------------------------- /utils/docker/Dockerfile-16.04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/docker/Dockerfile-16.04 -------------------------------------------------------------------------------- /utils/docker/Dockerfile-18.04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/docker/Dockerfile-18.04 -------------------------------------------------------------------------------- /utils/docker/docker-utils: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/docker/docker-utils -------------------------------------------------------------------------------- /utils/docker/requirements.txt: -------------------------------------------------------------------------------- 1 | PyYAML>=4.2b1 2 | -------------------------------------------------------------------------------- /utils/emacs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/emacs/README.md -------------------------------------------------------------------------------- /utils/emacs/llbuild-project-settings.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/emacs/llbuild-project-settings.el -------------------------------------------------------------------------------- /utils/import-llvm/cmake/demangleCMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/import-llvm/cmake/demangleCMakeLists.txt -------------------------------------------------------------------------------- /utils/import-llvm/cmake/llvmCMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/import-llvm/cmake/llvmCMakeLists.txt -------------------------------------------------------------------------------- /utils/import-llvm/cmake/supportCMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/import-llvm/cmake/supportCMakeLists.txt -------------------------------------------------------------------------------- /utils/import-llvm/import-llvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/import-llvm/import-llvm -------------------------------------------------------------------------------- /utils/import-llvm/include/llvm/Config/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/import-llvm/include/llvm/Config/config.h -------------------------------------------------------------------------------- /utils/install-sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/install-sources -------------------------------------------------------------------------------- /utils/ptreetime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/ptreetime/README.md -------------------------------------------------------------------------------- /utils/ptreetime/libptreetime/.gitignore: -------------------------------------------------------------------------------- 1 | *.dylib 2 | -------------------------------------------------------------------------------- /utils/ptreetime/libptreetime/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/ptreetime/libptreetime/Makefile -------------------------------------------------------------------------------- /utils/ptreetime/libptreetime/ptreetime.dtrace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/ptreetime/libptreetime/ptreetime.dtrace -------------------------------------------------------------------------------- /utils/ptreetime/ptreetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/ptreetime/ptreetime.py -------------------------------------------------------------------------------- /utils/unittest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/unittest/CMakeLists.txt -------------------------------------------------------------------------------- /utils/unittest/UnitTestMain/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/unittest/UnitTestMain/CMakeLists.txt -------------------------------------------------------------------------------- /utils/unittest/UnitTestMain/TestMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/unittest/UnitTestMain/TestMain.cpp -------------------------------------------------------------------------------- /utils/unittest/googlemock/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/unittest/googlemock/LICENSE.txt -------------------------------------------------------------------------------- /utils/unittest/googlemock/README.LLVM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/unittest/googlemock/README.LLVM -------------------------------------------------------------------------------- /utils/unittest/googlemock/include/gmock/gmock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/unittest/googlemock/include/gmock/gmock.h -------------------------------------------------------------------------------- /utils/unittest/googlemock/src/gmock-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/unittest/googlemock/src/gmock-all.cc -------------------------------------------------------------------------------- /utils/unittest/googlemock/src/gmock-matchers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/unittest/googlemock/src/gmock-matchers.cc -------------------------------------------------------------------------------- /utils/unittest/googlemock/src/gmock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/unittest/googlemock/src/gmock.cc -------------------------------------------------------------------------------- /utils/unittest/googletest/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/unittest/googletest/LICENSE.TXT -------------------------------------------------------------------------------- /utils/unittest/googletest/README.LLVM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/unittest/googletest/README.LLVM -------------------------------------------------------------------------------- /utils/unittest/googletest/include/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/unittest/googletest/include/gtest/gtest.h -------------------------------------------------------------------------------- /utils/unittest/googletest/src/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/unittest/googletest/src/gtest-all.cc -------------------------------------------------------------------------------- /utils/unittest/googletest/src/gtest-filepath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/unittest/googletest/src/gtest-filepath.cc -------------------------------------------------------------------------------- /utils/unittest/googletest/src/gtest-matchers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/unittest/googletest/src/gtest-matchers.cc -------------------------------------------------------------------------------- /utils/unittest/googletest/src/gtest-port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/unittest/googletest/src/gtest-port.cc -------------------------------------------------------------------------------- /utils/unittest/googletest/src/gtest-printers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/unittest/googletest/src/gtest-printers.cc -------------------------------------------------------------------------------- /utils/unittest/googletest/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/unittest/googletest/src/gtest.cc -------------------------------------------------------------------------------- /utils/write-swift-version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/utils/write-swift-version -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-llbuild/HEAD/vcpkg.json --------------------------------------------------------------------------------