forked from unknownworlds/hlslparser
-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathHLSLParser.h
145 lines (110 loc) · 5.31 KB
/
HLSLParser.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
//=============================================================================
//
// Render/HLSLParser.h
//
// Created by Max McGuire ([email protected])
// Copyright (c) 2013, Unknown Worlds Entertainment, Inc.
//
//=============================================================================
#ifndef HLSL_PARSER_H
#define HLSL_PARSER_H
//#include "Engine/StringPool.h"
//#include "Engine/Array.h"
#include "Engine.h"
#include "HLSLTokenizer.h"
#include "HLSLTree.h"
namespace M4
{
struct EffectState;
class HLSLParser
{
public:
HLSLParser(Allocator* allocator, const char* fileName, const char* buffer, size_t length);
bool Parse(HLSLTree* tree);
private:
bool Accept(int token);
bool Expect(int token);
/**
* Special form of Accept for accepting a word that is not actually a token
* but will be treated like one. This is useful for HLSL keywords that are
* only tokens in specific contexts (like in/inout in parameter lists).
*/
bool Accept(const char* token);
bool Expect(const char* token);
bool AcceptIdentifier(const char*& identifier);
bool ExpectIdentifier(const char*& identifier);
bool AcceptFloat(float& value);
bool AcceptHalf( float& value );
bool AcceptInt(int& value);
bool AcceptType(bool allowVoid, HLSLType& type);
bool ExpectType(bool allowVoid, HLSLType& type);
bool AcceptBinaryOperator(int priority, HLSLBinaryOp& binaryOp);
bool AcceptUnaryOperator(bool pre, HLSLUnaryOp& unaryOp);
bool AcceptAssign(HLSLBinaryOp& binaryOp);
bool AcceptTypeModifier(int & typeFlags);
bool AcceptInterpolationModifier(int& flags);
/**
* Handles a declaration like: "float2 name[5]". If allowUnsizedArray is true, it is
* is acceptable for the declaration to not specify the bounds of the array (i.e. name[]).
*/
bool AcceptDeclaration(bool allowUnsizedArray, HLSLType& type, const char*& name);
bool ExpectDeclaration(bool allowUnsizedArray, HLSLType& type, const char*& name);
bool ParseTopLevel(HLSLStatement*& statement);
bool ParseBlock(HLSLStatement*& firstStatement, const HLSLType& returnType);
bool ParseStatementOrBlock(HLSLStatement*& firstStatement, const HLSLType& returnType, bool scoped = true);
bool ParseStatement(HLSLStatement*& statement, const HLSLType& returnType);
bool ParseDeclaration(HLSLDeclaration*& declaration);
bool ParseFieldDeclaration(HLSLStructField*& field);
//bool ParseBufferFieldDeclaration(HLSLBufferField*& field);
bool ParseExpression(HLSLExpression*& expression);
bool ParseBinaryExpression(int priority, HLSLExpression*& expression);
bool ParseTerminalExpression(HLSLExpression*& expression, bool& needsEndParen);
bool ParseExpressionList(int endToken, bool allowEmptyEnd, HLSLExpression*& firstExpression, int& numExpressions);
bool ParseArgumentList(HLSLArgument*& firstArgument, int& numArguments, int& numOutputArguments);
bool ParseDeclarationAssignment(HLSLDeclaration* declaration);
bool ParsePartialConstructor(HLSLExpression*& expression, HLSLBaseType type, const char* typeName);
bool ParseStateName(bool isSamplerState, bool isPipelineState, const char*& name, const EffectState *& state);
bool ParseColorMask(int& mask);
bool ParseStateValue(const EffectState * state, HLSLStateAssignment* stateAssignment);
bool ParseStateAssignment(HLSLStateAssignment*& stateAssignment, bool isSamplerState, bool isPipelineState);
bool ParseSamplerState(HLSLExpression*& expression);
bool ParseTechnique(HLSLStatement*& statement);
bool ParsePass(HLSLPass*& pass);
bool ParsePipeline(HLSLStatement*& pipeline);
bool ParseStage(HLSLStatement*& stage);
bool ParseAttributeList(HLSLAttribute*& attribute);
bool ParseAttributeBlock(HLSLAttribute*& attribute);
bool CheckForUnexpectedEndOfStream(int endToken);
const HLSLStruct* FindUserDefinedType(const char* name) const;
void BeginScope();
void EndScope();
void DeclareVariable(const char* name, const HLSLType& type);
/** Returned pointer is only valid until Declare or Begin/EndScope is called. */
const HLSLType* FindVariable(const char* name, bool& global) const;
const HLSLFunction* FindFunction(const char* name) const;
const HLSLFunction* FindFunction(const HLSLFunction* fun) const;
bool GetIsFunction(const char* name) const;
/** Finds the overloaded function that matches the specified call. */
const HLSLFunction* MatchFunctionCall(const HLSLFunctionCall* functionCall, const char* name);
/** Gets the type of the named field on the specified object type (fieldName can also specify a swizzle. ) */
bool GetMemberType(const HLSLType& objectType, HLSLMemberAccess * memberAccess);
bool CheckTypeCast(const HLSLType& srcType, const HLSLType& dstType);
const char* GetFileName();
int GetLineNumber() const;
private:
struct Variable
{
const char* name;
HLSLType type;
};
HLSLTokenizer m_tokenizer;
Array<HLSLStruct*> m_userTypes;
Array<Variable> m_variables;
Array<HLSLFunction*> m_functions;
int m_numGlobals;
HLSLTree* m_tree;
bool m_allowUndeclaredIdentifiers = false;
bool m_disableSemanticValidation = false;
};
}
#endif