9a0c84efa6
* Fix find_package(rocprofiler) in build tree * Move include/rocprofiler to include/rocprofiler-sdk * Update include/CMakeLists.txt - add_subdirectory(rocprofiler-sdk) * Move lib/rocprofiler to lib/rocprofiler-sdk * Move lib/rocprofiler-tool to lib/rocprofiler-sdk-tool * Update lib/CMakeLists.txt - add_subdirectory(rocprofiler-sdk) - add_subdirectory(rocprofiler-sdk-tool) * Update lib/rocprofiler-sdk/CMakeLists.txt * Rename rocprofiler-tool to rocprofiler-sdk-tool * Replace include rocprofiler/ with include rocprofiler-sdk/ * Replace include lib/rocprofiler/ with include lib/rocprofiler-sdk/ * Set VERSION to 0.0.0 and finish install to rocprofiler-sdk * More fixes for rocprofiler -> rocprofiler-sdk - fix issue with rocprofiler-sdk-config.cmake.in - fix counters xml install path * Fix documentation generation * Create rocprofiler_LIB_ROCPROFILER_SDK_DIR for build tree * cmake formatting (cmake-format) (#264) Co-authored-by: jrmadsen <jrmadsen@users.noreply.github.com> --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
48 строки
834 B
Plaintext
48 строки
834 B
Plaintext
%option noyywrap nodefault yylineno nounput
|
|
|
|
%{
|
|
#include <fmt/core.h>
|
|
|
|
#include "raw_ast.hpp"
|
|
#include "parser.h"
|
|
using namespace std;
|
|
#define YYDEBUG 1
|
|
%}
|
|
|
|
/* float exponent */
|
|
EXP ([Ee][-+]?[0-9]+)
|
|
|
|
%%
|
|
"+" { return ADD; }
|
|
"-" { return SUB; }
|
|
"*" { return MUL; }
|
|
"/" { return DIV; }
|
|
"|" { return ABS; }
|
|
"(" { return OP; }
|
|
")" { return CP; }
|
|
"=" { return EQUALS; }
|
|
"," { return CM; }
|
|
":" { return COLON; }
|
|
\[ { return O_SQ; }
|
|
\] { return C_SQ; }
|
|
|
|
[0-9]+"."[0-9]*{EXP}? |
|
|
"."?[0-9]+{EXP}? {
|
|
yylval.d = atoi(yytext);
|
|
return NUMBER; }
|
|
|
|
"reduce" { return REDUCE; }
|
|
"select" { return SELECT; }
|
|
|
|
[a-z_A-Z][a-z_A-Z0-9]* {
|
|
yylval.s = strdup(yytext);
|
|
return NAME; }
|
|
|
|
|
|
\n { return EOL; }
|
|
"//".*
|
|
[ \t] { /* ignore white space */ }
|
|
. { throw std::runtime_error(fmt::format("Mystery character {}", *yytext)); }
|
|
%%
|
|
|