2020-12-07 10:56:30 -08:00
|
|
|
/*
|
|
|
|
* HLSL preprocessor
|
|
|
|
*
|
|
|
|
* Copyright 2020 Zebediah Figura for CodeWeavers
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __VKD3D_SHADER_PREPROC_H
|
|
|
|
#define __VKD3D_SHADER_PREPROC_H
|
|
|
|
|
|
|
|
#include "vkd3d_shader_private.h"
|
2021-01-07 09:48:06 -08:00
|
|
|
#include "rbtree.h"
|
2020-12-07 10:56:30 -08:00
|
|
|
|
2020-12-21 12:37:06 -08:00
|
|
|
struct preproc_if_state
|
|
|
|
{
|
|
|
|
/* Are we currently in a "true" block? */
|
|
|
|
bool current_true;
|
2020-12-15 15:13:22 -08:00
|
|
|
/* Have we seen a "true" block in this #if..#endif yet? */
|
|
|
|
bool seen_true;
|
|
|
|
/* Have we seen an #else yet? */
|
|
|
|
bool seen_else;
|
2020-12-21 12:37:06 -08:00
|
|
|
};
|
|
|
|
|
2021-01-07 09:48:09 -08:00
|
|
|
struct preproc_buffer
|
|
|
|
{
|
|
|
|
void *lexer_buffer;
|
|
|
|
struct vkd3d_shader_location location;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct preproc_file
|
|
|
|
{
|
|
|
|
struct preproc_buffer buffer;
|
|
|
|
struct vkd3d_shader_code code;
|
|
|
|
char *filename;
|
|
|
|
|
|
|
|
struct preproc_if_state *if_stack;
|
|
|
|
size_t if_count, if_stack_size;
|
|
|
|
};
|
|
|
|
|
2021-01-12 14:14:17 -08:00
|
|
|
struct preproc_text
|
|
|
|
{
|
|
|
|
struct vkd3d_string_buffer text;
|
|
|
|
struct vkd3d_shader_location location;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct preproc_expansion
|
|
|
|
{
|
|
|
|
struct preproc_buffer buffer;
|
|
|
|
const struct preproc_text *text;
|
2021-01-12 14:14:19 -08:00
|
|
|
/* Back-pointer to the macro, if this expansion a macro body. This is
|
|
|
|
* necessary so that argument tokens can be correctly replaced. */
|
|
|
|
struct preproc_macro *macro;
|
2021-01-12 14:14:17 -08:00
|
|
|
};
|
|
|
|
|
2021-01-07 09:48:06 -08:00
|
|
|
struct preproc_macro
|
|
|
|
{
|
|
|
|
struct rb_entry entry;
|
|
|
|
char *name;
|
2021-01-12 14:14:17 -08:00
|
|
|
|
2021-01-12 14:14:19 -08:00
|
|
|
char **arg_names;
|
|
|
|
size_t arg_count;
|
|
|
|
struct preproc_text *arg_values;
|
|
|
|
|
2021-01-12 14:14:17 -08:00
|
|
|
struct preproc_text body;
|
2021-01-07 09:48:06 -08:00
|
|
|
};
|
|
|
|
|
2020-12-07 10:56:30 -08:00
|
|
|
struct preproc_ctx
|
|
|
|
{
|
2021-01-07 09:48:09 -08:00
|
|
|
const struct vkd3d_shader_preprocess_info *preprocess_info;
|
2020-12-07 10:56:30 -08:00
|
|
|
void *scanner;
|
|
|
|
|
2020-12-15 15:13:20 -08:00
|
|
|
struct vkd3d_shader_message_context *message_context;
|
2020-12-07 10:56:30 -08:00
|
|
|
struct vkd3d_string_buffer buffer;
|
2020-12-15 15:13:20 -08:00
|
|
|
|
2021-01-07 09:48:09 -08:00
|
|
|
struct preproc_file *file_stack;
|
|
|
|
size_t file_count, file_stack_size;
|
2020-12-21 12:37:06 -08:00
|
|
|
|
2021-01-12 14:14:17 -08:00
|
|
|
struct preproc_expansion *expansion_stack;
|
|
|
|
size_t expansion_count, expansion_stack_size;
|
|
|
|
|
2021-01-07 09:48:06 -08:00
|
|
|
struct rb_tree macros;
|
|
|
|
|
2021-01-12 14:14:19 -08:00
|
|
|
/* It's possible to parse as many as two function-like macros at once: one
|
|
|
|
* in the main text, and another inside of #if directives. E.g.
|
|
|
|
*
|
|
|
|
* func1(
|
|
|
|
* #if func2(...)
|
|
|
|
* #endif
|
|
|
|
* )
|
|
|
|
*
|
|
|
|
* It's not possible to parse more than two, however. In the case of nested
|
|
|
|
* calls like "func1(func2(...))", we store everything inside the outer
|
|
|
|
* parentheses as unparsed text, and then parse it once the argument is
|
|
|
|
* actually invoked.
|
|
|
|
*/
|
|
|
|
struct preproc_func_state
|
|
|
|
{
|
|
|
|
struct preproc_macro *macro;
|
|
|
|
size_t arg_count;
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
STATE_NONE = 0,
|
|
|
|
STATE_IDENTIFIER,
|
|
|
|
STATE_ARGS,
|
|
|
|
} state;
|
|
|
|
unsigned int paren_depth;
|
|
|
|
} text_func, directive_func;
|
|
|
|
|
2020-12-21 12:37:06 -08:00
|
|
|
int current_directive;
|
|
|
|
|
2021-01-12 14:14:19 -08:00
|
|
|
int lookahead_token;
|
|
|
|
|
2020-12-21 12:37:06 -08:00
|
|
|
bool last_was_newline;
|
|
|
|
bool last_was_eof;
|
2021-01-14 12:47:51 -08:00
|
|
|
bool last_was_defined;
|
2020-12-21 12:37:06 -08:00
|
|
|
|
2020-12-15 15:13:20 -08:00
|
|
|
bool error;
|
2020-12-07 10:56:30 -08:00
|
|
|
};
|
|
|
|
|
2021-01-25 09:23:57 -08:00
|
|
|
bool preproc_add_macro(struct preproc_ctx *ctx, const struct vkd3d_shader_location *loc, char *name, char **arg_names,
|
2021-08-08 23:11:49 -07:00
|
|
|
size_t arg_count, const struct vkd3d_shader_location *body_loc, struct vkd3d_string_buffer *body);
|
|
|
|
void preproc_close_include(struct preproc_ctx *ctx, const struct vkd3d_shader_code *code);
|
|
|
|
struct preproc_macro *preproc_find_macro(struct preproc_ctx *ctx, const char *name);
|
|
|
|
void preproc_free_macro(struct preproc_macro *macro);
|
|
|
|
bool preproc_push_include(struct preproc_ctx *ctx, char *filename, const struct vkd3d_shader_code *code);
|
2020-12-21 12:37:06 -08:00
|
|
|
void preproc_warning(struct preproc_ctx *ctx, const struct vkd3d_shader_location *loc,
|
2021-08-08 23:11:49 -07:00
|
|
|
enum vkd3d_shader_error error, const char *format, ...) VKD3D_PRINTF_FUNC(4, 5);
|
2020-12-21 12:37:06 -08:00
|
|
|
|
2021-01-07 09:48:09 -08:00
|
|
|
static inline struct preproc_file *preproc_get_top_file(struct preproc_ctx *ctx)
|
|
|
|
{
|
2024-08-02 01:34:20 -07:00
|
|
|
VKD3D_ASSERT(ctx->file_count);
|
2021-01-07 09:48:09 -08:00
|
|
|
return &ctx->file_stack[ctx->file_count - 1];
|
|
|
|
}
|
|
|
|
|
2020-12-07 10:56:30 -08:00
|
|
|
#endif
|