2010-06-16 12:18:00 -07:00
|
|
|
/*
|
|
|
|
* Copyright © 2010 Intel Corporation
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice (including the next
|
|
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
|
|
* Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS 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 SOFTWARE OR THE USE OR OTHER
|
|
|
|
* DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2010-06-23 12:31:09 -07:00
|
|
|
#include <assert.h>
|
2010-08-13 18:36:55 +01:00
|
|
|
#include <string.h>
|
2010-06-23 12:31:09 -07:00
|
|
|
#include <ctype.h>
|
2010-06-16 12:18:00 -07:00
|
|
|
#include "glcpp.h"
|
2010-08-25 10:07:14 +03:00
|
|
|
#include "main/core.h" /* for isblank() on MSVC */
|
2010-06-16 12:18:00 -07:00
|
|
|
|
2010-06-17 12:03:25 -07:00
|
|
|
void
|
|
|
|
glcpp_error (YYLTYPE *locp, glcpp_parser_t *parser, const char *fmt, ...)
|
|
|
|
{
|
2010-08-11 13:59:45 -06:00
|
|
|
va_list ap;
|
|
|
|
|
2010-06-21 12:39:49 -07:00
|
|
|
parser->error = 1;
|
2012-06-09 09:45:56 -07:00
|
|
|
ralloc_asprintf_rewrite_tail(&parser->info_log,
|
|
|
|
&parser->info_log_length,
|
|
|
|
"%u:%u(%u): "
|
|
|
|
"preprocessor error: ",
|
|
|
|
locp->source,
|
|
|
|
locp->first_line,
|
|
|
|
locp->first_column);
|
2010-06-18 19:52:36 -07:00
|
|
|
va_start(ap, fmt);
|
2012-06-09 09:45:56 -07:00
|
|
|
ralloc_vasprintf_rewrite_tail(&parser->info_log,
|
|
|
|
&parser->info_log_length,
|
|
|
|
fmt, ap);
|
2010-06-18 19:52:36 -07:00
|
|
|
va_end(ap);
|
2012-06-09 09:45:56 -07:00
|
|
|
ralloc_asprintf_rewrite_tail(&parser->info_log,
|
|
|
|
&parser->info_log_length, "\n");
|
2010-06-17 12:03:25 -07:00
|
|
|
}
|
|
|
|
|
2010-06-18 19:54:25 -07:00
|
|
|
void
|
|
|
|
glcpp_warning (YYLTYPE *locp, glcpp_parser_t *parser, const char *fmt, ...)
|
|
|
|
{
|
2010-08-11 13:59:45 -06:00
|
|
|
va_list ap;
|
|
|
|
|
2012-06-09 09:45:56 -07:00
|
|
|
ralloc_asprintf_rewrite_tail(&parser->info_log,
|
|
|
|
&parser->info_log_length,
|
|
|
|
"%u:%u(%u): "
|
|
|
|
"preprocessor warning: ",
|
|
|
|
locp->source,
|
|
|
|
locp->first_line,
|
|
|
|
locp->first_column);
|
2010-06-18 19:54:25 -07:00
|
|
|
va_start(ap, fmt);
|
2012-06-09 09:45:56 -07:00
|
|
|
ralloc_vasprintf_rewrite_tail(&parser->info_log,
|
|
|
|
&parser->info_log_length,
|
|
|
|
fmt, ap);
|
2010-06-18 19:54:25 -07:00
|
|
|
va_end(ap);
|
2012-06-09 09:45:56 -07:00
|
|
|
ralloc_asprintf_rewrite_tail(&parser->info_log,
|
|
|
|
&parser->info_log_length, "\n");
|
2010-06-18 19:54:25 -07:00
|
|
|
}
|
|
|
|
|
2012-11-30 17:17:56 -08:00
|
|
|
/* Searches backwards for '^ *#' from a given starting point. */
|
|
|
|
static int
|
|
|
|
in_directive(const char *shader, const char *ptr)
|
|
|
|
{
|
|
|
|
assert(ptr >= shader);
|
|
|
|
|
|
|
|
/* Search backwards for '#'. If we find a \n first, it doesn't count */
|
|
|
|
for (; ptr >= shader && *ptr != '#'; ptr--) {
|
|
|
|
if (*ptr == '\n')
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (ptr >= shader) {
|
|
|
|
/* Found '#'...look for spaces preceded by a newline */
|
|
|
|
for (ptr--; ptr >= shader && isblank(*ptr); ptr--);
|
|
|
|
// FIXME: I don't think the '\n' case can happen
|
|
|
|
if (ptr < shader || *ptr == '\n')
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Remove any line continuation characters in preprocessing directives.
|
|
|
|
* However, ignore any in GLSL code, as "There is no line continuation
|
|
|
|
* character" (1.30 page 9) in GLSL.
|
2010-06-23 12:31:09 -07:00
|
|
|
*/
|
|
|
|
static char *
|
|
|
|
remove_line_continuations(glcpp_parser_t *ctx, const char *shader)
|
|
|
|
{
|
2012-11-30 17:17:56 -08:00
|
|
|
int in_continued_line = 0;
|
|
|
|
int extra_newlines = 0;
|
2011-01-21 14:32:31 -08:00
|
|
|
char *clean = ralloc_strdup(ctx, "");
|
2012-11-30 17:17:56 -08:00
|
|
|
const char *search_start = shader;
|
|
|
|
const char *newline;
|
|
|
|
while ((newline = strchr(search_start, '\n')) != NULL) {
|
|
|
|
const char *backslash = NULL;
|
|
|
|
|
|
|
|
/* # of characters preceding the newline. */
|
|
|
|
int n = newline - shader;
|
|
|
|
|
|
|
|
/* Find the preceding '\', if it exists */
|
|
|
|
if (n >= 1 && newline[-1] == '\\')
|
|
|
|
backslash = newline - 1;
|
|
|
|
else if (n >= 2 && newline[-1] == '\r' && newline[-2] == '\\')
|
|
|
|
backslash = newline - 2;
|
|
|
|
|
|
|
|
/* Double backslashes don't count (the backslash is escaped) */
|
|
|
|
if (backslash != NULL && backslash[-1] == '\\') {
|
|
|
|
backslash = NULL;
|
2010-06-23 12:31:09 -07:00
|
|
|
}
|
2012-11-29 14:49:46 -08:00
|
|
|
|
2012-11-30 17:17:56 -08:00
|
|
|
if (backslash != NULL) {
|
|
|
|
/* We found a line continuation, but do we care? */
|
|
|
|
if (!in_continued_line) {
|
|
|
|
if (in_directive(shader, backslash)) {
|
|
|
|
in_continued_line = 1;
|
|
|
|
extra_newlines = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (in_continued_line) {
|
|
|
|
/* Copy everything before the \ */
|
|
|
|
ralloc_strncat(&clean, shader, backslash - shader);
|
|
|
|
shader = newline + 1;
|
|
|
|
extra_newlines++;
|
|
|
|
}
|
|
|
|
} else if (in_continued_line) {
|
|
|
|
/* Copy everything up to and including the \n */
|
|
|
|
ralloc_strncat(&clean, shader, newline - shader + 1);
|
|
|
|
shader = newline + 1;
|
|
|
|
/* Output extra newlines to make line numbers match */
|
|
|
|
for (; extra_newlines > 0; extra_newlines--)
|
|
|
|
ralloc_strcat(&clean, "\n");
|
|
|
|
in_continued_line = 0;
|
2012-11-29 14:49:46 -08:00
|
|
|
}
|
2012-11-30 17:17:56 -08:00
|
|
|
search_start = newline + 1;
|
2010-06-23 12:31:09 -07:00
|
|
|
}
|
2011-01-21 14:32:31 -08:00
|
|
|
ralloc_strcat(&clean, shader);
|
2010-06-23 12:31:09 -07:00
|
|
|
return clean;
|
|
|
|
}
|
|
|
|
|
2010-08-27 11:15:03 -06:00
|
|
|
int
|
2012-09-14 10:13:01 +10:00
|
|
|
glcpp_preprocess(void *ralloc_ctx, const char **shader, char **info_log,
|
2012-12-05 12:56:16 -08:00
|
|
|
const struct gl_extensions *extensions, struct gl_context *gl_ctx)
|
2010-06-16 12:18:00 -07:00
|
|
|
{
|
|
|
|
int errors;
|
2012-12-05 12:56:16 -08:00
|
|
|
glcpp_parser_t *parser = glcpp_parser_create (extensions, gl_ctx->API);
|
2012-12-05 13:25:48 -08:00
|
|
|
|
|
|
|
if (! gl_ctx->Const.DisableGLSLLineContinuations)
|
|
|
|
*shader = remove_line_continuations(parser, *shader);
|
2010-06-23 12:31:09 -07:00
|
|
|
|
2010-06-16 12:18:00 -07:00
|
|
|
glcpp_lex_set_source_string (parser, *shader);
|
|
|
|
|
|
|
|
glcpp_parser_parse (parser);
|
|
|
|
|
2010-08-11 14:09:11 -07:00
|
|
|
if (parser->skip_stack)
|
|
|
|
glcpp_error (&parser->skip_stack->loc, parser, "Unterminated #if\n");
|
|
|
|
|
2011-01-21 14:32:31 -08:00
|
|
|
ralloc_strcat(info_log, parser->info_log);
|
2010-06-16 12:18:00 -07:00
|
|
|
|
2011-01-21 14:32:31 -08:00
|
|
|
ralloc_steal(ralloc_ctx, parser->output);
|
2010-06-16 12:18:00 -07:00
|
|
|
*shader = parser->output;
|
|
|
|
|
2010-06-21 12:39:49 -07:00
|
|
|
errors = parser->error;
|
2010-06-16 12:18:00 -07:00
|
|
|
glcpp_parser_destroy (parser);
|
|
|
|
return errors;
|
|
|
|
}
|