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
2answers
62 views

Compiling java into native code? [duplicate]

I'm trying to find a java compiler that I can use to compile my java code into native binaries on different operating systems. I have heard of the GNU Compiler for Java but I can't seem to find a ...
0
votes
0answers
20 views

How can I install Microsoft windows software development kit (SDK)

I have succesfully installed the c++ compiler and now I need to install the Microsoft Windows Software Development Kit (SDK) to run the compiler. I have tried to install Windows SDK about 10 times, ...
2
votes
1answer
80 views

Will the C# compiler remove unused local if it is assigned a property?

This might be a silly question. I know that compiler will remove unused locals. But if I write my code like this: class MyClass { public int SomeProperty { get { ... ...
-2
votes
1answer
45 views

How the function do_raw_spin_lock is implemented in linux

While debugging panic issue realted to spinlock, I came across this definition of spinlock in include/linux/spinlock.h . It is rather hard for me to understand this definition. Why is ...
0
votes
1answer
27 views

How to capture command line options when writting gcc plugin

I am adding some new features on cpp, I want to write a compiler pass to modify some cpp source codes according to different options.(I use some gcc feature(cilk) , so I think it cannot be done by ...
0
votes
0answers
60 views

Object oriented three address code generation

I'm working on a project related to compiler design. I need to generate three address code for a Java-based language and it implies the use of objects and scopes. I would like if you can help me ...
0
votes
1answer
39 views

Retrieving Eclipse CDT Messages from Compiler

Can we retrieve Eclipse CDT compiler problem messages (Iproblem interface) as we can do with JDT? The purpose is to access them within a standalone Java application. CompilationUnit cu = … Message[] ...
0
votes
1answer
23 views

The following sets of rules are mutually left-recursive TREE GRAMMAR

I have a complete parser grammer than generates an AST which i could say is correct using the rewrite rules and tree operators. At the moment i am stuck at the phase of creating a tree grammar.I have ...
0
votes
0answers
42 views

How to build lib clang to run on Linux ARM device and compile for AVR?

I have clang sources from official svn repo and x86 mac. I need to compile libclang.so: 1. for working on Linux ARM device 2. compile code for AVR I believe it's combination of 'target' and 'host' ...
1
vote
2answers
68 views

What's the difference between a boolean literal and a boolean value?

I can't seem to find a clear explanation as to what the difference is between these two. I'd also like to point out that I don't really understand the difference between literals and values either. ...
1
vote
1answer
38 views

Multiple entries in an LL(1) parsing table?

Given this grammar: S → S1 S2 S1 → a | ε S2 → ab | ε Therefore, we have FIRST(S1) = { a, ε } FOLLOW(S1) = { a } Does that mean that in ...
0
votes
0answers
31 views

template argument deduction for destructor

Should a compiler deduce the template argument when the destructor of a class is called ? The following piece of code : #include <iostream> template <typename T> class A{ }; int main(){ ...
1
vote
1answer
28 views

How is inline assembler implemented in Linux and Windows compilers and ELF/EXE?

Is the assembler already converted into the ABI binary in executables or is it done by OS? Please can you give me link to GCC or any other compiler source code, which converts x86-64 inline asm into ...
-3
votes
1answer
70 views

How the compiler behaves in post and pre increment of a value? [duplicate]

#include <stdlib.h> #include <stdio.h> int main() { int i = 0; i = 10; printf("++i, ++i :--> The value is: %d, %d\n", ++i, ++i); i = 10; printf("++i, i++ :--> The value ...
0
votes
0answers
57 views

How to compile 'libclang.so' file from Clang sources? for ARM?

I've followed getting started steps and compiled clang, but i can't find 'libclang.so' file. What should i do to get 'libclang.so' which i will be able to use in Java via JNI?
3
votes
1answer
218 views

How “Hello World” gets printed? - a complete life cycle [closed]

I took compiler, operating system, computer architecture course in graduate school. But I want to see those concepts in a simple but real example (not too theoretical). HelloWorld is a good choice ...
2
votes
4answers
162 views

'|' vs '||' compiler optimization in C#

I was recently asked this question in an interview which I totally got wrong but got me curious about the compiler optimizations in C# and .net Consider the following snippet: void Main() { ...
-2
votes
1answer
75 views

Difference between this two programs [duplicate]

Assume the 2 following programs : public class Main { private static boolean test= false; public static void main(String[] args) { if(test) method1(); } private ...
-3
votes
0answers
89 views

Converting code from C++ to C [closed]

This program won't compile in C or C++. Am I forgetting a library? I am a beginner … I'm using Dev C++ but I need my code to be in C. How can I convert this to C? I keep getting an error message. ...
82
votes
3answers
2k views

Why does this (null || !TryParse) conditional result in “use of unassigned local variable”?

The following code results in use of unassigned local variable "numberOfGroups": int numberOfGroups; if(options.NumberOfGroups == null || !int.TryParse(options.NumberOfGroups, out numberOfGroups)) { ...
2
votes
2answers
43 views

Includes and classes in C++

Well, i have the following problem.. I have main.cpp #include "serverClass.h" ... and then in serverClass.h, #ifndef SERVERCLASS_H_ #define SERVERCLASS_H_ #include <stdio.h> #include ...
0
votes
1answer
18 views

VC 2008 error, old lib file, need to rebuild

Hello everyone first of all thank you for all your answers and i am sorry for taking your time. I got small problem with my client side, project isn't mine but when i tried to compile it. I get an ...
1
vote
2answers
44 views

Is there a way to output the assembly of a single function in isolation?

I am learning how a C file is compiled to machine code. I know I can generate assembly from gcc with the -S flag, however it also produces a lot of code to do with main() and printf() that I am not ...
-4
votes
1answer
26 views

Largest possible number that a specific compiler can handle [closed]

In different programming languages, is there a limit to which each each language can handle the largest possible number? Or is it determined by the CPU and RAM capacity?
0
votes
1answer
12 views

Finding a particular token

Well I am using lex for finding the tokens. I want to get the Identifier token's value that comes after the token class, how do i do it. e.g my function should return identifier after the class ...
1
vote
1answer
34 views

Soot Java bytecode framework: How to compile a single class file to Jimple/Shimple

I'm trying to figure out how to use Soot in an existing project (a metacircular interpreter). Specifically, I want to use Soot to convert java bytecode into a convenient 3-address code (either Jimple ...
1
vote
1answer
59 views

Antlr Tree Grammar to Generate Pmachine code?

I am presently working on a project to build a small c compiler to run on a pmachine. Presently, i started off using a stripped version of a full c grammar. Parsing looks okay at the moment and i used ...
0
votes
0answers
57 views

While loop expressions in compiler parser construction

I am kinda new to design and constructing compilers. The thing I would like to implement is adding the while loop expressions to my so-far existed c/c++ code based on lets say these general BNF ...
-2
votes
1answer
34 views

Data Flow Analysis of Java Byte code [closed]

Is there any jar available to generate Data Flow Analysis for Java Byte code. Or is there any other way.
1
vote
1answer
106 views

Link step can't find symbols (XC8 compiler)

I'm trying to compile and link a C program using the XC8 compiler. I changed from the C18 compiler and made some minor compatibility changes to the code. With C18, the code compiled and linked just ...
0
votes
0answers
36 views

“Combine” logical expression and return the subexpressions

I need to write an algorithm that takes a logical expression as input, combines its operators and returns the subexpressions. Some examples of what I need: foo -> ["foo"] foo bar -> ...
0
votes
1answer
34 views

Why numbers can't be used for variable's first character?

I'm just wondering why most(maybe all) interpreter/compiler does not allow numeric character at the beginning of a variable? My guess is that when a number is parsed after a white space or operator, ...
-6
votes
2answers
55 views

How to make a Java compiler? [closed]

So my problem is a little confusing, I'll try my best to explain it clearly. I am making a Java Learning Program using Java. Now my program will have lessons on one side and on the other a text box ...
0
votes
1answer
12 views

Linkage convention

When a compiler compiles a procedure, I understand that there's a 'Linkage convention' for ensuring that the caller and callee's environments are sorted out fine in this situation. How can a ...
2
votes
2answers
65 views

Eclipse: Cannot run program “cs-make”: Launching failed

For the past week, i have been hunting a free development environment for STM32F1xx, which is supported by FreeRTOS. And no success yet :( . Now I've found this: ...
0
votes
0answers
20 views

“/analyze:quiet” won't go away when I have “/analyze” and “/Qpar-report” set in Visual C 2012

I want to see all the parallelization analysis that normally gets outputted by the command /Qpar-report:2, but the compiler has "/analyze:quiet" set and I don't know how to make it go away so I can ...
0
votes
2answers
39 views

Does Objective-C load the whole #imported file?

I'm trying to understand what really happens at compile time and runtime with imported files. Does #import "file.h" directive essentially copy and paste the entire file.m into the current file? Or ...
0
votes
1answer
52 views

Erlang compiler UTF32 support

I want to write simple program with wxErlang. I can use Unicode strings when I use interpreter only. But I need to load my program from file (like "(load )" in LISP). File is in UTF-8. When I try to ...
1
vote
1answer
51 views

Trouble adding Obj-C++ subproject into a Xcode Obj-C project

I created a Objective-C++ project that runs some C++ (OpenCV) code. It runs fine and everything works well. But then I decided to add these routines as a subproject to my MAIN PROJECT, I get errors ...
2
votes
6answers
107 views

Data member offset in C++

"Inside the C++ Object Model" says that the offset of a data member in a class is always 1 more than the actual offset in order to distinguish between the pointer to 0 and the pointer to the first ...
0
votes
1answer
27 views

Data Segment in Compiler Construction

i am developing a compiler for my own defined language , i have generated 3 address code and now i am going to develop a virtual machine which can run that 3 address code. but for that i need Data ...
0
votes
1answer
81 views

Code::Blocks: Process terminated with status 1

I installed Code::Blocks on Windows, together with the GCC compiler from MinGW. When I create a new empty file, name it *.cpp, do something like #include <iostream> using namespace std; int ...
0
votes
1answer
37 views

fortran derived type with parameterized len

I found this question/answer Fortran: Array of unknown size in type, which demonstrates fortran derived type with parameterized len. type food(NBananaTypes,NAppleTypes) integer,len :: ...
0
votes
1answer
46 views

How to fix this? c++ compiler set up

I installed gcc via xcode but I am getting this error when trying to compile the file: sanjay$ g++ main.cpp Undefined symbols for architecture x86_64: "Fraction::Fraction(int, int)", referenced ...
4
votes
1answer
151 views

How to create a standalone executable file from Python 3 script?

I've made a program lately that uses Tkinter in Python 3.3. I would like to distribute the program as a simple executable file that does not require an installation. I've had a lot of experience using ...
2
votes
2answers
39 views

Conditional like: if application started from IDE then (do this) else (do nothing)

There is a way to execute a part of code ONLY if the application is launched from the IDE?. I want to make a conditional where if application is launched from the VS IDE then do one thing but if ...
1
vote
3answers
56 views

max number of allowable warnings while compiling

Is it possible to 'tell' compiler that if total number of warnings (while compiling a C++ program) are more than say 10 then stop compiling further, and emit an error? Or is it possible to hack a ...
1
vote
2answers
50 views

How do I return a string from a javacc method?

I have this method in javacc to parse a url (e.g. /books/id/1). How do I make this method return the whole url string? void path() : {} { (< SLASH > ( < IDENTIFIER >))+ } I have tried ...
1
vote
1answer
21 views

compilation error with MPI_type_create_resized in Fortran 90

I need to scatter a 2D array with non-contiguous blocks in a Fortran 90 code. The code need to call MPI_TYPE_CREATE_RESIZED to change the bounds and extend of the new vector type before calling ...
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. ...

1 2 3 4 5 136