Presentation is loading. Please wait.

Presentation is loading. Please wait.

Intermediate Representations Copyright 2003, Keith D. Cooper, Ken Kennedy & Linda Torczon, all rights reserved. Students enrolled in Comp 412 at Rice University.

Similar presentations


Presentation on theme: "Intermediate Representations Copyright 2003, Keith D. Cooper, Ken Kennedy & Linda Torczon, all rights reserved. Students enrolled in Comp 412 at Rice University."— Presentation transcript:

1 Intermediate Representations Copyright 2003, Keith D. Cooper, Ken Kennedy & Linda Torczon, all rights reserved. Students enrolled in Comp 412 at Rice University have explicit permission to make copies of these materials for their personal use.

2 Intermediate Representations Front end - produces an intermediate representation (IR) Middle end - transforms the IR into an equivalent IR that runs more efficiently Back end - transforms the IR into native code IR encodes the compiler’s knowledge of the program Middle end usually consists of several passes Front End Middle End Back End IR Source Code Target Code

3 Intermediate Representations Decisions in IR design affect the speed and efficiency of the compiler Some important IR properties  Ease of generation  Ease of manipulation  Procedure size  Freedom of expression  Level of abstraction The importance of different properties varies between compilers  Selecting an appropriate IR for a compiler is critical

4 Types of Intermediate Representations Three major categories Structural  Graphically oriented  Heavily used in source-to-source translators  Tend to be large Linear  Pseudo-code for an abstract machine  Level of abstraction varies  Simple, compact data structures  Easier to rearrange Hybrid  Combination of graphs and linear code  Example: control-flow graph Examples: Trees, DAGs Examples: 3 address code Stack machine code Example: Control-flow graph

5 Level of Abstraction The level of detail exposed in an IR influences the profitability and feasibility of different optimizations. Two different representations of an array reference: subscript Ai j loadI 1 => r 1 sub r j, r 1 => r 2 loadI 10 => r 3 mult r 2, r 3 => r 4 sub r i, r 1 => r 5 add r 4, r 5 => r 6 loadI @A => r 7 Add r 7, r 6 => r 8 load r 8 => r Aij High level AST: Good for memory disambiguation Low level linear code: Good for address calculation

6 Level of Abstraction Structural IRs are usually considered high-level Linear IRs are usually considered low-level Not necessarily true: + * 10 j 1 - j 1 - + @A load Low level AST loadArray A,i,j High level linear code

7 Abstract Syntax Tree An abstract syntax tree is the procedure’s parse tree with the nodes for most non-terminal nodes removed x - 2 * y Can use linearized form of the tree  Easier to manipulate than pointers x 2 y * - in postfix form - * 2 y x in prefix form S-expressions are (essentially) ASTs - x 2 y *

8 Directed Acyclic Graph A directed acyclic graph (DAG) is an AST with a unique node for each value Makes sharing explicit Encodes redundancy x 2 y * -  z /  w z  x - 2 * y w  x / 2 Same expression twice means that the compiler might arrange to evaluate it just once!

9 Stack Machine Code Originally used for stack-based computers, now Java Example: x - 2 * y becomes Advantages Compact form Introduced names are implicit, not explicit Simple to generate and execute code Useful where code is transmitted over slow communication links (the net ) push x push 2 push y multiply subtract Implicit names take up no space, where explicit ones do!

10 Three Address Code Several different representations of three address code In general, three address code has statements of the form: x  y op z With 1 operator (op ) and, at most, 3 names (x, y, & z) Example: z  x - 2 * ybecomes Advantages: Resembles many machines Introduces a new set of names Compact form t  2 * y z  x - t *

11 Three Address Code: Quadruples Naïve representation of three address code Table of k * 4 small integers Simple record structure Easy to reorder Explicit names load1Y loadi22 mult321 load4X sub542 load r1, y loadI r2, 2 mult r3, r2, r1 load r4, x sub r5, r4, r3 RISC assembly codeQuadruples The original F ORTRAN compiler used “quads”

12 Three Address Code: Triples Index used as implicit name 25% less space consumed than quads Much harder to reorder loady loadI2 mult(1)(2) loadx sub(4)(3) (1) (2) (3) (4) (5) Implicit names take no space!

13 Three Address Code: Indirect Triples List first triple in each statement Implicit name space Uses more space than triples, but easier to reorder Major tradeoff between quads and triples is compactness versus ease of manipulation  In the past compile-time space was critical  Today, speed may be more important loady loadI2 mult(100)(101) loadx sub(103)(102) (100) (101) (102) (103) (104) (100) (105)

14 Static Single Assignment Form The main idea: each name defined exactly once Introduce  -functions to make it work Strengths of SSA-form Sharper analysis  -functions give hints about placement (sometimes) faster algorithms Original x  … y  … while (x < k) x  x + 1 y  y + x SSA-form x 0  … y 0  … if (x 0 > k) goto next loop: x 1   (x 0,x 2 ) y 1   (y 0,y 2 ) x 2  x 1 + 1 y 2  y 1 + x 2 if (x 2 < k) goto loop next: …

15 Two Address Code Allows statements of the form x  x op y Has 1 operator (op ) and, at most, 2 names (x and y) Example: z  x - 2 * y becomes Can be very compact Problems Machines no longer rely on destructive operations Difficult name space  Destructive operations make reuse hard  Good model for machines with destructive ops (PDP-11) t 1  2 t 2  load y t 2  t 2 * t 1 z  load x z  z - t 2

16 Control-flow Graph Models the transfer of control in the procedure Nodes in the graph are basic blocks  Can be represented with quads or any other linear representation Edges in the graph represent control flow Example if (x = y) a  2 b  5 a  3 b  4 c  a * b Basic blocks — Maximal length sequences of straight-line code

17 Using Multiple Representations Repeatedly lower the level of the intermediate representation  Each intermediate representation is suited towards certain optimizations Example: the Open64 compiler  WHIRL intermediate format  Consists of 5 different IRs that are progressively more detailed Front End Middle End Back End IR 1IR 3 Source Code Target Code Middle End IR 2

18 Memory Models Two major models Register-to-register model  Keep all values that can legally be stored in a register in registers  Ignore machine limitations on number of registers  Compiler back-end must insert loads and stores Memory-to-memory model  Keep all values in memory  Only promote values to registers directly before they are used  Compiler back-end can remove loads and stores Compilers for RISC machines usually use register-to-register  Reflects programming model  Easier to determine when registers are used

19 The Rest of the Story… Representing the code is only part of an IR There are other necessary components Symbol table (already discussed) Constant table  Representation, type  Storage class, offset Storage map  Overall storage layout  Overlap information  Virtual register assignments


Download ppt "Intermediate Representations Copyright 2003, Keith D. Cooper, Ken Kennedy & Linda Torczon, all rights reserved. Students enrolled in Comp 412 at Rice University."

Similar presentations


Ads by Google