Isentropic process: Difference between revisions
en>GoShow m Reverted edit(s) by 124.124.115.140 identified as test/vandalism using STiki |
en>Zedshort →Background: ce |
||
Line 1: | Line 1: | ||
== | {{Infobox software | ||
| name = flex | |||
| logo = | |||
| developer = [[Vern Paxson]] | |||
| latest release version = 2.5.37 | |||
| latest release date = {{release_date|2012|08|03}} | |||
| operating system = [[Unix-like]] | |||
| genre = [[Lexical analysis|Lexical analyzer]] generator | |||
| license = [[BSD license]] | |||
| website = {{URL|http://flex.sourceforge.net/}} | |||
}} | |||
'''Flex''' (fast [[lexical analyzer]] generator) is a [[free software]] alternative to [[lex programming tool|lex]].<ref>{{cite book |last1=Levine |first1=John R. | authorlink1=John R. Levine |last2=Mason |first2=Tony |last3=Brown |first3=Doug |title=lex & yacc |publisher=[[O'Reilly Media|O'Reilly]] |year=1992 |edition=2 |isbn=1-56592-000-7 |page=279 |quote=A freely available version of lex is ''flex''. |url=http://books.google.co.in/books?id=YrzpxNYegEkC&printsec=frontcover#v=onepage&q=%22a%20freely%20available%20version%20of%20lex%20is%20flex%22&f=false}}</ref> It is frequently used with the free [[GNU bison|Bison]] [[parser generator]]. Unlike Bison, flex is not part of the [[GNU Project]].<ref>[http://flex.sourceforge.net/manual/Is-flex-GNU-or-not_003f.html#Is-flex-GNU-or-not_003f Is flex GNU or not?], flex FAQ</ref> | |||
==History== | |||
{{incomplete|section|date=November 2012}} | |||
Flex was written in [[C (programming language)|C]] by [[Vern Paxson]] around 1987.<ref>{{Cite book | last=Levine | first=John | authorlink=John R. Levine | title=flex & bison | publisher = O'Reilly Media | date=August 2009 | url=http://oreilly.com/catalog/9780596155988 | isbn=978-0-596-15597-1 | page=9 | quote=In about 1987, Vern Paxson of the Lawrence Berkeley Lab took a version of lex written in ratfor (an extended Fortran popular at the time) and translated it into C, calling it flex, for '''F''ast ''Lex''ical Analyzer Generator.' | url=http://books.google.com/books?id=3Sr1V5J9_qMC&printsec=frontcover&dq=flex+and+bison&hl=en&sa=X&ei=4lipUJ76Kuu80QGGi4HwCg&ved=0CD0Q6AEwAA#v=snippet&q=%22In%20about%201987%2C%20Vern%20Paxson%22&f=false}}</ref> He was translating a [[Ratfor]] generator, which had been led by [[Jef Poskanzer]].<ref>[http://flex.sourceforge.net/manual/When-was-flex-born_003f.html#When-was-flex-born_003f When was flex born?], flex FAQ</ref> | |||
== | == Example lexical analyzer == | ||
This is an example of a Flex scanner for the instructional programming language [[PL/0]]. | |||
The tokens recognized are: '<code>+</code>', '<code>-</code>', '<code>*</code>', '<code>/'</code>, '<code>=</code>', '<code>(</code>', '<code>)</code>', '<code>,</code>', '<code>;</code>', '<code>.</code>', '<code>:=</code>', '<code><</code>', '<code><=</code>', '<code><></code>', '<code>></code>', '<code>>=</code>'; | |||
numbers: <code>0-9 {0-9}</code>; identifiers: <code>a-zA-Z {a-zA-Z0-9}</code> and keywords: <code>begin</code>, <code>call</code>, <code>const</code>, <code>do</code>, <code>end</code>, <code>if</code>, <code>odd</code>, <code>procedure</code>, <code>then</code>, <code>var</code>, <code>while</code>. | |||
= | <source lang="c"> | ||
%{ | |||
#include "y.tab.h" | |||
%} | |||
digit [0-9] | |||
letter [a-zA-Z] | |||
%% | |||
"+" { return PLUS; } | |||
"-" { return MINUS; } | |||
"*" { return TIMES; } | |||
"/" { return SLASH; } | |||
"(" { return LPAREN; } | |||
")" { return RPAREN; } | |||
";" { return SEMICOLON; } | |||
"," { return COMMA; } | |||
"." { return PERIOD; } | |||
":=" { return BECOMES; } | |||
"=" { return EQL; } | |||
"<>" { return NEQ; } | |||
"<" { return LSS; } | |||
">" { return GTR; } | |||
"<=" { return LEQ; } | |||
">=" { return GEQ; } | |||
"begin" { return BEGINSYM; } | |||
"call" { return CALLSYM; } | |||
"const" { return CONSTSYM; } | |||
"do" { return DOSYM; } | |||
"end" { return ENDSYM; } | |||
"if" { return IFSYM; } | |||
"odd" { return ODDSYM; } | |||
"procedure" { return PROCSYM; } | |||
"then" { return THENSYM; } | |||
"var" { return VARSYM; } | |||
"while" { return WHILESYM; } | |||
{letter}({letter}|{digit})* { | |||
yylval.id = strdup(yytext); | |||
return IDENT; } | |||
{digit}+ { yylval.num = atoi(yytext); | |||
return NUMBER; } | |||
[ \t\n\r] /* skip whitespace */ | |||
. { printf("Unknown character [%c]\n",yytext[0]); | |||
return UNKNOWN; } | |||
%% | |||
int yywrap(void){return 1;} | |||
</source> | |||
The hand-written C code equivalent would likely be at least twice as many lines, and considerably harder to read.{{citation-needed|date=June 2013}} | |||
==Internals== | |||
{{main|Lexical analysis}} | |||
These programs perform character parsing, and tokenizing via the use of a [[deterministic finite automaton]] (DFA). A DFA is a theoretical machine accepting [[regular language]]s. These machines are a subset of the collection of [[Turing machine]]s. DFAs are equivalent to [[read-only right moving Turing machines]]. The syntax is based on the use of [[regular expressions]]. See also [[nondeterministic finite automaton]]. | |||
== Issues == | |||
=== Time complexity === | |||
A Flex lexical analyzer usually has time complexity <math>O(n)</math> in the length of the input. That is, it performs a constant number of operations for each input symbol. This constant is quite low: [[GNU Compiler Collection|GCC]] generates 12 instructions for the DFA match loop. Note that the constant is independent of the length of the token, the length of the regular expression and the size of the DFA. | |||
However, one optional feature of Flex can cause Flex to generate a scanner with non-linear performance: The use of the REJECT macro in a scanner with the potential to match extremely long tokens. In this case, the programmer has explicitly told flex to "go back and try again" after it has already matched some input. This will cause the DFA to backtrack to find other accept states. The REJECT feature is not enabled by default, and because of its performance implications its use is discouraged in the Flex manual.<ref name="performance">{{cite web|url=http://flex.sourceforge.net/manual/Performance.html |title=Performance - Lexical Analysis With Flex, for Flex 2.5.37 |publisher=Flex.sourceforge.net |date= |accessdate=2013-02-25}}</ref> | |||
=== Reentrancy === | |||
By default the scanner generated by Flex is not [[Reentrant (subroutine)|reentrant]]. This can cause serious problems for programs that use the generated scanner from different threads. To overcome this issue there are options that Flex provides in order to achieve reentrancy. A detailed description of these options can be found in the Flex manual.<ref>{{cite web|url=http://flex.sourceforge.net/manual/Reentrant.html |title=Reentrant - Lexical Analysis With Flex, for Flex 2.5.37 |publisher=Flex.sourceforge.net |date= |accessdate=2013-02-25}}</ref> | |||
=== Usage under non-Unix environments === | |||
Normally the generated scanner contains references to ''unistd.h'' header file which is [[Unix-like|Unix]] specific. To avoid generating code that includes ''unistd.h'', ''%option nounistd'' should be used. Another issue is the call to ''[[Not a typewriter|isatty]]'' (a Unix library function), which can be found in the generated code. The ''%option never-interactive'' forces flex to generate code that doesn't use ''isatty''. These options are detailed in the Flex manual.<ref>{{cite web|url=http://flex.sourceforge.net/manual/Code_002dLevel-And-API-Options.html |title=Code-Level And API Options - Lexical Analysis With Flex, for Flex 2.5.37 |publisher=Flex.sourceforge.net |date= |accessdate=2013-02-25}}</ref> | |||
===Using flex from other languages=== | |||
Flex can only generate code for [[C (programming language)|C]] and [[C++]]. To use the scanner code generated by flex from other languages a [[language binding]] tool such as [[SWIG]] can be used. | |||
==Flex++== | |||
{{cleanup-section|date=November 2010}} | |||
A similar lexical scanner for [[C++]] is '''flex++''', which is included as part of the flex package. At the moment, flex supports generating code only for C and C++. The generated code does not depend on any [[Runtime library|runtime]] or external [[Library (computing)|library]] except for a memory allocator ([[malloc]] or a user-supplied alternative) unless the input also depends on it. This can be useful in [[Embedded system|embedded]] and similar situations where traditional [[operating system]] or [[C standard library|C runtime]] facilities may not be available. | |||
The flex++ classes and code require a C++ compiler to create lexical and pattern-matching programs. The flex++ generated C++ scanner includes the header file <code>FlexLexer.h</code>, which defines the interfaces of the two C++ generated classes. | |||
== See also == | |||
{{Portal|Free software}} | |||
*[[Lex programming tool|Lex]] | |||
*[[Ragel]] | |||
*[[Quex]] | |||
*[[yacc]] | |||
*[[GNU Bison]] | |||
*[[Berkeley Yacc]] | |||
==References== | |||
{{Reflist}} | |||
==Further reading== | |||
*{{Cite book | last=Levine | first=John | authorlink=John R. Levine | title=flex & bison | publisher = O'Reilly Media | date=August 2009 | url=http://oreilly.com/catalog/9780596155988 | isbn=978-0-596-15597-1}} | |||
*M. E. Lesk and E. Schmidt, ''LEX - Lexical Analyzer Generator'' | |||
*Alfred Aho, Ravi Sethi and Jeffrey Ullman, ''Compilers: Principles, Techniques and Tools'', Addison-Wesley (1986). Describes the pattern-matching techniques used by flex (deterministic finite automata) | |||
==External links== | |||
* {{Official website|http://flex.sourceforge.net/}} | |||
* [http://flex.sourceforge.net/manual/ Flex Manual] | |||
* [http://www.quut.com/c/ANSI-C-grammar-l-1998.html ANSI-C Lex Specification] | |||
* [http://www.jflex.de/ JFlex: Fast Scanner Generator for Java] | |||
* [http://dinosaur.compilertools.net/ Brief description of Lex, Flex, YACC, and Bison] | |||
{{DEFAULTSORT:Flex Lexical Analyser}} | |||
[[Category:Free compilers and interpreters]] | |||
[[Category:Compiling tools]] | |||
[[Category:Parser generators]] | |||
[[Category:Free software programmed in C]] |
Revision as of 08:58, 18 January 2014
Im addicted to my hobby Weightlifting.
I to learn Portuguese in my free time.
Also visit my homepage ... Hostgator Vouchers
Flex (fast lexical analyzer generator) is a free software alternative to lex.[1] It is frequently used with the free Bison parser generator. Unlike Bison, flex is not part of the GNU Project.[2]
History
Template:Incomplete Flex was written in C by Vern Paxson around 1987.[3] He was translating a Ratfor generator, which had been led by Jef Poskanzer.[4]
Example lexical analyzer
This is an example of a Flex scanner for the instructional programming language PL/0.
The tokens recognized are: '+
', '-
', '*
', '/'
, '=
', '(
', ')
', ',
', ';
', '.
', ':=
', '<
', '<=
', '<>
', '>
', '>=
';
numbers: 0-9 {0-9}
; identifiers: a-zA-Z {a-zA-Z0-9}
and keywords: begin
, call
, const
, do
, end
, if
, odd
, procedure
, then
, var
, while
.
%{
#include "y.tab.h"
%}
digit [0-9]
letter [a-zA-Z]
%%
"+" { return PLUS; }
"-" { return MINUS; }
"*" { return TIMES; }
"/" { return SLASH; }
"(" { return LPAREN; }
")" { return RPAREN; }
";" { return SEMICOLON; }
"," { return COMMA; }
"." { return PERIOD; }
":=" { return BECOMES; }
"=" { return EQL; }
"<>" { return NEQ; }
"<" { return LSS; }
">" { return GTR; }
"<=" { return LEQ; }
">=" { return GEQ; }
"begin" { return BEGINSYM; }
"call" { return CALLSYM; }
"const" { return CONSTSYM; }
"do" { return DOSYM; }
"end" { return ENDSYM; }
"if" { return IFSYM; }
"odd" { return ODDSYM; }
"procedure" { return PROCSYM; }
"then" { return THENSYM; }
"var" { return VARSYM; }
"while" { return WHILESYM; }
{letter}({letter}|{digit})* {
yylval.id = strdup(yytext);
return IDENT; }
{digit}+ { yylval.num = atoi(yytext);
return NUMBER; }
[ \t\n\r] /* skip whitespace */
. { printf("Unknown character [%c]\n",yytext[0]);
return UNKNOWN; }
%%
int yywrap(void){return 1;}
The hand-written C code equivalent would likely be at least twice as many lines, and considerably harder to read.Template:Citation-needed
Internals
Mining Engineer (Excluding Oil ) Truman from Alma, loves to spend time knotting, largest property developers in singapore developers in singapore and stamp collecting. Recently had a family visit to Urnes Stave Church. These programs perform character parsing, and tokenizing via the use of a deterministic finite automaton (DFA). A DFA is a theoretical machine accepting regular languages. These machines are a subset of the collection of Turing machines. DFAs are equivalent to read-only right moving Turing machines. The syntax is based on the use of regular expressions. See also nondeterministic finite automaton.
Issues
Time complexity
A Flex lexical analyzer usually has time complexity in the length of the input. That is, it performs a constant number of operations for each input symbol. This constant is quite low: GCC generates 12 instructions for the DFA match loop. Note that the constant is independent of the length of the token, the length of the regular expression and the size of the DFA.
However, one optional feature of Flex can cause Flex to generate a scanner with non-linear performance: The use of the REJECT macro in a scanner with the potential to match extremely long tokens. In this case, the programmer has explicitly told flex to "go back and try again" after it has already matched some input. This will cause the DFA to backtrack to find other accept states. The REJECT feature is not enabled by default, and because of its performance implications its use is discouraged in the Flex manual.[5]
Reentrancy
By default the scanner generated by Flex is not reentrant. This can cause serious problems for programs that use the generated scanner from different threads. To overcome this issue there are options that Flex provides in order to achieve reentrancy. A detailed description of these options can be found in the Flex manual.[6]
Usage under non-Unix environments
Normally the generated scanner contains references to unistd.h header file which is Unix specific. To avoid generating code that includes unistd.h, %option nounistd should be used. Another issue is the call to isatty (a Unix library function), which can be found in the generated code. The %option never-interactive forces flex to generate code that doesn't use isatty. These options are detailed in the Flex manual.[7]
Using flex from other languages
Flex can only generate code for C and C++. To use the scanner code generated by flex from other languages a language binding tool such as SWIG can be used.
Flex++
A similar lexical scanner for C++ is flex++, which is included as part of the flex package. At the moment, flex supports generating code only for C and C++. The generated code does not depend on any runtime or external library except for a memory allocator (malloc or a user-supplied alternative) unless the input also depends on it. This can be useful in embedded and similar situations where traditional operating system or C runtime facilities may not be available.
The flex++ classes and code require a C++ compiler to create lexical and pattern-matching programs. The flex++ generated C++ scanner includes the header file FlexLexer.h
, which defines the interfaces of the two C++ generated classes.
See also
Sportspersons Hyslop from Nicolet, usually spends time with pastimes for example martial arts, property developers condominium in singapore singapore and hot rods. Maintains a trip site and has lots to write about after touring Gulf of Porto: Calanche of Piana.
References
43 year old Petroleum Engineer Harry from Deep River, usually spends time with hobbies and interests like renting movies, property developers in singapore new condominium and vehicle racing. Constantly enjoys going to destinations like Camino Real de Tierra Adentro.
Further reading
- 20 year-old Real Estate Agent Rusty from Saint-Paul, has hobbies and interests which includes monopoly, property developers in singapore and poker. Will soon undertake a contiki trip that may include going to the Lower Valley of the Omo.
My blog: http://www.primaboinca.com/view_profile.php?userid=5889534 - M. E. Lesk and E. Schmidt, LEX - Lexical Analyzer Generator
- Alfred Aho, Ravi Sethi and Jeffrey Ullman, Compilers: Principles, Techniques and Tools, Addison-Wesley (1986). Describes the pattern-matching techniques used by flex (deterministic finite automata)
External links
- Template:Official website
- Flex Manual
- ANSI-C Lex Specification
- JFlex: Fast Scanner Generator for Java
- Brief description of Lex, Flex, YACC, and Bison
- ↑ 20 year-old Real Estate Agent Rusty from Saint-Paul, has hobbies and interests which includes monopoly, property developers in singapore and poker. Will soon undertake a contiki trip that may include going to the Lower Valley of the Omo.
My blog: http://www.primaboinca.com/view_profile.php?userid=5889534 - ↑ Is flex GNU or not?, flex FAQ
- ↑ 20 year-old Real Estate Agent Rusty from Saint-Paul, has hobbies and interests which includes monopoly, property developers in singapore and poker. Will soon undertake a contiki trip that may include going to the Lower Valley of the Omo.
My blog: http://www.primaboinca.com/view_profile.php?userid=5889534 - ↑ When was flex born?, flex FAQ
- ↑ Template:Cite web
- ↑ Template:Cite web
- ↑ Template:Cite web