2016-01-07 18:44:22 +00:00
|
|
|
// Copyright (c) 2015-2016 The Khronos Group Inc.
|
2015-05-22 17:26:19 +00:00
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
// copy of this software and/or associated documentation files (the
|
|
|
|
// "Materials"), to deal in the Materials without restriction, including
|
|
|
|
// without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
// distribute, sublicense, and/or sell copies of the Materials, and to
|
|
|
|
// permit persons to whom the Materials are furnished to do so, subject to
|
|
|
|
// the following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included
|
|
|
|
// in all copies or substantial portions of the Materials.
|
|
|
|
//
|
|
|
|
// MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS
|
|
|
|
// KHRONOS STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS
|
|
|
|
// SPECIFICATIONS AND HEADER INFORMATION ARE LOCATED AT
|
|
|
|
// https://www.khronos.org/registry/
|
|
|
|
//
|
|
|
|
// THE MATERIALS ARE 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
|
|
|
|
// MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.
|
|
|
|
|
2015-10-27 20:27:05 +00:00
|
|
|
#ifndef LIBSPIRV_BINARY_H_
|
|
|
|
#define LIBSPIRV_BINARY_H_
|
2015-05-22 17:26:19 +00:00
|
|
|
|
2016-02-17 19:44:00 +00:00
|
|
|
#include "spirv-tools/libspirv.h"
|
2015-11-11 17:40:25 +00:00
|
|
|
#include "table.h"
|
2015-10-30 20:06:15 +00:00
|
|
|
|
2015-05-22 17:26:19 +00:00
|
|
|
// Functions
|
|
|
|
|
2015-11-16 15:48:43 +00:00
|
|
|
// Grabs the header from the SPIR-V module given in the binary parameter. The
|
|
|
|
// endian parameter specifies the endianness of the binary module. On success,
|
|
|
|
// returns SPV_SUCCESS and writes the parsed header into *header.
|
2015-11-11 16:05:07 +00:00
|
|
|
spv_result_t spvBinaryHeaderGet(const spv_const_binary binary,
|
2015-05-22 17:26:19 +00:00
|
|
|
const spv_endianness_t endian,
|
2015-11-16 15:48:43 +00:00
|
|
|
spv_header_t* header);
|
2015-05-22 17:26:19 +00:00
|
|
|
|
2015-11-16 15:48:43 +00:00
|
|
|
// Determines the desired type of an operand. The operand's value is word, and
|
|
|
|
// is the index-th word in the instruction described by the opcode_entry opcode
|
|
|
|
// table entry. On success, returns SPV_SUCCESS and writes a handle of the
|
|
|
|
// operand table entry for this operand into *operand_entry.
|
2015-05-22 17:26:19 +00:00
|
|
|
spv_operand_type_t spvBinaryOperandInfo(const uint32_t word,
|
|
|
|
const uint16_t index,
|
2015-11-16 15:48:43 +00:00
|
|
|
const spv_opcode_desc opcode_entry,
|
|
|
|
const spv_operand_table operand_table,
|
|
|
|
spv_operand_desc* operand_entry);
|
2015-10-30 20:06:15 +00:00
|
|
|
|
2015-11-02 14:41:20 +00:00
|
|
|
#endif // LIBSPIRV_BINARY_H_
|