Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

26
votes
6answers
2k views

How was the first compiler written?

I heard about the chicken and the egg and bootstrapping. I have a few questions. What wrote the first compiler that converted something into binary instructions? Is assembly compiled or translated ...
19
votes
9answers
532 views

Has the use of C to implement other languages constrained their designs in any way?

It seems that most new programming languages that have appeared in the last 20 years have been written in C. This makes complete sense as C can be seen as a sort of portable assembly language. But ...
14
votes
6answers
2k views

Compiler test cases or how to test a compiler

Compilers like all software, would also be prone to bugs, logical errors. How does one validate the output generated by the compiler. Typically, my question is(are) How to validate that the machine ...
7
votes
5answers
385 views

What are some tips for optimizing the assembly code generated by a compiler?

I am currently in the process of writing a compiler and I seem to have run into some problems getting it to output code that executes in a decent timeframe. A brief overview of the compiler: ...
6
votes
4answers
111 views

Switch statements in C: variable in case?

#include <stdio.h> int main(int argc, char *argv[]){ char a = 'c'; switch('c'){ case a: printf("hi\n"); } return 0; } The above won't compile for this ...
6
votes
2answers
269 views

Help understanding LR(1) parsers, table generation? Any other resources?

I am currently taking a compilers class and I am having a hard time understanding LR(1) parsing algorithms using the action/goto table and also how to hand generate these tables. Right now we are ...
5
votes
3answers
153 views

Dynamic vs Static Compiler (JavaScript)

I'm currently writing a JavaScript compiler in ANTLR+Java. I've read questions here on Stack Overflow on how to proceed with the execution - and the answer is always that it would be way too hard to ...
5
votes
4answers
248 views

Creating programming languages and compiler designing. Are they related?

Alright, I guess this question has been asked a lot of times here. I want to create a programming language, not necessarily starting today, but over a span of 2-3 yrs. I'm not a very good programmer, ...
5
votes
1answer
1k views

Dragon Book - answers?

I went out and bought a copy of the Dragon Book (second edition) but most of the exercises don't seem to have answers. Any idea where I can get them? Edit: Couldn't find solutions anywhere. Also, ...
4
votes
1answer
146 views

Testing a compiler

I'm currently working on kind of compiler that was built making use of sablecc. Long story short, the compiler will take as input both specification files(this is what we're parsing) and .class ...
4
votes
5answers
287 views

Design Pattern For Making An Assembler

I'm making an 8051 assembler. Before everything is a tokenizer which reads next tokens, sets error flags, recognizes EOF, etc. Then there is the main loop of the compiler, which reads next tokens and ...
4
votes
2answers
264 views

Generating intermediate code in a compiler. Is an AST or parse tree always necessary when dealing with conditionals?

I'm taking a compiler-design class where we have to implement our own compiler (using flex and bison). I have had experience in parsing (writing EBNF's and recursive-descent parsers), but this is my ...
3
votes
4answers
125 views

Good language to implement for senior project? [closed]

Its my last semester of college and I have to do a big presentation in December. I plan on designing a small language that not only works, but also has some nifty features to go with it. Does anyone ...
3
votes
2answers
165 views

Simple question about a Compiler's Symbol Table

I am developing a small object-based programming language. I am a bit lost on a simple thing, though. I have implemented a couple of visitors that collect the names, types and parameters of classes, ...
3
votes
3answers
177 views

Just in Time compilation always faster?

Greetings to all the compiler designers here on Stack Overflow. I am currently working on a project, which focuses on developing a new scripting language for use with high-performance computing. The ...
3
votes
6answers
282 views

Easy way to get function prototypes?

Hey guys, a friend and i were discussing imaginary and real languages and a question that came up was if one of us wanted to generate headers for another language (perhaps D which already has a tool) ...
3
votes
1answer
74 views

How should i deduce when the GC should run?

I am writing a statically compiled language and i would like to support garbage collection. before designing it i would like to know how i should i deduce when the GC should run? Should it be after ...
2
votes
4answers
85 views

On the implementation of multiple simultaneous tasks of a compiler [closed]

In my struggle to part ways with interpreters, and while attempting to advance my knowledge in c++, I recently puchased a copy of "C++ In a Nutshell: A Desktop Quick Reference (In a Nutshell ...
2
votes
1answer
58 views

Generate output along with recursive descent parser

Writing simple parsers are trivial and I have implemented several over the years. In college, we also had to write one. But we never had to generate meaningful output using this method; we never ...
2
votes
2answers
115 views

