blob: 39771ccb262b0a5d534c4c22ee8a089847426d32 [file] [log] [blame]
Dejan Mircevskib6fe02f2016-01-07 13:44:22 -05001// Copyright (c) 2015-2016 The Khronos Group Inc.
Lei Zhangaa056cd2015-11-11 14:24:04 -05002//
David Neto9fc86582016-09-01 15:33:59 -04003// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
Lei Zhangaa056cd2015-11-11 14:24:04 -05006//
David Neto9fc86582016-09-01 15:33:59 -04007// http://www.apache.org/licenses/LICENSE-2.0
Lei Zhangaa056cd2015-11-11 14:24:04 -05008//
David Neto9fc86582016-09-01 15:33:59 -04009// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
Lei Zhangaa056cd2015-11-11 14:24:04 -050014
dan sinclair58a68762018-08-03 08:05:33 -040015#ifndef SOURCE_SPIRV_CONSTANT_H_
16#define SOURCE_SPIRV_CONSTANT_H_
Lei Zhangaa056cd2015-11-11 14:24:04 -050017
dan sinclaireda2cfb2018-08-03 15:06:09 -040018#include "source/latest_version_spirv_header.h"
David Neto5a703352016-02-17 14:44:00 -050019#include "spirv-tools/libspirv.h"
Lei Zhangaa056cd2015-11-11 14:24:04 -050020
David Neto3d348a82015-11-12 19:40:21 -050021// Version number macros.
22
23// Evaluates to a well-formed version header word, given valid
David Neto8ddd4ec2015-11-17 16:37:10 -050024// SPIR-V version major and minor version numbers.
25#define SPV_SPIRV_VERSION_WORD(MAJOR, MINOR) \
26 ((uint32_t(uint8_t(MAJOR)) << 16) | (uint32_t(uint8_t(MINOR)) << 8))
David Neto3d348a82015-11-12 19:40:21 -050027// Returns the major version extracted from a version header word.
28#define SPV_SPIRV_VERSION_MAJOR_PART(WORD) ((uint32_t(WORD) >> 16) & 0xff)
29// Returns the minor version extracted from a version header word.
30#define SPV_SPIRV_VERSION_MINOR_PART(WORD) ((uint32_t(WORD) >> 8) & 0xff)
David Neto3d348a82015-11-12 19:40:21 -050031
Lei Zhangaa056cd2015-11-11 14:24:04 -050032// Header indices
33
34#define SPV_INDEX_MAGIC_NUMBER 0u
35#define SPV_INDEX_VERSION_NUMBER 1u
36#define SPV_INDEX_GENERATOR_NUMBER 2u
37#define SPV_INDEX_BOUND 3u
38#define SPV_INDEX_SCHEMA 4u
39#define SPV_INDEX_INSTRUCTION 5u
40
41// Universal limits
42
43// SPIR-V 1.0 limits
44#define SPV_LIMIT_INSTRUCTION_WORD_COUNT_MAX 0xffff
45#define SPV_LIMIT_LITERAL_STRING_UTF8_CHARS_MAX 0xffff
46
47// A single Unicode character in UTF-8 encoding can take
48// up 4 bytes.
49#define SPV_LIMIT_LITERAL_STRING_BYTES_MAX \
50 (SPV_LIMIT_LITERAL_STRING_UTF8_CHARS_MAX * 4)
51
52// NOTE: These are set to the minimum maximum values
53// TODO(dneto): Check these.
54
55// libspirv limits.
56#define SPV_LIMIT_RESULT_ID_BOUND 0x00400000
57#define SPV_LIMIT_CONTROL_FLOW_NEST_DEPTH 0x00000400
58#define SPV_LIMIT_GLOBAL_VARIABLES_MAX 0x00010000
59#define SPV_LIMIT_LOCAL_VARIABLES_MAX 0x00080000
60// TODO: Decorations per target ID max, depends on decoration table size
61#define SPV_LIMIT_EXECUTION_MODE_PER_ENTRY_POINT_MAX 0x00000100
62#define SPV_LIMIT_INDICIES_MAX_ACCESS_CHAIN_COMPOSITE_MAX 0x00000100
63#define SPV_LIMIT_FUNCTION_PARAMETERS_PER_FUNCTION_DECL 0x00000100
64#define SPV_LIMIT_FUNCTION_CALL_ARGUMENTS_MAX 0x00000100
65#define SPV_LIMIT_EXT_FUNCTION_CALL_ARGUMENTS_MAX 0x00000100
66#define SPV_LIMIT_SWITCH_LITERAL_LABEL_PAIRS_MAX 0x00004000
67#define SPV_LIMIT_STRUCT_MEMBERS_MAX 0x0000400
68#define SPV_LIMIT_STRUCT_NESTING_DEPTH_MAX 0x00000100
69
70// Enumerations
71
David Neto14b93e42015-11-12 18:33:47 -050072// Values mapping to registered tools. See the registry at
Lei Zhangaa056cd2015-11-11 14:24:04 -050073// https://www.khronos.org/registry/spir-v/api/spir-v.xml
David Neto14b93e42015-11-12 18:33:47 -050074// These values occupy the higher order 16 bits of the generator magic word.
Lei Zhangaa056cd2015-11-11 14:24:04 -050075typedef enum spv_generator_t {
David Neto14b93e42015-11-12 18:33:47 -050076 // TODO(dneto) Values 0 through 5 were registered only as vendor.
Lei Zhangaa056cd2015-11-11 14:24:04 -050077 SPV_GENERATOR_KHRONOS = 0,
78 SPV_GENERATOR_LUNARG = 1,
79 SPV_GENERATOR_VALVE = 2,
80 SPV_GENERATOR_CODEPLAY = 3,
81 SPV_GENERATOR_NVIDIA = 4,
82 SPV_GENERATOR_ARM = 5,
David Neto14b93e42015-11-12 18:33:47 -050083 // These are vendor and tool.
84 SPV_GENERATOR_KHRONOS_LLVM_TRANSLATOR = 6,
85 SPV_GENERATOR_KHRONOS_ASSEMBLER = 7,
David Neto2266ba12015-11-13 12:03:28 -060086 SPV_GENERATOR_KHRONOS_GLSLANG = 8,
David Neto14b93e42015-11-12 18:33:47 -050087 SPV_GENERATOR_NUM_ENTRIES,
88 SPV_FORCE_16_BIT_ENUM(spv_generator_t)
Lei Zhangaa056cd2015-11-11 14:24:04 -050089} spv_generator_t;
90
David Neto14b93e42015-11-12 18:33:47 -050091// Evaluates to a well-formed generator magic word from a tool value and
92// miscellaneous 16-bit value.
93#define SPV_GENERATOR_WORD(TOOL, MISC) \
94 ((uint32_t(uint16_t(TOOL)) << 16) | uint16_t(MISC))
95// Returns the tool component of the generator word.
96#define SPV_GENERATOR_TOOL_PART(WORD) (uint32_t(WORD) >> 16)
97// Returns the misc part of the generator word.
98#define SPV_GENERATOR_MISC_PART(WORD) (uint32_t(WORD) & 0xFFFF)
99
dan sinclair58a68762018-08-03 08:05:33 -0400100#endif // SOURCE_SPIRV_CONSTANT_H_