Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

53
votes
17answers
3k views

Why main() in C++ cannot be inlined?

I was reading the C++ FAQs and I noticed one sentence. main() cannot be inline. Why is this?
34
votes
13answers
26k views

Inline functions in C#?

How do you do "inline functions" in C#? I don't think I understand the concept. Are they like anonymous methods? Like lambda functions?
30
votes
16answers
2k views

Why is inlining considered faster than a function call?

Now, I know it's because there's not the overhead of calling a function, but is the overhead of calling a function really that heavy (and worth the bloat of having it inlined) ? From what I can ...
27
votes
1answer
473 views

GHC not optimizing modules other than the main module

I'm currently writing a multi-module program in Haskell. I've found a strange problem where my files aren't being optimized properly, even though I'm passing in -O2 and so on. The files in question ...
26
votes
9answers
10k views

Are inline virtual functions really a non-sense?

I got this question when I received a code review comment saying virtual functions need not be inline. I thought inline virtual functions could come in handy in scenarios where functions are called ...
23
votes
10answers
2k views

C++: Is it good practice to make getters and setters inline?

The title says it all. public: inline int GetValue() const { return m_nValue; } inline void SetValue(int nNewValue) { this -> m_nValue = nNewValue; } On ...
23
votes
12answers
13k views

Benefits of inline functions in C++?

What is the advantages/disadvantages of using inline functions in C++? I see that it only increase performance for the code that the compiler output but with today's optimized compilers, fast CPUs, ...
22
votes
11answers
1k views

Why not mark everything inline?

First off, I am not looking for a way to force the compiler to inline the implementation of every function. To reduce the level of misguided answers make sure you understand what the inline keyword ...
22
votes
10answers
2k views

When should I write the keyword 'inline' for a function/method?

Main Question When should I write the keyword 'inline' for a function/method in C++? Edit: Questions added by seeing some answers... When should I not write the keyword 'inline' ...
21
votes
7answers
6k views

What tools to automatically inline CSS style to create email HTML code?

When you take a look at http://www.campaignmonitor.com/css/ you learn that you need to embed inline styles in your HTML, in order for your email to be read in any mail client. Do you know any tools ...
20
votes
3answers
796 views

What's the c++ inline class?

I accidentally found that the Clang compiler allows : inline class AAA { }; in C++. What's this? PS. I have reported this to Clang mailing list cfe-dev@cs.uiuc.edu, and now waiting for reply. ...
20
votes
17answers
3k views

Why should I ever use inline code?

I'm a C/C++ developer, and here are a couple of questions that always baffled me. Is there a big difference between "regular" code and inline code? Which is the main difference? Is inline code ...
18
votes
3answers
495 views

Is “inline” without “static” or “extern” ever useful in C99?

When I try to build this code inline void f() {} int main() { f(); } using the command line gcc -std=c99 -o a a.c I get a linker error (undefined reference to f). The error vanishes if I ...
18
votes
11answers
4k views

What is wrong with using inline functions?

While it would be very convenient to use inline functions at some situations, Are there any drawbacks with inline functions? Conclusion: Apparently, There is nothing wrong with using inline ...
16
votes
4answers
14k views

jQuery “fadeOut” & “remove”

I'm trying to give a fadeout & delete to a DIV(id = "notification"), when a image is clicked. This is how I'm doing that: <a onclick="$("#notification").fadeOut(300,function() { ...
14
votes
6answers
10k views

Animating inline elements with JQuery

I am trying to show and hide an inline element (eg a span) using jquery. If I just use toggle(), it works as expected but if I use toggle("slow") to give it an animation, it turns the span into a ...
13
votes
5answers
2k views

What does __inline__ mean?

I am trying to learn C. Reading through some code I came across a line like this: __inline__ void () ... What does the __inline__ mean? And how does putting that word in front of a function make it ...
13
votes
4answers
1k views

Isn't C++'s inline totally optional?

I have a class that had an inline member, but I later decided that I wanted to remove the implementation from the headers so I moved the members body of the functions out to a cpp file. At first I ...
13
votes
10answers
2k views

What Does It Mean For a C++ Function To Be Inline?

See title: what does it mean for a C++ function to be inline?
12
votes
1answer
267 views

Inconsistent behaviour between (+) and (-) when using 'inline' and quotation evaluation

Does anyone know why sub throws an exception when add does not? And is this a bug? open Microsoft.FSharp.Linq.QuotationEvaluation let inline add x = x + x let inline sub x = x - x let answer = ...
12
votes
9answers
511 views

what is/are the purpose(s) of inline?

