Presentation is loading. Please wait.

Presentation is loading. Please wait.

CPSC 325 - Compiler Tutorial 8 Code Generator (unoptimized)

Similar presentations


Presentation on theme: "CPSC 325 - Compiler Tutorial 8 Code Generator (unoptimized)"— Presentation transcript:

1 CPSC 325 - Compiler Tutorial 8 Code Generator (unoptimized)

2 What is Code Generator?

3 Intermediate Representation

4 What Code Generator should do? Translate all the instructions in the intermediate representation to assembly language Allocate space for the variables, arrays etc. Create the necessary symbolic information Gather all of the necessary information

5 What does computer understand?

6

7

8 Assembly language Advantages – Simplifies code generation due to use of symbolic instructions and symbolic names – Logical abstraction layer – Multiple Architectures can describe by a single assembly language Can modify the implementation – Macro assembly instructions Disadvantages – Additional process of assembling and linking – Assembler adds overhead

9 Assembly langauge Relocatable machine language (object modules) – All locations (addresses) represented by symbols – Mapped to memory addresses at link and load time – Flexibility of separate compilation Absolute machine language – Addresses are hard-coded – Simple and straightforward implementation – Inflexible – hard to reload generated code – Used in interrupt handlers and device drivers

10 Assembly example

11 Modern CPU ALU Control Memory Registers Memory RegistersALU Control

12 Arithmetic and Logic Unit (ALU) Performs most of the data operations Has the form: – OP R dest, R src1, R src2 Operations are: – Arithmetic operations (add, sub, mulo) – Logical operations (and, sll) – Comparison operations (seq, sge, slt)

13 Arithmetic and Logic Unit (ALU) Many arithmetic operations can cause an exception – Overflow and underflow Can operate on different data types – 8, 16, 32 bits – Signed and unsigned arithmetic – Floating-point operations (separate ALU)

14 Control Handles the instruction sequencing Executing instructions – All instructions are in memory – Fetch the instruction pointed by the PC and execute it – For general instructions, increment the PC to point to the next location in memory

15 Control Unconditional Branches – Fetch the next instruction from a different location – Unconditional jump to an address j label – Unconditional jump to an address in a register jr r src – To handle procedure calls, do an unconditional jump, but save the next address in the current stream in a register jal labeljalr r src

16 Control Conditional Branches – Perform a test, if successful fetch instructions from a new address, otherwise fetch the next instruction – Instructions are of the form: brelop R src1, R src2, label – relop is of the form: eq, ne, gt, ge, lt, le

17 Control Control transfer in special (rare) cases – traps and exceptions – Mechanism save the next (or current) instruction location find the address to jump to (from an exception vector) jump to that location

18 Others, additional information… Please refer to your CPSC231 text book… In the book; there is all of the details.

19 Memory layout Stack Heap Data segment Text Segment Reserved

20

21 Register 31 30 29 28 24 – 25 16 – 23 8 – 15 4 – 7 2 – 3 1 0 return addressra frame pointerfp stack pointersp pointer to global areagp caller saved temporaryt8, t9 calliee saved temporarys0 – s7 caller saved temporaryt0 – t7 arguments 1 to 4a0 – a3 expr. eval and return of resultv0 – v1 Reserved for asmat hard-wired to zerozero

22

23 Stack (cont.) Please refer to the hand out for more details..

24 Guidelines for the code generator Lower the abstraction level slowly – Do many passes, that do few things (or one things) Easier to break the project down, generate and debug Keep the abstraction level consistent – IR should have ‘correct’ semantics at all time at least you should know the semantics Use assertions liberally – Use an assertion to check your assumption

25 Guidelines for the code generator Do the simplest but dump thing – it is ok to generate 0 + 1*x + 0*y Make sure you know what can be done at… – Compile time in the compiler – Runtime in a runtime library – Runtime using generated code Runtime library is your friend! – Don’t generate complex code sequences when it can be done in a runtime library assembly hack

26 Guidelines for the code generator Remember that optimizations will come later – Let the optimizer do the optimizations – Think about what optimizer will need and structure you code accordingly – Example: Register allocation, algebraic simplification, constant propagation Setup a good testing program


Download ppt "CPSC 325 - Compiler Tutorial 8 Code Generator (unoptimized)"

Similar presentations


Ads by Google