aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/hlsl.ts
Commit message (Collapse)AuthorAge
* eslint root setting and fixes (#6307)gh-11409Patrick Quist2024-04-16
|
* Since ES6 there's no reason to use `underscore`s map and filter (#5989)gh-10149Ofek2024-01-13
| | | | | | | | | | | | Mindless replacements of the form `_.filter(options, option =>...` --> `options.filter(option =>...`. One not *entirely* mindless replacement at the bottom of compiler-dropin-tool.ts : ``` - return _.filter(pathFilteredFlags) as string[]; + return pathFilteredFlags.filter(Boolean) as string[]; ``` 6 files can now stop importing underscore.
* Add Racket optimisation pipeline (#5836)gh-9905J. Ryan Stinnett2023-12-11
| | | | | | | | | | | | | | | | | | | | | This adds a Racket optimisation pipeline view by reusing the existing LLVM-focused optimisation pipeline UI. A Racket-specific pass parser translates its output into passes for the UI to present. This new Racket optimisation pipeline view is currently only enabled for Racket nightly, as it depends on [recent changes](https://github.com/racket/racket/pull/4842) to Racket's compiler output to function. This also extends the opt pipeline view to allow customising the function selector label as well as the options and filters for each compiler where needed. ![image](https://github.com/compiler-explorer/compiler-explorer/assets/279572/f540b41e-fd55-4375-bb2d-a0bb977530b3) --------- Co-authored-by: Matt Godbolt <matt@godbolt.org>
* Rename opt pipeline without LLVM prefix (#5828)gh-9794J. Ryan Stinnett2023-12-03
| | | | | | | | | | | This prepares for future work that will reuse the opt pipeline view outside of the LLVM ecosystem by renaming related components to remove the LLVM prefix. The pass dumper keep its LLVM prefix, as it is assumed this part is likely to be customised for each compiler ecosystem. The historical component name has been preserved in the component list as an alias to keep old links working.
* Fix #4654 (#5749)gh-9567Ofek2023-11-13
| | | | | | | Apparently AST for ldc is an abuse of terminology, as it doesn't produces anything resembling a syntax tree: https://github.com/dlang/dmd/pull/6556#issuecomment-282353400 . It is potentially meaningful only to ldc developers. Anyway the `generateAST` result type is fixed, along with some other small stuff around.
* Support the opt pipeline view in dxc for HLSL (#5704)gh-9393Justin Bogner2023-11-04
|
* Add AST viewer support for HLSL/DXC (#5627)gh-9164Cassandra Beckley2023-10-22
| | | | | | | | | | | | | | | | <!-- THIS COMMENT IS INVISIBLE IN THE FINAL PR, BUT FEEL FREE TO REMOVE IT Thanks for taking the time to improve CE. We really appreciate it. Before opening the PR, please make sure that the tests & linter pass their checks, by running `make check`. In the best case scenario, you are also adding tests to back up your changes, but don't sweat it if you don't. We can discuss them at a later date. Feel free to append your name to the CONTRIBUTORS.md file Thanks again, we really appreciate this! --> Since DXC is a fork of Clang from LLVM 3.7, the AST can be generated and parsed in a manner similar to the Clang AST.
* Use the SPIR-V parser for DXC SPIR-V output (#5418)gh-8674Cassandra Beckley2023-09-04
|
* Transition to ECMAScript Modules (#4780)gh-6536Mats Jun Larsen2023-02-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Makes the Compiler Explorer app, and all the tooling ESM compatible. Things that have been done: 1. The package.json has `type: module` now 2. All relative imports have a .js ending 3. All directory imports are now directory/index.js to comply with ESM standards 4. Dependency node-graceful is now imported into tree, because the package is broken under esm 5. Dependency p-queue has been bumped to 7.x with ESM support 6. Dependency profanities has been bumped to 3.x with ESM support 7. Webpack config is now both ESM and CommonJS compatible 8. Non-ESM compatible imports have been rewritten 9. ESLint configuration has been tweaked to not fail on .js imports 10. Mocha is now hacked together and ran with ts-node-esm 11. Webpack is now hacked together and ran with ts-node-esm 12. Webpack config is now ESM compatible, so that it can be used in the dev server 13. Cypress code still runs commonjs, and has been excluded from the tsconfig 14. All sinon mock tests have been commented out, because sinon module mocks do not work with ESModules (because ESModules are immutable) A lot of tests are now giving warnings/errors to stdout, yet still pass. Docenizer codegenerator scripts have been updated, but I did not re-run them, and instead just changed their code. --------- Co-authored-by: Matt Godbolt <matt@godbolt.org>
* Fix trailing comma issue (#4775)gh-6504Jeremy Rifkin2023-02-26
| | | | | Make trailing commas more consistent throughout the project, fixes config conflict between eslint and prettier. Resolves an oversight in #4766.
* Turn some auto-fixable eslint rules back on (#4766)gh-6434Jeremy Rifkin2023-02-23
| | | | | | This PR turns comma-dangle and indent eslint rules on for lib/. These are rules inherited from the eslint config for static/, this PR just makes things more consistent. Also turned @typescript-eslint/no-var-requires back on while I was here.
* refactor: renames the CompilerFilters type (#4346)gh-5117Marc Poulhiès2022-11-28
| | | | | | | | | | | | | | | The type which probably started as a real enum of possible post filtering options now also includes options used for compilers' invocations. The type was already split, but the naming was not reflecting this in the other part of the code. This changes tries to apply a simple renaming to the type only (corresponding variables are left as 'filters'). While doing so, some typing error were discovered around the GccDump feature. A fix for this will follow in a different PR. Signed-off-by: Marc Poulhiès <dkm@kataplop.net>
* Add RGA compiler support to HLSL (#3961)gh-3951Jeremy Ong2022-08-17
* Add RGA compiler support to HLSL AMD's Radeon GPU Analyzer (RGA) tool is an indispensible tool for graphics programmers to inspect the instructions that will be compiled by the driver for a given shader and GPU. The integration of this compiler into CE is slightly unconventional for reasons to be explained here: When trying to compile HLSL directly to ISA, RGA requires a full pipeline state description (specified for graphics pipelines using a gpso file), and a root signature, since changes to either affect how resources and data within the shader are accessed or written to. Specifying both is difficult to the extent that it would add significant usage friction to the tool. An informal survey among other senior graphics programming practitioners suggested unanimous agreement to infer both pipeline state and root signature where possible, with the expectation that if more accurate ISA code was needed, RGA could be used directly offline. Fortunately, RGA supplies an alternative workflow, wherein SPIR-V code can be compiled directly to the approximate ISA, bypassing both the pipeline and root signature requirement. To use RGA, the following steps are performed: 1. Use the default DXC compiler to emit SPIR-V as text to a temporary file in the selected temp folder. 2. Compile the ISA using RGA, consuming the output of step 1 3. Rename the resulting file to the output file CE expects In addition, a non-standard argument --asic is added to the user options. This argument is filtered for DXC, but for RGA is forwarded as the selected ASIC to emit ISA for. These steps are performed by a single `rga.js` script, which is invoked as an executable. This chaining could have been added within CE library code directly, but being an atypical flow, felt more appropriate as a separate script (which has the benefit of faster iteration, due to being loaded on each compilation request). The paths to DXC and RGA are supplied as arguments through a simple CLI interface. NOTE: This commit also adds `-Zi` and `-Qembed_debug` flags to both DXC and RGA, which provides line association data for DXIL. Signed-off-by: Jeremy Ong <jeremycong@gmail.com> * Incorporate PR feedback (see commit body) This commit introduces several changes: - HLSL compiler is now Typescript - A new RGACompiler Typescript class is used to invoke RGA - The multi-phase compilation that was previously done using a Node script now leverages the existing sandboxed execution facilities - The DXC compiler is configurable as a property on the RGA configuration, and an example is provided in hlsl.defaults.properties As there are several steps needed to compile HLSL to AMD ISA as before, as steps are done asynchronously so the runtime can continue to service other requests during compilation (either DXC or RGA) or file I/O. Signed-off-by: Jeremy Ong <jeremycong@gmail.com> Signed-off-by: Jeremy Ong <jeremycong@gmail.com> Co-authored-by: Rubén Rincón Blanco <ruben@rinconblanco.es>