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 ...
0
votes
0answers
12 views
How to recompile ActiveX grid control (VB6) as 64-bit OCX?
We have been working on our ActiveX grid control since 2000 and have a lot of happy customers. The control is still supported, but the main problem we and our customers have recently faced is the ...
0
votes
0answers
11 views
Dependencies for jdt.compiler cannot be found
The issue is that it seems impossible to run ASTView from source; I get a NullPointerException, something to do with singletons I think. The solution - or so I thought - was to start a new plugin ...
0
votes
2answers
52 views
Say I didn't like the syntax of objC blocks… (or: how to customize llvm a little bit)
...is there anything I could do about it?
To be more precise, I would like to replace the caret "^" with something like "§" - granted, there's not much left on the keyboard that's not in use already.
...
-1
votes
1answer
49 views
Linking prebuilt object in Arduino IDE [closed]
I am trying to compile an arduino program.
I want to have some files already compiled, everything except sketch. I already modified arduino IDE for compiling just uncompiled files but I need to have ...
0
votes
2answers
41 views
Should casting from ``real`` to ``double precision`` in FORTRAN be affected by the compiler?
I have a FORTRAN code that I need to run on a server. I noticed that the results are a little different between the two machines. Looking into it, I learned that the difference rise from a function ...
1
vote
1answer
30 views
How to make closure compiler to remove all dead code with advanced optimization in larger projects?
The following code:
function f(a) { a.a = 5; return a; }
f(function() {});
f(function() {});
f(function() {});
f(function() {});
f(function() {});
f(function() {});
f(function() {});
f(function() ...
0
votes
0answers
25 views
There is nothing innately slow about GolfScript. (…) Analysis could be done to remove most if not all stack use. Explain?
From http://www.golfscript.com/golfscript/syntax.html ,
Ruby is slow to start with so GolfScript is even slower. There is
nothing innately slow about GolfScript. Except for the string evaluate
...
1
vote
0answers
32 views
Build a .lib with the Intel C++ compiler and use with app in VC++?
I'm using VC++ 2012 to compile a solution with 2 projects. The main library is a Class Library project which simply outputs a .lib file, and the second is an Application, which uses the compiled ...
4
votes
2answers
81 views
How does object oriented code translate into machine code?
How exactly does the oop code that I write in C++ or C# for example translate into machine code or in the case of C# into bytecode? I mean, how do the objects translate?
In procedural programming ...
1
vote
1answer
42 views
Generating big files in .NET
I would like to ask on two things about .NET executables:
.NET executable is in PE format. Does it mean that address generated by CIL compiler is from the beginning of the file ...
0
votes
1answer
20 views
Are there any classes which can supply you with what a MethodInfo/method name would be?
I was wondering if there are any classes which can generate a MethodBase/MethodInfo, or simply generate the method name, without using "magic strings". Right now I'm doing the following:
public void ...
0
votes
2answers
29 views
Getting an object property multiple times in a row vs getting it once and storing in a variable. Will the compiler optimize it anyway?
Is it better to store an object property when you access it multiple times in a row? Below is a rather silly example of getting an object property multiple times in a row and two ways of dealing with ...
0
votes
2answers
26 views
gcc fails with spawn: No such file or directory
I downloaded
Ruben’s build of
Cygwin GCC.
However upon running it seems unable to compile any files
$ touch foo.c
$ gcc foo.c
gcc: error: spawn: No such file or directory
As a workaround, I ...
0
votes
2answers
61 views
Pseudocode Translation
I started working just a few hours ago on a pseudocode translator, which will translate a specific pseudocode, reguarding work with stacks and queues, to c/c++ executable code. The translator has ...
-4
votes
0answers
21 views
Does the basic .NET Framework Client Profile INCLUDE the cl.exe or other/s c/c++ compiler/s? [closed]
I'm trying to create an application that translates pseudocode to c/c++ code, so that it can be compiled and tested. This application should be able to access a c/c++ compiler FROM THE USER PC.
Thanks ...
0
votes
1answer
27 views
HLSL compiler optimizes strange?
I am not an expert in HLSL compilers and how they work with branches but I have read different opinions about this issue. So to be concrete: In C/C++ it would make perfect sense to implement something ...
0
votes
1answer
31 views
Problems with linking C++ code
I'm tying to learn how to make and use a static library and I've faced some problems. This is what I've done.
First I've written some code and placed in into String.h and String.cpp files.
Then I've ...
-1
votes
0answers
23 views
Compiler Graph coloring and Register live ranges [closed]
Figure below is taken from tutorial. Based on live range table I am trying to built a graph and later perform coloring.
My problem is that I don't understand why picture says that in column 5 it is ...
1
vote
1answer
29 views
Register live range
I am a studying compilers liveness and live ranges but a little bit confused. The figure below taken from tutorial and shows a live ranges for a given code. For example it says that R2 is loaded at ...
2
votes
1answer
29 views
Google Closure Source Map Not Connecting Source In Chrome
I'm using Google Closure to generate minified JS/source map and can't get the source map to connect the source to the minified script in the "Sources" window in Chrome.
Code taken from the Google ...
4
votes
1answer
34 views
Make a Scala interpreter oblivious between interpret calls
Is it possible to configure a Scala interpreter (tools.nsc.IMain) so that it "forgets" the previously executed code, whenever I run the next interpret() call?
Normally when it compiles the sources, ...
-10
votes
1answer
73 views
how a program maps onto a computer's memory and operations? [closed]
What writes compiler for functions and does it allocate memory for it ?and how?
Generally it is easy to visualize that data structures are stored in memory. But how OPERATIONS? like statements in a ...
0
votes
2answers
48 views
What features of C++ or other OOPL's are difficult to implement using YACC, or alternatively a recursive descent parser? [closed]
It has been said that C++ can be done with a recursive descent parser, or with an LL parser, or even with some difficulty and LALR parser, but that these tasks require hacking and kludging. OK, so ...
0
votes
3answers
83 views
Where the value of variables are stored in C
In the following code segment:
int func()
{
int a=7;
return a;
}
Is the code segment where the value 7 is stored in the executable? Or is it in data segment or in the code segment? Will ...
2
votes
0answers
100 views
Python compiler for simple language to java vm code algorithm
I have a simple language that I am trying to write a compiler for (yes it is homework) to compile a simple language I shall describe if necessary to java vm code.
It currently works pretty well I've ...
0
votes
3answers
59 views
how tell the IDE not compile certain files?
I've added a bunch of files from my older project into my new project. They're still not playing an active role in my current code and there are missing classes that won't make them fully functional ...
0
votes
0answers
63 views
MinGW vs MSVC (Portability and Speed)? [closed]
I used MSVC but it really makes executable's size much more. (Even more than executable which compiled with FreeBasic(Source codes adapted into BASIC language))
What is the difference about Speed and ...
0
votes
1answer
20 views
SASS inserts code comments periodically into my compiled CSS
just wondering why SASS does this and how to prevent it - I'm using Scout to manage all my Sass / Compass projects. Inside a "sass" folder I have a main.scss file which imports a partials/reset.scss ...
1
vote
1answer
35 views
ClosureCompiler removing dead code with advanced optimizations
The following code:
(function() {
var hello = function(name) {
alert('Hello, ' + name);
}
hello('New user');
})();
with ADVANCED_OPTIMIZATIONS is compiled to:
alert("Hello, New user");
But ...
-2
votes
1answer
40 views
c++ Fixing undefined reference to `_Unwind_Resume' and `__gxx_personality_v0' [closed]
I know this is a common error and I've done google research. What I understood is that these errors come from the compiler and I need to link it to hidden libraries, but I don't understand why I have ...
-2
votes
1answer
49 views
Function signature with generics java
I am trying to understand lambda expressions in Java and came across this blog post:
Tutorial Lambda Expressions
Take the first two code snippets:
import java.util.ArrayList;
import java.util.List;
...
2
votes
3answers
185 views
Are there any Stackless Python like projects for other languages (Java, Lisp, Haskell, Go etc) [closed]
Well thats the question. Are there any projects for other languages which try to imitate what stackless python is doing for python?
11
votes
1answer
181 views
+100
Scala Presentation Compiler - Minimal Example
Can somebody supply a minimal example of using the current scala presentation compiler (i.e. scala.tools.nsc.interactive.Global from scala 2.10.x), which accomplishes the following tasks?
compile a ...
0
votes
0answers
60 views
Why same piece of (simple) Java code behaves very differently on different Android devices?
Why same piece of (simple) Java code behaves very differently on different Android devices?
That simple piece of code is just the use of String.replace(CharSequence target, CharSequence replacement) ...
0
votes
0answers
19 views
compiling a header file alone, dialog box bug with codeblocks
Good morning I've got some trouble with CodeBlocks 12.11, when I compile my header it displays
It seems that this file has not been built yet. Do you want to build it now?
I reply yes and the same ...
0
votes
1answer
32 views
Initialize object by assignment?
How to give types the ability to initialize via an assignment, some like the following:
public struct WrappedByte
{
private byte m_value;
}
//Usage:
WrappedByte x = 0xFF;
0
votes
1answer
51 views
Project without blank spaces will be compiled faster?
As far as I know all the compiler and the interpreter will ignore the blank spaces in my projects.
So, if I suppose that I have a project composed by 2 thousand line, there are so much blank spaces.
...
0
votes
2answers
41 views
Java: Eclipse: Cannot Find Main Class
I had a project that was compiling and running fine. I had also exported the build.xml file without issue. However, today, I clicked Project --> Clean..., and the project will no longer run. It ...
-1
votes
1answer
60 views
MSBuild won't compile my solution, it fails with critical and ridiculous errors
I have a project which can be compiled perfectly into vs2012 without ANY warning/error.
When I try to compile the same project using msbuild 3.5 or 3.0 I get this errors:
Microsoft (R) Build Engine, ...
0
votes
1answer
41 views
Compiler warning 'await' operator, should I ignore it?
I have a little button code like this:
private void CreateButton_Click(object sender, RoutedEventArgs e)
{
var MsgDialog = new MessageDialog("MY MESSAGE");
MsgDialog.Commands.Add(new ...
1
vote
0answers
19 views
simulink, problems with compiler
On my computer I installed matlab 2013a and visual studio 2012 professional (that contains c++ 2012). As i read on the mathworks website this compiler is compatible with matlab 2013a.
I'm running the ...
1
vote
1answer
47 views
GCC 4.8.0 build size differ greatly on OS X and Ubuntu
Immediately after GCC 4.8.0 was released, I built it on OS X 10.8 with ISL and CLooG. The complete build was about 3.8 GB in size (release tar balls + untarred sources + all generated objects). I ...
0
votes
1answer
68 views
ANTLR for commercial compilers, Why not?
I was reading Why do we need ANTLR v4?, and I came across this
Q: What do you think are the problems people will try to solve with
ANTLR4?
A: In my experience, almost no one uses parser ...
-1
votes
0answers
36 views
Binding variable name to its location in stack on runtime [closed]
Consider we have following code:
void f()
{
int n=50;
n+=10;
}
It is said in process of compilation the symbols table is built. And almost all resources said, that this ...
3
votes
0answers
34 views
Parsing a string with LR parsing table. [migrated]
me and my friends are studying for an upcoming test and this exercise is one of the harder ones for us.
We have been trying to solve it and we have been looking at similar exercises, the problem is ...
1
vote
1answer
36 views
How to keep coffeescript file and its compiled version in different folders?
I want my file/foder structure be clean on my website. So I don't want coffescript file be in the same folder as its compiled version.
While developing I'm using --watch key of compiler. I used this ...
0
votes
1answer
30 views
Is there any api in libclang to simpilfy BinaryOperator
I want to do a transform on my code, it simplifies the binary operator e.g. "1+ a+ 2" to "a+3", so is there any api in libclang can do such things?
0
votes
3answers
64 views
Accurately count number of keywords “if”, “while” in a c file
Are there any libraries out there that I can pass my .c files through and will count the visible number of, of example, "if" statements?
We don't have to worry about "if" statement in other files ...
0
votes
1answer
42 views
Compilers and local/global variable
How does a compiler differentiate between local and global variables when
converting the code to instruction sequences?
And secondly am i right in thinking the constants are stored with the
...
0
votes
2answers
75 views
How is code working after Optimising?
While studying Compiler optimizations, I simply compiled following piece of code :
#include<stdio.h>
struct fraction {
int num ;
int denum ;
};
int main()
{
struct fraction pi;
...


