文档介绍:Algorithms piler Design
by . Kakde ISBN:1584501006
Charles River Media © 2002 (334 pages)
This text teaches the fundamental algorithms that underlie pilers, and focuses on the
"front-end" piler design--lexical analysis, parsing, and syntax.
Table of Contents
Algorithms piler Design
Preface
Chapter 1 - Introduction
Chapter 2 - Finite Automata and Regular Expressions
Chapter 3 - Context-Free Grammar and Syntax Analysis
Chapter 4 - Top-Down Parsing
Chapter 5 - Bottom-up Parsing
Chapter 6 - Syntax-Directed Definitions and Translations
Chapter 7 - Symbol Table Management
Chapter 8 - Storage Management
Chapter 9 - Error Handling
Chapter 10 - Code Optimization
Chapter 11 - Code Generation
Chapter 12 - Exercises
Index
List of Figures
List of Tables
List of Examples
Back Cover
piler translates a high-level language program into a functionally equivalent low-level language program that
can be understood and executed by puter. Crucial to puter system, piler design is also
one of the plex areas of system development. Before any code for a piler is even written, many
programmers have difficulty with the high-level algorithms that will be necessary for piler to function. Written
with this in mind, Algorithms piler Design teaches the fundamental algorithms that underlie modern
compilers. The book focuses on the “front-end” piler design: lexical analysis, parsing, and syntax. Blending
theory with practical examples throughout, the book presents these difficult topics clearly and thoroughly. The final
chapters on code generation and plete a solid foundation for learning the broader requirements of an
piler design.
FEATURES
Focuses on the “front-end” piler design—lexical analysis, parsing, and syntax—topics basic to any
introduction piler design
Covers storage management, error handling, and recovery
Introduces important “back-end” programming concepts, including code generation and optimization
Algorithms piler Design
.