Commit Graph

4750 Commits

Author SHA1 Message Date
画卦伏羲
7247854500 Fix [type] command file url forward slashes issue when use mingw 2023-12-11 20:03:17 +00:00
Arcady Goldmints-Orlov
4540ec6cf3 Remove OSDependent TLS functions
These are no longer used now that the PoolAllocator uses the standard
c++11 thread_local storage mechanism.
2023-12-11 20:03:17 +00:00
Ben Clayton
75deb53f3a Deprecate InitializeDll functions
These were only used for TThreadPool, which now uses `thread_local`.
2023-12-11 20:03:17 +00:00
Ben Clayton
f527002d45 Simplify PoolAlloc with use of thread_local.
glslang is using C++ 11, which has first class support for variables of the `thread_local` storage class.

By dropping the use of the `OS_[GS]etTLSValue`, we can simplify the logic, and have it support a thread-local default allocator if none is provided.

Issue: #2346
2023-12-11 20:03:16 +00:00
Boris Zanin
f56d219587 Implement support for GL_KHR_cooperative_matrix extension 2023-12-11 20:03:16 +00:00
Sven van Haastregt
16af4d6c49 Fix typo in error message 2023-12-11 20:03:16 +00:00
Juan Ramos
0dbb5dd1bd Modernize linux CI
- Test Ubuntu-22.04
- Use ccache
- Ensure backwards compatibility with Ubuntu-20.04
2023-12-11 20:03:16 +00:00
Juan Ramos
ffa62876c7 git: Ignore CMakeUserPresets.json
CMakeUserPresets.json can be useful for developers and is not
meant to be checked in.
2023-12-11 20:03:16 +00:00
Juan Ramos
3eff55b56b ci: Test Android NDK matrix combinations 2023-12-11 20:03:16 +00:00
scribam
700c328ea3 Remove useless semicolons 2023-12-11 20:03:16 +00:00
Sven van Haastregt
917e466f9d Silence unused parameter warning
The parameter could be removed, but keep it for consistency with other
`makeSpirvTypeParameters` overloads.
2023-12-11 20:03:16 +00:00
Arcady Goldmints-Orlov
35a3b0251c Remove obsolete files
WORKSPACE is related to Bazel, which is no longer supported
Test/makeDoc uses an option that glslang no longer supports.
2023-12-11 20:03:16 +00:00
Jeremy Hayes
c64cba89d6 Update CHANGES for release 12.3.1 2023-12-11 20:03:16 +00:00
Nathaniel Cesario
4bf5ec0c1e web: Fix emscripten build
The web/emscripten build has been broken for an unknown amount of time
and for multiple reasons:
  - Calling `cat` on Windows
  - The latest version of wasm-ld does not support the `--no-undefined`
    flag
  - `ccall` was not being exported

Fixes #3272.
2023-12-11 20:03:16 +00:00
David Neto
cf7e5a9343 Support MinGW build with Clang, not just GCC
Fixes: #3270
2023-12-11 20:03:16 +00:00
Nathaniel Cesario
2feaf5600a cmake: Fix symlink on Windows
Copy the old glslangValidator name on Windows rather than creating a
symlink. While cmake 3.13 and above supports creating symlinks on
Windows, a security policy change is required in general to allow
the creation of symlinks for non-trusted users. See
https://learn.microsoft.com/en-us/windows/security/threat-protection/security-policy-settings/create-symbolic-links

Fixes #3268.
2023-12-11 20:03:16 +00:00
Jeremy Hayes
fc0426602c Update CHANGES for release 12.3.0 2023-12-11 20:03:16 +00:00
Jeremy Hayes
c47d5fc843 Update known_good.json 2023-12-11 20:03:16 +00:00
Nathaniel Cesario
635ce4f2e2 cmake: Rename glslang to glslangValidator
Rename glslangValidator to glslang and adds a glslangValidator symlink
to the build and install directories.

Closes #47.
2023-12-11 20:03:16 +00:00
Juan Ramos
e7c558ba38 cmake: Fix Android build for r25 NDK
Currently with the build instructions provided in README.md
the build will fail.

In the r25 NDK the CMake toolchain defaults to the legacy path,
due to a bug in the current implementation.

