Maurizio Taiuti

Compilers: Principles, Techniques, and Tools by Alfred Aho (English) Hardcover B

Description: Compilers by Alfred Aho, Jeffrey Ullman, Ravi Sethi, Monica Lam Provides information on the developments in software engineering, programming languages, and computer architecture that have occurred over the years. This book focuses on the broader set of problems faced in software design and software development. It includes chapters on instruction-Level parallelism, interprocedural analysis, and more. FORMAT Hardcover LANGUAGE English CONDITION Brand New Publisher Description Compilers: Principles, Techniques and Tools, known to professors, students, and developers worldwide as the "Dragon Book," is available in a new edition. Every chapter has been completely revised to reflect developments in software engineering, programming languages, and computer architecture that have occurred since 1986, when the last edition published. The authors, recognizing that few readers will ever go on to construct a compiler, retain their focus on the broader set of problems faced in software design and software development. New chapters include: Chapter 10 Instruction-Level Parallelism Chapter 11 Optimizing for Parallelism and Locality Chapter 12 Interprocedural Analysis Author Biography Alfred V. Aho is Lawrence Gussman Professor of Computer Science at Columbia University. Professor Aho has won several awards including the Great Teacher Award for 2003 from the Society of Columbia Graduates and the IEEE John von Neumann Medal. He is a member of the National Academy of Engineering and a fellow of the ACM and IEEE. Monica S. Lam is a Professor of Computer Science at Stanford University, was the Chief Scientist at Tensilica and the founding CEO of moka5. She led the SUIF project which produced one of the most popular research compilers, and pioneered numerous compiler techniques used in industry. Ravi Sethi launched the research organization in Avaya and is president of Avaya Labs. Previously, he was a senior vice president at Bell Labs in Murray Hill and chief technical officer for communications software at Lucent Technologies. He has held teaching positions at the Pennsylvania State University and the University of Arizona, and has taught at Princeton University and Rutgers. He is a fellow of the ACM. Jeffrey Ullman is CEO of Gradiance and a Stanford W. Ascherman Professor of Computer Science at Stanford University. His research interests include database theory, database integration, data mining, and education using the information infrastructure. He is a member of the National Academy of Engineering, a fellow of the ACM, and winner of the Karlstrom Award and Knuth Prize. Table of Contents 1. Introduction 1.1 Language Processors1.2 The Structure of a Compiler1.3 The Evolution of Programming Languages1.4 The Science of Building a Compiler1.6 Programming Language Basics1.7 Summary of Chapter 11.8 References for Chapter 1 2. A Simple Syntax-Directed Translator 2.1 Introduction2.2 Syntax Definition2.3 Syntax-Directed Translation2.4 Parsing2.5 A Translator for Simple Expressions2.6 Lexical Analysis2.7 Symbol Tables2.8 Intermediate Code Generation2.9 Summary of Chapter 2 3. Lexical Analysis 3.1 The Role of the Lexical Analyzer3.2 Input Buffering3.3 Specification of Tokens3.4 Recognition of Tokens3.5 The Lexical-Analyzer Generator Lex3.6 Finite Automata3.7 From Regular Expressions to Automata3.8 Design of a Lexical-Analyzer Generator3.9 Optimization of DFA-Based Pattern Matchers3.10 Summary of Chapter 33.11 References for Chapter 3 4. Syntax Analysis 4.1 Introduction4.2 Context-Free Grammars4.3 Writing a Grammar4.4 Top-Down Parsing4.5 Bottom-Up Parsing4.6 Introduction to LR Parsing: Simple LR4.7 More Powerful LR Parsers4.8 Using Ambiguous Grammars4.9 Parser Generators4.10 Summary of Chapter 44.11 References for Chapter 4 5. Syntax-Directed Translation 5.1 Syntax-Directed Definitions5.2 Evaluation Orders for SDDs5.3 Applications of Syntax-Directed Translation5.4 Syntax-Directed Translation Schemes5.5 Implementing L-Attributed SDDs5.6 Summary of Chapter 55.7 References for Chapter 5 6. Intermediate-Code Generation 6.1 Variants of Syntax Trees6.2 Three-Address Code6.3 Types and Declarations6.4 Translation of Expressions6.5 Type Checking6.6 Control Flow6.7 Backpatching6.8 Switch-Statements6.9 Intermediate Code for Procedures6.10 Summary of Chapter 66.11 References for Chapter 6 7. Run-Time Environments 7.1 Storage Organization7.2 Stack Allocation of Space7.3 Access to Nonlocal Data on the Stack7.4 Heap Management7.5 Introduction to Garbage Collection7.6 Introduction to Trace-Based Collection7.7 Short-Pause Garbage Collection7.8 Advanced Topics in Garbage Collection7.9 Summary of Chapter 77.10 References for Chapter 7 8. Code Generation 8.1 Issues in the Design of a Code Generator8.2 The Target Language8.3 Addresses in the Target Code8.4 Basic Blocks and Flow Graphs8.5 Optimization of Basic Blocks8.6 A Simple Code Generator8.7 Peephole Optimization8.8 Register Allocation and Assignment8.9 Instruction Selection by Tree Rewriting8.10 Optimal Code Generation for Expressions8.11 Dynamic Programming Code-Generation8.12 Summary of Chapter 88.13 References for Chapter 8 9. Machine-Independent Optimizations 9.1 The Principal Sources of Optimization9.2 Introduction to Data-Flow Analysis9.3 Foundations of Data-Flow Analysis9.4 Constant Propagation9.5 Partial-Redundancy Elimination9.6 Loops in Flow Graphs9.7 Region-Based Analysis9.8 Symbolic Analysis9.9 Summary of Chapter 99.10 References for Chapter 9 10. Instruction-Level Parallelism 10.1 Processor Architectures10.2 Code-Scheduling Constraints10.3 Basic-Block Scheduling10.4 Global Code Scheduling10.5 Software Pipelining10.6 Summary of Chapter 1010.7 References for Chapter 10 11. Optimizing for Parallelism and Locality 11.1 Basic Concepts11.2 Matrix Multiply: An In-Depth Example11.3 Iteration Spaces11.4 Affine Array Indexes11.5 Data Reuse11.6 Array Data-Dependence Analysis11.7 Finding Synchronization-Free Parallelism11.8 Synchronization Between Parallel Loops11.9 Pipelining11.10 Locality Optimizations11.11 Other Uses of Affine Transforms11.12 Summary of Chapter 1111.13 References for Chapter 11 12. Interprocedural Analysis 12.1 Basic Concepts12.2 Why Interprocedural Analysis?12.3 A Logical Representation of Data Flow12.4 A Simple Pointer-Analysis Algorithm12.5 Context-Insensitive Interprocedural Analysis12.6 Context-Sensitive Pointer Analysis12.7 Datalog Implementation by BDDs12.8 Summary of Chapter 1212.9 References for Chapter 12 A. A Complete Front End A.1 The Source LanguageA.2 MainA.3 Lexical AnalyzerA.4 Symbol Tables and TypesA.5 Intermediate Code for ExpressionsA.6 Jumping Code for Boolean ExpressionsA.7 Intermediate Code for StatementsA.8 ParserA.9 Creating the Front End B. Finding Linearly Independent Solutions Index Long Description This book provides the foundation for understanding the theory and pracitce of compilers. Revised and updated, it reflects the current state of compilation. Every chapter has been completely revised to reflect developments in software engineering, programming languages, and computer architecture that have occurred since 1986, when the last edition published. The authors, recognizing that few readers will ever go on to construct a compiler, retain their focus on the broader set of problems faced in software design and software development. Computer scientists, developers, and aspiring students that want to learn how to build, maintain, and execute a compiler for a major programming language. Feature Introduces the theory and practice of compiler design. Covers topics like context-free grammars, fine state machines, and syntax-directed translation. Details ISBN0321486811 Short Title COMPILERS 2/E Language English Edition 2nd ISBN-10 0321486811 ISBN-13 9780321486813 Media Book Format Hardcover Illustrations Yes Year 2006 Subtitle Principles, Techniques, and Tools Place of Publication Harlow Replaces 9780201100884 Replaced by 9781292024349 DOI 10.1604/9780321486813 AU Release Date 2006-10-20 NZ Release Date 2006-10-20 US Release Date 2006-10-20 UK Release Date 2006-10-20 Imprint Pearson Country of Publication United States Author Monica Lam Pages 1040 Publisher Pearson Education (US) Edition Description 2nd edition Publication Date 2006-10-20 DEWEY 005.453 Audience Tertiary & Higher Education We've got this At The Nile, if you're looking for it, we've got it. With fast shipping, low prices, friendly service and well over a million items - you're bound to find what you want, at a price you'll love! TheNile_Item_ID:14062328;

