compiler-construction
How does a compiler decide whether it's worth making my functions inline or not?
I am wondering if anyone knows the logic which C++ compilers generally use to decide whether or not to inline a function at compilation (assuming inline has been requested).[详细]
2023-04-10 21:16 分类:问答How do I imitate the Microsoft version of __FUNCTION__ using gcc?
When I use the __FUNCTION__ macro/variable to print out debugging information, there seems to be a difference in what it outputs when using the Microsoft C++ compiler and gcc. For example, using the f[详细]
2023-04-10 20:32 分类:问答IntelliJ IDEA Aspectj (Ajc compiler) takes too much time to load classes after every Make
I wonder if there is a way to reduce compilation time when using Ajc compiler with IntelliJ. I have rather big project, i would like to use AspectJ with, but unfortunatly when I\'ve tried to work with[详细]
2023-04-10 19:33 分类:问答Can a statically typed language be developed with the DLR?
I have to develop a compiler for a statically typed language for .NET I\'m considering using the DLR for this instead of building all the parts (Lexer/Parser, Syntax, Semantic, Code Generation).[详细]
2023-04-10 18:39 分类:问答Undefined reference to svc_create
My proble开发者_JAVA百科m is the following: I\'m trying to implement a C RPC example and I keep running into the following compiler error:[详细]
2023-04-10 16:47 分类:问答Combining the 'using' directive with partial overloading: gcc feature or intel bug?
I wish to use a set of libraries written in C++ with the Intel compilers. I\'ve attached sample code which demonstrates the problem. There are many places in the libraries where they make use of combi[详细]
2023-04-10 05:36 分类:问答Rules for locating header files
When you write #include \"foo.h\" I would expect the compiler to check the directory of the file doing the including (as opposed to the current directory) first, and if not found there then fall back[详细]
2023-04-10 05:20 分类:问答ASP alternative to codepad.org
Is there any alternative to http://codepad.org/ for use with ASP language? I would like to quickly ch开发者_JAVA技巧eck syntax online.[详细]
2023-04-09 09:39 分类:问答What are some approaches for gathering and conveying compiler errors
The simplest approach is just to throw an exception with error information at the first occurrence of an error. Perhaps another approach is to pass a mutable list argument through analysis functions.[详细]
2023-04-09 08:55 分类:问答Why are some functions located densely and others are aligned and padded with int 3 instructions?
I compile the following program with Visual C++ 10: include <Windows.h> int _tmain(int /*argc*/, _TCHAR* /*argv*/[])[详细]
2023-04-09 08:54 分类:问答