2016-01-07 21:44:22 +03:00
|
|
|
// Copyright (c) 2015-2016 The Khronos Group Inc.
|
2015-11-11 20:14:36 +03:00
|
|
|
//
|
2016-09-01 22:33:59 +03: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-11-11 20:14:36 +03:00
|
|
|
//
|
2016-09-01 22:33:59 +03:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2015-11-11 20:14:36 +03:00
|
|
|
//
|
2016-09-01 22:33:59 +03: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-11-11 20:14:36 +03:00
|
|
|
|
2018-08-03 15:05:33 +03:00
|
|
|
#ifndef SOURCE_TABLE_H_
|
|
|
|
#define SOURCE_TABLE_H_
|
2015-11-11 20:14:36 +03:00
|
|
|
|
2018-08-03 22:06:09 +03:00
|
|
|
#include "source/extensions.h"
|
2019-05-10 18:02:01 +03:00
|
|
|
#include "source/latest_version_spirv_header.h"
|
2016-09-22 00:16:31 +03:00
|
|
|
#include "spirv-tools/libspirv.hpp"
|
2015-11-11 20:14:36 +03:00
|
|
|
|
2015-11-11 20:40:25 +03:00
|
|
|
typedef struct spv_opcode_desc_t {
|
|
|
|
const char* name;
|
2022-11-05 00:27:10 +03:00
|
|
|
const spv::Op opcode;
|
2017-10-25 19:15:51 +03:00
|
|
|
const uint32_t numCapabilities;
|
2022-11-05 00:27:10 +03:00
|
|
|
const spv::Capability* capabilities;
|
2015-11-11 20:40:25 +03:00
|
|
|
// operandTypes[0..numTypes-1] describe logical operands for the instruction.
|
|
|
|
// The operand types include result id and result-type id, followed by
|
|
|
|
// the types of arguments.
|
2018-03-14 20:06:18 +03:00
|
|
|
const uint16_t numTypes;
|
2015-11-11 20:40:25 +03:00
|
|
|
spv_operand_type_t operandTypes[16]; // TODO: Smaller/larger?
|
|
|
|
const bool hasResult; // Does the instruction have a result ID operand?
|
|
|
|
const bool hasType; // Does the instruction have a type ID operand?
|
2018-03-14 20:06:18 +03:00
|
|
|
// A set of extensions that enable this feature. If empty then this operand
|
|
|
|
// value is in core and its availability is subject to minVersion. The
|
|
|
|
// assembler, binary parser, and disassembler ignore this rule, so you can
|
|
|
|
// freely process invalid modules.
|
|
|
|
const uint32_t numExtensions;
|
2018-07-07 16:38:00 +03:00
|
|
|
const spvtools::Extension* extensions;
|
2018-03-14 20:06:18 +03:00
|
|
|
// Minimal core SPIR-V version required for this feature, if without
|
|
|
|
// extensions. ~0u means reserved for future use. ~0u and non-empty extension
|
|
|
|
// lists means only available in extensions.
|
|
|
|
const uint32_t minVersion;
|
2019-05-10 18:02:01 +03:00
|
|
|
const uint32_t lastVersion;
|
2015-11-11 20:40:25 +03:00
|
|
|
} spv_opcode_desc_t;
|
|
|
|
|
|
|
|
typedef struct spv_operand_desc_t {
|
|
|
|
const char* name;
|
|
|
|
const uint32_t value;
|
2017-10-25 19:15:51 +03:00
|
|
|
const uint32_t numCapabilities;
|
2022-11-05 00:27:10 +03:00
|
|
|
const spv::Capability* capabilities;
|
2016-09-16 21:40:02 +03:00
|
|
|
// A set of extensions that enable this feature. If empty then this operand
|
2018-03-14 20:06:18 +03:00
|
|
|
// value is in core and its availability is subject to minVersion. The
|
|
|
|
// assembler, binary parser, and disassembler ignore this rule, so you can
|
|
|
|
// freely process invalid modules.
|
2017-10-25 19:15:51 +03:00
|
|
|
const uint32_t numExtensions;
|
2018-07-07 16:38:00 +03:00
|
|
|
const spvtools::Extension* extensions;
|
2015-11-11 20:40:25 +03:00
|
|
|
const spv_operand_type_t operandTypes[16]; // TODO: Smaller/larger?
|
2018-03-14 20:06:18 +03:00
|
|
|
// Minimal core SPIR-V version required for this feature, if without
|
|
|
|
// extensions. ~0u means reserved for future use. ~0u and non-empty extension
|
|
|
|
// lists means only available in extensions.
|
|
|
|
const uint32_t minVersion;
|
2019-05-10 18:02:01 +03:00
|
|
|
const uint32_t lastVersion;
|
2015-11-11 20:40:25 +03:00
|
|
|
} spv_operand_desc_t;
|
|
|
|
|
|
|
|
typedef struct spv_operand_desc_group_t {
|
|
|
|
const spv_operand_type_t type;
|
|
|
|
const uint32_t count;
|
|
|
|
const spv_operand_desc_t* entries;
|
|
|
|
} spv_operand_desc_group_t;
|
|
|
|
|
|
|
|
typedef struct spv_ext_inst_desc_t {
|
|
|
|
const char* name;
|
|
|
|
const uint32_t ext_inst;
|
2017-10-25 19:15:51 +03:00
|
|
|
const uint32_t numCapabilities;
|
2022-11-05 00:27:10 +03:00
|
|
|
const spv::Capability* capabilities;
|
2015-11-11 20:40:25 +03:00
|
|
|
const spv_operand_type_t operandTypes[16]; // TODO: Smaller/larger?
|
|
|
|
} spv_ext_inst_desc_t;
|
|
|
|
|
|
|
|
typedef struct spv_ext_inst_group_t {
|
|
|
|
const spv_ext_inst_type_t type;
|
|
|
|
const uint32_t count;
|
|
|
|
const spv_ext_inst_desc_t* entries;
|
|
|
|
} spv_ext_inst_group_t;
|
|
|
|
|
|
|
|
typedef struct spv_opcode_table_t {
|
|
|
|
const uint32_t count;
|
2016-03-21 23:36:14 +03:00
|
|
|
const spv_opcode_desc_t* entries;
|
2015-11-11 20:40:25 +03:00
|
|
|
} spv_opcode_table_t;
|
|
|
|
|
|
|
|
typedef struct spv_operand_table_t {
|
|
|
|
const uint32_t count;
|
|
|
|
const spv_operand_desc_group_t* types;
|
|
|
|
} spv_operand_table_t;
|
|
|
|
|
|
|
|
typedef struct spv_ext_inst_table_t {
|
|
|
|
const uint32_t count;
|
|
|
|
const spv_ext_inst_group_t* groups;
|
|
|
|
} spv_ext_inst_table_t;
|
|
|
|
|
|
|
|
typedef const spv_opcode_desc_t* spv_opcode_desc;
|
|
|
|
typedef const spv_operand_desc_t* spv_operand_desc;
|
|
|
|
typedef const spv_ext_inst_desc_t* spv_ext_inst_desc;
|
|
|
|
|
|
|
|
typedef const spv_opcode_table_t* spv_opcode_table;
|
|
|
|
typedef const spv_operand_table_t* spv_operand_table;
|
|
|
|
typedef const spv_ext_inst_table_t* spv_ext_inst_table;
|
|
|
|
|
2015-11-12 21:48:30 +03:00
|
|
|
struct spv_context_t {
|
2016-04-01 00:26:31 +03:00
|
|
|
const spv_target_env target_env;
|
2015-11-12 21:48:30 +03:00
|
|
|
const spv_opcode_table opcode_table;
|
|
|
|
const spv_operand_table operand_table;
|
|
|
|
const spv_ext_inst_table ext_inst_table;
|
2016-09-03 01:06:18 +03:00
|
|
|
spvtools::MessageConsumer consumer;
|
2015-11-12 21:48:30 +03:00
|
|
|
};
|
|
|
|
|
2018-07-07 16:38:00 +03:00
|
|
|
namespace spvtools {
|
|
|
|
|
2016-09-03 01:06:18 +03:00
|
|
|
// Sets the message consumer to |consumer| in the given |context|. The original
|
|
|
|
// message consumer will be overwritten.
|
2018-07-07 16:38:00 +03:00
|
|
|
void SetContextMessageConsumer(spv_context context, MessageConsumer consumer);
|
|
|
|
} // namespace spvtools
|
2016-09-03 01:06:18 +03:00
|
|
|
|
2016-04-07 21:41:34 +03:00
|
|
|
// Populates *table with entries for env.
|
|
|
|
spv_result_t spvOpcodeTableGet(spv_opcode_table* table, spv_target_env env);
|
2015-11-11 20:14:36 +03:00
|
|
|
|
2016-04-07 21:41:34 +03:00
|
|
|
// Populates *table with entries for env.
|
|
|
|
spv_result_t spvOperandTableGet(spv_operand_table* table, spv_target_env env);
|
2015-11-11 20:14:36 +03:00
|
|
|
|
2016-04-07 21:41:34 +03:00
|
|
|
// Populates *table with entries for env.
|
|
|
|
spv_result_t spvExtInstTableGet(spv_ext_inst_table* table, spv_target_env env);
|
2015-11-11 20:14:36 +03:00
|
|
|
|
2018-08-03 15:05:33 +03:00
|
|
|
#endif // SOURCE_TABLE_H_
|