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 #include <lestes/common.hh> 00029 #include <lestes/std/source_location.hh> 00030 #include <lestes/lang/cplus/sem/sa_context.g.hh> 00031 #include <lestes/lang/cplus/sem/ss_misc.g.hh> 00032 #include <lestes/lang/cplus/sem/as_decl.g.hh> 00033 00034 /*! \file 00035 \author TMA 00036 */ 00037 00038 package(lestes); 00039 package(lang); 00040 package(cplus); 00041 package(sem); 00042 00043 /*! 00044 Returns the only instance of the SA context manager. 00045 \return The manager instance. 00046 */ 00047 ptr<sa_context_manager> sa_context_manager::instance(void) 00048 { 00049 if (!singleton) { 00050 singleton = sa_context_manager_concrete::instance(); 00051 } 00052 return singleton; 00053 } 00054 00055 /*! 00056 Returns the only instance of the concrete SA context manager. 00057 \return The manager instance. 00058 */ 00059 ptr<sa_context_manager_concrete> sa_context_manager_concrete::instance(void) 00060 { 00061 if (!singleton) { 00062 ptr< ::lestes::std::stack< srp<sa_context> > > st = 00063 ::lestes::std::stack< srp<sa_context> >::create(); 00064 ptr<ss_decl_seq> decl_seq = ss_decl_seq::root_instance(); 00065 ptr<source_location> loc = decl_seq->location_get(); 00066 ptr<as_name> name = as_name::create(loc,NULL,as_global_namespace_fake_id::create(loc),false); 00067 ptr<sa_as_context> asctx = sa_as_context::create(name,as_access_specifier_public::create(loc)); 00068 ptr<sa_ss_context> ssctx = sa_ss_context::create(decl_seq,ss_access_specifier::ACCESS_PUBLIC); 00069 ptr<sa_sa_context> sactx = sa_sa_context::create(); 00070 ptr<sa_context> ctx = sa_context::create(asctx,ssctx,sactx); 00071 st->push(ctx); 00072 singleton = sa_context_manager_concrete::create(st); 00073 } 00074 return singleton; 00075 } 00076 00077 /*! 00078 Returns current context. 00079 \pre Context stack is nonempty. 00080 \return The current context. 00081 */ 00082 ptr<sa_context> sa_context_manager_concrete::current(void) 00083 { 00084 lassert(!contexts->empty()); 00085 return checked(contexts->top()); 00086 } 00087 00088 void sa_context_manager_concrete::push(ptr< sa_context > ctx) 00089 { 00090 lassert(ctx); 00091 contexts->push(ctx); 00092 } 00093 00094 void sa_context_manager_concrete::pop() 00095 { 00096 contexts->pop(); 00097 } 00098 00099 end_package(sem); 00100 end_package(cplus); 00101 end_package(lang); 00102 end_package(lestes); 00103 /* vim: set ft=lestes : */
1.5.1-20070107