00001 /* 00002 The lestes compiler suite 00003 Copyright (C) 2002, 2003, 2004, 2005 Miroslav Tichy 00004 Copyright (C) 2002, 2003, 2004, 2005 Petr Zika 00005 Copyright (C) 2002, 2003, 2004, 2005 Vojtech Hala 00006 Copyright (C) 2002, 2003, 2004, 2005 Jiri Kosina 00007 Copyright (C) 2002, 2003, 2004, 2005 Pavel Sanda 00008 Copyright (C) 2002, 2003, 2004, 2005 Jan Zouhar 00009 Copyright (C) 2002, 2003, 2004, 2005 Rudolf Thomas 00010 00011 This program is free software; you can redistribute it and/or modify 00012 it under the terms of the GNU General Public License as published by 00013 the Free Software Foundation; version 2 of the License. 00014 00015 This program is distributed in the hope that it will be useful, 00016 but WITHOUT ANY WARRANTY; without even the implied warranty of 00017 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00018 GNU General Public License for more details. 00019 00020 See the full text of the GNU General Public License version 2, and 00021 the limitations in the file doc/LICENSE. 00022 00023 By accepting the license the licensee waives any and all claims 00024 against the copyright holder(s) related in whole or in part to the 00025 work, its use, and/or the inability to use it. 00026 00027 */ 00028 /*! \file 00029 \brief Macro expander. 00030 00031 Definition of expander class performing macro expansion. 00032 \author pt 00033 */ 00034 #include <lestes/common.hh> 00035 #include <lestes/lang/cplus/lex/expander.hh> 00036 #include <lestes/lang/cplus/lex/pp_filter.hh> 00037 #include <lestes/lang/cplus/lex/pp_token.hh> 00038 #include <lestes/lang/cplus/lex/token_stream.hh> 00039 #include <lestes/lang/cplus/lex/token_sequence.hh> 00040 #include <lestes/lang/cplus/lex/macro_storage.hh> 00041 00042 package(lestes); 00043 package(lang); 00044 package(cplus); 00045 package(lex); 00046 00047 /*! 00048 Creates new expander. 00049 \pre a_input != NULL 00050 \pre a_macros != NULL 00051 \param a_input The input into the expander. 00052 \param a_macros The macro storage for macro expansion. 00053 */ 00054 expander::expander(const ptr<pp_filter> &a_input, const ptr<macro_storage> &a_macros): 00055 macros(checked(a_macros)), 00056 stream(token_stream::create(checked(a_input))) 00057 { 00058 } 00059 00060 /*! 00061 Returns current mode of the input. 00062 \return The mode of input. 00063 */ 00064 expander::mode_type expander::mode_get(void) 00065 { 00066 ptr<pp_token> tok = stream->peek_front(); 00067 00068 switch (tok->type_get()) { 00069 case pp_token::TOK_HASH: 00070 return DIRECTIVE; 00071 case pp_token::TOK_TERMINATOR: 00072 return FILE_END; 00073 default: 00074 break; 00075 } 00076 return NORMAL; 00077 } 00078 00079 /*! 00080 Returns the next line without expansion. 00081 \return The next line. 00082 */ 00083 ptr<token_sequence> expander::read_line(void) 00084 { 00085 return stream->read_line(); 00086 } 00087 00088 /*! 00089 Returs the next line expanded. 00090 \return The expanded line. 00091 */ 00092 ptr<token_sequence> expander::read_expanded(void) 00093 { 00094 ptr<token_sequence> ts = stream->expand_line(macros); 00095 return ts; 00096 } 00097 00098 /*! 00099 Returns new expander. 00100 \pre a_input != NULL 00101 \pre a_macros != NULL 00102 \param a_input The input into the expander. 00103 \param a_macros The macro storage for macro expansion. 00104 */ 00105 ptr<expander> expander::create(const ptr<pp_filter> &a_input, const ptr<macro_storage> &a_macros) 00106 { 00107 return new expander(a_input,a_macros); 00108 } 00109 00110 /*! 00111 Marks the object. 00112 */ 00113 void expander::gc_mark(void) 00114 { 00115 macros.gc_mark(); 00116 stream.gc_mark(); 00117 object::gc_mark(); 00118 } 00119 00120 end_package(lex); 00121 end_package(cplus); 00122 end_package(lang); 00123 end_package(lestes); 00124 /* vim: set ft=lestes : */
1.5.1-20070107