Tagged Questions
0
votes
1answer
46 views
Correct compiler terminology
I'm coding a compiler that consists of four separate programs: the preprocessor, the to-assembly compiler, the assembler (NASM) and the linker (ld).
When writing about it, I have some issues ...
4
votes
1answer
104 views
Compilers that compile `generic made up language X` into portable C
I'm looking for two things. The first is a terminology.
What do we call compilers that compiles one language into another?
Secondly, are there any compilers that compile generic made up language X ...
8
votes
6answers
279 views
Where exactly is the boundary between a preprocessor and a compiler?
According to various sources (for example, the SE radio episode with Kevlin Henney, if I remember correctly), "C with classes" was implemented with preprocessor technology (with the output then being ...
5
votes
1answer
501 views
In compiler construction, is a symbol the same as a token?
In compiler construction, when you talk about tokens, is a token the same like a symbol / just another term for a symbol? After some research I think to understand, that a token is a symbol with a ...
0
votes
2answers
47 views
What is this operation called? [closed]
One can write a translator for, let's say, C++ that will convert the code to C. This operation will require translating object oriented constructs to procedural ones.
My question is, how is this ...
0
votes
1answer
200 views
0
votes
3answers
115 views
Is my understanding of interpreter and compiler correct?
I was wondering if my understanding
about interpreter and compiler is
correct:
I think a compiler only does
translation from source code to
binary code, while an interpreter
not only does the ...
0
votes
1answer
156 views
Definition of a compiler pipeline
Can someone explain this term to me in an abstract way and then give me a small example how this works. In my opinion it has something to do with the front end and back end of a compiler and how the ...
13
votes
3answers
2k views
What's the difference between parse tree and AST?
Is it generated by difference phase of a compiling process? Or just difference names for the thing?
3
votes
4answers
593 views
Is “parsing” a subset of “compiling”?
When I think of "compiling" I think of turning C++ code into a binary. Or perhaps C# into CLR byte code. But "parsing" could be something like parsing Python, or a web template language, where it ...
2
votes
2answers
292 views
Is there a simple explanation of what a compiler is?
In trying to provide a simple answer to a post about a "C++ compiled app" I was surprised that there weren't any questions or answers about this basic topic. Even searches on Meta didn't find anything ...
-3
votes
5answers
5k views
What is compiler, linker, loader?
Hi I wanted to know in depth meaning and working of compiler, linker and loader.
With reference to any language preferably c++.
thanks in advance !
1
vote
1answer
92 views
A program that gets Delphi source code, and then transforms it into Objective-C code is a compiler? Or a source code transformer?
I got in this argument at work. My coworker told that just something that generates machine code is a compiler. Then (after I mentioned the Google Closure Compiler) he changed his mind: apparently, ...
6
votes
2answers
2k views
2
votes
2answers
971 views
What is mean by epilog and prolog?
While reading some calling convention in some CPU architecture i read something like
"epilog and prolog" , when a function is called from another function.
Can anybody give more inputs on this?
...
6
votes
6answers
4k views
Java compiler/interpreter
Why we say java is compiled and interpreted language.What is the advantage over this(being compiled/interpreted)