473,396 Members | 2,011 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Seeking optimization advice

Hello all,

I have written an expression interpreter, and a profiler has told me that a
specific part of it is in need of optimization. My purpose in posting to
this newsgroup is to solicit suggestions on how I might accomplish my
intended aim more efficiently.

My interpreter supports the "if-then-else" construct. In addition, it
supports variables, which means it has a symbol table. As you probably
suspect, the symbol table is implemented using std::map<std::string,
var_value_t>.

Currently, the processing of an if-then-else proceeds as follows:

1. Save the original symbol table state; say the returned handle to the
saved state is 1

2. Parse the boolean condition and store the result in rval (note that it is
not possible for the symbol table to be altered here; I do not allow
assignment in the condition of an if-then-else)

3. Parse the "then" subexpression

4. Save the "then" symbol table state; say the returned handle to the saved
state is 2

5. Restore symbol table state 1

6. Parse the "else" subexpression

7. Save the "else" symbol table state; say the returned handle to the saved
state is 3

8. If rval is true, restore symbol table state 2, else restore symbol table
state 3
The following serves as an example expression to which this processing could
be applied (assume 'a' is an integer initialized to 0):

if true then a := 6 else a := 7

Note that the "then" and "else" subexpressions can be arbitrarily complex;
they might even be another if-then-else. And so on recursively... This
fact eliminates some potential shortcuts.

What needs to be optimized is the saving and restoring of the symbol table
states. Currently, states are saved in a std::vector<>. When state is
requested to be saved, I just push_back() the whole symbol table and return
the index as the "handle" to the saved state. When the restoration of a
state is requested, I just index the std::vector<> with the passed handle
(index) and copy back the symbol table at that index. All of this copying
of std::map<> is taking a big toll performance-wise.

I have already tried adding an undo / redo feature that allows me to operate
only upon the actual symbol table itself. Unfortunately, I quickly
discovered that this is not robust enough. State is not properly
maintained. A careful run through of the example expression above
demonstrates this.

Can anybody suggest something more efficient than my current implementation?
It is a requirement that whatever I implement remain within the realm of
standard C++.

Thank you,
Dave
Jul 22 '05 #1
1 1513
"Dave" <be***********@yahoo.com> wrote
I have written an expression interpreter, and a
profiler has told me that a specific part of it is
in need of optimization.
Smart profiler. Mine just tells me the relative execution times
of various parts of my code. ;-)
My purpose in posting to this newsgroup is to
solicit suggestions on how I might accomplish my
intended aim more efficiently.

My interpreter supports the "if-then-else" construct.
In addition, it supports variables, which means it has
a symbol table. As you probably suspect, the symbol
table is implemented using std::map<std::string, var_value_t>.
And here's your first chance at an optimization: a hash table
would be quite a bit faster, especially for large symbol tables.
It's not by chance that most compilers and interpreters use hash
tables for their symbol tables. If your particular implementation
of the standard library doesn't include a hash_map (which is
universally believed to be slated for adoption in the next
standard), you can:

a) use STLport
b) use the Dinkumware Standard C++ Library
c) use any available implementation of a hash table
d) roll your own (hash tables are actually among the most trivial
of data structures)
Currently, the processing of an if-then-else proceeds as follows:
1. Save the original symbol table state; say the returned handle to the saved state is 1

2. Parse the boolean condition and store the result in rval (note that it is not possible for the symbol table to be altered here; I do not allow assignment in the condition of an if-then-else)

3. Parse the "then" subexpression

4. Save the "then" symbol table state; say the returned handle
to the saved state is 2

5. Restore symbol table state 1

6. Parse the "else" subexpression

7. Save the "else" symbol table state; say the returned handle
to the saved state is 3

8. If rval is true, restore symbol table state 2, else restore
symbol table state 3

You'd save yourself a lot of trouble if you decoupled the parsing
from the semantic analysis. If you did, you wouldn't need to save
various states of your symbol table (very time consuming) and you
could skip over the 'then' or 'else' clauses depending on the
evaluation of the condition without impacting the symbol table or
any other program state.
What needs to be optimized is the saving and restoring
of the symbol table states.
No, it needs to be eliminated.

Can anybody suggest something more efficient than
my current implementation?
Done.
It is a requirement that whatever I implement remain
within the realm of standard C++.


Nothing that I suggested departs in any way from the C++ standard
(the standard does NOT preclude using data structures other than
the standard containers), so you're all set.

Claudio Puviani
Jul 22 '05 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Dave | last post by:
Hello all, I have written an expression interpreter, and a profiler has told me that a specific part of it is in need of optimization. My purpose in posting to this newsgroup is to solicit...
2
by: Joseph Geretz | last post by:
I don't know if this is the right group for my question, but I'm seeking advice from knowledgable .NET developers. Hopefully I've come to the right place. I work with a document management...
20
by: Jim | last post by:
Hi, I am hoping that someone here can help me out. I am for the first time trying to implement a page design using only CSS instead of HTML tables. I've been able to get most of the page done...
15
by: Kay Schluehr | last post by:
I have a list of strings ls = and want to create a regular expression sx from it, such that sx.match(s) yields a SRE_Match object when s starts with an s_i for one i in . There might be...
4
by: | last post by:
I am a recent college graduate and am looking for some advice on how to be a skilled C++ developer. My educational background is from a quite mediocre campus. Can anybody please explain what is...
9
by: Amod | last post by:
hi all, Kindly suggest some tips to optimize the C++ code for higher speed. regards, Amod
7
by: Joseph Geretz | last post by:
I have a Service which runs OK, but I'm abviously not starting it properly. In my OnStart event I commence a long running process which polls a database table and performs various processing. Since...
3
by: Jia Lu | last post by:
Hello all I see there are lots of flat db or db-like modules in the standard python modules. What about the keywords seeking speed of them ? (I want to put about 10000 articles with 10000...
1
by: sukatoa | last post by:
The code below, //I need help here.... public void processChangedLines(int offset, int length) throws BadLocationException { String text = getText(); ResetColor(); ...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.