2
votes
2answers
28 views
How to begin approach of creating a small lazily-evaluated language.
I'm trying to build a small language with similar syntax and grammatical structure to Java, with List Comprehension and Lambda Functions and such (already made).
What I'm trying t …
4
votes
5answers
107 views
Is there any way to determine the available stack space at run time?
I know that stack size is fixed. So we can not store large objects on stack and we shift to dynamic allocations (e.g. malloc). Also, stack gets used when there is nesting of functi …
8
votes
7answers
225 views
Writing compilers … what’s right and what’s wrong?
Okay, in my quest to figure out the necessary stuff to write a compiler, I've reached a bit of a roadblock. It seems that every technology or tool that I find has some opposition …
1
vote
2answers
76 views
does argument in printf get located in memory?
in c, when I write:
printf("result %d ",72 & 184);
Does "72 & 184" get a a block in memory (for example 72 takes 4 bytes, 184 takes 4 bytes?...)
3
votes
5answers
109 views
C++ compiler question- resolving name of a class member
When the compiler sees this code:
SomeClass foo;
int x = foo.bar;
What is the process it goes about in retrieving the value of bar? I.e. does it look at some data structure repres …
0
votes
1answer
72 views
How would you interpret this Compiler/Grammar homework question?
I'm working on my compiler homework and I have the following question:
Consider the following grammar:
lexp -> number : (op lexp-seq)
op -> + | - | *
lexp-seq -> lexp-seq …
6
votes
3answers
354 views
Compiler Magic: Why?
I just noticed that given the following code:
if (x.ID > 0 && !x.IsCool)
the Microsoft C# 3.0 (VS2008 SP1) compiler will optimize it to this:
if (!((x.Id <= 0) || …
1
vote
2answers
123 views
is there a way to look at the preprocessor expanded file in C
Hi
i want to know how could we look at the c file after it has been expanded by the preprocessor before compilation with all the macro values put in the code inside the function w …
1
vote
2answers
108 views
Why are number suffixes necessary?
The C# language (and other languages I'm sure) require suffixes at the end of numeric literals. These suffixes indicate the type of the literal. For example, 5m is a decimal, 5f is …
1
vote
1answer
60 views
Compiler optimization: Java bytecode
I'm currently writing a toy compiler targeting Java bytecode in the translation.
I would like to know if there is some kind of catalog, maybe a summary, of various simple peephole …
6
votes
3answers
176 views
C/C++ compiler feedback optimization
Has anyone seen any real world numbers for different programs which are using the feedback optimization that C/C++ compilres offer to support the branch prediction, cache preloadin …
2
votes
2answers
62 views
Visual studio 2005: is there a compiler option to initialize all stack-based variables to zero?
This question HAS had to be asked before, so it kills me to ask it again, but I can't find it for all of my google and searching stackoverflow.
I'm porting a bunch of linux code t …
0
votes
1answer
33 views
Best open source project for learning about high-level domain-level compiler language?
I have tried to look for an open source project to learn about language domain level compiler to generate several languages such as Java , .Net platforms.
For example, If I make …
2
votes
3answers
123 views
Why does the compiler find this ambiguous?
In my base class I have a generic method (ideally this would be a property, but you can't have generic properties) and a non-generic property, both with the same name:
protected s …
1
vote
3answers
91 views
Can likely/unlikely macros be used in user-space code?
I came across these 2 macros in Linux kernel code. I know they are instructions to compiler (gcc) for optimizations in case of branching. My question is, can we use these macros in …
