Tagged Questions

1
vote
2answers
48 views

Converting a CFG to IL

I build a CFG out of an arbitrary IL and want to convert that CFG back to IL. The order of the vertices in the CFG is of course not equal to the order of the original IL instructio …
1
vote
5answers
87 views

Syntax analysis question

In school we were assigned to design a language and then to implement it, (I'm having so much fun implementing it =)). My teacher told us to use yacc/lex, but i decided to go with …
1
vote
2answers
99 views

Pac-Man representation with Finite State Automaton

Hi there, Consider a game similar to pac-mac that we want to represent it with an FSA graph. We have a maze (table) and there are berries into it in random positions. The goal is t …
1
vote
4answers
109 views

Write a compiler for a language that looks ahead and multiple files?

In my language I can use a class variable in my method when the definition appears below the method. It can also call methods below my method and etc. There are no 'headers'. Take …
6
votes
5answers
175 views

What language features are required in a programming language to make a compiler?

Programming languages seem to go through several stages. Firstly, someone dreams up a new language, Foo Language. The compiler/interpreter is written in another language, usually C …
2
votes
6answers
75 views

Would it be possible to have a compiler that would predict every possible ‘situation specific’ runtime error?

By 'situation specific' I mean it uses some data that it would have access to such as your current database setup, version of some OS, etc. Imagine if the compiler would check the …
0
votes
3answers
67 views

Free Lexical Analyzer / Scanner Source

Hello, I'm looking for a hand-written free lexer/scanner for any language, even a toy language written in a language similiar to C/C++. I am a beginner in creating languages and c …
2
votes
5answers
138 views

will reading compiler construction increase my programming skills?

will reading compiler construction increase my programming skills?
1
vote
2answers
222 views

What is the reason for the creation of LLVM?

What are the differences between an LLVM and a regular compiler? Is it more dynamic and thus can be used to compile normally very dynamic languages (i.e. Javascript) into static bi …
2
votes
11answers
353 views

What are good resources on compilation?

Summary for the impatient: I'm searching for good references on generating code for common language constructs but not parsing. I am interested in programming languages and try to …
5
votes
3answers
213 views

Programming Language Pragmatics is worth buying?

As per amazon reviews the book, Programming Language Pragmatics,by Michael L. Scott serves as a very good introductory book for Programming language and compiler design. …
5
votes
9answers
539 views

Would it be reasonable to self-study the dragon book?

I've been out of school for about 2 years and didn't take a compilers course as an undergrad. At this point, it's something I'm interested in and am wondering if it would be reaso …
4
votes
4answers
303 views

What programming languages are context-free?

Or, to be a little more precise: which programming languages are defined by a context-free grammar? From what I gather C++ is not context-free due to things like macros and templa …
3
votes
9answers
210 views

Does the compiler decide when to inline my functions (in C++)?

I understand you can use the inline keyword or just put a method in a class declaration ala short ctor or a getter method, but does the compiler make the final decision on when to …
0
votes
2answers
137 views

Finding language designers and programmers

I'd like to create a new and open sourced language. Since it's really rare to find programmers that actually dealt with compiler theory I need some advice. How would you make a per …

1 2 next
15 30 50 per page