Developer forums (C::B DEVELOPMENT STRICTLY!) > Development
Bug report. Infinite loop in ParserThread::SkipBlock
alnik:
Hello!
- What is the problem?
Infinite loop in ParserThread::SkipBlock - tokenazer infinitly expand macro.
- What did you do to when it happened?
Open next source file (attached):
cc_test.cpp
--- Code: ---#define AA__( x ) #x
#define AA_( x ) AA__( prefix##x )
#define AA( x ) AA_( x )
#define BB 42
struct CC { int member; };
struct DD { CC cc; };
#define EE() g( AA(BB) )
#define FF (EE()->cc)
#define member FF.member
DD* g(const char*);
int f()
{
return member; // "member" expand to " (g(AA__)->cc).member" infinitly
}
--- End code ---
- Can you reproduce it? How?
Yes. Open attached source file.
- What release of Code::Blocks are you using?
Bug reproduced in trunk after revision number 10459.
- Which was the latest release that did not have this problem?
Trunk revision 10495.
Thank you!
ollydbg:
Thanks for the report, I can confirm this bug.
The reason I found is that, the anchor point(m_TokenIndex) when we first start macro expansion was wrongly reset, so that
"member" is expanded infinite times.
I don't have a clean way to fix this issue......
EDIT:
--- Code: ---bool Tokenizer::ReplaceBufferText(const wxString& target, const Token* macro)
{
if (target.IsEmpty())
return true; // the token is removed from the buffer, return true, so we need to fetch another token
if (m_ExpandedMacros.size() >= s_MaxMacroReplaceDepth)
{
// clear the macro expansion stack
m_ExpandedMacros.clear();
m_PeekAvailable = false;
return true; // NOTE: we have to skip the problem token by returning true.
}
...
--- End code ---
The problem is here, when (m_ExpandedMacros.size() >= s_MaxMacroReplaceDepth) happens, the m_ExpandedMacros stack get cleaned up, so that the "anchor point" saved in the deepest use macro is lost.
ollydbg:
OK, fixed in rev10499. Thanks.
BTW: your test code has exceed the macro expansion limit level value(5). :)
alnik:
Thank you!
Is it possible to increase the limit value, for example, up to 8? ;)
ollydbg:
--- Quote from: alnik on September 11, 2015, 01:47:41 pm ---Thank you!
Is it possible to increase the limit value, for example, up to 8? ;)
--- End quote ---
1,The recently added feature(macro check on every identifier like token, around rev10438 to rev10474) does not works 100% like what a C preprocessor does. Actual C preprocessor is more complex, and has more expansion rules.
2, I don't have a strong option about what the expansion level limit it should be, 5 is OK as I can see, but may a larger is better? I would like see any one's suggestion.
Navigation
[0] Message Index
[#] Next page
Go to full version