diff options
author | Connor Abbott <[email protected]> | 2017-09-12 23:17:51 -0400 |
---|---|---|
committer | Jordan Justen <[email protected]> | 2017-10-31 23:36:53 -0700 |
commit | 120da009755414ba62b0f902a67ad22004b9a304 (patch) | |
tree | 2353d1c708813407b91186057975ce26fa173564 /src/compiler/nir/nir_serialize.h | |
parent | 57892a23be9058b535072ce03dc155f42db02be4 (diff) |
nir: add serialization and deserialization
v2 (Jason Ekstrand):
- Various whitespace cleanups
- Add helpers for reading/writing objects
- Rework derefs
- [de]serialize nir_shader::num_*
- Fix uses of blob_reserve_bytes
- Use a bitfield struct for packing tex_instr data
v3:
- Zero nir_variable struct on deserialization. (Jordan)
- Allow nir_serialize.h to be included in C++. (Jordan)
- Handle NULL info.name. (Jason)
- Set info.name to NULL when name is NULL. (Jordan)
Acked-by: Timothy Arceri <[email protected]>
Reviewed-by: Jordan Justen <[email protected]>
Acked-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/compiler/nir/nir_serialize.h')
-rw-r--r-- | src/compiler/nir/nir_serialize.h | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/src/compiler/nir/nir_serialize.h b/src/compiler/nir/nir_serialize.h new file mode 100644 index 00000000000..f77d8e367ff --- /dev/null +++ b/src/compiler/nir/nir_serialize.h @@ -0,0 +1,43 @@ +/* + * Copyright © 2017 Connor Abbott + * + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice (including the next + * paragraph) shall be included in all copies or substantial portions of the + * Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS + * IN THE SOFTWARE. + */ + +#ifndef _NIR_SERIALIZE_H +#define _NIR_SERIALIZE_H + +#include "nir.h" +#include "compiler/blob.h" + +#ifdef __cplusplus +extern "C" { +#endif + +void nir_serialize(struct blob *blob, const nir_shader *nir); +nir_shader *nir_deserialize(void *mem_ctx, + const struct nir_shader_compiler_options *options, + struct blob_reader *blob); + +#ifdef __cplusplus +} /* extern "C" */ +#endif + +#endif |