Price: 564.48 AUD

Location: Melbourne

End Time: 2024-11-05T02:35:21.000Z

Shipping Cost: 0 AUD

Product Images

Compilers: Principles, Techniques, and Tools by Alfred Aho (English) Hardcover B

Item Specifics

Restocking fee: No

Return shipping will be paid by: Buyer

Returns Accepted: Returns Accepted

Item must be returned within: 30 Days

ISBN-13: 9780321486813

Book Title: Compilers

Item Height: 242 mm

Item Width: 165 mm

Author: Monica Lam, Jeffrey Ullman, Ravi Sethi, Alfred Aho

Publication Name: Compilers: Principles, Techniques, and Tools

Format: Hardcover

Language: English

Publisher: Pearson Education (Us)

Subject: Computer Science

Publication Year: 2006

Type: Textbook

Item Weight: 1490 g

Number of Pages: 1040 Pages

Recommended

COMPILERS : PRINCIPLES, TECHNIQUES, AND TOOLS By Alfred V ; Sethi Aho EXCELLENT
COMPILERS : PRINCIPLES, TECHNIQUES, AND TOOLS By Alfred V ; Sethi Aho EXCELLENT

$85.49

View Details
Compilers: Principles, Techniques, and Tools
Compilers: Principles, Techniques, and Tools

