Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
doxverilog
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
doxverilog
Commits
e12d6b50
Commit
e12d6b50
authored
Jan 08, 2014
by
Dimitri van Heesch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 721169 - Wrong call graph in simple situation
parent
1d0c9b6f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
3 deletions
+34
-3
code.l
src/code.l
+34
-3
No files found.
src/code.l
View file @
e12d6b50
...
...
@@ -111,6 +111,7 @@ static int g_lastSkipCppContext;
static int g_lastVerbStringContext;
static int g_memCallContext;
static int g_lastCContext;
static int g_skipInlineInitContext;
static bool g_insideObjC;
static bool g_insideJava;
...
...
@@ -1798,6 +1799,7 @@ RAWEND ")"[^ \t\(\)\\]{0,16}\"
%x OldStyleArgs
%x UsingName
%x RawString
%x InlineInit
%%
...
...
@@ -2542,7 +2544,7 @@ RAWEND ")"[^ \t\(\)\\]{0,16}\"
g_name+=yytext;
BEGIN( FuncCall );
}
<FuncCall,Body,MemberCall,MemberCall2,SkipInits>{RAWBEGIN} {
<FuncCall,Body,MemberCall,MemberCall2,SkipInits
,InlineInit
>{RAWBEGIN} {
QCString text=yytext;
int i=text.find('R');
g_code->codify(text.left(i+1));
...
...
@@ -2554,14 +2556,14 @@ RAWEND ")"[^ \t\(\)\\]{0,16}\"
g_delimiter=g_delimiter.left(g_delimiter.length()-1);
BEGIN( RawString );
}
<FuncCall,Body,MemberCall,MemberCall2,SkipInits>\" {
<FuncCall,Body,MemberCall,MemberCall2,SkipInits
,InlineInit
>\" {
startFontClass("stringliteral");
g_code->codify(yytext);
g_lastStringContext=YY_START;
g_inForEachExpression = FALSE;
BEGIN( SkipString );
}
<FuncCall,Body,MemberCall,MemberCall2,SkipInits>\' {
<FuncCall,Body,MemberCall,MemberCall2,SkipInits
,InlineInit
>\' {
startFontClass("stringliteral");
g_code->codify(yytext);
g_lastStringContext=YY_START;
...
...
@@ -2915,6 +2917,35 @@ RAWEND ")"[^ \t\(\)\\]{0,16}\"
g_theVarContext.addVariable(g_parmType,g_parmName);
g_parmType.resize(0);g_parmName.resize(0);
}
<MemberCall2,FuncCall>"{" {
if (g_bracketCount>0)
{
g_code->codify(yytext);
g_skipInlineInitContext=YY_START;
g_curlyCount=0;
BEGIN(InlineInit);
}
else
{
REJECT;
}
}
<InlineInit>"{" { g_curlyCount++;
g_code->codify(yytext);
}
<InlineInit>"}" {
g_code->codify(yytext);
if (--g_curlyCount<=0)
{
BEGIN(g_skipInlineInitContext);
}
}
<InlineInit>\n {
codifyLines(yytext);
}
<InlineInit>. {
g_code->codify(yytext);
}
<MemberCall2,FuncCall>"(" {
g_parmType.resize(0);g_parmName.resize(0);
g_code->codify(yytext);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment