2015-05-22 17:26:19 +00:00
|
|
|
// Copyright (c) 2015 The Khronos Group Inc.
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
#ifndef _LIBSPIRV_UTIL_TEXT_H_
|
|
|
|
#define _LIBSPIRV_UTIL_TEXT_H_
|
|
|
|
|
|
|
|
#include <libspirv/libspirv.h>
|
Use opcode operand definitions from SPIR-V specification generator.
The assembler and disassembler now use a dynamically adjusted
sequence of expected operand types. (Internally, it is a deque,
for readability.) Both parsers repeatedly pull an expected operand
type from the left of this pattern list, and try to match the next
input token against it.
The expected pattern is adjusted during the parse to accommodate:
- an extended instruction's expected operands, depending on the
extended instruction's index.
- when an operand itself has operands
- to handle sequences of zero or more operands, or pairs of
operands. These are expanded lazily during the parse.
Adds spv::OperandClass from the SPIR-V specification generator.
Modifies spv_operand_desc_t:
- adds hasResult, hasType, and operandClass array to the opcode
description type.
- "wordCount" is replaced with "numTypes", which counts the number
of entries in operandTypes. And each of those describes a
*logical* operand, including the type id for the instruction,
and the result id for the instruction. A logical operand could be
variable-width, such as a literal string.
Adds opcode.inc, an automatically-generated table of operation
descriptions, with one line to describe each core instruction.
Externally, we have modified the SPIR-V spec doc generator to
emit this file.
(We have hacked this copy to use the old semantics for OpLine.)
Inside the assembler, parsing an operand may fail with new
error code SPV_FAIL_MATCH. For an optional operand, this is not
fatal, but should trigger backtracking at a higher level.
The spvTextIsStartOfNewInst checks the case of the third letter
of what might be an opcode. So now, "OpenCL" does not look like
an opcode name.
In assembly, the EntryPoint name field is mandatory, but can be
an empty string.
Adjust tests for changes to:
- OpSampedImage
- OpTypeSampler
2015-08-27 17:03:52 +00:00
|
|
|
#include "operand.h"
|
2015-05-22 17:26:19 +00:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
// Structures
|
|
|
|
|
|
|
|
typedef enum spv_literal_type_t {
|
|
|
|
SPV_LITERAL_TYPE_INT_32,
|
|
|
|
SPV_LITERAL_TYPE_INT_64,
|
|
|
|
SPV_LITERAL_TYPE_UINT_32,
|
|
|
|
SPV_LITERAL_TYPE_UINT_64,
|
|
|
|
SPV_LITERAL_TYPE_FLOAT_32,
|
|
|
|
SPV_LITERAL_TYPE_FLOAT_64,
|
|
|
|
SPV_LITERAL_TYPE_STRING,
|
|
|
|
SPV_FORCE_32_BIT_ENUM(spv_literal_type_t)
|
|
|
|
} spv_literal_type_t;
|
|
|
|
|
|
|
|
typedef struct spv_literal_t {
|
|
|
|
spv_literal_type_t type;
|
|
|
|
union value_t {
|
|
|
|
int32_t i32;
|
|
|
|
int64_t i64;
|
|
|
|
uint32_t u32;
|
|
|
|
uint64_t u64;
|
|
|
|
float f;
|
|
|
|
double d;
|
|
|
|
char str[SPV_LIMIT_LITERAL_STRING_MAX];
|
|
|
|
} value;
|
|
|
|
} spv_literal_t;
|
|
|
|
|
|
|
|
|
|
|
|
// Functions
|
|
|
|
|
2015-09-11 16:04:03 +00:00
|
|
|
/// @brief Returns the word at the beginning of the given string.
|
|
|
|
///
|
|
|
|
/// A word ends at the first space, tab, form feed, carriage return, newline,
|
|
|
|
/// or at the end of the string.
|
|
|
|
///
|
|
|
|
/// @param[in] str the source string
|
|
|
|
///
|
|
|
|
/// @return word as a string
|
2015-09-14 14:05:37 +00:00
|
|
|
std::string spvGetWord(const char *str);
|
2015-09-11 16:04:03 +00:00
|
|
|
|
2015-05-22 17:26:19 +00:00
|
|
|
/// @brief Advance text to the start of the next line
|
|
|
|
///
|
|
|
|
/// @param[in] text to be parsed
|
|
|
|
/// @param[in,out] pPosition position text has been advanced to
|
|
|
|
///
|
|
|
|
/// @return result code
|
|
|
|
spv_result_t spvTextAdvanceLine(const spv_text text, spv_position_t *pPosition);
|
|
|
|
|
|
|
|
/// @brief Advance text to first non white space character
|
|
|
|
///
|
|
|
|
/// If a null terminator is found during the text advance SPV_END_OF_STREAM is
|
|
|
|
/// returned, SPV_SUCCESS otherwise. No error checking is performed on the
|
Use opcode operand definitions from SPIR-V specification generator.
The assembler and disassembler now use a dynamically adjusted
sequence of expected operand types. (Internally, it is a deque,
for readability.) Both parsers repeatedly pull an expected operand
type from the left of this pattern list, and try to match the next
input token against it.
The expected pattern is adjusted during the parse to accommodate:
- an extended instruction's expected operands, depending on the
extended instruction's index.
- when an operand itself has operands
- to handle sequences of zero or more operands, or pairs of
operands. These are expanded lazily during the parse.
Adds spv::OperandClass from the SPIR-V specification generator.
Modifies spv_operand_desc_t:
- adds hasResult, hasType, and operandClass array to the opcode
description type.
- "wordCount" is replaced with "numTypes", which counts the number
of entries in operandTypes. And each of those describes a
*logical* operand, including the type id for the instruction,
and the result id for the instruction. A logical operand could be
variable-width, such as a literal string.
Adds opcode.inc, an automatically-generated table of operation
descriptions, with one line to describe each core instruction.
Externally, we have modified the SPIR-V spec doc generator to
emit this file.
(We have hacked this copy to use the old semantics for OpLine.)
Inside the assembler, parsing an operand may fail with new
error code SPV_FAIL_MATCH. For an optional operand, this is not
fatal, but should trigger backtracking at a higher level.
The spvTextIsStartOfNewInst checks the case of the third letter
of what might be an opcode. So now, "OpenCL" does not look like
an opcode name.
In assembly, the EntryPoint name field is mandatory, but can be
an empty string.
Adjust tests for changes to:
- OpSampedImage
- OpTypeSampler
2015-08-27 17:03:52 +00:00
|
|
|
/// parameters, its the users responsibility to ensure these are non null.
|
2015-05-22 17:26:19 +00:00
|
|
|
///
|
|
|
|
/// @param[in] text to be parsed
|
|
|
|
/// @param[in,out] pPosition position text has been advanced to
|
|
|
|
///
|
|
|
|
/// @return result code
|
|
|
|
spv_result_t spvTextAdvance(const spv_text text, spv_position_t *pPosition);
|
|
|
|
|
2015-08-25 17:53:19 +00:00
|
|
|
/// @brief Fetch the next word from the text stream.
|
|
|
|
///
|
2015-08-25 18:21:13 +00:00
|
|
|
/// A word ends at the next comment or whitespace. However, double-quoted
|
|
|
|
/// strings remain intact, and a backslash always escapes the next character.
|
2015-05-22 17:26:19 +00:00
|
|
|
///
|
|
|
|
/// @param[in] text stream to read from
|
|
|
|
/// @param[in] startPosition current position in text stream
|
|
|
|
/// @param[out] word returned word
|
|
|
|
/// @param[out] endPosition one past the end of the returned word
|
|
|
|
///
|
|
|
|
/// @return result code
|
|
|
|
spv_result_t spvTextWordGet(const spv_text text,
|
|
|
|
const spv_position startPosition, std::string &word,
|
|
|
|
spv_position endPosition);
|
|
|
|
|
Use opcode operand definitions from SPIR-V specification generator.
The assembler and disassembler now use a dynamically adjusted
sequence of expected operand types. (Internally, it is a deque,
for readability.) Both parsers repeatedly pull an expected operand
type from the left of this pattern list, and try to match the next
input token against it.
The expected pattern is adjusted during the parse to accommodate:
- an extended instruction's expected operands, depending on the
extended instruction's index.
- when an operand itself has operands
- to handle sequences of zero or more operands, or pairs of
operands. These are expanded lazily during the parse.
Adds spv::OperandClass from the SPIR-V specification generator.
Modifies spv_operand_desc_t:
- adds hasResult, hasType, and operandClass array to the opcode
description type.
- "wordCount" is replaced with "numTypes", which counts the number
of entries in operandTypes. And each of those describes a
*logical* operand, including the type id for the instruction,
and the result id for the instruction. A logical operand could be
variable-width, such as a literal string.
Adds opcode.inc, an automatically-generated table of operation
descriptions, with one line to describe each core instruction.
Externally, we have modified the SPIR-V spec doc generator to
emit this file.
(We have hacked this copy to use the old semantics for OpLine.)
Inside the assembler, parsing an operand may fail with new
error code SPV_FAIL_MATCH. For an optional operand, this is not
fatal, but should trigger backtracking at a higher level.
The spvTextIsStartOfNewInst checks the case of the third letter
of what might be an opcode. So now, "OpenCL" does not look like
an opcode name.
In assembly, the EntryPoint name field is mandatory, but can be
an empty string.
Adjust tests for changes to:
- OpSampedImage
- OpTypeSampler
2015-08-27 17:03:52 +00:00
|
|
|
/// @brief Returns true if the given text can start a new instruction.
|
|
|
|
///
|
|
|
|
/// @param[in] text stream to read from
|
|
|
|
/// @param[in] startPosition current position in text stream
|
|
|
|
///
|
|
|
|
/// @return result code
|
|
|
|
bool spvTextIsStartOfNewInst(const spv_text text,
|
|
|
|
const spv_position startPosition);
|
|
|
|
|
2015-05-22 17:26:19 +00:00
|
|
|
/// @brief Fetch a string, including quotes, from the text stream
|
|
|
|
///
|
|
|
|
/// @param[in] text stream to read from
|
|
|
|
/// @param[in] startPosition current position in text stream
|
|
|
|
/// @param[out] string returned string
|
|
|
|
/// @param[out] endPosition one past the end of the return string
|
|
|
|
///
|
|
|
|
/// @return result code
|
|
|
|
spv_result_t spvTextStringGet(const spv_text text,
|
|
|
|
const spv_position startPosition,
|
|
|
|
std::string &string, spv_position endPosition);
|
|
|
|
|
|
|
|
/// @brief Convert the input text to a unsigned 32 bit integer
|
|
|
|
///
|
|
|
|
/// @param[in] textValue input text to parse
|
|
|
|
/// @param[out] pValue the returned integer
|
|
|
|
///
|
|
|
|
/// @return result code
|
|
|
|
spv_result_t spvTextToUInt32(const char *textValue, uint32_t *pValue);
|
|
|
|
|
2015-08-24 20:27:02 +00:00
|
|
|
/// @brief Convert the input text to one of the number types.
|
|
|
|
///
|
|
|
|
/// String literals must be surrounded by double-quotes ("), which are
|
|
|
|
/// then stripped.
|
2015-05-22 17:26:19 +00:00
|
|
|
///
|
|
|
|
/// @param[in] textValue input text to parse
|
|
|
|
/// @param[out] pLiteral the returned literal number
|
|
|
|
///
|
|
|
|
/// @return result code
|
|
|
|
spv_result_t spvTextToLiteral(const char *textValue, spv_literal_t *pLiteral);
|
|
|
|
|
2015-09-16 22:32:54 +00:00
|
|
|
/// @brief Parses a mask expression string for the given operand type.
|
|
|
|
///
|
|
|
|
/// A mask expression is a sequence of one or more terms separated by '|',
|
|
|
|
/// where each term a named enum value for the given type. No whitespace
|
|
|
|
/// is permitted.
|
|
|
|
///
|
|
|
|
/// On success, the value is written to pValue.
|
|
|
|
///
|
|
|
|
/// @param[in] operandTable operand lookup table
|
|
|
|
/// @param[in] type of the operand
|
|
|
|
/// @param[in] textValue word of text to be parsed
|
|
|
|
/// @param[out] pValue where the resulting value is written
|
|
|
|
///
|
|
|
|
/// @return result code
|
|
|
|
spv_result_t spvTextParseMaskOperand(const spv_operand_table operandTable,
|
|
|
|
const spv_operand_type_t type,
|
|
|
|
const char *textValue, uint32_t *pValue);
|
2015-05-22 17:26:19 +00:00
|
|
|
#endif
|