Khronos reference front-end for GLSL and ESSL, and sample SPIR-V generator

Andrei Alexeyev cc3a2197f0 git add missing files... před 5 roky
External 1d1fd88554 build: Don't ship GTEST headers in install target před 5 roky
OGLCompilersDLL b8cbdd1894 Add a basic Meson build system for use as a subproject před 5 roky
SPIRV 1078f51db7 meson: fix missing dependency před 5 roky
StandAlone e5c394bcba Standalone: Fix #1814: Check that linkage was specified for reflection. před 5 roky
Test 7fc8683491 Merge pull request #1813 from jeffbolznv/compositeconstruct před 5 roky
build_overrides 257b25c81f Add BUILD.gn configuration. před 6 roky
glslang c069dbcae2 [meson] add support for nv/amd exts, hlsl, optimization před 5 roky
gtests 7fc8683491 Merge pull request #1813 from jeffbolznv/compositeconstruct před 5 roky
hlsl cc3a2197f0 git add missing files... před 5 roky
ndk_test 5ba79d5904 Add NDK build files před 5 roky
.appveyor.yml 6fef1ca6f9 Latest known-good SPIRV-Tools: WARNING: Needs python 3.x. před 5 roky
.clang-format 0e5d1bb66a clang-format correction and typo (clang format likely not complete) před 5 roky
.gitattributes 00054da5e6 Infrastructure: Fix .gitattributes typo eof -> eol. Also update README před 5 roky
.gitignore cd1f169c6a Enable HLSL legalization před 7 roky
.travis.yml d03da06ac1 Remove execute permissions před 6 roky
Android.mk 5ba79d5904 Add NDK build files před 5 roky
BUILD.gn 1f5799c155 BUILD.gn: Fix file for use with Fuchsia platform build. před 5 roky
CMakeLists.txt 7eb3e6e07a Make non-emscripten flags platform agnostic. před 5 roky
CODE_OF_CONDUCT.md 4685f3246e Create CODE_OF_CONDUCT.md před 6 roky
ChooseMSVCCRT.cmake 71241d8221 Allow choice of DLL or static CRT libraries through CMake options. před 10 roky
LICENSE.txt 208cb5801f Remove execute permission from LICENSE.txt před 5 roky
README-spirv-remap.txt a8456415b8 WIP: SPV Remapper: add remapper test framework před 8 roky
README.md 734176a25c Move build instructions to README.md před 5 roky
_config.yml 95609e6d92 Set theme jekyll-theme-merlot před 5 roky
known_good.json 38317065f6 Update spirv-tools and spirv-headers known good. před 5 roky
known_good_khr.json d03da06ac1 Remove execute permissions před 6 roky
make-revision c6c80a6e48 Versioning: Address #1255: Move to semantic versioning. před 6 roky
meson.build c069dbcae2 [meson] add support for nv/amd exts, hlsl, optimization před 5 roky
meson_options.txt c069dbcae2 [meson] add support for nv/amd exts, hlsl, optimization před 5 roky
update_glslang_sources.py 0cb8ad55f6 tooling: Fix update sources script for Python 3 před 6 roky

README-spirv-remap.txt


VERSION
--------------------------------------------------------------------------------
spirv-remap 0.97

INTRO:
--------------------------------------------------------------------------------
spirv-remap is a utility to improve compression of SPIR-V binary files via
entropy reduction, plus optional stripping of debug information and
load/store optimization. It transforms SPIR-V to SPIR-V, remapping IDs. The
resulting modules have an increased ID range (IDs are not as tightly packed
around zero), but will compress better when multiple modules are compressed
together, since compressor's dictionary can find better cross module
commonality.

Remapping is accomplished via canonicalization. Thus, modules can be
compressed one at a time with no loss of quality relative to operating on
many modules at once. The command line tool operates on multiple modules
only in the trivial repetition sense, for ease of use. The remapper API
only accepts a single module at a time.

