1 /** @file default_reader.cpp
3 * Implementation of the default and builtin readers (part of GiNaC's parser).
7 * GiNaC Copyright (C) 1999-2011 Johannes Gutenberg University Mainz, Germany
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24 #include "parse_context.h"
26 #include "operators.h"
33 #include <stdint.h> // for uintptr_t
39 static ex sqrt_reader(const exvector& ev)
41 return GiNaC::sqrt(ev[0]);
43 static ex pow_reader(const exvector& ev)
45 return GiNaC::pow(ev[0], ev[1]);
47 static ex power_reader(const exvector& ev)
49 return GiNaC::power(ev[0], ev[1]);
53 // function::registered_functions() is protected, but we need to access it
54 // TODO: add a proper const method to the `function' class, so we don't
55 // need this silly hack any more.
56 class registered_functions_hack : public function
59 static const std::vector<function_options>& get_registered_functions()
61 return function::registered_functions();
64 registered_functions_hack();
65 registered_functions_hack(const registered_functions_hack&);
66 registered_functions_hack& operator=(const registered_functions_hack&);
69 // Encode an integer into a pointer to a function. Since functions
70 // are aligned (the minimal alignment depends on CPU architecture)
71 // we can distinguish between pointers and integers.
72 static reader_func encode_serial_as_reader_func(unsigned serial)
74 uintptr_t u = (uintptr_t)serial;
75 u = (u << 1) | (uintptr_t)1;
76 reader_func ptr = (reader_func)((void *)u);
80 const prototype_table& get_default_reader()
83 static bool initialized = false;
84 static prototype_table reader;
87 reader[make_pair("sqrt", 1)] = sqrt_reader;
88 reader[make_pair("pow", 2)] = pow_reader;
89 reader[make_pair("power", 2)] = power_reader;
90 std::vector<function_options>::const_iterator it =
91 registered_functions_hack::get_registered_functions().begin();
92 std::vector<function_options>::const_iterator end =
93 registered_functions_hack::get_registered_functions().end();
95 for (; it != end; ++it) {
96 prototype proto = make_pair(it->get_name(), it->get_nparams());
97 reader[proto] = encode_serial_as_reader_func(serial);
105 const prototype_table& get_builtin_reader()
107 using std::make_pair;
108 static bool initialized = false;
109 static prototype_table reader;
112 reader[make_pair("sqrt", 1)] = sqrt_reader;
113 reader[make_pair("pow", 2)] = pow_reader;
114 reader[make_pair("power", 2)] = power_reader;
145 std::vector<function_options>::const_iterator it =
146 registered_functions_hack::get_registered_functions().begin();
148 for ( ; serial<NFUNCTIONS; ++it, ++serial ) {
149 prototype proto = make_pair(it->get_name(), it->get_nparams());
150 reader[proto] = encode_serial_as_reader_func(serial);