├── .github └── workflows │ └── tools.yml ├── .gitignore ├── .idea ├── .gitignore ├── codeStyleSettings.xml ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── compiler-explorer-tools.iml ├── copyright │ └── profiles_settings.xml ├── deployment.xml ├── encodings.xml ├── inspectionProfiles │ └── Project_Default.xml ├── jsLinters │ └── jshint.xml ├── libraries │ └── .gitignore ├── misc.xml ├── modules.xml ├── vcs.xml ├── watcherTasks.xml └── webResources.xml ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── Makefile ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── d ├── .gitignore ├── Makefile └── demangle.d ├── get_compilers.sh ├── haskell ├── .gitignore ├── Makefile └── demangle.hs └── rust ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── rustfilt.iml └── src └── main.rs /.github/workflows/tools.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/tools/HEAD/.github/workflows/tools.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/tools/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/tools/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyleSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/tools/HEAD/.idea/codeStyleSettings.xml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/tools/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/tools/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/compiler-explorer-tools.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/tools/HEAD/.idea/compiler-explorer-tools.iml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/tools/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/tools/HEAD/.idea/deployment.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/tools/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/tools/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/jsLinters/jshint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/tools/HEAD/.idea/jsLinters/jshint.xml -------------------------------------------------------------------------------- /.idea/libraries/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/tools/HEAD/.idea/libraries/.gitignore -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/tools/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/tools/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/tools/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/watcherTasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/tools/HEAD/.idea/watcherTasks.xml -------------------------------------------------------------------------------- /.idea/webResources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/tools/HEAD/.idea/webResources.xml -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/tools/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/tools/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/tools/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/tools/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/tools/HEAD/Makefile -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/tools/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/tools/HEAD/README.md -------------------------------------------------------------------------------- /d/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/tools/HEAD/d/.gitignore -------------------------------------------------------------------------------- /d/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/tools/HEAD/d/Makefile -------------------------------------------------------------------------------- /d/demangle.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/tools/HEAD/d/demangle.d -------------------------------------------------------------------------------- /get_compilers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/tools/HEAD/get_compilers.sh -------------------------------------------------------------------------------- /haskell/.gitignore: -------------------------------------------------------------------------------- 1 | *.hi 2 | *.o 3 | *.so* 4 | demangle 5 | -------------------------------------------------------------------------------- /haskell/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/tools/HEAD/haskell/Makefile -------------------------------------------------------------------------------- /haskell/demangle.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/tools/HEAD/haskell/demangle.hs -------------------------------------------------------------------------------- /rust/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | bin 3 | .crates.toml 4 | -------------------------------------------------------------------------------- /rust/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/tools/HEAD/rust/Cargo.lock -------------------------------------------------------------------------------- /rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/tools/HEAD/rust/Cargo.toml -------------------------------------------------------------------------------- /rust/rustfilt.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/tools/HEAD/rust/rustfilt.iml -------------------------------------------------------------------------------- /rust/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/compiler-explorer/tools/HEAD/rust/src/main.rs --------------------------------------------------------------------------------