debug printing: cleanup
[babeltrace.git] / formats / ctf / metadata / ctf-lexer.l
CommitLineData
8b9d5b5e 1%{
c59a87f5
MD
2/*
3 * ctf-lexer.l
4 *
5 * Common Trace Formal Lexer
6 *
7 * Copyright 2010 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 *
9 * Permission is hereby granted, free of charge, to any person obtaining a copy
10 * of this software and associated documentation files (the "Software"), to deal
11 * in the Software without restriction, including without limitation the rights
12 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 * copies of the Software, and to permit persons to whom the Software is
14 * furnished to do so, subject to the following conditions:
15 *
16 * The above copyright notice and this permission notice shall be included in
17 * all copies or substantial portions of the Software.
18 */
19
8b9d5b5e 20#include <stdio.h>
34d3acc4 21#include "ctf-scanner.h"
8b9d5b5e
MD
22#include "ctf-parser.h"
23#include "ctf-ast.h"
24
609bd1bf
MD
25extern
26void setstring(struct ctf_scanner *scanner, YYSTYPE *lvalp, const char *src);
27
28static void yyunput (int c, register char * yy_bp , yyscan_t yyscanner)
29 __attribute__((unused));
30static int input (yyscan_t yyscanner) __attribute__((unused));
34d3acc4 31
8e1a0b6f 32#define printf_dbg(fmt, args...) fprintf(stderr, "%s: " fmt, __func__, ##args)
34d3acc4 33
8b9d5b5e
MD
34%}
35
36%x comment_ml comment_sl string_lit char_const
34d3acc4
MD
37%option reentrant yylineno noyywrap bison-bridge
38%option extra-type="struct ctf_scanner *"
39 /* bison-locations */
8b9d5b5e
MD
40INTEGER_SUFFIX [ \n\t]*(U|UL|ULL|LU|LLU|Ul|Ull|lU|llU|u|uL|uLL|Lu|LLu|ul|ull|lu|llu)
41DIGIT [0-9]
42NONDIGIT [a-zA-Z_]
43HEXDIGIT [0-9A-Fa-f]
44OCTALDIGIT [0-7]
45UCHARLOWERCASE \\u{HEXDIGIT}{4}
46UCHARUPPERCASE \\U{HEXDIGIT}{8}
47ID_NONDIGIT {NONDIGIT}|{UCHARLOWERCASE}|{UCHARUPPERCASE}
48IDENTIFIER {ID_NONDIGIT}({ID_NONDIGIT}|{DIGIT})*
49ESCSEQ \\(\'|\"|\?|\\|a|b|f|n|r|t|v|{OCTALDIGIT}{1,3}|u{HEXDIGIT}{4}|U{HEXDIGIT}{8}|x{HEXDIGIT}+)
50%%
51
52 /*
53 * Using start conditions to deal with comments
54 * and strings.
55 */
56
57"/*" BEGIN(comment_ml);
58<comment_ml>[^*\n]* /* eat anything that's not a '*' */
59<comment_ml>"*"+[^*/\n]* /* eat up '*'s not followed by '/'s */
60<comment_ml>\n ++yylineno;
61<comment_ml>"*"+"/" BEGIN(INITIAL);
62
63"//" BEGIN(comment_sl);
64<comment_sl>[^\n]*\n ++yylineno; BEGIN(INITIAL);
65
66L\' BEGIN(char_const); return CHARACTER_CONSTANT_START;
67\' BEGIN(char_const); return CHARACTER_CONSTANT_START;
68<char_const>\' BEGIN(INITIAL); return SQUOTE;
69
70L\" BEGIN(string_lit); return STRING_LITERAL_START;
71\" BEGIN(string_lit); return STRING_LITERAL_START;
72<string_lit>\" BEGIN(INITIAL); return DQUOTE;
73
74<char_const,string_lit>ESCSEQ return ESCSEQ;
75<char_const,string_lit>\n ; /* ignore */
76<char_const,string_lit>. return CHAR_STRING_TOKEN;
77
78"[" return LSBRAC;
79"]" return RSBRAC;
80"(" return LPAREN;
81")" return RPAREN;
82"{" return LBRAC;
83"}" return RBRAC;
84"->" return RARROW;
85"*" return STAR;
86"+" return PLUS;
87"-" return MINUS;
88"<" return LT;
89">" return GT;
90:= return TYPEASSIGN;
91: return COLON;
92; return SEMICOLON;
93"..." return DOTDOTDOT;
94"." return DOT;
95= return EQUAL;
96"," return COMMA;
97const return CONST;
98char return CHAR;
99double return DOUBLE;
100enum return ENUM;
101event return EVENT;
102floating_point return FLOATING_POINT;
103float return FLOAT;
104integer return INTEGER;
105int return INT;
106long return LONG;
107short return SHORT;
108signed return SIGNED;
109stream return STREAM;
110string return STRING;
111struct return STRUCT;
112trace return TRACE;
113typealias return TYPEALIAS;
114typedef return TYPEDEF;
115unsigned return UNSIGNED;
116variant return VARIANT;
117void return VOID;
118_Bool return _BOOL;
119_Complex return _COMPLEX;
120_Imaginary return _IMAGINARY;
121[1-9]{DIGIT}*{INTEGER_SUFFIX}? return DECIMAL_CONSTANT;
1220{OCTALDIGIT}*{INTEGER_SUFFIX}? return OCTAL_CONSTANT;
1230[xX]{HEXDIGIT}+{INTEGER_SUFFIX}? return HEXADECIMAL_CONSTANT;
34d3acc4 124{IDENTIFIER} printf_dbg("<IDENTIFIER %s>\n", yytext); setstring(yyextra, yylval, yytext); if (is_type(yyextra, yytext)) return ID_TYPE; else return IDENTIFIER;
8b9d5b5e
MD
125[ \t\n]+ ; /* ignore */
126. return ERROR;
127%%
This page took 0.02726 seconds and 4 git commands to generate.