The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
33 views

C++ DLL Function Inlining Link Error 2019

My question is (I hope) simple, how do I, when building a DLL, declare/define my class in the header (dll.h), declare the classes functions in the header (dll.h), and finally define the class ...
1
vote
1answer
56 views

Gnuplotting multi-plot data without a textfile

I've just read Gnuplotting data without a textfile, and I want to do the same thing, but with a "multi-plot". I currently have: plot 'data.csv' using 1:3:2:6:5:7:xticlabels(8) with candlesticks title ...
1
vote
4answers
108 views

They said javascript code in HTML considered bad practice, how to solve this?

So, I understand that mixing javascript into HTML is bad, even in head. But lets see this code (I want to remove items the from list) . . . <div>item1 <a href="#" onclick="return ...
1
vote
2answers
77 views

How can I prevent Postgres from inlining a subquery?

Here's a slow query on Postgres 9.1.6, even though the maximum count is 2, with both rows already identified by their primary keys: (4.5 seconds) EXPLAIN ANALYZE SELECT COUNT(*) FROM tbl WHERE id IN ...
14
votes
2answers
276 views

How to use phase control of inlining in haskell?

Documentation says, Sometimes you want to control exactly when in GHC's pipeline the INLINE pragma is switched on. Why should I ever want this? (Except when I also use RULES pragma, in this ...
4
votes
2answers
124 views

Why does the MSVC 10.0 compiler often ignores the inline keyword?

I have some quite complex c++ code which is used in a real-time system and is thus absolutely speed sensitive. It was developed on Linux and to speed it up a lot of functions were marked with the ...
0
votes
2answers
105 views

Can I have a concise code snippet that would incur JIT inlining please?

I'm trying to produce some "Hello World" size C# code snippet that would incur JIT inlining. So far I have this: class Program { static void Main(string[] args) { Console.WriteLine( ...
1
vote
2answers
133 views

Limits to inlining function wrappers in C++

My question concerns the application of inline optimisations on function wrappers in C++, consider the following code, the WorkerStructure object is initialised with a function wrapper that ...
1
vote
1answer
254 views

Android Proguard does not inline

I am using the latest Android SDK (4.1) and I tried exporting a signed jar with Proguard enabled. However, after decompiling the optimized APK, I noticed that methods that I would have expected to be ...
0
votes
1answer
135 views

Inlining a function in LLVM jit

I'm new to LLVM framework and compilers field. I'm trying to get acquainted with it. Having done some preliminary reading in compilers i have the following question: I would like to know how is ...
5
votes
2answers
78 views

Do I have to repeat the inlined keyword on function implementation

I always try to keep implementation outside of headers, so for templates and inlined functions, I usually do something like this // File.h inline bool foo() #include "File.hpp" // File.hpp ...
5
votes
5answers
141 views

Static functions inlining in Java

First code: public static int pitagoras(int a, int b) { return (int) Math.sqrt(a*a + b*b); } public static int distance(int x, int y, int x2, int y2) { return pitagoras(x - x2, y - y2); } ...
0
votes
5answers
504 views

Virtual function declared in a derived class

Here I have declared another virtual function in Derived class. #include <iostream> using namespace std; class A{ string s; public: A(const string& name) : s(name){} ...
2
votes
3answers
119 views

inlining a function

I am developing in C using gcc in Linux. I am organizing my small functions in .H and .C files in the following way // .H file extern int my_function( int val ); // .C file ...
0
votes
1answer
116 views

How does inlining work in LLVM?

I am trying to understand how llvm inlining work (Inliner class). The operation that I don't understand is the follow: SmallVector<std::pair<CallSite, int>, 16> CallSites; when ...
2
votes
1answer
146 views

Can Java (JIT) inline recursive methods?

The question says it all. I was taking a look at Can a recursive function be inline? so trying to correlate that to Java.
1
vote
1answer
257 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 ...
29
votes
2answers
611 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 ...
1
vote
3answers
128 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: ...
4
votes
1answer
170 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. ...
0
votes
1answer
123 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 ...
10
votes
6answers
220 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 ...
7
votes
7answers
910 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 ...
8
votes
4answers
145 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 ...
3
votes
2answers
208 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
7answers
248 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 ...
7
votes
3answers
643 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, ...
11
votes
2answers
895 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 ...
2
votes
4answers
119 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 ...
5
votes
2answers
222 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 ...
12
votes
1answer
433 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 ...
21
votes
3answers
1k 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 ...
18
votes
7answers
3k 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 ...
3
votes
1answer
452 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 * ...
8
votes
2answers
282 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 ...
2
votes
3answers
418 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 ...
0
votes
3answers
1k 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 ...
7
votes
1answer
1k 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 ...
4
votes
5answers
248 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 ...
5
votes
4answers
311 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 ...
1
vote
2answers
711 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() { ...
6
votes
4answers
863 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
9answers
781 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 ...
0
votes
2answers
269 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
524 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 ...
14
votes
7answers
5k 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 ...
0
votes
3answers
48 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 ...
9
votes
6answers
2k 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 ...
6
votes
5answers
832 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 ...