I had a discussion with Johannes Schaub regarding the keyword inline. The code there was this: namespace ... { static void someFunction() { MYCLASS::GetInstance()->someFunction(); ...
12
votes
5answers
4k views

“img” elements: Block level element or inline element?

I've read somewhere that IMG elements behave like both. If correct, could someone please explain with examples?
11
votes
4answers
242 views

Difference in inlining functions by compiler or linker?

I am wondering whether there is any difference between inlining functions on a linker level or compiler level in terms of execution speed? e.g. if I have all my functions in .cpp files and rely on ...
11
votes
3answers
499 views

Use of `inline` in F#

The inline keyword in F# seems to me to have a somewhat different purpose than what I'm used to in e.g. C. For example, it seems to affect a function's type (what are "statically resolved type ...
11
votes
12answers
1k views

When to use inline function and when not to use it?

I know that inline is a hint or request to compiler and its used to avoid function call overheads. So on what basis one can determine whether a funtion is a candidate for inlining or not ? In which ...
11
votes
4answers
2k views

display:block inside display:inline

I want to understand what happens when an element whose CSS is display:block is a DOM child of an element whose CSS is display:inline (so that the block element is a child of an inline element). This ...
11
votes
6answers
2k views

decreasing cache misses through good design

How to decrease the number of possible cache misses when designing a C++ program? Does inlining functions help every time? or is it good only when the program is CPU-bounded (i.e. the program is ...
10
votes
1answer
219 views

Find out which functions were inlined

When compiling C++ with GCC 4.4 or MSVC is it possible to get the compiler to emit messages when a function is inlined?
10
votes
6answers
7k views

How can I tell gcc not to inline a function?

Say I have this small function in a source file static void foo() { } and I build an optimized version of my binary yet I don't want this function inlined (for optimization purposes). is there a ...
10
votes
9answers
957 views

If it's bad to use inline SQL, how does using LINQ to perform queries differ in practice?

What's the general consensus on using LINQ to perform queries and manipulation inline and how does this differ to embedding SQL statements into your code (which is considered a no no)?
10
votes
4answers
5k views

extern inline

I understand that "inline" by itself is a suggestion to the compiler, and at its descretion it may or may not inline the function, and it will also produce linkable object code. I think that "static ...
9
votes
6answers
181 views

Should accessors be Inlined?

This is the declaration in the header file: class PrimeSieve { populate(int lim); vector<int> sieve; long long limit; public: unsigned int limit(); }; Should I ...
9
votes
1answer
198 views

Can I change this macro to an inline function without a performance hit?

(EDIT: Let's title this, "Lessons in how measurements can go wrong." I still haven't figured out exactly what's causing the discrepancy though.) I found a very fast integer square root function ...
9
votes
5answers
273 views

What's the scope of inline friend functions?

After searching aroung SO, one question taught me that the lexical scope of an inline friend function is the class it's defined in, meaning it can access e.g. the typedefs in the class without ...
9
votes
1answer
193 views

How exactly does V8 optimize/inline?

I'm wondering whether it is possible to get knowledge of how exactly V8 optimizes and inlines things. I created three simple test functions which all calculate the sine of a angle in degrees. I put ...
9
votes
2answers
171 views

How deep do compilers inline functions?

Say I have some functions, each of about two simple lines of code, and they call each other like this: A calls B calls C calls D ... calls K. (So basically it's a long series of short function calls.) ...
9
votes
2answers
140 views

Can a compiler inline a virtual function if I use a pointer in a clear situation?

I've already read Are inline virtual functions really a non-sense?. But I still have some doubts and found no the answers there. They say that if situation isn't ambiguous, compiler should inline the ...
9
votes
1answer
464 views

When should I (and should I not) use Scala's @inline annotation?

I believe I understand the basics of inline functions: instead of a function call resulting in parameters being placed on the stack and an invoke operation occurring, the definition of the function is ...
9
votes
1answer
226 views

Perl: how can I put all my inline C code into a separate file?

This problem is so simple I can feel the RTFM's coming. However, I've been looking at the docs (Inline, Inline-C, Inline-C-Cookbook ) all morning and I can't figure out how to solve this problem. I ...
9
votes
7answers
301 views

Code in header files will always be inlined?

I just had a discussion with a coworker concerning code in header files: He says that code defined in header files will always be inlined by the compiler (like the code from the function GetNumber() ...
9
votes
5answers
429 views

non-integral constants

I want a header file with a non-integral constant in it, e.g. a class. Note the constant does not need to be a compile-time constant. static const std::string Ten = "10"; This compiles but is ...
9
votes
4answers
3k views

How can I erase all inline styles with javascript and leave only the styles specified in the css style sheet?

If I have the following in my html: <div style="height:300px; width:300px; background-color:#ffffff;"></div> And this in my css style sheet: div { width:100px; height:100px; ...
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 ...
9
votes
8answers
12k views

Inline SVG in HTML, with Firefox 3.5

I'm trying to create some mixed HTML/SVG content and having some trouble. The HTML content shows up as expected, but the inline SVG does not. So, I do some experiments. I find sites which have ...
9
votes
8answers
4k views

C++ inline functions using GCC - why the CALL?

I have been testing inline function calls in C++. Thread model: win32 gcc version 4.3.3 (4.3.3-tdm-1 mingw32) Stroustrup in The C++ Programming language wirtes: The inline specifier is a hint ...
9
votes
9answers
3k views

static variables in an inlined function

I have a function that is declared and defined in a header file. This is a problem all by itself. When that function is not inlined, every translation unit that uses that header gets a copy of the ...
9
votes
7answers
2k views

When should I use __forceinline instead of inline?

Visual Studio includes support for __forceinline. The Microsoft Visual Studio 2005 documentation states: The __forceinline keyword overrides the cost/benefit analysis and relies on the ...
8
votes
4answers
178 views

Tool to parse C++ source and move in-header inline methods to the .cpp source file?

The source code of our application is hundreds of thousands of line, thousands of files, and in places very old - the app was first written in 1995 or 1996. Over the past few years my team has ...
8
votes
3answers
160 views

What if redefine an inline function?

I've spent days in a weird problem and finally discover that there were two inline function of the same signature in the project and they caused the problem. To simplify the situation here is an ...
8
votes
4answers
239 views

Address of labels (MSVC)

We are writing a byte-code for a high-level compiled language, and after a bit of profiling and optimization, it became clear that the current largest performance overhead is the switch statement ...

1 2 3 4 5 15