Translating imperative to functional code

I need to write a program that will translate imperative code to pure functional style. I'm not worried about I/O - I have some solutions in mind for that - but I do need to deal with heap objects as ...
2
votes
1answer
97 views

Making left-most-derivations of a input string. How to predict which production to use from?

Let's say I have the following grammar: Expr -> Expr plus Expr (1) | Expr minus Expr (2) | num (3) When doing a left-most-derivation, after "expanding" Expr, how should ...
2
votes
2answers
219 views

Control flow graph of a program

I'm taking a compiler class right now and we're at the point where we have to build a CFG in order to implement optimizations. One thing I can't figure out is how many CFGs are there for a program? ...
2
votes
3answers
133 views

Programming language design

I created a programming language and wrote it in my computer. It is an experimental non-professional programming language that I created for fun. A language needs the most important thing, a ...
2
votes
4answers
434 views

Question on lexical analysis

I am reading the dragon book. Quoting the text from the book (3.1.4 Lexical errors, Pno 114) It is hard for a lexical analyzer to tell, without the aid of other components, that there is a ...
2
votes
2answers
632 views

When can typeid return different type_info instances for same type?

Andrei Alexandrescu writes in Modern C++ Design: The objects returned by typeid have static storage, so you don't have to worry about lifetime issues. Andrei continues: The standard does ...
2
votes
2answers
178 views

Currying and compiler design

This is a homework question: Explain the transformations the type of a routine undergoes in partial parameterization. So far I understand currying. But I cannot find any resources on how a ...
2
votes
3answers
481 views

C#'s compiler design - forward referencing

In forward referencing language such as c#, how does the compiler handle this? What are the steps in which the compiler operate?
2
votes
3answers
339 views

Methodologies for designing a simple programming language

In my ongoing effort to quench my undying thirst for more programming knowledge I have come up with the idea of attempting to write a (at least for now) simple programming language that compiles into ...
2
votes
2answers
121 views

how can a compiler that recognizes the iterators be implemented?

I have been using iterators for a while and I love them. But although I have thought hard about it, I could not figure out "how a compiler that recognizes the iterators" be implemented. I have also ...
1
vote
4answers
85 views

What's a Good Way to Test that Identifiers aren't Being Truncated and Thereby Mixed Up?

In C++ class today, we discussed the maximum possible length of identifiers, and how the compiler will eventually stop treating variables as different, after a certain length. (My professor seems to ...
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
1answer
243 views

yylval undefined with flex and bison

I have searched almost every material online. But I am still confused why lexer cannot identify yylval. Here is the case: I have defined a bunch of ADT in node.h and realize them in node.c, my ...
1
vote
2answers
181 views

Cross Compiling vs Virtual Machines

Clarification When I mention cross compiling I mean from one language to another (think GWT), rather than from a host platform to a targeted platform. Background I am developing an Arabic ...
1
vote
1answer
30 views

How should i name expressions that dont have a brace?

I am adding more to my language using bison and in the rules i am getting a little confused. How do i name expressions that have {} such as class, functions, switch etc VS expressions that need a ...
1
vote
1answer
184 views

Difference in compiler design for OOP languages

I'm doing a research on how the design compiler for an OOP language differs from traditional imperative languages. I'd just like some topics to send me on my way, and if you wish, you can explain ...
0
votes
2answers
85 views

Is better error reporting possible in C++?

Currently when I compile this code in Visual C++ 10: Undeclared var; the compiler emits the following error messages: error C2065: 'CUndeclared' : undeclared identifier error C2146: syntax error : ...
0
votes
4answers
265 views

how to develop lexer and parser in java?

Hi im a student and new to compiler design concepts.I dont know how to develop a lexer and parser in java? Please help me to do this giv me a guide lines...
0
votes
1answer
156 views

ANTLR, steps order

I am trying to design a compiler for a language like C# in ANTLR. But I don't fully comprehend the proper order of steps that should be undertaken. This is how I see it: First I define Lexer tokens ...
-2
votes
1answer
54 views

Syntax Debate: Type id to the left or right of var id?

What are the pros/cons that go with the two common variable declaration syntax that many popular languages use, such as: int foo = 0; and foo:int = 0; One problem I have with the second ...
-2
votes
7answers
211 views

What is the known limit for compiler performance on the current hardware?

Are there a real reason to use dynamic linking and binary distributions these days? For binary distributions there's an alternative in distributing everything in source code and letting the platform ...