Граф коммитов

3496 Коммитов

Автор SHA1 Сообщение Дата
Chris B b392672be3
Fix llvm::BitVector::resize (#4008)
This bug has been latent for a long time, and was exposed by getting
the unit tests running again. When resizing the buffer we were not
copying all the bits. That's bad...
2021-10-14 15:18:03 -05:00
Chris B 4a2ea59d6a
Enable building llvm-dis (#3999)
* Enable building llvm-dis

llvm-dis is a lightweight tool for reading IR modules as bitcode and
dumping them as textual IR. It is useful for debugging and verification
of bitcode-related issues.

This patch just re-enables the llvm-dis build and updates the code to
build cleanly on *nix systems.

* Fix broken windows build

I need to cleanup the WinIncludes usage, but that can be a seprate PR.
2021-10-12 21:39:52 -05:00
Greg Roth 833657810a
Use a type-appropriate 2.0 for reflect (#3998)
The reflection calculation involves a multiply by two that was always
float, which caused an internal assert when the variable was not float.
Now the constant uses the type of the other operand
2021-10-12 10:33:37 -07:00
Adam Yang ac1683bb94
Better way to check if a CallInst is a debug inst (#3997) 2021-10-11 22:16:12 -07:00
Adam Yang 029634871a
-Zs now appears next to Zi in the help text (#3996) 2021-10-11 16:45:17 -07:00
Chris B 058640e4d4
[Templates] Resolve literal types to 32-bit types (#3994)
When resolving template argument types if the originating type is a
literal type (i.e. `literal float` or `literal int`), we should instead
substitute the appropriate 32-bit type.

This change is two pieces:

The first translates template arguments from `literal <x>` into the
appropriate 32-bit type after deduction but before generating the
instantiated decl for non-builtin templates.

The second part allows `literal <x>` template parameters to match
against the appropriate instantiated 32-bit types.

This resolves #3973.
2021-10-11 14:11:35 -05:00
Chris B f1d310bec7
Fix cast construction in template instantiation for Constant and Texture buffers (#3991)
* Revert "Fix crash in Sema::CheckDerivedToBaseConversion when Paths is
empty. (#3327)"

This reverts commit 2903170ac5, but keeps
the test case, as the test case is important.

* Generate FlatConversion for buffer member access

ConstantBuffers and TextureBuffers need to behave at the AST level as
if they implicitly convert to the underlying buffer data type.

We do this when generting the AST, but we don't have the proper
overrides in place in `Sema::PerformObjectMemberConversion`.

This is the root cause of issue #3327, so this change should be layered
on a revert of 2903170ac.

This also addresses #3972.

'beanz/beanz/constant-buffer-template-issue-3972'.
../tools/clang/test/HLSLFileCheck/hlsl/template/BufferInExpansion.hlsl

'beanz/beanz/constant-buffer-template-issue-3972'.
../tools/clang/test/HLSLFileCheck/hlsl/template/BufferInExpansion.hlsl

'beanz/beanz/constant-buffer-template-issue-3972'.
../tools/clang/test/HLSLFileCheck/hlsl/template/BufferInExpansion.hlsl
2021-10-11 11:14:35 -05:00
Adam Yang cb2743b546
Checking the called object is a function in MS validation. (#3995) 2021-10-07 17:12:39 -07:00
Greg Roth 66c0eeefdc
Properly handle parsed HLSL tokens (#3993)
Several instances of handling token strings made the assumption that
the strings were null terminated though they were not necessarily.

By changing the processing to using the full StringRef, the length is
used and the potential for reading invalid characters is eliminated

64-bit linux has 8 byte longs where Windows always uses 4 bytes. As a
result, the strings that exceeded the maximum 32-bit representation on
such platforms were not failing for extreme space/register values as
expected
2021-10-07 14:21:50 -07:00
Chris B b55eb88561
Convert cmake-predefined-config-params to cache (#3918)
CMake supports passing in CMake scripts via the `-C` command line
option, which can set CMake cache variables to initialize options
before the first CMakeLists file is processed. This is a portable and
shell-agnostic way of supporting what the
`cmake-predefined-config-params` file is used for.
2021-10-05 17:49:07 -05:00
Chris B 46d97b8cfe
[NFC] Silence a few new clang warnings (#3989)
Clang has added new warnings for possible unintended string
concatenations. When concatonating strings in an array literal warpping
the concatenation in parentesis quiets the warning.
2021-10-05 13:24:11 -05:00
Adam Yang 6a3ae13ff4
Od fixes sep2021 (#3990) 2021-10-05 03:28:21 -07:00
Jeff Noyle d23ede6fc5
PIX: Changes to run PIX passes on libraries. Also add raygen shader debugging prolog (#3985)
These changes are a result of prototype work in PIX to support shader debugging for DXR,, which was an exercise to figure out how to support libraries in general in PIX. These changes are the result. It's all about iterating over all the library functions, rather than "the" entry point function.
In addition, to have something concrete to submit to a driver, there's the addition of codegen for the shader debugging "prolog", which chooses at runtime whether or not to emit instrumentation data for a given shader invocation based on its (in this case) thread id. This last is not yet ready for production in PIX, in that it is necessary but not sufficient to enable DXR shader debugging.
2021-10-04 15:37:50 -07:00
Adam Yang 9b281d0de6
Fixed structurized return when there are phi's from shortcircuiting. (#3981) 2021-10-02 13:55:47 -07:00
Grace Jennings b44b76d1ad
Consistent order gradient ops warnings. (#3984)
Consistent order gradient ops warnings. Added order checking to existing tests.
2021-10-01 15:14:06 -07:00
Tex Riddell 6683f4d9f9
Fix missing RDAT function resource usage by recursing constant users (#3983)
Before module serialization, constant users of resource globals could themselves have multiple constant users. These could be consolidated through module serialization/deserialization, leading to a difference when only the first constant user was followed. The difference could lead to a validation failure only with external validator (DXIL.dll) since reconstructed RDAT would not match the original RDAT with the missing use. This would happen in cases such as identical constant indexing of resource arrays from multiple entries.

Also, fix groupshared usage detection when setting function compat flags for RDAT.
2021-10-01 12:14:36 -07:00
Tex Riddell 8235aac55d
Follow HLSL rule for shift ops during constant folding (#3976)
- Shift operators (Shl, LShr, AShr) use (RHS & (bitwidth-1))
  (5 LSB for 32-bit operation, 6 LSB for 64-bit operation)
2021-09-30 16:32:31 -07:00
Jaebaek Seo 71cffd43e2
[spirv] update SPIRV-Tools and SPIRV-Headers submodules (#3979) 2021-09-30 10:23:47 -04:00
Greg Roth c26f369b5c
Enable -HV 2021 (#3982)
Enables the associated feature flags when 2021 is selected. Also adds a
feature flag for bitfields.

Add to all feature tests a variant that uses -HV 2021

Made some small changes to a template test that relied on vector
operands with binary logical operators
2021-09-29 19:00:44 -07:00
Chris B 8a1e9700e2
[NFC] Add additional helper methods for DXT::ResourceKind (#3975)
* Added `IsAnyTextureArray`, `IsAnyTextureCube`, and `IsArrayKind`
helper
methods.
* Added test case for all non-trival `Is...(ResouceKind)` methods
2021-09-29 15:17:47 -05:00
Xiang Li 207cc4a694
Always update end scope when structurize returns. (#3977)
* Always update end scope when structurize returns.
2021-09-28 19:06:50 -07:00
Adam Yang abbcb9f14e
Fixed an assert when a dxil error happens with global variable (#3974) 2021-09-28 10:09:28 -07:00
JiaoluAMD de6a8ed4ae
[SPIRV] Add support of the GL_EXT_spirv_intrinsics (#3949)
[SPIRV] Add support of the GL_EXT_spirv_intrinsics

Related to the issue: https://github.com/microsoft/DirectXShaderCompiler/issues/3919
Add these attributes

vk::ext_capability
vk::ext_extension
vk::ext_instruction
vk::ext_reference
vk::ext_literal

Note this commit allows the redeclaration of a HLSL intrinsic function using a function declaration with `vk::ext_instruction`.

Co-authored-by: Jaebaek Seo <jaebaek@google.com>
2021-09-24 11:15:04 -04:00
Greg Roth f008085313
Merge pull request #3968 from microsoft/merge-hlsl2021-master
Merge hlsl2021 master
2021-09-23 10:51:09 -06:00
JiaoluAMD d5fb0499f0
Expand AttrKind from 8bit to 32 bits (#3967)
Attributes size exceeds to the limit of the 255, use 32 bit AttrKind
2021-09-23 09:34:39 -07:00
Tex Riddell 5d2a08ee30
Fix cbuffer variable usage in reflection for SM 6.6 (#3966) 2021-09-23 08:23:50 -07:00
Jeff Noyle 4b8202a7a7
PIX: Disambiguate mesh shader activity based on full XYZ dispatch paramete… (#3960)
PIX's mesh shader output instrumentation needs to disambiguate groups of mesh shader invocations, so that PIX can reconstruct the intended mesh after the fact. In the case where an amplification shader is present, the previous code was incomplete: it included only the X value of the mesh shader's group ID relative to the AS DispatchMesh call. The full XYZ value is needed. Unfortunately, this value does not necessarily fit into a single DWORD for returning to PIX via the instrumentation, but various spec constraints mean that the product of the group ID cube's dimensions will fit in a DWORD.
So this change expands the custom data added to the AS->MS payload to include the Y and Z group counts that the AS passed to DispatchMesh. The mesh shader can then multiply its group ID's component values by these counts in order to come up with a single unique group ID value.
2021-09-21 19:29:07 -07:00
Tex Riddell 538c203a5b
Fix bugs in signature reflection, add signatures to dumper and tests (#3961)
- Fix Barycentric system value translation
- Increment Register for array elements
- Add signature dumping to D3DReflectionDumper, plus other minor fixes
- Dump PatchConstantParameters when mesh shader
2021-09-21 14:13:00 -07:00
Greg Roth a4dfa1c40c Merge remote-tracking branch 'origin/hlsl-2021' into merge-hlsl2021-master 2021-09-21 13:01:07 -07:00
Greg Roth f1405e3542
Limit Sema intrinsic checks to builtin "op" table (#3963)
The check for short curcuit intrinsics failed to account for
intrinsic tables other than the default. This ensures that assumption is
correct before performing the check

Added a few other checks for similar uses
2021-09-21 12:47:24 -07:00
Lukas Hermanns a6cf6a06b6
Fix build when `SUPPORT_QUERY_GIT_COMMIT_INFO` is disabled (#3745)
* Use IDxcVersionInfo instead of IDxcVersionInfo2 when git commit info is not available.

* Always add null terminator byte count to 'VersionStringListSizeInBytes'.
2021-09-20 15:53:15 -07:00
David Peixotto 618b207a62
Fix check in dxc extra output processing for non-blob output (#3957)
When processing the DXC_OUT_EXTRA_OUTPUTS output from a compile there
is an attempt to skip non-blob outputs. The check is written incorrectly
because the call to `GetOutput` will fail (when it tries to QueryInterface
on the blob output).

The fix is to check the HRESULT returned from GetOutput and skip the output
if it failed.

Found when using the dxclib from an external project. I did not see an easy
way to add a test for this.
2021-09-18 20:09:00 -07:00
Greg Roth 9eef5ddf76
Merge pull request #3956 from pow2clk/hlsl-2021
Merge master into hlsl-2021
2021-09-17 17:48:38 -06:00
Greg Roth 693103f39d Merge remote-tracking branch 'origin/master' into hlsl-2021 2021-09-17 14:39:31 -07:00
Grace Jennings 5fba0c36b3
Added unused output target warning and moved usage mask fill location (#3947)
* Moved usage mask fill location
Added unused output target warning and test

* Updated for readability
2021-09-14 10:27:59 -07:00
Adam Yang 7914122a97
Reflection interface now accepts a DXIL program header. (#3946) 2021-09-13 14:27:23 -07:00
Adam Yang 29a5af5e7c
NoUnwind fix. HLExtIntrinsic collision fix. (#3942) 2021-09-10 16:38:46 -07:00
Thomas Roughton 8c188558f5
[SPIR-V] Fix an issue with duplicate specialisation constants (#3929)
Fix an issue where specialization constants could be emitted multiple times
(e.g., once by themselves and once in composites).

Note that the const value of a special const specified in the HLSL code cannot
be reused because the value of the special const will be determined at the
runtime. However, the special const itself can be reused similar to variables.

Co-authored-by: Jaebaek Seo <jaebaek@google.com>
2021-09-10 10:16:10 -04:00
David Peixotto d85527d62b
Allow calling DxcInitThreadMalloc again after calling DxcCleanupThreadMalloc (#3941)
Allow calling DxcInitThreadMalloc again after calling DxcCleanupThreadMalloc

Without this change we cannot call a sequence of

    DxcInitThreadMalloc()
    DxcCleanupThreadMalloc()
    ...
    DxcInitThreadMalloc() // <- This will trigger an assert

because we hit an assert that assumes the default malloc pointer is nullptr.
2021-09-09 16:03:24 -07:00
Natalie Chouinard cbd889599f [spirv] Support bool* as texture template type
Add support for bool typed textures to be compatible with FXC.

Fixes #3236
2021-09-09 10:35:23 -04:00
Helena Kotas c648b1c416
Update version to 1.6.2109 (#3939)
* Update version to 1.6.2109

* Update sha to latest
2021-09-08 12:16:17 -07:00
Helena Kotas 9085179d68
Add azure pipelines entry points for master branch builds (#3940) 2021-09-08 11:57:00 -07:00
Natalie Chouinard 4c8459b38c [spirv] Add support for RValues with OpaqueArrayType
RValues with OpaqueArrayType can now be legalized with spirv-opt.

Fixes #3677
2021-09-08 10:02:53 -04:00
Jaebaek Seo 555f813c4f
[spirv] add -fspv-reduce-load-size option (#3931)
Since loading a big object takes the memory pressure, reduction of the
load size can have some performance benefit. In particular, it is
useful for mobile GPUs. `-fspv-reduce-load-size` removes
OpLoad/OpCompositeExtract of struct/array types by running spirv-opt
--reduce-load-size pass.

Fixes #3889
2021-09-07 23:32:16 -04:00
Greg Roth 614472fb4d
Add an explicit python version (#3938)
Finding python3 has been a bit hit or miss. Hopefully this will make it
hit consistently
2021-09-07 17:46:35 -07:00
Greg Roth c23ea265e5
Update macos for azure (#3937)
Hopefully this will let it find the right python
2021-09-07 14:03:35 -07:00
Jaebaek Seo 6235ab32c2
[spirv] support vk::combinedImageSampler (#3920)
This PR enables `vk::combinedImageSampler` support.

How to use `vk::combinedImageSampler`:
1. Define `SamplerState` and `Texture2D` with the same descriptor set and binding numbers e.g.,
```
[[vk::combinedImageSampler]][[vk::binding(0, 1)]]
SamplerState sam0;
[[vk::combinedImageSampler]][[vk::binding(0, 1)]]
Texture2D<float4> tex0;
```
2. Use them e.g., `tex0.SampleLevel(sam0, float2(1, 2), 10, 2);`
3. Run the legalization after SPIR-V codegen.

Note that we can use the texture `tex0` with samplers other than `sam0`
but we cannot use `sam0` with textures other than `tex0`.
2021-09-07 15:01:11 -04:00
Xiang Li 5ae4b02c38
Fix issue when updateCounter for dynamic resource, also remove createHandleForLib on handle type when not a library. (#3935) 2021-09-07 10:24:42 -07:00
Adam Yang 794ba5da1a
Fixed debug info in unrolled loops. (#3926) 2021-09-02 00:44:36 -07:00
JiaoluAMD 28e1f9f465
[SPIRV] Update the spirv tools to the later commit (#3923)
The spirv tools need to update to support the Link Attributes of the
Linkage capability
2021-09-01 10:32:34 -04:00