Tagged Questions
0
votes
0answers
26 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
34 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 ...
0
votes
2answers
30 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
0answers
36 views
Compiler design, method inlining with multiple return
I am implementing a method inlining in a toy compiler as a part of my project. The language is similar to Java but does not provide goto stmt.
My problem is how can I inline functions that control ...
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. ...
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
2answers
143 views
asm.js limits on the compiler
I would like to know if there are any "limits by design" on the asm.js spec that would prevent any compiler to produce native assembly code directly from it.
For now firefox seems to be able to be ...
21
votes
8answers
851 views
Are the Optimization Keywords in C and C++ Reasonable?
So we've all heard the don't-use-register line, the reasoning being that trying to out-optimize a compiler is a fool's errand.
register, from what I know, doesn't actually state anything about CPU ...
0
votes
0answers
30 views
Is there a way to reuse a gcc process? [closed]
Scenario : You know you need to compile hundreds of C source files. Say you have make, or some other kind of script to do this. What you have is a driver process, which will be forkin/execing ...
173
votes
4answers
5k views
Why does Java switch on ordinal ints appear to run faster with added cases?
I am working on some Java code which needs to be highly optimized as it will run in hot functions that are invoked at many points in my main program logic. Part of this code involves multiplying ...
2
votes
2answers
72 views
Is it better to declare variables used out of “for loop”? [duplicate]
I've used a lot of For loops like this one:
for(int i =0; i < size; i++)
{
int temp = array[i]; //temp is just used in this loop
//...(do somthing for temp)
}
But is this one ...
0
votes
0answers
70 views
Java compiler performance for different Java versions
We wanted to test Java compilers in terms of compiling big programs. So, we generated large random programs, 1MLOC sizes, and compiled them with different Java versions. We found that as the Java ...
1
vote
9answers
228 views
Comparison of if(…) and ?:, which is better? [duplicate]
I have a simple doubt about the flow of the below code snippet. I compare this code block both on the high level and assembly instruction level. And I found that ?: is far better than branching.
...
-2
votes
1answer
195 views
How to make programs compiled under Dev C++ smaller? [closed]
I'm using version 5.4.0 and simplest program (empty screen) have almost one megabyte.
For example, after compilation this below simple program has 1 276 KB. But deleting #include makes file really ...
1
vote
1answer
148 views
Why Managed module Is faster than Unmanaged module in C# [closed]
I reading a book( CLR via c#)in the book writer speak about IL and managed module that managed module compiling in native cpu code and then execute in the book writer said that Managed module Is ...
1
vote
5answers
111 views
C++ - What's the proper way to perform a speed test?
I searched many questions which asked related information, but the answers didn't quiet match exactly what I wanted for an answer. I'll try to explain the issue as best I can.
Basically when running ...
0
votes
1answer
197 views
Speed up & Optimize C++ program using Clang/LLVM on Mac
OK, here's my issue :
I'm working on a super-complex project and speed & performance is crucial - with lots of bit twiddling and low-level stuff (you may ask me if there's anything specific you ...
0
votes
2answers
38 views
Should I add linenumber information in AST for debugging?
I'm working on a DSL compiler and want to provide more friendly information for user.
So I remember that those mature compilers like GCC or GHC all can point out what semantics error happened in which ...
3
votes
3answers
129 views
Can modern compilers optimize constant expressions where the expression is derived from a function?
It is my understanding that modern c++ compilers take shortcuts on things like:
if(true)
{do stuff}
But how about something like:
bool foo(){return true}
...
if(foo())
{do stuff}
Or:
class ...
0
votes
3answers
192 views
What are the advantages/disadvantages of using ANTLR, JavaCC or JFlex over StringTokenizer and equivalents? [closed]
I am currently looking at implementing the language shown here in Java. The presentation is a little long, but it is essentially a DSL for creating dynamic speech.
Example:
rule ExampleRule
{
...
0
votes
2answers
247 views
How to force c++ compiler to use registers?
I have a for loop in my (c++ .Net Win32 Console) code which has to run as fast as possible. So I need to make the compiler use a register instead of storing it in RAM.
MSDN says:
The register ...
0
votes
2answers
133 views
How to run java program only for 1 second? [closed]
I need to calibrate the machines, so my goal is to run a java program approximately for 1 second. So I could use the same program on other machine to measure their run time and calibrate it to 1 ...
12
votes
2answers
167 views
Can I let the C++ compiler decide whether to pass-by-value or pass-by-reference?
Have a look at this hypothetical header file:
template <class T>
class HungryHippo {
public:
void ingest(const T& object);
private:
...
}
Now, for a HungryHippo<string> it ...
1
vote
2answers
66 views
how to get the compiled extended to a function or loop
I have a function with a loop that I would get the extended development of the loop in c++ code. Also I have a recursive function that I wanted to get the same.
An example of I need:
for (i = 0; i ...
2
votes
4answers
174 views
When I use Conditional Compilation Arguments to Exclude Code, why doesn't VB6 EXE file size change?
Basically, when declaring Windows API functions in my VB6 code, there comes with these many constants that need to be declared or used with this function, in fact, usually most of these constants are ...
1
vote
0answers
115 views
Have FORTRAN/C compilers improved performance at a basic level over time? [closed]
I'm grouping FORTRAN and C together here since they share some similarities, but maybe I'm wrong on this. Anyway, if I take some basic code made of loops, branches, basic operations, a few powers, and ...
6
votes
2answers
540 views
Performance cost of using dynamic typing in .NET
What is the performance cost of using dynamic vs object in .NET? Say for example I have a method which accepts a parameter of any type. E.G.
public void Foo(object obj)
{
}
or
public void ...
1
vote
4answers
140 views
What is the overhead for a method call in a loop?
I’ve been working on a C# maze generator for a while which can generate mazes of like 128000x128000 pixels. All memory usage is optimized already so I’m currently looking at speeding the generation ...
0
votes
0answers
88 views
Differences between CUDA 4.2 and 4.0 front-ends
This is from an experiment I did a while back, sadly I do not have access to the code or the machine, so I won't be able to check your profiling suggestions anytime soon. I used a high level directive ...
1
vote
0answers
151 views
Any areas where the GCC compiler is better than Intel's? [closed]
Are there any "areas" where the GCC C++ compiler is better than the Intel C++ compiler?
I presumed optimization-wise Intel would win hands down, but wanted to double-check before assuming?
It would ...
1
vote
4answers
136 views
What is the performance hit for the compiler if it initializes variables?
Sutter says this:
"In the low-level efficiency tradition of C and C++ alike, the
compiler is often not required to initialize variables unless you do
it explicitly (e.g., local variables, ...
15
votes
1answer
369 views
JavaScript object code caching: which of these assertions are wrong?
Because I have been around engineers for so many years, I know that if I don't provide context, I'm just going to get a hundred answers of the form "What are you trying to accomplish?" I am going to ...
1
vote
1answer
65 views
Performace of constant references over non constant reference
Is there any difference in performance when using a constant reference and a non constant reference in C++ ?
If yes than which is better and why ?
There is a statement in systemc manual that passing ...
8
votes
1answer
156 views
Why the use of name arguments in a function actually generate more code?
Reading the Jon Skeet book, I have found (some time now) the use of the "Named arguments" in the function call. Here is a fast and easy example :
void Dump(int x, int y, int z, string cSomeText)
{
...
2
votes
1answer
525 views
Which bitset implementation should I use for maximum performance?
I'm currently trying to implement various algorithms in a Just In Time (JIT) compiler. Many of the algorithms operates on bitmaps, more commonly known as bitsets.
In C++ there are various ways of ...
2
votes
1answer
236 views
Measure function time execution without modification code
I have found some piece of code (function) in library which could be improved by the optimization of compiler (as the main idea - to find good stuff to go deep into compilers). And I want to automate ...
12
votes
2answers
534 views
What extra optimisation does g++ do with -Ofast?
In g++ 4.6 (or later), what extra optimisations does -Ofast enable other than -ffast-math?
The man page says this option "also enables optimizations that are not valid for all standard compliant ...
3
votes
9answers
294 views
Which is the best practices: MethodReturnsBoolean == true/false OR true/false == MethodReturnsBoolean
I have been writing:
if(Class.HasSomething() == true/false)
{
// do somthing
}
else
{
// do something else
}
but I've also seen people that do the opposite:
if(true/false == ...
28
votes
3answers
780 views
Why does JIT order affect performance?
Why does the order in which C# methods in .NET 4.0 are just-in-time compiled affect how quickly they execute? For example, consider two equivalent methods:
public static void SingleLineTest()
{
...
40
votes
5answers
1k views
Why does adding local variables make .NET code slower
Why does commenting out the first two lines of this for loop and uncommenting the third result in a 42% speedup?
int count = 0;
for (uint i = 0; i < 1000000000; ++i) {
var isMultipleOf16 = i % ...
5
votes
3answers
153 views
Transform any program into a semantically equivalent one
I recently found this theorem here, (at the bottom):
Any program can be transformed into a semantically equivalent program of one procedure containing one switch statement inside a while loop.
The ...
8
votes
2answers
230 views
JIT Optimizations at their finest
I have read and heard a lot about how JIT compilers can make optimizations that are impossible for Native Code Compilers and that these optimizations can give huge performance boosts.
So I was ...
16
votes
1answer
793 views
Possible shortcomings for using JIT with R?
I recently discovered that one can use JIT (just in time) compilation with R using the compiler package (I summarizes my findings on this topic in a recent blog post).
One of the questions I was ...
14
votes
5answers
927 views
Can some explain the performance behavior of the following memory allocating C program?
On my machine Time A and Time B swap depending on whether A is
defined or not (which changes the order in which the two callocs are called).
I initially attributed this to the paging system. Weirdly, ...
5
votes
2answers
411 views
compiler nested loop optimization for sequential memory access.
I came across a strange performance issue in a matrix multiply benchmark (matrix_mult in Metis from the MOSBENCH suite). The benchmark was optimized to tile the data such that the active working set ...
0
votes
2answers
349 views
iOS5 & OpenGL ES 2.0 Best Compiler
This is an update to the question: iPhone GCC / LLVM GCC or LLVM? ...since it's been over a year since that question was asked.
I'm very new to graphics processing and am just beginning to learn ...
1
vote
2answers
146 views
Compile ruby script for faster use
I have a ruby script of around 2200 lines which is being used repeatedly, so is there a way to convert it into binary or compile it so it runs faster.
10
votes
5answers
4k views
If-Else-Return or just if-Return?
Suppose I have an if statement with a return. From the efficiency perspective, should I use
if(A > B):
return A+1
return A-1
or
if(A > B):
return A+1
else:
return A-1
Can ...
1
vote
3answers
116 views
Efficient differentiation between keyword and Identifiers
I am building a compiler and in lexical analyzer phase:
Install the reserved words in the symbol table initially.A field of the symbol-table entry indicates that these strings are never ordinary ...
-2
votes
2answers
190 views
bitwise operation or shift operation, which one is faster? [closed]
For example:
char a = 0xac;
char b = 0xff;
char c = (a * b) & 0xff00;
char d = (a * b) >> 8;
which one is faster to calculate, c or d?
Thanks