$11.98

View Details
VINTAGE PRINCIPLES OF COMPILER DESIGN BY ALFRED V. AHO/J. ULLMAN 1979 HARDCOVER
VINTAGE PRINCIPLES OF COMPILER DESIGN BY ALFRED V. AHO/J. ULLMAN 1979 HARDCOVER

$35.00

View Details
Principles of Compiler Design - Alfred Aho & Jeffrey Ullman 1979 3rd Printing HC
Principles of Compiler Design - Alfred Aho & Jeffrey Ullman 1979 3rd Printing HC

$65.00

View Details
Compiler Construction: Principles and Practice by Louden, Kenneth C.
Compiler Construction: Principles and Practice by Louden, Kenneth C.

$6.96

View Details
Compiler Construction: - Hardcover, by Louden Kenneth C. - Very Good q
Compiler Construction: - Hardcover, by Louden Kenneth C. - Very Good q

$8.55

View Details
Compilers : Principles, Techniques, and Tools by Jeffrey Ullman
Compilers : Principles, Techniques, and Tools by Jeffrey Ullman

$33.63

View Details
Compilers: Principles, Techniques, and Tools
Compilers: Principles, Techniques, and Tools

$13.63

View Details
Principles of Package Design: Creating Reusable Software Components (Paperback o
Principles of Package Design: Creating Reusable Software Components (Paperback o

$59.35

View Details
Principles of Program Analysis by
Principles of Program Analysis by

$26.28

View Details