Tagged Questions
0
votes
1answer
125 views
Optimizing Three Address Code
I have the following three address code, where n is some external constant:
x = 0
i = 0
L: t1 = i * 4
t2 = a[t1]
t3 = i * 4
t4 = b[t3]
t5 = t2 * t4
x = x + t5
i = i + 1
if ...
1
vote
2answers
178 views
Some questions regarding compilers and assemblers
Lots of basic questions are there in my mind. I need to clear them.
Statement 1: A compiler converts a human-readable codes to object codes, and those are converted to a machine code (executable) by ...
0
votes
2answers
351 views
Having trouble finding error in my assembly code
I am a beginner when it comes to assembly language. I am using "easy 68k editor/assembler" to write 68k assembly code that asks the user for 2 values, then sum them up together and display it. The ...
1
vote
1answer
2k views
How to check the Language in which Exe is made
We were studying about compilers at college so this raised me curiosity that when we use the compilers and they form assemblies so is there any way you could know that ,if you are given any exe, which ...
0
votes
4answers
350 views
What stages would be involved in compiling Assembly language to Machine Code
I'm trying to write a compiler to take an assembler file which will output raw machine code instructions.
I've found lots of tutorials on how to write a compiler, but I'm wondering if all the stages ...