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_EXT_INST_H_
|
|
|
|
#define LIBSPIRV_EXT_INST_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-05-22 17:26:19 +00:00
|
|
|
|
2015-11-16 15:48:43 +00:00
|
|
|
// Gets the type of the extended instruction set with the specified name.
|
2015-11-02 14:41:20 +00:00
|
|
|
spv_ext_inst_type_t spvExtInstImportTypeGet(const char* name);
|
2015-05-22 17:26:19 +00:00
|
|
|
|
2015-11-16 15:48:43 +00:00
|
|
|
// Finds the named extented instruction of the given type in the given extended
|
|
|
|
// instruction table. On success, returns SPV_SUCCESS and writes a handle of
|
|
|
|
// the instruction entry into *entry.
|
2015-05-22 17:26:19 +00:00
|
|
|
spv_result_t spvExtInstTableNameLookup(const spv_ext_inst_table table,
|
|
|
|
const spv_ext_inst_type_t type,
|
2015-11-02 14:41:20 +00:00
|
|
|
const char* name,
|
2015-11-16 15:48:43 +00:00
|
|
|
spv_ext_inst_desc* entry);
|
2015-05-22 17:26:19 +00:00
|
|
|
|
2015-11-16 15:48:43 +00:00
|
|
|
// Finds the extented instruction of the given type in the given extended
|
|
|
|
// instruction table by value. On success, returns SPV_SUCCESS and writes a
|
|
|
|
// handle of the instruction entry into *entry.
|
2015-05-22 17:26:19 +00:00
|
|
|
spv_result_t spvExtInstTableValueLookup(const spv_ext_inst_table table,
|
|
|
|
const spv_ext_inst_type_t type,
|
|
|
|
const uint32_t value,
|
2015-11-02 14:41:20 +00:00
|
|
|
spv_ext_inst_desc* pEntry);
|
2015-05-22 17:26:19 +00:00
|
|
|
|
2015-10-27 20:27:05 +00:00
|
|
|
#endif // LIBSPIRV_EXT_INST_H_
|