2016-01-07 18:44:22 +00:00
|
|
|
// Copyright (c) 2015-2016 The Khronos Group Inc.
|
2015-05-22 17:26:19 +00:00
|
|
|
//
|
2016-09-01 19:33:59 +00:00
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
2015-05-22 17:26:19 +00:00
|
|
|
//
|
2016-09-01 19:33:59 +00:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2015-05-22 17:26:19 +00:00
|
|
|
//
|
2016-09-01 19:33:59 +00:00
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
2015-05-22 17:26:19 +00:00
|
|
|
|
2018-08-03 12:05:33 +00:00
|
|
|
#ifndef SOURCE_EXT_INST_H_
|
|
|
|
#define SOURCE_EXT_INST_H_
|
2015-05-22 17:26:19 +00:00
|
|
|
|
2018-08-03 19:06:09 +00:00
|
|
|
#include "source/table.h"
|
2016-02-17 19:44:00 +00:00
|
|
|
#include "spirv-tools/libspirv.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
|
|
|
|
2019-12-18 23:10:29 +00:00
|
|
|
// Returns true if the extended instruction set is non-semantic
|
|
|
|
bool spvExtInstIsNonSemantic(const spv_ext_inst_type_t type);
|
|
|
|
|
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
|
|
|
|
2018-08-03 12:05:33 +00:00
|
|
|
#endif // SOURCE_EXT_INST_H_
|