دسترسی نامحدود
برای کاربرانی که ثبت نام کرده اند
برای ارتباط با ما می توانید از طریق شماره موبایل زیر از طریق تماس و پیامک با ما در ارتباط باشید
در صورت عدم پاسخ گویی از طریق پیامک با پشتیبان در ارتباط باشید
برای کاربرانی که ثبت نام کرده اند
درصورت عدم همخوانی توضیحات با کتاب
از ساعت 7 صبح تا 10 شب
دسته بندی: برنامه نويسي ویرایش: نویسندگان: Alexander Meduna سری: ISBN (شابک) : 9781420063257, 1420063235 ناشر: CRC Press سال نشر: 2007 تعداد صفحات: 292 زبان: English فرمت فایل : PDF (درصورت درخواست کاربر به PDF، EPUB یا AZW3 تبدیل می شود) حجم فایل: 2 مگابایت
در صورت تبدیل فایل کتاب Elements of Compiler Design به فرمت های PDF، EPUB، AZW3، MOBI و یا DJVU می توانید به پشتیبان اطلاع دهید تا فایل مورد نظر را تبدیل نمایند.
توجه داشته باشید کتاب عناصر طراحی کامپایلر نسخه زبان اصلی می باشد و کتاب ترجمه شده به فارسی نمی باشد. وبسایت اینترنشنال لایبرری ارائه دهنده کتاب های زبان اصلی می باشد و هیچ گونه کتاب ترجمه شده یا نوشته شده به فارسی را ارائه نمی دهد.
با حفظ تعادل بین رویکرد نظری و عملی به این موضوع مهم، عناصر طراحی کامپایلر به عنوان مقدمه ای برای نوشتن کامپایلر برای دانشجویان مقطع کارشناسی عمل می کند. از دیدگاه نظری، مدلهای ابتدایی مانند خودکار و دستور زبان را معرفی میکند که زیربنای تدوین و مراحل اساسی آن هستند. بر اساس این مدلها، نویسنده مفاهیم، روشها و تکنیکهای به کار رفته در طراحی کامپایلر را به شیوهای واضح و آسان توضیح میدهد. از نقطه نظر عملی، این کتاب نحوه پیاده سازی تکنیک های کامپایل را شرح می دهد. در واقع، در سراسر متن، یک مطالعه موردی طراحی یک زبان برنامه نویسی جدید و ساخت کامپایلر آن را نشان می دهد. نویسنده ضمن بحث در مورد تکنیک های مختلف گردآوری، اجرای آنها را از طریق این مطالعه موردی نشان می دهد. علاوه بر این، کتاب مثالهای دقیق و برنامههای کامپیوتری زیادی را برای تأکید بر کاربردهای الگوریتمهای کامپایلر ارائه میکند. دانشآموزان پس از مطالعه این کتاب درسی مستقل، باید فرآیند تالیف را درک کنند، بتوانند یک کامپایلر واقعی ساده بنویسند و به راحتی کتابهای پیشرفته را دنبال کنند. روی موضوع.
Maintaining a balance between a theoretical and practical approach to this important subject, Elements of Compiler Design serves as an introduction to compiler writing for undergraduate students. From a theoretical viewpoint, it introduces rudimental models, such as automata and grammars, that underlie compilation and its essential phases. Based on these models, the author details the concepts, methods, and techniques employed in compiler design in a clear and easy-to-follow way. From a practical point of view, the book describes how compilation techniques are implemented. In fact, throughout the text, a case study illustrates the design of a new programming language and the construction of its compiler. While discussing various compilation techniques, the author demonstrates their implementation through this case study. In addition, the book presents many detailed examples and computer programs to emphasize the applications of the compiler algorithms.After studying this self-contained textbook, students should understand the compilation process, be able to write a simple real compiler, and easily follow advanced books on the subject.
Cover......Page 1
Title Page......Page 5
Copyright......Page 6
Contents......Page 9
Preface......Page 11
Acknowledgement......Page 13
About the Author......Page 15
Sets and Sequences......Page 17
Languages......Page 18
Relations and Translations......Page 19
Graphs......Page 20
Proofs......Page 22
Compilation Phases......Page 24
1.3 Rewriting Systems......Page 31
Exercises......Page 35
2.1 Models......Page 37
2.2 Methods......Page 48
2.3.1 Transformation of Regular Expressions to Finite Automata......Page 58
2.3.2 Simplification of Finite Automata......Page 65
2.3.3 Non-Regular Lexical Constructs......Page 72
2.3.4 Decidable problems......Page 81
Exercises......Page 84
3.1 Models......Page 91
3.2 Methods......Page 105
3.3.1 Power of Parsing Models......Page 119
3.3.2 Verification of the Grammatical Syntax Specification......Page 120
3.3.3 Simplification of Grammars......Page 122
3.3.4 Grammatical Normal Forms and Parsing Based on Them......Page 132
3.3.5 Syntax that Grammars cannot Specify......Page 137
3.3.6 Decidable Problems......Page 144
Exercises......Page 145
4.1 Predictive Sets and LL Grammars......Page 155
Predictive Recursive-Descent Parsing......Page 161
Predictive Table-Driven Parsing......Page 164
Handling Errors......Page 168
Exercises......Page 173
Operator Precedence Parsing Algorithm......Page 175
Handling Errors......Page 179
Generalization......Page 182
Restriction......Page 183
LR Parsing Algorithm......Page 184
Handling Errors in LR Parsing......Page 194
Exercises......Page 199
6 Syntax-Directed Translation and Intermediate Code Generation......Page 201
6.1 Bottom-Up Syntax-Directed Translation and Intermediate Code Generation......Page 202
6.1.1 Syntax Trees......Page 203
6.1.2 Three-Address Code......Page 209
6.1.3 Polish Notation......Page 211
6.2 Top-Down Syntax-Directed Translation......Page 212
6.3 Semantic Analysis......Page 215
6.4 Symbol Table......Page 216
6.5 Software Tools for Syntax-Directed Translation......Page 220
Exercises......Page 227
7.1 Tracking the Use of Variables......Page 229
Basic blocks......Page 230
Use of Variables within a Block......Page 231
Use of Variables between Blocks......Page 235
7.2 Optimization of Intermediate Code......Page 237
7.3 Optimization and Generation of Target Code......Page 241
Exercises......Page 245
Conclusion......Page 249
A.1 Concept......Page 255
A.2 Code......Page 258
Bibliography......Page 271