There are two modes of use: command line, and a C++11 API. Both are
described below.

spirv-remap is currently in an alpha state. Although there are no known
remapping defects, it has only been exercised on one real world game shader
workload.


FEEDBACK
--------------------------------------------------------------------------------
Report defects, enhancements requests, code improvements, etc to:
spvremapper@lunarg.com


COMMAND LINE USAGE:
--------------------------------------------------------------------------------
Examples are given with a verbosity of one (-v), but more verbosity can be
had via -vv, -vvv, etc, or an integer parameter to --verbose, such as
"--verbose 4". With no verbosity, the command is silent and returns 0 on
success, and a positive integer error on failure.

Pre-built binaries for several OSs are available. Examples presented are
for Linux. Command line arguments can be provided in any order.

1. Basic ID remapping

Perform ID remapping on all shaders in "*.spv", writing new files with
the same basenames to /tmp/out_dir.

spirv-remap -v --map all --input *.spv --output /tmp/out_dir

2. Perform all possible size reductions

spirv-remap-linux-64 -v --do-everything --input *.spv --output /tmp/out_dir

Note that --do-everything is a synonym for:

--map all --dce all --opt all --strip all

API USAGE:
--------------------------------------------------------------------------------

The public interface to the remapper is defined in SPIRV/SPVRemapper.h as follows:

namespace spv {

class spirvbin_t
{
public:
enum Options { ... };
spirvbin_t(int verbose = 0); // construct

// remap an existing binary in memory
void remap(std::vector& spv, std::uint32_t opts = DO_EVERYTHING);

// Type for error/log handler functions
typedef std::function errorfn_t;
typedef std::function logfn_t;

// Register error/log handling functions (can be c/c++ fn, lambda fn, or functor)
static void registerErrorHandler(errorfn_t handler) { errorHandler = handler; }
static void registerLogHandler(logfn_t handler) { logHandler = handler; }
};

} // namespace spv

The class definition is in SPVRemapper.cpp.

remap() accepts an std::vector of SPIR-V words, modifies them per the
request given in 'opts', and leaves the 'spv' container with the result.
It is safe to instantiate one spirvbin_t per thread and process a different
SPIR-V in each.

The "opts" parameter to remap() accepts a bit mask of desired remapping
options. See REMAPPING AND OPTIMIZATION OPTIONS.

On error, the function supplied to registerErrorHandler() will be invoked.
This can be a standard C/C++ function, a lambda function, or a functor.
The default handler simply calls exit(5); The error handler is a static
member, so need only be set up once, not once per spirvbin_t instance.

Log messages are supplied to registerLogHandler(). By default, log
messages are eaten silently. The log handler is also a static member.

BUILD DEPENDENCIES:
--------------------------------------------------------------------------------
1. C++11 compatible compiler
2. cmake
3. glslang


BUILDING
--------------------------------------------------------------------------------
The standalone remapper is built along side glslangValidator through its
normal build process.


REMAPPING AND OPTIMIZATION OPTIONS
--------------------------------------------------------------------------------
API:
These are bits defined under spv::spirvbin_t::, and can be
bitwise or-ed together as desired.

MAP_TYPES = canonicalize type IDs
MAP_NAMES = canonicalize named data
MAP_FUNCS = canonicalize function bodies
DCE_FUNCS = remove dead functions
DCE_VARS = remove dead variables
DCE_TYPES = remove dead types
OPT_LOADSTORE = optimize unneeded load/stores
MAP_ALL = (MAP_TYPES | MAP_NAMES | MAP_FUNCS)
DCE_ALL = (DCE_FUNCS | DCE_VARS | DCE_TYPES)
OPT_ALL = (OPT_LOADSTORE)
ALL_BUT_STRIP = (MAP_ALL | DCE_ALL | OPT_ALL)
DO_EVERYTHING = (STRIP | ALL_BUT_STRIP)