A compiler is a program which translates one language into another. The tag [compiler] should be applied to questions concerning the programming of compilers or for questions about the detailed inner workings of compilers. Don't use [compiler] for questions about options and settings for a ...
1
vote
2answers
32 views
do java classes compiled with backward compatability use JavaVM optimalization of newer versions?
I was wondering if, when compiling a java source that is written for java 1.4 with -source and -target switches set to 1.4, will use some/any of the optimizations built into the versions in between. ...
-2
votes
0answers
36 views
How does PHP code actually get executed on the CPU level [closed]
I would like to know and understand, in as much detail as possible, how does PHP code does actually get executed on the CPU level, by those billions of tiny transistors there.
For example : what ...
0
votes
2answers
49 views
Reference to compiler design
What is the best book take it as a reference in compiler design
I have some knowledge in Compiler and I designed my own one once. but I need a reference because I'm going to be the teacher of a ...
0
votes
1answer
24 views
How to fix Error “A conflict exists with definition * in namespace public.” using ASC2.0?
In a class hierarchy where:
MngLayers extends Manager_Panel, which extends Manager_Base...
-- In Manager_Base, I've defined an init() method:
public class Manager_Base {
//....
public ...
0
votes
0answers
15 views
How can 32bit gnu ld link huge c++ webkit library?
It is an old question in webkit project, and the 64 bit compilers have resolved it. But unfortunately, my platform only provides the 32bit compiler by now. The webkit project is to big that it ...
-3
votes
1answer
48 views
uninitialized variable in moving average computation
What I am trying to achieve in the following code is to find moving average;
int slots = int ((sr+e)/mst); // finding number of slots
int temp2;
int temp1;
if (temp1 == null)
{
temp2 = 0;
}
...
0
votes
0answers
27 views
Read the error report of the csc.exe
we are running compilation from script of some sources , by calling csc.exe
Is there any way to get error information in some structured xml file ? I mean , without parsing stdouptut. Maybe there is ...
1
vote
1answer
63 views
Solution for compiler warning: control reaches end of non-void function
I have the following code:
int cons_col()
{
for(int col =0; rx_state_== MAC_IDLE; col++)
return col;
}
It is like a counter that is supposed to return an integer when the condition rx_state_ == ...
0
votes
0answers
24 views
#include vs object files for code I have written?
So if I am programming in C and want to use someone's library, I know the only sensible thing to do is to work with the library in the conventional way by including it with a compiler directive and ...
1
vote
0answers
60 views
Error when trying to compile on Windows
I just downloaded Rust 0.6 and tried to compile the hello world program. However, I get following error when trying to do so:
The procedure entry point "_gxx_personality_v0" was not found in ...
1
vote
2answers
38 views
Bison dangling else
I have the following rule in my grammar:
block: TLBRACE statements TRBRACE
| TLBRACE TRBRACE
;
statements: statement
...
0
votes
1answer
47 views
Compiler design: best way to store function signatures?
I am planning on storing all the function signatures which allows overloading.
Right now I have a nested HashMap that looks something like this:
...
1
vote
1answer
75 views
parsing and evaluating simple language using javacc
I have simple language like:
funa X ( X+3*funb(1) ) ;
funb Y ( 2*Y ) ;
main ( 2+func(func(1)) ) ;
func A ( funa(A) ) ;
I used CFG to parse above as:
program => (statement)+
statement => ...
-1
votes
1answer
46 views
Compiler used by Visual Studio for C++?
I have tried searching on the internet but could not find out the compiler used by Visual Studio for C++ applications.
I wanted to know whether it is freely available & whether it can be used for ...
0
votes
1answer
26 views
Compiler version changes when eclipse crashes
I am using eclipse galileo for my project. There are around 50 projects. Initially I set the compiler version as 1.5 in Workspace settings. So all the projects compiles in 1.5. When eclipse crashes, I ...
4
votes
1answer
92 views
Why Are Vtables Not Being Implemented Correctly On Embedded Platform?
I am developing code for an embedded system (specifically, the PSoC 5, using PSoC Creator), and writing in C++.
While I've overcome most hurdles with using C++ , first off compiling in C++ using the ...
0
votes
4answers
41 views
I can't declare a map
So in my cpp file I'm trying to declare a map as follows:
map<string, vector<myStruct>> myMap;
At the top of my file I have written using namespace std and I also have #include ...
1
vote
1answer
62 views
Which ARM compiler for a Cortex-M4, arm-none-eabi, generates the least code space?
Well, I think the title says it all, but the web page complains that the message body is missing.
There were valuable discussions here about code space optimization, but I wonder what compiler (GCC, ...
0
votes
0answers
50 views
Adding x64 compilers to MATLAB PATH?
I am currently working with an SDK that comes in both x86 and x64 versions. I am running MATLAB x64 and installed Visual Studio 2010 Professional so that it would include the x64 components. For the ...
3
votes
0answers
150 views
Delphi 7 Compiling components on every build
I usually don't show compiler progress when compiling, but I decided to turn it on.
I noticed that when my program compiles, it is also compiling the components that it uses. For example it uses ...
1
vote
2answers
197 views
How to migrate to C++ 11 in an OpenSource IDE (codelite) [closed]
I am using CodeLite 5.1 on Ubuntu QQ. By default, based on what was intalled previously with QQ and other tools, I have the gtCC and gt++ toolchains avialable. I always use gt++, which seems to get ...
3
votes
2answers
86 views
C# Performance penalty for Int32 literals to floats
In c#, you can define a number literal as either int or double
Double var1 = 56.1;
int var2 = 51;
These are the default types the literals are assigned. However, the game engine I'm working ...
0
votes
1answer
42 views
Coffeescript: unexptected then in a switch statement
I'm trying to use a simple switch statement but it doesn't compile. Here's the code:
tag = 0
switch tag
when 0 then
alert "0"
when 1 then
alert "1"
The coffeescript ...
0
votes
1answer
49 views
Checking for a C++ compiler's presence
The GNU documentation for AC_PROG_CXX states that:
Otherwise, if the macro is invoked without an argument, then search
for a C++ compiler under the likely names (first g++ and c++ then
other ...
0
votes
0answers
69 views
Any way to properly type Scala classes that were generated at runtime with ASM?
Noob here, I'd like to extend the class, get a class literal, use it as a type parameter, or cast to it.
Currently I can instantiate my ASM generated class and invoke it's methods with reflection, ...
0
votes
1answer
86 views
Online API to integrate C++ compiler to a website [closed]
I would like make a code editor with a C++ compiler integrated into my website. Are there any API to do the same
0
votes
1answer
61 views
Upper bound of the calculation ability of computer in c
I have a question about the number of bytes that a computer normally use to do calculation. First of all, i want you to see the source code below.
source code
printf("%d\n", sizeof(444444444));
...
-1
votes
1answer
77 views
Compiling C code into a .bin file in Visual Studio 2012 Express
I was wondering if there was a way to set the compiler to compile my code into a .bin file which only has the 1's and 0's, no hex code as in a .exe file. I want the code to run on the processor, not ...
1
vote
1answer
197 views
C compiler cannot create executables in Ubuntu 12.04
I'm trying to configure cpuminer for litecoins and I get
checking whether the C compiler works... no
configure: error: in `/home/username/cpuminer-2.2.3':
configure: error: C compiler cannot create ...
0
votes
4answers
98 views
C# Compile Visual Studio Program [closed]
I'm trying to create a program which compiles another program a bunch of times, each time adjusting some constant variables in one of the class source files (like hard coded configuration).
I need ...
0
votes
0answers
35 views
Performance Analysis with PerfView
I just have created a simple console application emitting a bunch of code in memory. I’m trying to gather useful data using PerfView.
When I want to drill down after the last static compile-time ...
0
votes
1answer
46 views
DLL include unordered_map is not compiling with visual studio compiler
I am trying to compile a DLL with MinGW and use it from an executable compiled with visual studio compiler.
One of source files from DLL is using hash_map<> and it can be compile with MinGW ...
0
votes
0answers
38 views
Hard float vs. soft float linker warnings
I just compiled a new GCC (version 4.8.0) cross compiler for powerpc-eabi and with that I get the following warning compiling an eCos image:
.../libgcc.a(_addsub_df.o) uses hard float, ...
0
votes
2answers
233 views
How to fix turbo c++ error “Cannot open include file: graphics.h: no such files or director”
I had been using turbo c++ compiler in windows xp but i have installed windows 7 yesterday and now i am having a small problem, turbo c++ is not working in window 7 ultimate 64bit. It say "Cannot open ...
1
vote
1answer
50 views
How do I get and use a class type from a Java class that I've dynamically created at runtime using ASM?
I'd like extend the class, get a class literal, use it as a type parameter, or cast to it.
I already have a workaround, but I'm still curious.
Currently I can define a class at runtime with ASM, ...
0
votes
1answer
76 views
Does ASC 2.0 recognize [Frame] metadata tags (ex: for Preloader factoryClass)?
I'm trying to use the new ASC2.0 compiler in the AIR SDK 3.7, but I seem to be running into a problem where it cannot detect my preloader class.
If I use the non-ASC2.0 compiler, it recognizes and ...
3
votes
1answer
78 views
Syntax Tree Generation in Clojure
I'm writing a compiler, really for educational purposes. I have generated tokens from my input and want to generate an AST. I have a function that takes the list of tokens and recurses to generate ...
27
votes
3answers
690 views
If Int32 is just an alias for int, how can the Int32 class use an int?
Been browsing through .NET source code of .NET Framework Reference Source, just for fun of it. And found something I don't understand.
There is a Int32.cs file with C# code for Int32 type. And ...
0
votes
1answer
57 views
printing parse Tree as a dynamic list in c language
I have written a code in C to implement LR(1) parse table, however now I am facing a problem in printing the parse tree. How do we do that in C? The tree can have variable children and since the ...
2
votes
1answer
55 views
Why do we put 'A' as the look ahead symbol when all have `$`?
I am using canonical LR Method to construct the Parsing table.
Consider the grammar :
s -> D C A
s -> D a B
a -> C
s -> a A
The book I am reading mentions the first closure state as :
...
0
votes
0answers
36 views
How do I generate a DAG of instruction dependencies for x86/x64 assembly?
I'm writing a scheduling optimizer for x86/x64 assembly code. It would take as input either a assembly.s source or compiled.o object file, and determine the optimum instruction ordering for a given ...
-1
votes
1answer
103 views
Advantage of llvm for a pure C++ software? [closed]
I have been hearing LLVM around and people say it is good. As far as I understand, it allows front ends for multiple languages and share the same back-end. What I am confusing is, if I work on a C++/C ...
-1
votes
2answers
185 views
Understanding stack frame of function call in C/C++? [closed]
I am new to C/C++ and assembly lang as well.
This could also be very basic question.
I am trying to understand how stack frames are built and which variables(params) are pushed to stack in ...
6
votes
4answers
79 views
Questions about C Function Prototypes and Compilation
With the following code:
int main(){
printf("%f\n",multiply(2));
return 0;
}
float multiply(float n){
return n * 2;
}
When I try to compile I get one warning: "'%f' expects 'double', ...
0
votes
1answer
40 views
What is a synthesized attribute?
What is a Synthesized Attribute ? I understand the meaning of inherited attribute but am unable to understand, what does synthesized attribute mean.
Explain with the help of a simple example.
2
votes
0answers
143 views
What is the simplest way of parsing C++ source code (extracting meta-info) in Java?
I need to extract classes, methods and parameters from .c/.cpp files in Java code.
I've reviewed:
Antlr (can't find any ready c++ grammar for Java target),
gccxml (probably works but i can't test ...
0
votes
1answer
32 views
Running mach_inject with Qt in OSX Mountain Lion
On OSX Mountain Lion I'm able to compile mach_inject and the included test project. That works as expected with injection functioning perfectly.
I'm now trying to use the same mach_inject framework ...
0
votes
0answers
46 views
Executing a java program having input statements through another java program
Hi all I am trying to make online java compiler.
As a initial POC I am able to compile and run program having no input statements but I dont'd know what to do if there are input statements also.
I ...
0
votes
1answer
30 views
when I compile with Scite, command prompt won't show up, why?
when I compile with Scite, command prompt won't show up, why?
I am programming a c program, and it wouldn't pop up once I complied
is it because its not connected? or do I have to connect it, if so ...
0
votes
1answer
47 views
How to Get CMake to Use Default Compiler on System PATH?
Currently, I invoke CMake from my build directory as follows:
CXX="/opt/gcc-4.8/bin/g++" cmake ..
to get CMake to use this particular compiler. Otherwise it uses the operating system default ...