https://github.com/android/ndk/issues/323
2023-12-11 20:03:16 +00:00
Pedro Olsen Ferreira
02aa2b282b Fix maybe-uninitialized warning
The 'set' and 'setRT' variables were warning as maybe-uninitialized even
though in practice that case would never trigger (due to how the
function flow-controls).
The code blocks where these variables are actually read do not overlap,
so merge them into the same 'set' variable.
Simplify the control flow of the function with early-returns, which
drops indentation and simplifies the function.
2023-12-11 20:03:16 +00:00
Dawid-Lorenz-Mobica
a94c5ff864 HLSL: support binary literals
Fixes #3089
2023-12-11 20:03:16 +00:00
Zeqiang Li
1804b08805 Add missing initialization members for web (#3246) 2023-12-11 20:03:16 +00:00
Malcolm Bechard
b8227c215e Rework how auto push_constant upgrading works a bit.
Ensure we traverse the entire tree and upgrade all references to the
given symbol so it can be upgraded to push_constant. Without this change
only one instance was upgraded, and others were left as uniform buffers.
2023-12-11 20:03:16 +00:00
Nathaniel Cesario
2f4a667120 build: Remove bazel build support 2023-12-11 20:03:16 +00:00
Arcady Goldmints-Orlov
f83eeaebf5 Use std::call_once in spv::Parameterize()
There was a race condition in this function as it used a static variable
to attempt to ensure global initialization was only done once, which was
not thread-safe. Instead, use std::call_once, which was added to C++11
for this exact case.

Fixes #342
2023-12-11 20:03:16 +00:00
Joyce
6f0b445f90 Create a Security Policy (#3169)
* Create SECURITY.md

Signed-off-by: Joyce <joycebrum@google.com>
2023-12-11 20:03:16 +00:00
Dawid Lorenz
56b1090f33 Add support for pre and post HLSL qualifier validation
The change makes it possible to define a const variable after the marked
type. Example "float const"
2023-12-11 20:03:16 +00:00
Dawid Lorenz
10da9c9550 Add support for pre and post HLSL qualifier validation
The change makes it possible to define a const variable after the marked
type. Example "float const"
2023-12-11 20:03:16 +00:00
Rex Xu
4218bbe746 Spirv_intrinsics: Add support of type specifier to spirv_type
Previously, spirv_type doesn't accept type specifier as its parameter.
With this change, we can input non-array type specifier. This is because
some SPIR-V type definition intructions often need to reference other
SPIR-V types as its source operands. We add the support to facilitate
such usage.
2023-12-11 20:03:16 +00:00
Nathaniel Cesario
e0151ab8c7 Fix C example in README
Remove the usage of C++ STL types in the C-only interface example.

Fixes #3239.
2023-12-11 20:03:16 +00:00
Arcady Goldmints-Orlov
d88a85c288 Add an assert that ID operands are non-zero
Zero is not a valid ID value and the SPIR-V emitter library should never
be emitting instructions with ID values of 0.
2023-12-11 20:03:16 +00:00
Arcady Goldmints-Orlov
26751a0558 Force generateDebugInfo when non-semantic debug info is enabled
From the command line, the debug options "stack", with -gVS enabling all
of generateDebugInfo, emitNonSemanticShaderDebugInfo and
emitNonSemanticShaderDebugSource, however the programmatic interface
allows setting the latter options without the former. In this case, the
string corresponding to the source filename never gets emitted and some
debuginfo instructions end up with zero ID operands, resulting in
invalid SPIR-V.

Fixes #3240
2023-12-11 20:03:16 +00:00
Sven van Haastregt
36d3c1ff1d Fix unused parameter warning in Release builds
The `function` parameter is only used by an assert currently, so mark
it as "maybe unused".  Alternatively the parameter could be removed,
but avoid such API churn for now.
2023-12-11 20:03:16 +00:00
Jason Liu
4b340dbc78 Fix linking error "ld: unknown option: --no-undefined" on macOS 2023-12-11 20:03:16 +00:00
juan-lunarg
352885abbc cmake: Fix CMake 3.27 warnings
The FindPythonInterp and FindPythonLibs modules, which have
been deprecated since CMake 3.12, have been removed by policy
CMP0148. Port projects to FindPython3, FindPython2, or FindPython.
2023-12-11 20:03:16 +00:00
Pablo Delgado Krämer
7b27be3f49 Fix GL_NV_shader_invocation_reorder #define typo 2023-12-11 20:03:16 +00:00
Sven van Haastregt
5f8a1985bd Fix -Wmaybe-uninitialized warnings
Fix some potentially uninitialized uses that are reported by GCC 13
with `-O3`.
2023-12-11 20:03:16 +00:00
David Neto
d88c49823d ndk-build: test Android API 24
Vulkan was introduced in Android API 24.
Test against that API level.
NDKs drop support for older APIs

Google-internal BUG=285134453
2023-12-11 20:03:16 +00:00
rcombs
58bbccc3cf glslang_c_interface: use valid C function prototypes
Prototypes are required in C.
2023-12-11 20:03:16 +00:00
Rémi Verschelde
fded2b4341 CMake: Use set_target_properties instead of set_property
This makes the cmake code a bit cleaner and more consistent.
2023-12-11 20:03:16 +00:00
Arcady Goldmints-Orlov
d7c51a7dce CMake: Make glslang-default-resource-limits STATIC 2023-12-11 20:03:16 +00:00
Allan MacKinnon
bef8f6335e glslangValidator: Exit with an error if output file cannot be written
Propagate the error from glslang::OutputSpv[Hex|Bin] and exit with an error code if there is an error.
2023-12-11 20:03:16 +00:00
Allan MacKinnon
ab739640cf [glslang] Strip trailing whitespace
There are many other files in the repo that have trailing whitespace
but this PR only cleans `glslang/SPIRV` and `glslang/Standalone`.
2023-12-11 20:03:16 +00:00
Arcady Goldmints-Orlov
fe57308534 Switch Android.mk to use --std=c++17 2023-12-11 20:03:16 +00:00
Arcady Goldmints-Orlov
3b815127a3 Switch Bazel to c++17 2023-12-11 20:03:16 +00:00
Arcady Goldmints-Orlov
1f727e86c8 Add decorations to structs with buffer references
The containsPhysicalStorageBufferOrArray function now handles struct
types correctly, checking their contents recursively for buffer
reference types. As a result, OpVariables containing structs that have
members that are buffer references now have the appropriate
AliasedPointer or RestrictPointer decoration as per the spec.

Fixes #3188
2023-12-11 20:03:16 +00:00
Jeremy Hayes
87a3777efa Update CHANGES for release 12.2.0 2023-12-11 20:03:16 +00:00
Jeremy Hayes
4e73fc2cec Update known_good.json 2023-12-11 20:03:16 +00:00
Arcady Goldmints-Orlov
6ae905e638 Include <cstdint> header in Common.h
This change also cleans up some ifdef'd code for no longer supported
versions of MSVC.

Fixes: #3139
2023-12-11 20:03:16 +00:00