Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

26
votes
2answers
335 views

Why does compiler inlining produce slower code than manual inlining?

Background The following critical loop of a piece of numerical software, written in C++, basically compares two objects by one of their members: for(int j=n;--j>0;) asd[j%16]=a.e<b.e; a ...
18
votes
2answers
545 views

When is a method eligible to be inlined by the CLR?

I've observed a lot of "stack-introspective" code in applications, which often implicitly rely on their containing methods not being inlined for their correctness. Such methods commonly involve calls ...
15
votes
7answers
967 views

Inlining CSS in C#

I need to inline css from a stylesheet in c#. Like how this works. http://www.mailchimp.com/labs/inlinecss.php The css is simple, just classes, no fancy selectors. I was contemplating using a ...
11
votes
1answer
367 views

Expression templates are not being inlined fully

I have the first version of a math library completed, and for the next step I'd like to turn to expression templates to improve the performance of the code. However, my initial results are different ...
10
votes
6answers
144 views

c++ heuristic for estimating function inlining benefits

In c++, what is a good heuristic for estimating the compute time benefits of inlining a function, particularly when the function is called very frequently and accounts for >= 10% of the program's ...
9
votes
7answers
3k views

Inlining in Java

In C++ I can declare a method "inline" and the compiler is likely to inline it. As far as I understand there is no such keyword in Java. Inlining is done if the JVM decides to do so? Can I influence ...
8
votes
2answers
187 views

Inline expansion in C#

I am working on a math library for my DirectX 3D engine in C#. I am using SlimDX, which is a wonderfuly put together and powerful library. SlimDX provides quite a few math classes, but they are ...
8
votes
6answers
1k views

Are all compile-time constants inlined?

Let's say I have a class like this: class ApplicationDefs{ public static final String configOption1 = "some option"; public static final String configOption2 = "some other option"; public static ...
7
votes
3answers
339 views

Is there any way a C/C++ compiler can inline a C-Callback Function?

