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 ...

learn more… | top users | synonyms (2)

0
votes
4answers
34 views

Can I compile and debug (run) a single C++ file in Visual Studio 2012? (How to avoid creating too many projects)

I'm learning C++ out of a book and using Visual Studio 2012. In order to follow the book's exercises, I need to make multiple .cpp files with the main() function inside them. Is there any way I can ...
-2
votes
3answers
76 views

Using Integer And Char Pointers in C++ or C?

int *ab = (int *)5656; cout << *ab; //Here appcrash. int *ab; *ab = 5656; cout << *ab; //These block crashes the app too. But i can get the hex value of content of pointer if i write ...
1
vote
1answer
36 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
16 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
25 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
1answer
21 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
51 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
19 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
16 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
29 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
25 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
17 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 ...
3
votes
1answer
30 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
69 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
46 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
96 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
52 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
54 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
30 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 ...
-1
votes
1answer
31 views

c++ Fixing undefined reference to `_Unwind_Resume' and `__gxx_personality_v0'

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
178 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?
10
votes
1answer
141 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
59 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
39 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
58 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
39 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 ...
0
votes
0answers
12 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
41 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
61 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
35 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
29 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
63 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
0answers
27 views

Lazarus: How do I resolve Debbuger GDB error?

After updating and preparing my program for the latest Lazarus compiler, I am finally test running it. However, my program won't even start but raise the following compiler error. What do I do to ...
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; ...
0
votes
1answer
33 views

construct AST from string with libclang

I generate some c++ codes, and store it in string, I want to construct an AST tree from the string using libclang. How to do it? I don't want to string into extra files.
-3
votes
0answers
26 views

Why the Windows ABI and DLLs are often described as “broken”? [closed]

What is the problem with the Windows ABI ( typically Visual Studio ABI ) that are often connected to the behaviour of compiled objects such as dlls ? It's a quite popular argument when talking about ...
1
vote
0answers
30 views

Web Essentials LESS Compiler gives no Error Messages

With Visual Studio 2012 Update 2, Web Essentials 2.7. Suppose there is an error in LESS. When saving the file, a message is shown in the preview pane. It reads... /* Compile Error. See error list ...
1
vote
1answer
20 views

Recompile with Xlint on BlueJ for warnings details

I'm a student and i have to created a game. I finished but i have to let it with NO warning. I have a warning I don't know where it come from. Myclass.java uses unchecked or unsafe operations. ...
5
votes
1answer
80 views

Why will javac not accept x = x+++++y . (Compiler Theory)

From the perspective of Compiler Theory, why would the javac compiler not accept a statement of the form x = x+++++y but accept x = x+++ ++y ?
0
votes
1answer
17 views

Code is not updating in Windows

I am running a C program using DEVC++ and CodeBlocks in Windows and the code is not updating. I just added a single printf message and it is not shown in the output. I tried clean,rebuild,recompile, ...

1 2 3 4 5 136