Compiler design: syntactic and semantic analysis
Gespeichert in:
Hauptverfasser: | , , |
---|---|
Format: | Buch |
Sprache: | English |
Veröffentlicht: |
Berlin [u.a.]
Springer
2013
|
Schlagworte: | |
Online-Zugang: | Inhaltstext Inhaltsverzeichnis |
Beschreibung: | X, 225 Seiten Illustrationen, Diagramme |
ISBN: | 3642175392 9783642175398 |
Internformat
MARC
LEADER | 00000nam a2200000 c 4500 | ||
---|---|---|---|
001 | BV037402040 | ||
003 | DE-604 | ||
005 | 20240424 | ||
007 | t | ||
008 | 110516s2013 gw a||| |||| 00||| eng d | ||
015 | |a 10,N44 |2 dnb | ||
016 | 7 | |a 1007904739 |2 DE-101 | |
020 | |a 3642175392 |9 3-642-17539-2 | ||
020 | |a 9783642175398 |c Print |9 978-3-642-17539-8 | ||
024 | 3 | |a 9783642175398 | |
028 | 5 | 2 | |a Best.-Nr.: 80028542 |
035 | |a (OCoLC)730028552 | ||
035 | |a (DE-599)DNB1007904739 | ||
040 | |a DE-604 |b ger |e rakddb | ||
041 | 0 | |a eng | |
044 | |a gw |c XA-DE-BE | ||
049 | |a DE-29T |a DE-11 |a DE-83 |a DE-Aug4 |a DE-91G |a DE-739 | ||
084 | |a ST 255 |0 (DE-625)143629: |2 rvk | ||
084 | |a ST 255 |0 (DE-625)143629: |2 rvk | ||
084 | |a DAT 387f |2 stub | ||
084 | |a 004 |2 sdnb | ||
100 | 1 | |a Wilhelm, Reinhard |d 1946- |e Verfasser |0 (DE-588)133085082 |4 aut | |
245 | 1 | 0 | |a Compiler design |b syntactic and semantic analysis |c Reinhard Wilhelm ; Helmut Seidl ; Sebastian Hack |
264 | 1 | |a Berlin [u.a.] |b Springer |c 2013 | |
300 | |a X, 225 Seiten |b Illustrationen, Diagramme | ||
336 | |b txt |2 rdacontent | ||
337 | |b n |2 rdamedia | ||
338 | |b nc |2 rdacarrier | ||
650 | 0 | 7 | |a Compiler |0 (DE-588)4148248-7 |2 gnd |9 rswk-swf |
689 | 0 | 0 | |a Compiler |0 (DE-588)4148248-7 |D s |
689 | 0 | |5 DE-604 | |
700 | 1 | |a Seidl, Helmut |e Verfasser |4 aut | |
700 | 1 | |a Hack, Sebastian |e Verfasser |0 (DE-588)1036678245 |4 aut | |
776 | 0 | 8 | |i Erscheint auch als |n Online-Ausgabe |z 978-3-642-17540-4 |
856 | 4 | 2 | |m X:MVB |q text/html |u http://deposit.dnb.de/cgi-bin/dokserv?id=3554133&prov=M&dok_var=1&dok_ext=htm |3 Inhaltstext |
856 | 4 | 2 | |m Digitalisierung UB Passau - ADAM Catalogue Enrichment |q application/pdf |u http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=022554697&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA |3 Inhaltsverzeichnis |
943 | 1 | |a oai:aleph.bib-bvb.de:BVB01-022554697 |
Datensatz im Suchindex
_version_ | 1805095997818273792 |
---|---|
adam_text |
Contents 1 The Structure of Compilers. 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 2 Lexical Analysis. 2.1 The Task of Lexical Analysis. 2.2 Regular Expressions and Finite Automata. 2.2.1 Words and Languages. 2.3 A Language for Specifying Lexical Analyzers. 2.4 2.5 2.6 2.7 3 Compilation Subtasks. Lexical Analysis. TheScreener. Syntactic Analysis. Semantic Analysis. Machine-Independent Optimization. Generation of the Target Program . Specification and Generation of Compiler Components. 2.3.1 Character Classes. 2.3.2 Nonrecursive Parentheses. Scanner Generation. 2.4.1 Character
Classes. 2.4.2 An Implementation of the until-Construct. 2.4.3 Sequences of Regular Expressions . 2.4.4 The Implementation of a Scanner. The Screener. 2.5.1 ScannerStates. 2.5.2 Recognizing Reserved Words . Exercises . Bibliographic Notes. Syntactic Analysis. 3.1 The Task of Syntactic Analysis. 3.2 Foundations. 3.2.1 Context-Free Grammars. 3.2.2 Productivity and Reachability of Nonterminals. 3.2.3 Pushdown Automata. 1 2 3 4 5 6 7 8 9 11 11 12 12 27 28 28 29 29 30 32 34 36 37 38 39 41 43 43 46 46 52 57 ix
Contents X 3.3 3.4 3.5 3.6 4 3.2.4 The Item-Pushdown Automaton to a Context-Free Grammar 59 3.2.5 first- and follow-Sets. 64 3.2.6 The Special Case first, and follow,. 71 3.2.7 Pure Union Problems . 74 Top-Down Syntax Analysis. 77 3.3.1 Introduction. 77 3.3.2 LL(k): Definition, Examples, and Properties. 79 3.3.3 Left Recursion. 85 3.3.4 Strong LL(Z:)-Parsers. 87 3.3.5 Right-Regular Context-Free Grammars . 89 3.3.6 Recursive-Descent Parsers for RLL(1)-Grammars. 92 3.3.7 Tree Generation by Means of Recursive-Descent Parsers . . 96 3.3.8 Error Handling within ÄLL(1)-Parsers. 97 Bottom-up Syntax Analysis. 101 3.4.1 Introduction. 101 3.4.2 LR(fc)-Parsers.102 3.4.3 LR(k): Definition, Properties, and Examples. 112 3.4.4 Error Handling in . 124 Exercises
.131 Bibliographic Notes. 136 Semantic Analysis. 139 4.1 The Task of Semantic Analysis. 139 4.1.1 Rules for Validity and Visibility.144 4.1.2 Checking the Context-Conditions. 147 4.1.3 Overloading of Identifiers . 154 4.2 Type Inference. 157 4.2.1 Syntax-Directed Type Inference. 165 4.2.2 Polymorphism.168 4.2.3 Side Effects . 171 4.2.4 Type Classes. 173 4.3 Attribute Grammars. 180 4.3.1 The Semantics of an Attribute Grammar. 184 4.3.2 Some Attribute Grammars . 185 4.4 The Generation of Attribute Evaluators.191 4.4.1 Demand-Driven Attribute
Evaluation.191 4.4.2 Static Precomputations of Attribute Evaluators. 193 4.4.3 Visit-Oriented Attribute Evaluation. 200 4.4.4 Parser-Directed Attribute Evaluation. 206 4.5 Exercises . 213 4.6 Bibliographic Notes. 215 References. 217 Index. 221 |
any_adam_object | 1 |
author | Wilhelm, Reinhard 1946- Seidl, Helmut Hack, Sebastian |
author_GND | (DE-588)133085082 (DE-588)1036678245 |
author_facet | Wilhelm, Reinhard 1946- Seidl, Helmut Hack, Sebastian |
author_role | aut aut aut |
author_sort | Wilhelm, Reinhard 1946- |
author_variant | r w rw h s hs s h sh |
building | Verbundindex |
bvnumber | BV037402040 |
classification_rvk | ST 255 |
classification_tum | DAT 387f |
ctrlnum | (OCoLC)730028552 (DE-599)DNB1007904739 |
discipline | Informatik |
format | Book |
fullrecord | <?xml version="1.0" encoding="UTF-8"?><collection xmlns="http://www.loc.gov/MARC21/slim"><record><leader>00000nam a2200000 c 4500</leader><controlfield tag="001">BV037402040</controlfield><controlfield tag="003">DE-604</controlfield><controlfield tag="005">20240424</controlfield><controlfield tag="007">t</controlfield><controlfield tag="008">110516s2013 gw a||| |||| 00||| eng d</controlfield><datafield tag="015" ind1=" " ind2=" "><subfield code="a">10,N44</subfield><subfield code="2">dnb</subfield></datafield><datafield tag="016" ind1="7" ind2=" "><subfield code="a">1007904739</subfield><subfield code="2">DE-101</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">3642175392</subfield><subfield code="9">3-642-17539-2</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">9783642175398</subfield><subfield code="c">Print</subfield><subfield code="9">978-3-642-17539-8</subfield></datafield><datafield tag="024" ind1="3" ind2=" "><subfield code="a">9783642175398</subfield></datafield><datafield tag="028" ind1="5" ind2="2"><subfield code="a">Best.-Nr.: 80028542</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(OCoLC)730028552</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(DE-599)DNB1007904739</subfield></datafield><datafield tag="040" ind1=" " ind2=" "><subfield code="a">DE-604</subfield><subfield code="b">ger</subfield><subfield code="e">rakddb</subfield></datafield><datafield tag="041" ind1="0" ind2=" "><subfield code="a">eng</subfield></datafield><datafield tag="044" ind1=" " ind2=" "><subfield code="a">gw</subfield><subfield code="c">XA-DE-BE</subfield></datafield><datafield tag="049" ind1=" " ind2=" "><subfield code="a">DE-29T</subfield><subfield code="a">DE-11</subfield><subfield code="a">DE-83</subfield><subfield code="a">DE-Aug4</subfield><subfield code="a">DE-91G</subfield><subfield code="a">DE-739</subfield></datafield><datafield tag="084" ind1=" " ind2=" "><subfield code="a">ST 255</subfield><subfield code="0">(DE-625)143629:</subfield><subfield code="2">rvk</subfield></datafield><datafield tag="084" ind1=" " ind2=" "><subfield code="a">ST 255</subfield><subfield code="0">(DE-625)143629:</subfield><subfield code="2">rvk</subfield></datafield><datafield tag="084" ind1=" " ind2=" "><subfield code="a">DAT 387f</subfield><subfield code="2">stub</subfield></datafield><datafield tag="084" ind1=" " ind2=" "><subfield code="a">004</subfield><subfield code="2">sdnb</subfield></datafield><datafield tag="100" ind1="1" ind2=" "><subfield code="a">Wilhelm, Reinhard</subfield><subfield code="d">1946-</subfield><subfield code="e">Verfasser</subfield><subfield code="0">(DE-588)133085082</subfield><subfield code="4">aut</subfield></datafield><datafield tag="245" ind1="1" ind2="0"><subfield code="a">Compiler design</subfield><subfield code="b">syntactic and semantic analysis</subfield><subfield code="c">Reinhard Wilhelm ; Helmut Seidl ; Sebastian Hack</subfield></datafield><datafield tag="264" ind1=" " ind2="1"><subfield code="a">Berlin [u.a.]</subfield><subfield code="b">Springer</subfield><subfield code="c">2013</subfield></datafield><datafield tag="300" ind1=" " ind2=" "><subfield code="a">X, 225 Seiten</subfield><subfield code="b">Illustrationen, Diagramme</subfield></datafield><datafield tag="336" ind1=" " ind2=" "><subfield code="b">txt</subfield><subfield code="2">rdacontent</subfield></datafield><datafield tag="337" ind1=" " ind2=" "><subfield code="b">n</subfield><subfield code="2">rdamedia</subfield></datafield><datafield tag="338" ind1=" " ind2=" "><subfield code="b">nc</subfield><subfield code="2">rdacarrier</subfield></datafield><datafield tag="650" ind1="0" ind2="7"><subfield code="a">Compiler</subfield><subfield code="0">(DE-588)4148248-7</subfield><subfield code="2">gnd</subfield><subfield code="9">rswk-swf</subfield></datafield><datafield tag="689" ind1="0" ind2="0"><subfield code="a">Compiler</subfield><subfield code="0">(DE-588)4148248-7</subfield><subfield code="D">s</subfield></datafield><datafield tag="689" ind1="0" ind2=" "><subfield code="5">DE-604</subfield></datafield><datafield tag="700" ind1="1" ind2=" "><subfield code="a">Seidl, Helmut</subfield><subfield code="e">Verfasser</subfield><subfield code="4">aut</subfield></datafield><datafield tag="700" ind1="1" ind2=" "><subfield code="a">Hack, Sebastian</subfield><subfield code="e">Verfasser</subfield><subfield code="0">(DE-588)1036678245</subfield><subfield code="4">aut</subfield></datafield><datafield tag="776" ind1="0" ind2="8"><subfield code="i">Erscheint auch als</subfield><subfield code="n">Online-Ausgabe</subfield><subfield code="z">978-3-642-17540-4</subfield></datafield><datafield tag="856" ind1="4" ind2="2"><subfield code="m">X:MVB</subfield><subfield code="q">text/html</subfield><subfield code="u">http://deposit.dnb.de/cgi-bin/dokserv?id=3554133&prov=M&dok_var=1&dok_ext=htm</subfield><subfield code="3">Inhaltstext</subfield></datafield><datafield tag="856" ind1="4" ind2="2"><subfield code="m">Digitalisierung UB Passau - ADAM Catalogue Enrichment</subfield><subfield code="q">application/pdf</subfield><subfield code="u">http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=022554697&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA</subfield><subfield code="3">Inhaltsverzeichnis</subfield></datafield><datafield tag="943" ind1="1" ind2=" "><subfield code="a">oai:aleph.bib-bvb.de:BVB01-022554697</subfield></datafield></record></collection> |
id | DE-604.BV037402040 |
illustrated | Illustrated |
indexdate | 2024-07-20T11:08:10Z |
institution | BVB |
isbn | 3642175392 9783642175398 |
language | English |
oai_aleph_id | oai:aleph.bib-bvb.de:BVB01-022554697 |
oclc_num | 730028552 |
open_access_boolean | |
owner | DE-29T DE-11 DE-83 DE-Aug4 DE-91G DE-BY-TUM DE-739 |
owner_facet | DE-29T DE-11 DE-83 DE-Aug4 DE-91G DE-BY-TUM DE-739 |
physical | X, 225 Seiten Illustrationen, Diagramme |
publishDate | 2013 |
publishDateSearch | 2013 |
publishDateSort | 2013 |
publisher | Springer |
record_format | marc |
spelling | Wilhelm, Reinhard 1946- Verfasser (DE-588)133085082 aut Compiler design syntactic and semantic analysis Reinhard Wilhelm ; Helmut Seidl ; Sebastian Hack Berlin [u.a.] Springer 2013 X, 225 Seiten Illustrationen, Diagramme txt rdacontent n rdamedia nc rdacarrier Compiler (DE-588)4148248-7 gnd rswk-swf Compiler (DE-588)4148248-7 s DE-604 Seidl, Helmut Verfasser aut Hack, Sebastian Verfasser (DE-588)1036678245 aut Erscheint auch als Online-Ausgabe 978-3-642-17540-4 X:MVB text/html http://deposit.dnb.de/cgi-bin/dokserv?id=3554133&prov=M&dok_var=1&dok_ext=htm Inhaltstext Digitalisierung UB Passau - ADAM Catalogue Enrichment application/pdf http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=022554697&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA Inhaltsverzeichnis |
spellingShingle | Wilhelm, Reinhard 1946- Seidl, Helmut Hack, Sebastian Compiler design syntactic and semantic analysis Compiler (DE-588)4148248-7 gnd |
subject_GND | (DE-588)4148248-7 |
title | Compiler design syntactic and semantic analysis |
title_auth | Compiler design syntactic and semantic analysis |
title_exact_search | Compiler design syntactic and semantic analysis |
title_full | Compiler design syntactic and semantic analysis Reinhard Wilhelm ; Helmut Seidl ; Sebastian Hack |
title_fullStr | Compiler design syntactic and semantic analysis Reinhard Wilhelm ; Helmut Seidl ; Sebastian Hack |
title_full_unstemmed | Compiler design syntactic and semantic analysis Reinhard Wilhelm ; Helmut Seidl ; Sebastian Hack |
title_short | Compiler design |
title_sort | compiler design syntactic and semantic analysis |
title_sub | syntactic and semantic analysis |
topic | Compiler (DE-588)4148248-7 gnd |
topic_facet | Compiler |
url | http://deposit.dnb.de/cgi-bin/dokserv?id=3554133&prov=M&dok_var=1&dok_ext=htm http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=022554697&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA |
work_keys_str_mv | AT wilhelmreinhard compilerdesignsyntacticandsemanticanalysis AT seidlhelmut compilerdesignsyntacticandsemanticanalysis AT hacksebastian compilerdesignsyntacticandsemanticanalysis |