#ifndef HECLFRONTEND_HPP #define HECLFRONTEND_HPP #include #include #include #include #include namespace HECL { namespace Frontend { struct SourceLocation { int line = -1; int col = -1; SourceLocation() = default; SourceLocation(int l, int c) : line(l), col(c) {} }; class Diagnostics { std::string m_name; std::string m_source; std::string sourceDiagString(const SourceLocation& l, bool ansi=false) const; public: void reset(const std::string& name, const std::string& source) {m_name = name; m_source = source;} void reportParserErr(const SourceLocation& l, const char* format, ...); void reportLexerErr(const SourceLocation& l, const char* format, ...); void reportCompileErr(const SourceLocation& l, const char* format, ...); void reportBackendErr(const SourceLocation& l, const char* format, ...); const std::string& getName() const {return m_name;} const std::string& getSource() const {return m_source;} }; class Parser { public: enum TokenType { TokenNone, TokenSourceBegin, TokenSourceEnd, TokenNumLiteral, TokenVectorSwizzle, TokenEvalGroupStart, TokenEvalGroupEnd, TokenFunctionStart, TokenFunctionEnd, TokenFunctionArgDelim, TokenArithmeticOp, }; private: Diagnostics& m_diag; const std::string* m_source = nullptr; std::string::const_iterator m_sourceIt; std::vector m_parenStack; bool m_reset = false; void skipWhitespace(std::string::const_iterator& it); public: struct Token { TokenType m_type; SourceLocation m_location; std::string m_tokenString; int m_tokenInt = 0; float m_tokenFloat = 0.0; Token() : m_type(TokenNone) {} Token(TokenType type, SourceLocation loc) : m_type(type), m_location(loc) {} const char* typeString() const { switch (m_type) { case TokenNone: return "None"; case TokenSourceBegin: return "SourceBegin"; case TokenSourceEnd: return "SourceEnd"; case TokenNumLiteral: return "NumLiteral"; case TokenVectorSwizzle: return "VectorSwizzle"; case TokenEvalGroupStart: return "EvalGroupStart"; case TokenEvalGroupEnd: return "EvalGroupEnd"; case TokenFunctionStart: return "FunctionStart"; case TokenFunctionEnd: return "FunctionEnd"; case TokenFunctionArgDelim: return "FunctionArgDelim"; case TokenArithmeticOp: return "ArithmeticOp"; default: break; } return nullptr; } }; void reset(const std::string& source); Token consumeToken(); SourceLocation getLocation() const; Parser(Diagnostics& diag) : m_diag(diag) {} }; struct IR { enum OpType { OpNone, /**< NOP */ OpCall, /**< Deferred function insertion for HECL backend using specified I/O regs */ OpLoadImm, /**< Load a constant (numeric literal) into register */ OpArithmetic, /**< Perform binary arithmetic between registers */ OpSwizzle /**< Vector insertion/extraction/swizzling operation */ }; using RegID = int; struct Instruction { OpType m_op = OpNone; RegID m_target = -1; SourceLocation m_loc; struct { std::string m_name; std::vector m_argInstIdxs; } m_call; struct { atVec4f m_immVec; } m_loadImm; enum ArithmeticOpType { ArithmeticOpNone, ArithmeticOpAdd, ArithmeticOpSubtract, ArithmeticOpMultiply, ArithmeticOpDivide }; struct { ArithmeticOpType m_op = ArithmeticOpNone; size_t m_instIdxs[2]; } m_arithmetic; struct { int m_idxs[4] = {-1, -1, -1, -1}; size_t m_instIdx; } m_swizzle; Instruction(OpType type, const SourceLocation& loc) : m_op(type), m_loc(loc) {} ssize_t getChildCount() const { switch (m_op) { case OpCall: return m_call.m_argInstIdxs.size(); case OpArithmetic: return 2; case OpSwizzle: return 1; default: LogModule.report(LogVisor::FatalError, "invalid op type"); } return -1; } const IR::Instruction& getChildInst(const IR& ir, size_t idx) const { switch (m_op) { case OpCall: return ir.m_instructions.at(m_call.m_argInstIdxs.at(idx)); case OpArithmetic: if (idx > 1) LogModule.report(LogVisor::FatalError, "arithmetic child idx must be 0 or 1"); return ir.m_instructions.at(m_arithmetic.m_instIdxs[idx]); case OpSwizzle: if (idx > 0) LogModule.report(LogVisor::FatalError, "swizzle child idx must be 0"); return ir.m_instructions.at(m_swizzle.m_instIdx); default: LogModule.report(LogVisor::FatalError, "invalid op type"); } return *this; } const atVec4f& getImmVec() const { if (m_op != OpLoadImm) LogModule.report(LogVisor::FatalError, "invalid op type"); return m_loadImm.m_immVec; } }; size_t m_regCount = 0; std::vector m_instructions; }; class Lexer { friend class OperationNode; Diagnostics& m_diag; /* Intermediate tree-node for organizing tokens into operations */ struct OperationNode { Parser::Token m_tok; OperationNode* m_prev = nullptr; OperationNode* m_next = nullptr; OperationNode* m_sub = nullptr; OperationNode() {} OperationNode(Parser::Token&& tok) : m_tok(std::move(tok)) {} }; /* Pool of nodes to keep ownership (forward_list so pointers aren't invalidated) */ std::forward_list m_pool; /* Final lexed root function (IR comes from this) */ OperationNode* m_root = nullptr; /* Helper for relinking operator precedence */ void ReconnectArithmetic(OperationNode* sn, OperationNode** lastSub, OperationNode** newSub) const; /* Recursive IR compile funcs */ void RecursiveFuncCompile(IR& ir, const Lexer::OperationNode* funcNode, IR::RegID target) const; void RecursiveGroupCompile(IR& ir, const Lexer::OperationNode* groupNode, IR::RegID target) const; void EmitVec3(IR& ir, const Lexer::OperationNode* funcNode, IR::RegID target) const; void EmitVec4(IR& ir, const Lexer::OperationNode* funcNode, IR::RegID target) const; void EmitArithmetic(IR& ir, const Lexer::OperationNode* arithNode, IR::RegID target) const; void EmitVectorSwizzle(IR& ir, const Lexer::OperationNode* swizNode, IR::RegID target) const; static void PrintChain(const Lexer::OperationNode* begin, const Lexer::OperationNode* end); static void PrintTree(const Lexer::OperationNode* node, int indent=0); public: void reset(); void consumeAllTokens(Parser& parser); IR compileIR() const; Lexer(Diagnostics& diag) : m_diag(diag) {} }; class Frontend { Diagnostics m_diag; Parser m_parser; Lexer m_lexer; public: IR compileSource(const std::string& source, const std::string& diagName) { m_diag.reset(diagName, source); m_parser.reset(source); m_lexer.consumeAllTokens(m_parser); return m_lexer.compileIR(); } Diagnostics& getDiagnostics() {return m_diag;} Frontend() : m_parser(m_diag), m_lexer(m_diag) {} }; } } #endif // HECLFRONTEND_HPP