1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412
|
%{
// Copyright Eran Ifrah(c)
%}
%{
/*************** Includes and Defines *****************************/
#include "string"
#include "vector"
#include "stdio.h"
#include "map"
#include "function.h"
#define YYDEBUG_LEXER_TEXT (cl_func_lval)
#define YYSTYPE std::string
#define YYDEBUG 0 /* get the pretty debugging code to compile*/
#ifdef yylex
#undef yylex
#define yylex cl_scope_lex
#endif
int cl_func_parse();
void cl_func_error(char *string);
static FunctionList *g_funcs = NULL;
static clFunction curr_func;
//---------------------------------------------
// externs defined in the lexer
//---------------------------------------------
extern char *cl_func_text;
extern int cl_scope_lex();
extern bool setLexerInput(const std::string &in, const std::map<std::string, std::string> &ignoreTokens);
extern int cl_scope_lineno;
extern void cl_scope_lex_clean();
/*************** Standard ytab.c continues here *********************/
%}
/*************************************************************************/
/* This group is used by the C/C++ language parser */
%token LE_AUTO LE_DOUBLE LE_INT LE_STRUCT
%token LE_BREAK LE_ELSE LE_LONG LE_SWITCH
%token LE_CASE LE_ENUM LE_REGISTER LE_TYPEDEF
%token LE_CHAR LE_EXTERN LE_RETURN LE_UNION
%token LE_CONST LE_FLOAT LE_SHORT LE_UNSIGNED LE_BOOL
%token LE_CONTINUE LE_FOR LE_SIGNED LE_VOID
%token LE_DEFAULT LE_GOTO LE_SIZEOF LE_VOLATILE
%token LE_DO LE_IF LE_STATIC LE_WHILE
/* The following are used in C++ only. ANSI C would call these IDENTIFIERs */
%token LE_NEW LE_DELETE
%token LE_THIS
%token LE_OPERATOR
%token LE_CLASS
%token LE_PUBLIC LE_PROTECTED LE_PRIVATE
%token LE_VIRTUAL LE_FRIEND
%token LE_INLINE LE_OVERLOAD
%token LE_TEMPLATE LE_TYPENAME
%token LE_THROW LE_CATCH
/* ANSI C Grammar suggestions */
%token LE_IDENTIFIER LE_STRINGliteral
%token LE_FLOATINGconstant LE_INTEGERconstant LE_CHARACTERconstant
%token LE_OCTALconstant LE_HEXconstant
%token LE_POUNDPOUND LE_CComment LE_CPPComment LE_NAMESPACE LE_USING
/* New Lexical element, whereas ANSI C suggested non-terminal */
%token LE_TYPEDEFname
/* Multi-Character operators */
%token LE_ARROW /* -> */
%token LE_ICR LE_DECR /* ++ -- */
%token LE_LS LE_RS /* << >> */
%token LE_LE LE_GE LE_EQ LE_NE /* <= >= == != */
%token LE_ANDAND LE_OROR /* && || */
%token LE_ELLIPSIS /* ... */
/* Following are used in C++, not ANSI C */
%token LE_CLCL /* :: */
%token LE_DOTstar LE_ARROWstar /* .* ->* */
/* modifying assignment operators */
%token LE_MULTassign LE_DIVassign LE_MODassign /* *= /= %= */
%token LE_PLUSassign LE_MINUSassign /* += -= */
%token LE_LSassign LE_RSassign /* <<= >>= */
%token LE_ANDassign LE_ERassign LE_ORassign /* &= ^= |= */
%token LE_MACRO
%token LE_DYNAMIC_CAST
%token LE_STATIC_CAST
%token LE_CONST_CAST
%token LE_REINTERPRET_CAST
%token LE_SIZE_T
%token LE_TIME_T
%start translation_unit
%%
/* Costants */
basic_type_name_inter: LE_INT { $$ = $1; }
| LE_CHAR { $$ = $1; }
| LE_SHORT { $$ = $1; }
| LE_LONG { $$ = $1; }
| LE_FLOAT { $$ = $1; }
| LE_DOUBLE { $$ = $1; }
| LE_SIGNED { $$ = $1; }
| LE_UNSIGNED { $$ = $1; }
| LE_VOID { $$ = $1; }
| LE_BOOL { $$ = $1; }
| LE_TIME_T { $$ = $1; }
| LE_SIZE_T { $$ = $1; }
;
basic_type_name: LE_UNSIGNED basic_type_name_inter { $$ = $1 + " " + $2; }
| LE_SIGNED basic_type_name_inter { $$ = $1 + " " + $2; }
| LE_LONG LE_LONG { $$ = $1 + " " + $2; }
| LE_LONG LE_INT { $$ = $1 + " " + $2; }
| basic_type_name_inter { $$ = $1; }
;
/* ========================================================================*/
/* find declarations */
/* ========================================================================*/
translation_unit : /*empty*/
| translation_unit external_decl
;
external_decl : {curr_func.Reset();} function_decl
| error {
//printf("CodeLite: syntax error, unexpected token '%s' found\n", cl_func_lval.c_str());
}
;
/*templates*/
template_arg : /* empty */ { $$ = "";}
| template_specifiter LE_IDENTIFIER {$$ = $1 + " " + $2;}
;
template_arg_list : template_arg { $$ = $1; }
| template_arg_list ',' template_arg { $$ = $1 + " " + $2 + " " + $3; }
;
template_specifiter : LE_CLASS { $$ = $1; }
| LE_TYPENAME { $$ = $1; }
;
opt_template_qualifier : /*empty*/
| LE_TEMPLATE '<' template_arg_list '>' { $$ = $1 + $2 + $3 + $4;}
;
/* the following rules are for template parameters no declarations! */
template_parameter_list : /* empty */ {$$ = "";}
| template_parameter {$$ = $1;}
| template_parameter_list ',' template_parameter {$$ = $1 + $2 + $3;}
;
template_parameter : const_spec nested_scope_specifier LE_IDENTIFIER special_star_amp
{
$$ = $1 + $2 + $3 +$4;
}
| const_spec nested_scope_specifier basic_type_name special_star_amp
{
$$ = $1 + $2 + $3 +$4;
}
| const_spec nested_scope_specifier LE_IDENTIFIER '<' template_parameter_list '>' special_star_amp
{
$$ = $1 + $2 + $3 +$4 + $5 + $6 + $7 + " " ;
}
;
func_name: LE_IDENTIFIER {$$ = $1;}
| '~' LE_IDENTIFIER {$$ = $1 + $2;}
| LE_OPERATOR any_operator {$$ = $1 + $2;}
;
any_operator:
'+'
| '-'
| '*'
| '/'
| '%'
| '^'
| '&'
| '|'
| '~'
| '!'
| '<'
| '>'
| LE_LS
| LE_RS
| LE_ANDAND
| LE_OROR
| LE_ARROW
| LE_ARROWstar
| '.'
| LE_DOTstar
| LE_ICR
| LE_DECR
| LE_LE
| LE_GE
| LE_EQ
| LE_NE
| '(' ')'
| '[' ']'
| LE_NEW
| LE_DELETE
| ','
;
/* functions */
function_decl : stmnt_starter opt_template_qualifier virtual_spec const_spec variable_decl const_spec nested_scope_specifier func_name '(' {func_consumeFuncArgList();} const_spec declare_throw opt_pure_virtual func_postfix
{
//trim down trailing '::' from scope name
$6.erase($6.find_last_not_of(":")+1);
curr_func.m_isVirtual = $3.find("virtual") != std::string::npos;
curr_func.m_isPureVirtual = $13.find("=") != std::string::npos;
curr_func.m_isConst = $11.find("const") != std::string::npos;
curr_func.m_name = $8;
curr_func.m_scope = $7;
curr_func.m_retrunValusConst = $4;
curr_func.m_lineno = cl_scope_lineno;
curr_func.m_throws = $12;
curr_func.m_returnValue.m_rightSideConst = $6;
curr_func.m_returnValue.m_isConst = !$4.empty();
if(g_funcs)
{
g_funcs->push_back(curr_func);
}
curr_func.Reset();
}
;
declare_throw: /*empty*/ {$$ = "";}
| LE_THROW '(' template_parameter_list ')' {$$ = $3;}
;
func_postfix: '{'
| ';'
;
nested_scope_specifier : /*empty*/ {$$ = "";}
| nested_scope_specifier scope_specifier { $$ = $1 + $2;}
;
opt_pure_virtual : /*empty*/ {$$ = "";}
| '=' LE_OCTALconstant {$$ = $1 + $2;}
;
scope_specifier : LE_IDENTIFIER LE_CLCL {$$ = $1+ $2;}
| LE_IDENTIFIER '<' {func_consumeTemplateDecl();} LE_CLCL {$$ = $1 + $4;}
;
virtual_spec : /* empty */ {$$ = ""; }
| LE_VIRTUAL { $$ = $1; }
;
const_spec : /* empty */ {$$ = ""; }
| LE_CONST { $$ = $1; }
;
amp_item : /*empty*/ {$$ = ""; }
| '&' { $$ = $1; }
;
star_list : /*empty*/ {$$ = ""; }
| star_list '*' {$$ = $1 + $2;}
;
special_star_amp : star_list amp_item { $$ = $1 + $2; }
;
stmnt_starter : /*empty*/ {$$ = "";}
| ';' { $$ = ";";}
| ':' { $$ = ":";} //e.g. private: std::string m_name;
;
/** Variables **/
variable_decl : nested_scope_specifier basic_type_name special_star_amp
{
$1.erase($1.find_last_not_of(":")+1);
curr_func.m_returnValue.m_type = $2;
curr_func.m_returnValue.m_typeScope = $1;
curr_func.m_returnValue.m_starAmp = $3;
curr_func.m_returnValue.m_isPtr = ($3.find("*") != (size_t)-1);
$$ = $1 + $2 + $3;
}
| nested_scope_specifier LE_IDENTIFIER special_star_amp
{
$1.erase($1.find_last_not_of(":")+1);
curr_func.m_returnValue.m_type = $2;
curr_func.m_returnValue.m_typeScope = $1;
curr_func.m_returnValue.m_starAmp = $3;
curr_func.m_returnValue.m_isPtr = ($3.find("*") != (size_t)-1);
$$ = $1 + $2 + $3 ;
}
| nested_scope_specifier LE_IDENTIFIER '<' template_parameter_list '>' special_star_amp
{
$1.erase($1.find_last_not_of(":")+1);
curr_func.m_returnValue.m_type = $2;
curr_func.m_returnValue.m_typeScope = $1;
curr_func.m_returnValue.m_starAmp = $6;
curr_func.m_returnValue.m_isPtr = ($6.find("*") != (size_t)-1);
curr_func.m_returnValue.m_isTemplate = true;
curr_func.m_returnValue.m_templateDecl = $4;
$$ = $1 + $2 + $3 + $4 + $5 + $6 ;
}
;
%%
void yyerror(char *s) {}
void func_consumeFuncArgList()
{
curr_func.m_signature = "(";
int depth = 1;
while(depth > 0)
{
int ch = cl_scope_lex();
if(ch == 0)
{
break;
}
curr_func.m_signature += cl_func_lval;
curr_func.m_signature += " ";
if(ch == ')')
{
depth--;
continue;
}
else if(ch == '(')
{
depth ++ ;
continue;
}
}
}
/**
* consume all token until matching closing brace is found
*/
void func_consumeDecl()
{
int depth = 1;
while(depth > 0)
{
int ch = cl_scope_lex();
//printf("ch=%d\n", ch);
//fflush(stdout);
if(ch ==0)
{
break;
}
if(ch == '}')
{
depth--;
continue;
}
else if(ch == '{')
{
depth ++ ;
continue;
}
}
}
void func_consumeTemplateDecl()
{
int depth = 1;
while(depth > 0)
{
int ch = cl_scope_lex();
//printf("ch=%d\n", ch);
//fflush(stdout);
if(ch ==0){
break;
}
if(ch == '>')
{
depth--;
continue;
}
else if(ch == '<')
{
depth ++ ;
continue;
}
}
}
// return the scope name at the end of the input string
void get_functions(const std::string &in, FunctionList &li, const std::map<std::string, std::string> &ignoreTokens)
{
if( !setLexerInput(in, ignoreTokens) )
{
return;
}
g_funcs = &li;
//call tghe main parsing routine
cl_func_parse();
g_funcs = NULL;
//do the lexer cleanup
cl_scope_lex_clean();
}
|