Compiler Construction
Quiz 0 What do you hope to learn in 3650? How do you best learn? Within UNT’s CSCE systems can you Log on to CSP machines? Copy files with CSP environment? Use an editor available on CSP machines? Would you rather focus more on implementation or algorithm description in this class
Compiler Tasks Code Generation Source Tokens Intermediate Intermediate Lexor Parser Optimizer Assembler or Binary Source
Convert to “Assembly” int i, j, k, l, m, n, temp, a[10]; . i = j + k - m * n; for(i = 0; i < 10; i++) if(a[i] < a[i+1]) temp = a[i]; A[i] = a[i+1]; A[i+1] = temp;