Given a typical function that takes a C-Functionpointer as a callback like C-Stdlib qsort(), can any compiler optimize the code using inlining? I think it can not, is this correct? int cmp(void* pa, ...
6
votes
7answers
385 views

To inline or not to inline

I've been writing a few classes lately; and I was wondering whether it's bad practice, bad for performance, breaks encapsulation or whether there's anything else inherently bad with actually defining ...
6
votes
1answer
636 views

Make LLVM inline a function from a library

I am trying to make LLVM inline a function from a library. I have LLVM bitcode files (manually generated) that I linked together with llvm-link, I also have a library (written in C) compiled into ...
6
votes
4answers
664 views

Delphi 2010 inlining useless?

What is the go with inlining functions or procedures in Delphi (specifically v2010 here, but I had the same issue with Turbo Delphi)? There is some discalimer in the help about it may not always ...
5
votes
4answers
71 views

Property / Method inlining and impact on Reflection

My answer to one of the question on SO was commented by Valentin Kuzub, who argues that inlining a property by JIT compiler will cause the reflection to stop working. The case is as follows: class ...
5
votes
1answer
267 views

Preventing JIT inlining on a method

I've got sort of a unique situation. I've been working on an open source library for sending email. In this library, I need a reliable way to get the calling method. I've done this with a ...
5
votes
2answers
166 views

Repeated evaluation of pure expression in IO action

I have a procedure that (a) does some IO, (b) constructs a lookup table, and (c) returns an IO action that uses the lookup table. But when compiled with -O, GHC (version 6.12.1) inlines the ...
4
votes
1answer
69 views

Can I inline function calls to functions defined in headers of LGPL packages?

As I understand it, you are not allowed to integrate parts of a LGPL library into your own non-LGPL program (by linking statically to it, for instance) but have to link to it using a shared library. ...
3
votes
1answer
141 views

Are all the lambda argument automaticaly inlined in F#

This post from F# News states that F# can inline a function passed as an argument. Is it always the case ? Does it happen automatically ?
3
votes
6answers
142 views

Duplicating C/C++ functions at compile time

If I have a function A(), I am interested in finding a convenient method to create a function B() that has the exact same functionality as A(), differing only in name. The new function would be for a ...
3
votes
5answers
183 views

Are functions defined in headers guaranteed to be inlined?

If I define a non-member function in a header, will it always be inlined by the compiler, or does the compiler choose based on its heuristics? I know that __inline is just a hint, is it the same with ...
3
votes
4answers
181 views

What are good heuristics for inlining functions?

Considering that you're trying solely to optimize for speed, what are good heuristics for deciding whether to inline a function or not? Obviously code size should be important, but are there any other ...
3
votes
9answers
368 views

What is inlining?

I am referring to this discussion. I have never written any code in C or in C++ . I do not have any CS background. However I have been working as Java developer for 5 years and now I have decided to ...
3
votes
4answers
582 views

Is there a way to enforce function inlining in c#?

As far as I know there's no way to hint the c# compiler to inline a particular function and I guess it's like that by design. I also think that not letting the programmer to specify what to inline ...
2
votes
4answers
83 views

Is it possible that code of method from a referenced dll gets inlined in my own code?

A while ago I've read something about 'inlining'. The .Net compiler will inject code (inline) from small methods to make execution quicker. Is it possible that code of method from a referenced dll ...
2
votes
1answer
225 views

Will the .NET JIT inline a small function that calls another small function?

I would like to know - will the .NET JITter recursively inline small functions called from other small functions? Just for example: public static float Square(float value) { return value * ...
2
votes
3answers
247 views

c++ Function pointer inlining

I know I can pass a function pointer as a template parameter and get a call to it inlined but I wondered if any compilers these days can inline an 'obvious' inline-able function like: inline static ...
1
vote
3answers
104 views

Compiler optimizations of inlined functions in C++

When a function which take a pointer in argument is inlined, does the compiler remove the indirection during the optimization process ? Of course when it makes sense.. Here is an obvious example: ...
1
vote
2answers
370 views

Local classes inside inline non-member function produces LNK2005 with MSVC2005

Apparently, MSVC2005 fails to inline local classes' member functions which leads to LNK2005. I'm facing this LNK2005 error when compiling the following: common.h content: inline void wait_what() { ...
0
votes
1answer
77 views

When Is MethodBase.GetCurrentMethod Reliable / Predictable?

A method could get inlined; there is an attribute to prevent that ("there's an att for that"). However, apparently a method may also not get its own stack frame on x64 due to tail-call optimization by ...
0
votes
1answer
58 views

c++ linking error when doing __inline__ on class member function: symbol not found

I'm trying to force inline a member function and I get the error: "a_class::mem_func()", referenced from: func(a_class&) in func.o ld: symbol(s) not found collect2: ld returned 1 exit status ...
0
votes
3answers
296 views

Supressing inlining warning

I am getting inling warning such as : warning: inlining failed in call to ‘symbol_Arity’: call is unlikely and code size would grow To get rid of this i changed the makefile removing the -Winline ...
0
votes
2answers
202 views

Should I be worried about g++ warnings saying 'inlining failed'?

In a project I'm working on at the office, when we compile a release build (with -Os) we get hundreds of warnings from g++ saying that inlining has failed. Most of these warnings seem to come from ...
0
votes
1answer
342 views

Virtual vs Interface poco, what's faster?

I am maintaining an application which has been designed like this: messy code --abuses--> simplePoco (POCO data capsule) The data capsule is a simple class with lots of getters and setters ...
0
votes
3answers
46 views

Is it more efficient to include a “check location” function in a “move function” for a game, or outside as an external function?

I'm creating a game in C++ (speaking of which, does the code I use matter?), which coudl be loosely described as a board game, and I'm wondering which of these two "check if character is out of ...