Engineering a Compiler
eBook - PDF

Engineering a Compiler

  1. 801 pages
  2. English
  3. PDF
  4. Only available on web
eBook - PDF

Engineering a Compiler

Book details
Table of contents
Citations

About This Book

The proliferation of processors, environments, and constraints on systems has cast compiler technology into a wider variety of settings, changing the compiler and compiler writer's role. No longer is execution speed the sole criterion for judging compiled code. Today, code might be judged on how small it is, how much power it consumes, how well it compresses, or how many page faults it generates. In this evolving environment, the task of building a successful compiler relies upon the compiler writer's ability to balance and blend algorithms, engineering insights, and careful planning. Today's compiler writer must choose a path through a design space that is filled with diverse alternatives, each with distinct costs, advantages, and complexities. Engineering a Compiler explores this design space by presenting some of the ways these problems have been solved, and the constraints that made each of those solutions attractive. By understanding the parameters of the problem and their impact on compiler design, the authors hope to convey both the depth of the problems and the breadth of possible solutions. Their goal is to cover a broad enough selection of material to show readers that real tradeoffs exist, and that the impact of those choices can be both subtle and far-reaching. Authors Keith Cooper and Linda Torczon convey both the art and the science of compiler construction and show best practice algorithms for the major passes of a compiler. Their text re-balances the curriculum for an introductory course in compiler construction to reflect the issues that arise in current practice.

  • Focuses on the back end of the compiler—reflecting the focus of research and development over the last decade.
  • Uses the well-developed theory from scanning and parsing to introduce concepts that play a critical role in optimization and code generation.
  • Introduces the student to optimization through data-flow analysis, SSA form, and a selection of scalar optimizations.
  • Builds on this background to teach modern methods in code generation: instruction selection, instruction scheduling, and register allocation.
  • Presents examples in several different programming languages in order to best illustrate the concept.
  • Provides end-of-chapter exercises.

Frequently asked questions

Simply head over to the account section in settings and click on “Cancel Subscription” - it’s as simple as that. After you cancel, your membership will stay active for the remainder of the time you’ve paid for. Learn more here.
At the moment all of our mobile-responsive ePub books are available to download via the app. Most of our PDFs are also available to download and we're working on making the final remaining ones downloadable now. Learn more here.
Both plans give you full access to the library and all of Perlego’s features. The only differences are the price and subscription period: With the annual plan you’ll save around 30% compared to 12 months on the monthly plan.
We are an online textbook subscription service, where you can get access to an entire online library for less than the price of a single book per month. With over 1 million books across 1000+ topics, we’ve got you covered! Learn more here.
Look out for the read-aloud symbol on your next book to see if you can listen to it. The read-aloud tool reads text aloud for you, highlighting the text as it is being read. You can pause it, speed it up and slow it down. Learn more here.
Yes, you can access Engineering a Compiler by Keith D. Cooper,Linda Torczon in PDF and/or ePUB format, as well as other popular books in Economics & Microeconomics. We have over one million books available in our catalogue for you to explore.

Information

Year
2003
ISBN
9780080472676

Table of contents

  1. Contents
  2. Preface
  3. 1. Overview of Compilation
  4. 2. Scanning
  5. 3. Parsing
  6. 4. Context-Sensitive Analysis
  7. 5. Intermediate Representations
  8. 6. The Procedure Abstraction
  9. 7. Code Shape
  10. 8. Introduction to Code Optimization
  11. 9. Data-Flow Analysis
  12. 10. Scalar Optimizations
  13. 11. Instruction Selection
  14. 12. Instruction Scheduling
  15. 13. Register Allocation
  16. Appendix A: ILOC
  17. Appendix B: Data Structures
  18. Exercises
  19. Index