2016-03-13 03:11:22 +00:00
|
|
|
//
|
|
|
|
//Copyright (C) 2016 Google, Inc.
|
|
|
|
//
|
|
|
|
//All rights reserved.
|
|
|
|
//
|
|
|
|
//Redistribution and use in source and binary forms, with or without
|
|
|
|
//modification, are permitted provided that the following conditions
|
|
|
|
//are met:
|
|
|
|
//
|
|
|
|
// Redistributions of source code must retain the above copyright
|
|
|
|
// notice, this list of conditions and the following disclaimer.
|
|
|
|
//
|
|
|
|
// Redistributions in binary form must reproduce the above
|
|
|
|
// copyright notice, this list of conditions and the following
|
|
|
|
// disclaimer in the documentation and/or other materials provided
|
|
|
|
// with the distribution.
|
|
|
|
//
|
|
|
|
// Neither the name of Google, Inc., nor the names of its
|
|
|
|
// contributors may be used to endorse or promote products derived
|
|
|
|
// from this software without specific prior written permission.
|
|
|
|
//
|
|
|
|
//THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
//"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
//LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
//FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
//COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
//INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
//BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
//LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
//CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
//LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
//ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
//POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
//
|
|
|
|
|
2016-03-13 17:24:20 +00:00
|
|
|
//
|
|
|
|
// This is a set of mutually recursive methods implementing the HLSL grammar.
|
|
|
|
// Generally, each returns
|
|
|
|
// - through an argument: a type specifically appropriate to which rule it
|
|
|
|
// recognized
|
|
|
|
// - through the return value: true/false to indicate whether or not it
|
|
|
|
// recognized its rule
|
|
|
|
//
|
|
|
|
// As much as possible, only grammar recognition should happen in this file,
|
2016-03-14 16:02:11 +00:00
|
|
|
// with all other work being farmed out to hlslParseHelper.cpp, which in turn
|
2016-03-13 17:24:20 +00:00
|
|
|
// will build the AST.
|
|
|
|
//
|
|
|
|
// The next token, yet to be "accepted" is always sitting in 'token'.
|
|
|
|
// When a method says it accepts a rule, that means all tokens involved
|
|
|
|
// in the rule will have been consumed, and none left in 'token'.
|
|
|
|
//
|
|
|
|
|
2016-03-13 03:11:22 +00:00
|
|
|
#include "hlslTokens.h"
|
|
|
|
#include "hlslGrammar.h"
|
|
|
|
|
|
|
|
namespace glslang {
|
|
|
|
|
|
|
|
// Root entry point to this recursive decent parser.
|
|
|
|
// Return true if compilation unit was successfully accepted.
|
|
|
|
bool HlslGrammar::parse()
|
|
|
|
{
|
|
|
|
advanceToken();
|
|
|
|
return acceptCompilationUnit();
|
|
|
|
}
|
|
|
|
|
|
|
|
void HlslGrammar::expected(const char* syntax)
|
|
|
|
{
|
|
|
|
parseContext.error(token.loc, "Expected", syntax, "");
|
|
|
|
}
|
|
|
|
|
2016-03-14 16:46:34 +00:00
|
|
|
// Only process the next token if it is an identifier.
|
|
|
|
// Return true if it was an identifier.
|
|
|
|
bool HlslGrammar::acceptIdentifier(HlslToken& idToken)
|
|
|
|
{
|
|
|
|
if (peekTokenClass(EHTokIdentifier)) {
|
|
|
|
idToken = token;
|
|
|
|
advanceToken();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-03-13 03:11:22 +00:00
|
|
|
// compilationUnit
|
|
|
|
// : list of externalDeclaration
|
|
|
|
//
|
|
|
|
bool HlslGrammar::acceptCompilationUnit()
|
|
|
|
{
|
2016-03-13 17:24:20 +00:00
|
|
|
TIntermNode* unitNode = nullptr;
|
|
|
|
|
2016-05-04 04:49:24 +00:00
|
|
|
while (! peekTokenClass(EHTokNone)) {
|
2016-03-13 17:24:20 +00:00
|
|
|
// externalDeclaration
|
|
|
|
TIntermNode* declarationNode;
|
|
|
|
if (! acceptDeclaration(declarationNode))
|
2016-03-13 03:11:22 +00:00
|
|
|
return false;
|
2016-03-13 17:24:20 +00:00
|
|
|
|
|
|
|
// hook it up
|
2016-03-14 16:02:11 +00:00
|
|
|
unitNode = intermediate.growAggregate(unitNode, declarationNode);
|
2016-03-13 03:11:22 +00:00
|
|
|
}
|
|
|
|
|
2016-03-13 17:24:20 +00:00
|
|
|
// set root of AST
|
2016-03-14 16:02:11 +00:00
|
|
|
intermediate.setTreeRoot(unitNode);
|
2016-03-13 17:24:20 +00:00
|
|
|
|
2016-03-13 03:11:22 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// declaration
|
2016-03-14 16:02:11 +00:00
|
|
|
// : SEMICOLON
|
|
|
|
// : fully_specified_type SEMICOLON
|
|
|
|
// | fully_specified_type identifier SEMICOLON
|
|
|
|
// | fully_specified_type identifier = expression SEMICOLON
|
|
|
|
// | fully_specified_type identifier function_parameters SEMICOLON // function prototype
|
|
|
|
// | fully_specified_type identifier function_parameters COLON semantic compound_statement // function definition
|
2016-03-13 03:24:24 +00:00
|
|
|
//
|
2016-03-13 17:24:20 +00:00
|
|
|
// 'node' could get created if the declaration creates code, like an initializer
|
|
|
|
// or a function body.
|
|
|
|
//
|
|
|
|
bool HlslGrammar::acceptDeclaration(TIntermNode*& node)
|
2016-03-13 03:11:22 +00:00
|
|
|
{
|
2016-03-13 17:24:20 +00:00
|
|
|
node = nullptr;
|
|
|
|
|
2016-03-13 03:24:24 +00:00
|
|
|
// fully_specified_type
|
|
|
|
TType type;
|
|
|
|
if (! acceptFullySpecifiedType(type))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// identifier
|
2016-03-14 16:46:34 +00:00
|
|
|
HlslToken idToken;
|
|
|
|
if (acceptIdentifier(idToken)) {
|
2016-03-13 03:24:24 +00:00
|
|
|
// = expression
|
|
|
|
TIntermTyped* expressionNode = nullptr;
|
2016-05-04 05:17:20 +00:00
|
|
|
if (acceptTokenClass(EHTokAssign)) {
|
2016-03-13 03:24:24 +00:00
|
|
|
if (! acceptExpression(expressionNode)) {
|
|
|
|
expected("initializer");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-14 16:02:11 +00:00
|
|
|
// SEMICOLON
|
2016-03-13 03:24:24 +00:00
|
|
|
if (acceptTokenClass(EHTokSemicolon)) {
|
2016-03-14 16:46:34 +00:00
|
|
|
node = parseContext.declareVariable(idToken.loc, *idToken.string, type, 0, expressionNode);
|
2016-03-13 03:24:24 +00:00
|
|
|
return true;
|
|
|
|
}
|
2016-03-13 23:58:25 +00:00
|
|
|
|
|
|
|
// function_parameters
|
2016-03-14 16:46:34 +00:00
|
|
|
TFunction* function = new TFunction(idToken.string, type);
|
2016-03-13 23:58:25 +00:00
|
|
|
if (acceptFunctionParameters(*function)) {
|
2016-03-14 16:02:11 +00:00
|
|
|
// COLON semantic
|
|
|
|
acceptSemantic();
|
|
|
|
|
2016-03-13 23:58:25 +00:00
|
|
|
// compound_statement
|
2016-03-14 16:02:11 +00:00
|
|
|
if (peekTokenClass(EHTokLeftBrace))
|
2016-03-13 23:58:25 +00:00
|
|
|
return acceptFunctionDefinition(*function, node);
|
|
|
|
|
2016-03-14 16:02:11 +00:00
|
|
|
// SEMICOLON
|
2016-03-13 23:58:25 +00:00
|
|
|
if (acceptTokenClass(EHTokSemicolon))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2016-03-13 03:24:24 +00:00
|
|
|
}
|
|
|
|
|
2016-03-14 16:02:11 +00:00
|
|
|
// SEMICOLON
|
2016-03-13 03:24:24 +00:00
|
|
|
if (acceptTokenClass(EHTokSemicolon))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// fully_specified_type
|
|
|
|
// : type_specifier
|
|
|
|
// | type_qualifier type_specifier
|
|
|
|
//
|
|
|
|
bool HlslGrammar::acceptFullySpecifiedType(TType& type)
|
|
|
|
{
|
|
|
|
// type_qualifier
|
|
|
|
TQualifier qualifier;
|
|
|
|
qualifier.clear();
|
|
|
|
acceptQualifier(qualifier);
|
|
|
|
|
|
|
|
// type_specifier
|
|
|
|
if (! acceptType(type))
|
|
|
|
return false;
|
|
|
|
type.getQualifier() = qualifier;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If token is a qualifier, return its token class and advance to the next
|
|
|
|
// qualifier. Otherwise, return false, and don't advance.
|
|
|
|
void HlslGrammar::acceptQualifier(TQualifier& qualifier)
|
|
|
|
{
|
2016-05-04 04:49:24 +00:00
|
|
|
switch (peek()) {
|
2016-03-13 03:24:24 +00:00
|
|
|
case EHTokUniform:
|
|
|
|
qualifier.storage = EvqUniform;
|
|
|
|
break;
|
|
|
|
case EHTokConst:
|
|
|
|
qualifier.storage = EvqConst;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
advanceToken();
|
|
|
|
}
|
|
|
|
|
|
|
|
// If token is for a type, update 'type' with the type information,
|
|
|
|
// and return true and advance.
|
|
|
|
// Otherwise, return false, and don't advance
|
|
|
|
bool HlslGrammar::acceptType(TType& type)
|
|
|
|
{
|
|
|
|
if (! token.isType)
|
|
|
|
return false;
|
|
|
|
|
2016-05-04 04:49:24 +00:00
|
|
|
switch (peek()) {
|
2016-03-13 03:24:24 +00:00
|
|
|
case EHTokInt:
|
|
|
|
case EHTokInt1:
|
|
|
|
case EHTokDword:
|
|
|
|
new(&type) TType(EbtInt);
|
|
|
|
break;
|
|
|
|
case EHTokFloat:
|
2016-05-20 18:06:03 +00:00
|
|
|
new(&type) TType(EbtFloat);
|
|
|
|
break;
|
|
|
|
|
2016-03-13 03:24:24 +00:00
|
|
|
case EHTokFloat1:
|
|
|
|
new(&type) TType(EbtFloat);
|
2016-05-20 18:06:03 +00:00
|
|
|
type.makeVector();
|
2016-03-13 03:24:24 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case EHTokFloat2:
|
|
|
|
new(&type) TType(EbtFloat, EvqTemporary, 2);
|
|
|
|
break;
|
|
|
|
case EHTokFloat3:
|
|
|
|
new(&type) TType(EbtFloat, EvqTemporary, 3);
|
|
|
|
break;
|
|
|
|
case EHTokFloat4:
|
|
|
|
new(&type) TType(EbtFloat, EvqTemporary, 4);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case EHTokInt2:
|
|
|
|
new(&type) TType(EbtInt, EvqTemporary, 2);
|
|
|
|
break;
|
|
|
|
case EHTokInt3:
|
|
|
|
new(&type) TType(EbtInt, EvqTemporary, 3);
|
|
|
|
break;
|
|
|
|
case EHTokInt4:
|
|
|
|
new(&type) TType(EbtInt, EvqTemporary, 4);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case EHTokBool2:
|
|
|
|
new(&type) TType(EbtBool, EvqTemporary, 2);
|
|
|
|
break;
|
|
|
|
case EHTokBool3:
|
|
|
|
new(&type) TType(EbtBool, EvqTemporary, 3);
|
|
|
|
break;
|
|
|
|
case EHTokBool4:
|
|
|
|
new(&type) TType(EbtBool, EvqTemporary, 4);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case EHTokFloat2x2:
|
|
|
|
new(&type) TType(EbtFloat, EvqTemporary, 0, 2, 2);
|
|
|
|
break;
|
|
|
|
case EHTokFloat2x3:
|
|
|
|
new(&type) TType(EbtFloat, EvqTemporary, 0, 3, 2);
|
|
|
|
break;
|
|
|
|
case EHTokFloat2x4:
|
|
|
|
new(&type) TType(EbtFloat, EvqTemporary, 0, 4, 2);
|
|
|
|
break;
|
|
|
|
case EHTokFloat3x2:
|
|
|
|
new(&type) TType(EbtFloat, EvqTemporary, 0, 2, 3);
|
|
|
|
break;
|
|
|
|
case EHTokFloat3x3:
|
|
|
|
new(&type) TType(EbtFloat, EvqTemporary, 0, 3, 3);
|
|
|
|
break;
|
|
|
|
case EHTokFloat3x4:
|
|
|
|
new(&type) TType(EbtFloat, EvqTemporary, 0, 4, 3);
|
|
|
|
break;
|
|
|
|
case EHTokFloat4x2:
|
|
|
|
new(&type) TType(EbtFloat, EvqTemporary, 0, 2, 4);
|
|
|
|
break;
|
|
|
|
case EHTokFloat4x3:
|
|
|
|
new(&type) TType(EbtFloat, EvqTemporary, 0, 3, 4);
|
|
|
|
break;
|
|
|
|
case EHTokFloat4x4:
|
|
|
|
new(&type) TType(EbtFloat, EvqTemporary, 0, 4, 4);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
advanceToken();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-03-13 23:58:25 +00:00
|
|
|
// function_parameters
|
2016-03-14 16:02:11 +00:00
|
|
|
// : LEFT_PAREN parameter_declaration COMMA parameter_declaration ... RIGHT_PAREN
|
2016-03-13 23:58:25 +00:00
|
|
|
//
|
|
|
|
bool HlslGrammar::acceptFunctionParameters(TFunction& function)
|
|
|
|
{
|
2016-03-14 16:02:11 +00:00
|
|
|
// LEFT_PAREN
|
2016-03-13 23:58:25 +00:00
|
|
|
if (! acceptTokenClass(EHTokLeftParen))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
do {
|
|
|
|
// parameter_declaration
|
|
|
|
if (! acceptParameterDeclaration(function))
|
|
|
|
break;
|
|
|
|
|
2016-03-14 16:02:11 +00:00
|
|
|
// COMMA
|
2016-03-13 23:58:25 +00:00
|
|
|
if (! acceptTokenClass(EHTokComma))
|
|
|
|
break;
|
|
|
|
} while (true);
|
|
|
|
|
2016-03-14 16:02:11 +00:00
|
|
|
// RIGHT_PAREN
|
2016-03-13 23:58:25 +00:00
|
|
|
if (! acceptTokenClass(EHTokRightParen)) {
|
|
|
|
expected("right parenthesis");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// parameter_declaration
|
|
|
|
// : fully_specified_type
|
|
|
|
// | fully_specified_type identifier
|
|
|
|
//
|
|
|
|
bool HlslGrammar::acceptParameterDeclaration(TFunction& function)
|
|
|
|
{
|
|
|
|
// fully_specified_type
|
|
|
|
TType* type = new TType;
|
|
|
|
if (! acceptFullySpecifiedType(*type))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// identifier
|
2016-03-14 16:46:34 +00:00
|
|
|
HlslToken idToken;
|
|
|
|
acceptIdentifier(idToken);
|
2016-03-13 23:58:25 +00:00
|
|
|
|
2016-03-14 16:46:34 +00:00
|
|
|
TParameter param = { idToken.string, type };
|
2016-03-13 23:58:25 +00:00
|
|
|
function.addParameter(param);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Do the work to create the function definition in addition to
|
|
|
|
// parsing the body (compound_statement).
|
|
|
|
bool HlslGrammar::acceptFunctionDefinition(TFunction& function, TIntermNode*& node)
|
|
|
|
{
|
|
|
|
TFunction* functionDeclarator = parseContext.handleFunctionDeclarator(token.loc, function, false /* not prototype */);
|
|
|
|
|
|
|
|
// This does a symbol table push
|
|
|
|
node = parseContext.handleFunctionDefinition(token.loc, *functionDeclarator);
|
|
|
|
|
|
|
|
// compound_statement
|
|
|
|
TIntermAggregate* functionBody = nullptr;
|
|
|
|
if (acceptCompoundStatement(functionBody)) {
|
2016-03-14 16:02:11 +00:00
|
|
|
node = intermediate.growAggregate(node, functionBody);
|
|
|
|
intermediate.setAggregateOperator(node, EOpFunction, functionDeclarator->getType(), token.loc);
|
2016-03-13 23:58:25 +00:00
|
|
|
node->getAsAggregate()->setName(functionDeclarator->getMangledName().c_str());
|
|
|
|
parseContext.symbolTable.pop(nullptr);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-05-04 05:17:20 +00:00
|
|
|
// The top-level full expression recognizer.
|
|
|
|
//
|
2016-03-13 03:24:24 +00:00
|
|
|
// expression
|
2016-05-04 05:17:20 +00:00
|
|
|
// : assignment_expression COMMA assignment_expression COMMA assignment_expression ...
|
2016-03-13 03:24:24 +00:00
|
|
|
//
|
|
|
|
bool HlslGrammar::acceptExpression(TIntermTyped*& node)
|
|
|
|
{
|
2016-05-04 05:17:20 +00:00
|
|
|
// assignment_expression
|
|
|
|
if (! acceptAssignmentExpression(node))
|
|
|
|
return false;
|
2016-03-13 23:58:25 +00:00
|
|
|
|
2016-05-04 05:17:20 +00:00
|
|
|
if (! peekTokenClass(EHTokComma))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
do {
|
|
|
|
// ... COMMA
|
2016-03-13 23:58:25 +00:00
|
|
|
TSourceLoc loc = token.loc;
|
2016-05-04 05:17:20 +00:00
|
|
|
advanceToken();
|
2016-03-13 23:58:25 +00:00
|
|
|
|
2016-05-04 05:17:20 +00:00
|
|
|
// ... assignment_expression
|
|
|
|
TIntermTyped* rightNode = nullptr;
|
|
|
|
if (! acceptAssignmentExpression(rightNode)) {
|
|
|
|
expected("assignment expression");
|
|
|
|
return false;
|
2016-03-13 23:58:25 +00:00
|
|
|
}
|
|
|
|
|
2016-05-04 05:17:20 +00:00
|
|
|
node = intermediate.addComma(node, rightNode, loc);
|
|
|
|
|
|
|
|
if (! peekTokenClass(EHTokComma))
|
|
|
|
return true;
|
|
|
|
} while (true);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Accept an assignment expression, where assignment operations
|
|
|
|
// associate right-to-left. This is, it is implicit, for example
|
|
|
|
//
|
|
|
|
// a op (b op (c op d))
|
|
|
|
//
|
|
|
|
// assigment_expression
|
|
|
|
// : binary_expression op binary_expression op binary_expression ...
|
|
|
|
//
|
|
|
|
bool HlslGrammar::acceptAssignmentExpression(TIntermTyped*& node)
|
|
|
|
{
|
|
|
|
if (! acceptBinaryExpression(node, PlLogicalOr))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
TOperator assignOp = HlslOpMap::assignment(peek());
|
|
|
|
if (assignOp == EOpNull)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// ... op
|
|
|
|
TSourceLoc loc = token.loc;
|
|
|
|
advanceToken();
|
|
|
|
|
|
|
|
// ... binary_expression
|
|
|
|
// But, done by recursing this function, which automatically
|
|
|
|
// gets the right-to-left associativity.
|
|
|
|
TIntermTyped* rightNode = nullptr;
|
|
|
|
if (! acceptAssignmentExpression(rightNode)) {
|
|
|
|
expected("assignment expression");
|
2016-03-13 23:58:25 +00:00
|
|
|
return false;
|
2016-03-13 03:24:24 +00:00
|
|
|
}
|
|
|
|
|
2016-05-04 05:17:20 +00:00
|
|
|
node = intermediate.addAssign(assignOp, node, rightNode, loc);
|
|
|
|
|
|
|
|
if (! peekTokenClass(EHTokComma))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Accept a binary expression, for binary operations that
|
|
|
|
// associate left-to-right. This is, it is implicit, for example
|
|
|
|
//
|
|
|
|
// ((a op b) op c) op d
|
|
|
|
//
|
|
|
|
// binary_expression
|
|
|
|
// : expression op expression op expression ...
|
|
|
|
//
|
|
|
|
// where 'expression' is the next higher level in precedence.
|
|
|
|
//
|
|
|
|
bool HlslGrammar::acceptBinaryExpression(TIntermTyped*& node, PrecedenceLevel precedenceLevel)
|
|
|
|
{
|
|
|
|
if (precedenceLevel > PlMul)
|
|
|
|
return acceptUnaryExpression(node);
|
|
|
|
|
|
|
|
// assignment_expression
|
|
|
|
if (! acceptBinaryExpression(node, (PrecedenceLevel)(precedenceLevel + 1)))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
TOperator op = HlslOpMap::binary(peek());
|
|
|
|
PrecedenceLevel tokenLevel = HlslOpMap::precedenceLevel(op);
|
|
|
|
if (tokenLevel < precedenceLevel)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
do {
|
|
|
|
// ... op
|
|
|
|
TSourceLoc loc = token.loc;
|
|
|
|
advanceToken();
|
|
|
|
|
|
|
|
// ... expression
|
|
|
|
TIntermTyped* rightNode = nullptr;
|
|
|
|
if (! acceptBinaryExpression(rightNode, (PrecedenceLevel)(precedenceLevel + 1))) {
|
|
|
|
expected("expression");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
node = intermediate.addBinaryMath(op, node, rightNode, loc);
|
|
|
|
|
|
|
|
if (! peekTokenClass(EHTokComma))
|
|
|
|
return true;
|
|
|
|
} while (true);
|
|
|
|
}
|
|
|
|
|
|
|
|
// unary_expression
|
|
|
|
// : + unary_expression
|
|
|
|
// | - unary_expression
|
|
|
|
// | ! unary_expression
|
|
|
|
// | ~ unary_expression
|
|
|
|
// | ++ unary_expression
|
|
|
|
// | -- unary_expression
|
|
|
|
// | postfix_expression
|
|
|
|
//
|
|
|
|
bool HlslGrammar::acceptUnaryExpression(TIntermTyped*& node)
|
|
|
|
{
|
|
|
|
TOperator unaryOp = HlslOpMap::preUnary(peek());
|
|
|
|
|
|
|
|
// postfix_expression
|
|
|
|
if (unaryOp == EOpNull)
|
|
|
|
return acceptPostfixExpression(node);
|
|
|
|
|
|
|
|
// op unary_expression
|
|
|
|
TSourceLoc loc = token.loc;
|
|
|
|
advanceToken();
|
|
|
|
if (! acceptUnaryExpression(node))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// + is a no-op
|
|
|
|
if (unaryOp == EOpAdd)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
node = intermediate.addUnaryMath(unaryOp, node, loc);
|
|
|
|
|
|
|
|
return node != nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// postfix_expression
|
|
|
|
// : LEFT_PAREN expression RIGHT_PAREN
|
|
|
|
// | literal
|
|
|
|
// | constructor
|
|
|
|
// | identifier
|
|
|
|
// | function_call
|
|
|
|
// | postfix_expression LEFT_BRACKET integer_expression RIGHT_BRACKET
|
|
|
|
// | postfix_expression DOT IDENTIFIER
|
|
|
|
// | postfix_expression INC_OP
|
|
|
|
// | postfix_expression DEC_OP
|
|
|
|
//
|
|
|
|
bool HlslGrammar::acceptPostfixExpression(TIntermTyped*& node)
|
|
|
|
{
|
|
|
|
// Not implemented as self-recursive:
|
|
|
|
// The logical "right recursion" is done with an loop at the end
|
|
|
|
|
|
|
|
// idToken will pick up either a variable or a function name in a function call
|
|
|
|
HlslToken idToken;
|
|
|
|
|
2016-03-14 16:02:11 +00:00
|
|
|
// LEFT_PAREN expression RIGHT_PAREN
|
2016-03-13 03:24:24 +00:00
|
|
|
if (acceptTokenClass(EHTokLeftParen)) {
|
|
|
|
if (! acceptExpression(node)) {
|
|
|
|
expected("expression");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (! acceptTokenClass(EHTokRightParen)) {
|
|
|
|
expected("right parenthesis");
|
|
|
|
return false;
|
|
|
|
}
|
2016-05-04 05:17:20 +00:00
|
|
|
} else if (acceptLiteral(node)) {
|
|
|
|
// literal (nothing else to do yet), go on to the
|
|
|
|
} else if (acceptConstructor(node)) {
|
|
|
|
// constructor (nothing else to do yet)
|
|
|
|
} else if (acceptIdentifier(idToken)) {
|
|
|
|
// identifier or function_call name
|
|
|
|
if (! peekTokenClass(EHTokLeftParen)) {
|
|
|
|
node = parseContext.handleVariable(idToken.loc, idToken.symbol, token.string);
|
|
|
|
} else if (acceptFunctionCall(idToken, node)) {
|
|
|
|
// function_call (nothing else to do yet)
|
|
|
|
} else {
|
|
|
|
expected("function call arguments");
|
|
|
|
return false;
|
|
|
|
}
|
2016-03-13 03:24:24 +00:00
|
|
|
}
|
|
|
|
|
2016-05-04 05:17:20 +00:00
|
|
|
do {
|
|
|
|
TSourceLoc loc = token.loc;
|
|
|
|
TOperator postOp = HlslOpMap::postUnary(peek());
|
|
|
|
|
|
|
|
// Consume only a valid post-unary operator, otherwise we are done.
|
|
|
|
switch (postOp) {
|
|
|
|
case EOpIndexDirectStruct:
|
|
|
|
case EOpIndexIndirect:
|
|
|
|
case EOpPostIncrement:
|
|
|
|
case EOpPostDecrement:
|
|
|
|
advanceToken();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return true;
|
|
|
|
}
|
2016-03-13 03:24:24 +00:00
|
|
|
|
2016-05-04 05:17:20 +00:00
|
|
|
// We have a valid post-unary operator, process it.
|
|
|
|
switch (postOp) {
|
|
|
|
case EOpIndexDirectStruct:
|
|
|
|
// todo
|
|
|
|
break;
|
|
|
|
case EOpIndexIndirect:
|
|
|
|
{
|
|
|
|
TIntermTyped* indexNode = nullptr;
|
|
|
|
if (! acceptExpression(indexNode) ||
|
|
|
|
! peekTokenClass(EHTokRightBracket)) {
|
|
|
|
expected("expression followed by ']'");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// todo: node = intermediate.addBinaryMath(
|
|
|
|
}
|
|
|
|
case EOpPostIncrement:
|
|
|
|
case EOpPostDecrement:
|
|
|
|
node = intermediate.addUnaryMath(postOp, node, loc);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
assert(0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while (true);
|
2016-03-13 03:24:24 +00:00
|
|
|
}
|
|
|
|
|
2016-03-13 17:24:20 +00:00
|
|
|
// constructor
|
2016-03-14 16:02:11 +00:00
|
|
|
// : type argument_list
|
2016-03-13 17:24:20 +00:00
|
|
|
//
|
|
|
|
bool HlslGrammar::acceptConstructor(TIntermTyped*& node)
|
|
|
|
{
|
|
|
|
// type
|
|
|
|
TType type;
|
|
|
|
if (acceptType(type)) {
|
|
|
|
TFunction* constructorFunction = parseContext.handleConstructorCall(token.loc, type);
|
|
|
|
if (constructorFunction == nullptr)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// arguments
|
2016-05-13 15:33:42 +00:00
|
|
|
TIntermTyped* arguments = nullptr;
|
2016-03-13 17:24:20 +00:00
|
|
|
if (! acceptArguments(constructorFunction, arguments)) {
|
|
|
|
expected("constructor arguments");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// hook it up
|
|
|
|
node = parseContext.handleFunctionCall(arguments->getLoc(), constructorFunction, arguments);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-05-04 05:17:20 +00:00
|
|
|
// The function_call identifier was already recognized, and passed in as idToken.
|
|
|
|
//
|
|
|
|
// function_call
|
|
|
|
// : [idToken] arguments
|
|
|
|
//
|
2016-05-13 15:33:42 +00:00
|
|
|
bool HlslGrammar::acceptFunctionCall(HlslToken idToken, TIntermTyped*& node)
|
2016-05-04 05:17:20 +00:00
|
|
|
{
|
2016-05-13 15:33:42 +00:00
|
|
|
// arguments
|
|
|
|
TFunction* function = new TFunction(idToken.string, TType(EbtVoid));
|
|
|
|
TIntermTyped* arguments = nullptr;
|
|
|
|
if (! acceptArguments(function, arguments))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
node = parseContext.handleFunctionCall(idToken.loc, function, arguments);
|
|
|
|
|
|
|
|
return true;
|
2016-05-04 05:17:20 +00:00
|
|
|
}
|
|
|
|
|
2016-03-13 03:24:24 +00:00
|
|
|
// arguments
|
2016-03-14 16:02:11 +00:00
|
|
|
// : LEFT_PAREN expression COMMA expression COMMA ... RIGHT_PAREN
|
2016-03-13 03:24:24 +00:00
|
|
|
//
|
2016-03-13 17:24:20 +00:00
|
|
|
// The arguments are pushed onto the 'function' argument list and
|
|
|
|
// onto the 'arguments' aggregate.
|
|
|
|
//
|
2016-05-13 15:33:42 +00:00
|
|
|
bool HlslGrammar::acceptArguments(TFunction* function, TIntermTyped*& arguments)
|
2016-03-13 03:24:24 +00:00
|
|
|
{
|
2016-03-14 16:02:11 +00:00
|
|
|
// LEFT_PAREN
|
2016-03-13 03:24:24 +00:00
|
|
|
if (! acceptTokenClass(EHTokLeftParen))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
do {
|
2016-03-13 17:24:20 +00:00
|
|
|
// expression
|
2016-03-13 03:24:24 +00:00
|
|
|
TIntermTyped* arg;
|
2016-05-13 15:33:42 +00:00
|
|
|
if (! acceptAssignmentExpression(arg))
|
2016-03-13 03:24:24 +00:00
|
|
|
break;
|
2016-03-13 17:24:20 +00:00
|
|
|
|
|
|
|
// hook it up
|
|
|
|
parseContext.handleFunctionArgument(function, arguments, arg);
|
|
|
|
|
2016-03-14 16:02:11 +00:00
|
|
|
// COMMA
|
2016-03-13 03:24:24 +00:00
|
|
|
if (! acceptTokenClass(EHTokComma))
|
|
|
|
break;
|
|
|
|
} while (true);
|
|
|
|
|
2016-03-14 16:02:11 +00:00
|
|
|
// RIGHT_PAREN
|
2016-03-13 03:24:24 +00:00
|
|
|
if (! acceptTokenClass(EHTokRightParen)) {
|
|
|
|
expected("right parenthesis");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool HlslGrammar::acceptLiteral(TIntermTyped*& node)
|
|
|
|
{
|
|
|
|
switch (token.tokenClass) {
|
|
|
|
case EHTokIntConstant:
|
2016-03-14 16:02:11 +00:00
|
|
|
node = intermediate.addConstantUnion(token.i, token.loc, true);
|
2016-03-13 03:24:24 +00:00
|
|
|
break;
|
|
|
|
case EHTokFloatConstant:
|
2016-03-14 16:02:11 +00:00
|
|
|
node = intermediate.addConstantUnion(token.d, EbtFloat, token.loc, true);
|
2016-03-13 03:24:24 +00:00
|
|
|
break;
|
|
|
|
case EHTokDoubleConstant:
|
2016-03-14 16:02:11 +00:00
|
|
|
node = intermediate.addConstantUnion(token.d, EbtDouble, token.loc, true);
|
2016-03-13 03:24:24 +00:00
|
|
|
break;
|
|
|
|
case EHTokBoolConstant:
|
2016-03-14 16:02:11 +00:00
|
|
|
node = intermediate.addConstantUnion(token.b, token.loc, true);
|
2016-03-13 03:24:24 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-03-13 03:11:22 +00:00
|
|
|
advanceToken();
|
2016-03-13 03:24:24 +00:00
|
|
|
|
2016-03-13 03:11:22 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-03-13 23:58:25 +00:00
|
|
|
// compound_statement
|
2016-05-04 05:17:20 +00:00
|
|
|
// : LEFT_CURLY statement statement ... RIGHT_CURLY
|
2016-03-13 23:58:25 +00:00
|
|
|
//
|
|
|
|
bool HlslGrammar::acceptCompoundStatement(TIntermAggregate*& compoundStatement)
|
2016-03-13 03:24:24 +00:00
|
|
|
{
|
2016-05-04 05:17:20 +00:00
|
|
|
// LEFT_CURLY
|
2016-03-13 23:58:25 +00:00
|
|
|
if (! acceptTokenClass(EHTokLeftBrace))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// statement statement ...
|
|
|
|
TIntermNode* statement = nullptr;
|
|
|
|
while (acceptStatement(statement)) {
|
|
|
|
// hook it up
|
2016-03-14 16:02:11 +00:00
|
|
|
compoundStatement = intermediate.growAggregate(compoundStatement, statement);
|
2016-03-13 23:58:25 +00:00
|
|
|
}
|
2016-05-04 05:17:20 +00:00
|
|
|
if (compoundStatement)
|
|
|
|
compoundStatement->setOperator(EOpSequence);
|
2016-03-13 23:58:25 +00:00
|
|
|
|
2016-05-04 05:17:20 +00:00
|
|
|
// RIGHT_CURLY
|
2016-03-13 23:58:25 +00:00
|
|
|
return acceptTokenClass(EHTokRightBrace);
|
|
|
|
}
|
|
|
|
|
|
|
|
// statement
|
|
|
|
// : compound_statement
|
2016-03-14 16:02:11 +00:00
|
|
|
// | return SEMICOLON
|
|
|
|
// | return expression SEMICOLON
|
|
|
|
// | expression SEMICOLON
|
2016-03-13 23:58:25 +00:00
|
|
|
//
|
|
|
|
bool HlslGrammar::acceptStatement(TIntermNode*& statement)
|
|
|
|
{
|
|
|
|
// compound_statement
|
|
|
|
TIntermAggregate* compoundStatement = nullptr;
|
|
|
|
if (acceptCompoundStatement(compoundStatement)) {
|
|
|
|
statement = compoundStatement;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-03-14 16:02:11 +00:00
|
|
|
// RETURN
|
2016-03-13 23:58:25 +00:00
|
|
|
if (acceptTokenClass(EHTokReturn)) {
|
|
|
|
// expression
|
|
|
|
TIntermTyped* node;
|
|
|
|
if (acceptExpression(node)) {
|
|
|
|
// hook it up
|
2016-03-14 16:02:11 +00:00
|
|
|
statement = intermediate.addBranch(EOpReturn, node, token.loc);
|
2016-03-13 23:58:25 +00:00
|
|
|
} else
|
2016-03-14 16:02:11 +00:00
|
|
|
statement = intermediate.addBranch(EOpReturn, token.loc);
|
2016-03-13 23:58:25 +00:00
|
|
|
|
2016-03-14 16:02:11 +00:00
|
|
|
// SEMICOLON
|
2016-03-13 23:58:25 +00:00
|
|
|
if (! acceptTokenClass(EHTokSemicolon))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// expression
|
|
|
|
TIntermTyped* node;
|
|
|
|
if (acceptExpression(node))
|
|
|
|
statement = node;
|
|
|
|
|
2016-03-14 16:02:11 +00:00
|
|
|
// SEMICOLON
|
2016-03-13 23:58:25 +00:00
|
|
|
if (! acceptTokenClass(EHTokSemicolon))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
2016-03-13 03:24:24 +00:00
|
|
|
}
|
|
|
|
|
2016-03-14 16:02:11 +00:00
|
|
|
// COLON semantic
|
|
|
|
bool HlslGrammar::acceptSemantic()
|
|
|
|
{
|
|
|
|
// COLON
|
|
|
|
if (acceptTokenClass(EHTokColon)) {
|
|
|
|
// semantic
|
2016-03-14 16:46:34 +00:00
|
|
|
HlslToken idToken;
|
|
|
|
if (! acceptIdentifier(idToken)) {
|
2016-03-14 16:02:11 +00:00
|
|
|
expected("semantic");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-03-13 03:11:22 +00:00
|
|
|
} // end namespace glslang
|