diff options
author | Tuowen Zhao <ztuowen@gmail.com> | 2016-09-25 14:30:34 -0600 |
---|---|---|
committer | Tuowen Zhao <ztuowen@gmail.com> | 2016-09-25 14:30:34 -0600 |
commit | e7de858ce27ded585d6e2ec4a5cbc3467c6a7593 (patch) | |
tree | 6f20c14ae118bc83d3c69f12875ba7e369bb2716 /include/printer/cfamily.h | |
parent | 2a5618583e1fdc8cde0308d3e5b1873bc94c5fb1 (diff) | |
download | chill-e7de858ce27ded585d6e2ec4a5cbc3467c6a7593.tar.gz chill-e7de858ce27ded585d6e2ec4a5cbc3467c6a7593.tar.bz2 chill-e7de858ce27ded585d6e2ec4a5cbc3467c6a7593.zip |
CFamily AST printer
Diffstat (limited to 'include/printer/cfamily.h')
-rw-r--r-- | include/printer/cfamily.h | 57 |
1 files changed, 55 insertions, 2 deletions
diff --git a/include/printer/cfamily.h b/include/printer/cfamily.h index f6e2284..83e7765 100644 --- a/include/printer/cfamily.h +++ b/include/printer/cfamily.h @@ -12,49 +12,102 @@ */ namespace chill { - namespace printer{ + namespace printer { /*! * \brief Print the AST for C like syntax, This replace the old print function * Custom multiplexer should not be needed. This version should calculate the correct precedence for expressions. * Expression should be encapsulated in {} or () or ended with ; with heuristics at the parent node + * + * All precedence calculation taken from http://en.cppreference.com/w/cpp/language/operator_precedence */ class CFamily : public GenericPrinter { public: CFamily() {} - virtual int getPrec(chillAST_Node *n); + + virtual int getPrecS(chillAST_BinaryOperator *n); + + virtual int getPrecS(chillAST_CallExpr *n); + + virtual int getPrecS(chillAST_CStyleAddressOf *n); + + virtual int getPrecS(chillAST_CStyleCastExpr *n); + + virtual int getPrecS(chillAST_TernaryOperator *n); + + virtual int getPrecS(chillAST_UnaryOperator *n); + virtual void printS(std::string ident, chillAST_ArraySubscriptExpr *n, std::ostream &o); + virtual void printS(std::string ident, chillAST_BinaryOperator *n, std::ostream &o); + virtual void printS(std::string ident, chillAST_CallExpr *n, std::ostream &o); + + //! Compound statement is responsible to break a new line if necessary virtual void printS(std::string ident, chillAST_CompoundStmt *n, std::ostream &o); + virtual void printS(std::string ident, chillAST_CStyleAddressOf *n, std::ostream &o); + virtual void printS(std::string ident, chillAST_CStyleCastExpr *n, std::ostream &o); + virtual void printS(std::string ident, chillAST_CudaFree *n, std::ostream &o); + virtual void printS(std::string ident, chillAST_CudaKernelCall *n, std::ostream &o); + virtual void printS(std::string ident, chillAST_CudaMalloc *n, std::ostream &o); + virtual void printS(std::string ident, chillAST_CudaMemcpy *n, std::ostream &o); + virtual void printS(std::string ident, chillAST_CudaSyncthreads *n, std::ostream &o); + virtual void printS(std::string ident, chillAST_DeclRefExpr *n, std::ostream &o); + /*! + * Prints the floatpoint literal, only the showpoint flag is currently set + * @param ident + * @param n + * @param o + */ virtual void printS(std::string ident, chillAST_FloatingLiteral *n, std::ostream &o); + virtual void printS(std::string ident, chillAST_ForStmt *n, std::ostream &o); + virtual void printS(std::string ident, chillAST_Free *n, std::ostream &o); + virtual void printS(std::string ident, chillAST_FunctionDecl *n, std::ostream &o); + virtual void printS(std::string ident, chillAST_IfStmt *n, std::ostream &o); + virtual void printS(std::string ident, chillAST_IntegerLiteral *n, std::ostream &o); + virtual void printS(std::string ident, chillAST_ImplicitCastExpr *n, std::ostream &o); + virtual void printS(std::string ident, chillAST_MacroDefinition *n, std::ostream &o); + virtual void printS(std::string ident, chillAST_Malloc *n, std::ostream &o); + virtual void printS(std::string ident, chillAST_MemberExpr *n, std::ostream &o); + virtual void printS(std::string ident, chillAST_NULL *n, std::ostream &o); + virtual void printS(std::string ident, chillAST_NoOp *n, std::ostream &o); + virtual void printS(std::string ident, chillAST_ParenExpr *n, std::ostream &o); + virtual void printS(std::string ident, chillAST_Preprocessing *n, std::ostream &o); + virtual void printS(std::string ident, chillAST_RecordDecl *n, std::ostream &o); + virtual void printS(std::string ident, chillAST_ReturnStmt *n, std::ostream &o); + virtual void printS(std::string ident, chillAST_Sizeof *n, std::ostream &o); + virtual void printS(std::string ident, chillAST_SourceFile *n, std::ostream &o); + virtual void printS(std::string ident, chillAST_TypedefDecl *n, std::ostream &o); + virtual void printS(std::string ident, chillAST_TernaryOperator *n, std::ostream &o); + virtual void printS(std::string ident, chillAST_UnaryOperator *n, std::ostream &o); + virtual void printS(std::string ident, chillAST_VarDecl *n, std::ostream &o); }; } |