Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
5answers
444 views

Compiler Optimizations Questions

What are some of the ways a compiler eliminates repeated subexpressions recomputations? How do you keep track of the sub-expressions? And How do you identify the repeated ones? Besides the usage of ...
5
votes
2answers
350 views

How do I implement forward references in a compiler?

I'm creating a compiler with Lex and YACC (actually GNU Flex and Bison). The language allows unlimited forward references to any symbol (like C#). The problem is that it's impossible to parse the ...
4
votes
6answers
361 views

Compiler that recognize different-different languages and send them to their corresponding compilers. Possible?

I was thinking whether it is possible to bridge asp.net, php and java to form a single page. Actually i dont need any such thing as of now. It was just an idea that stiked to my mind as some features ...
4
votes
2answers
274 views

What is the A-Normal Form?

I was reading about various intermediate forms but I cant get information about A-normal forms besides the wiki-like entries. Does anyone here know about this or has good resources about it?
4
votes
9answers
2k views

How can I make my own C++ compiler understand templates, nested classes, etc. strong features of C++?

It is a university task in my group to write a compiler of C-like language. Of course I am going to implement a small part of our beloved C++. The exact task is absolutely stupid, and the lecturer ...
1
vote
1answer
117 views

What is Object Oriented Scanner (Lexical Analysis)?

Recently I came across the concept of Lexical Analysis called "Object Oriented Scanner", but I wasn't able to distinguish it from the normal scanning technique. What can be the extra things in object ...
1
vote
3answers
145 views

Does Loop Fission Work in Single Cores?

When does it make sense to use Loop fission/distribution if I am compiling for a single core processor?
0
votes
0answers
3k views

Create A Compiler For Windows [closed]

Possible Duplicate: Learning to write a compiler I'm learning C++ and as I know C++ is a very flexible language, it can make OS's and compilers, like the Python and the Ruby compilers, but ...