refers to information that can be inferred or known at the time source code is compiled, as opposed to information that can only be inferred when source code is run. Do not use this tag for questions about the time it takes for source code to be compiled.
3
votes
0answers
33 views
C++ compile-time bignum library
Is there any compile-time library (template metaprogramming) for arbitrary-precision arithmetic in C++?
I need this to help with fixed-point arithmetic and binary scaling in my program for AVR ...
0
votes
2answers
92 views
Are lvalues determined at compile time?
In my understanding, an lvalue is just a location, and its corresponding rvalue is the value stored at that location. for example:
int x;
x = 0; /* the compiler will replace x with the location ...
3
votes
4answers
112 views
[C++ compile time assertions]: Can we throw a compilation error if some condition is not met?
I wrote a function:
template<int N> void tryHarder() {
for(int i = 0; i < N; i++) {
tryOnce();
}
}
but I only want it to compile if N is in between 0 and 10. Can I do it? ...
0
votes
2answers
53 views
C#: Does typecasting of constants happen at runtime?
Firstly, this question is not a duplicate of this question. Other than the title it has absolutely nothing in common.
Now...
In C#, consider the following situations:
int i = (int)10.0;
const ...
2
votes
2answers
51 views
Can I separate creation and usage locations of compile-time strategies?
#include <iostream>
#include <vector>
#include <algorithm>
#include <sstream>
using namespace std;
struct SubAlgorithm1 { void operator () (int /*i*/) { cout << "1" ...
12
votes
1answer
348 views
Confusion about constant expressions
This is some kind of follow-up for this topic and deals about a little part of it. As with the previous topic, let's consider that our compiler has constexpr functions for std::initializer_list and ...
6
votes
0answers
491 views
Unexpected non-constant std::initializer_list
I was toying a little bit with the indices trick to see where I could go to with and came across a strange error... First, the plain not-so-old indices:
template<std::size_t...>
struct indices ...
0
votes
0answers
16 views
Which is the difference between compile-time reflection and runtime reflection?
I have googled a lot and did not find anything satisfying enough.
2
votes
2answers
75 views
How to initialize a sequence of non-movable, non-copyable objects?
Let's say I have a type which is neither movable nor copyable:
struct foo
{
explicit foo( size_t ){}
~foo(){}
foo( foo const & ) = delete;
foo( foo && ) = delete;
foo& ...
2
votes
1answer
147 views
constexpr array and std::initializer_list
I was trying to write an compile-time valarray that could be used like this:
constexpr array<double> a = { 1.0, 2.1, 3.2, 4.3, 5.4, 6.5 };
static_assert(a[0] == 1.0, "");
static_assert(a[3] == ...
2
votes
3answers
241 views
What is the difference between runtime and compile-time?
So what is a runtime? Is it a virtual machine that executes half-compiled code that cannot run on a specific processor. If so, then what's a virtual machine? Is it another software that further ...
2
votes
1answer
188 views
C++11 - Compile time Polymorphism solutions
Suppose that I'm writing a cross-platform library, I have to organize the code in a way that there is a different behaviour for different platforms and this behaviour ( or definition ) it's choosen at ...
1
vote
1answer
74 views
Overhead for “rich type” struct in C++
I'd like keep track of what is essentially "type" information at compile time for a few functions which currently take arguments of the same type. Here's an example; Say I have two functions ...
3
votes
2answers
107 views
Check for framework's existence at compile time?
I'm working on an open-source project that can optionally use a closed-source framework. If the closed-source framework is included in the project, there will be additional functionality. But if the ...
0
votes
2answers
93 views
Objective C Initialiser element is not a compile-time constant
I am getting the error 'Initialiser element is not a compile-time constant' when I attempt to run my build. It is shown that the Array is the source of the problem. My code is as follows:
...
-1
votes
2answers
80 views
In C#, can I check at compile-type whether a class is serializable? [duplicate]
I have a [Serializable] class in C# that has many fields, each a different class. I use serialization to save/load instances of this class but it happens often to me that I forget to add a ...
0
votes
3answers
88 views
NSIS: Reading from a file at compile time
I want to read some values from a file (config.json) into some variables when I compile my nsis script.
How can I possibly do that?
Thanks in advance.
12
votes
4answers
420 views
Compile-time population of data structures other than arrays?
In C++, you can do this:
static const char * [4] = {
"One fish",
"Two fish",
"Red fish",
"Blue fish"
};
... and that gives you a nice read-only array data-structure that doesn't take ...
23
votes
3answers
1k views
How do I switch/select types during compile-time?
Is there a standard way for me to select a type at compile-time on an unsigned index in c++11?
For example, something like:
using type_0 = static_switch<0,T,U>; // yields type T
using type_1 ...
1
vote
3answers
81 views
Check for availablity of #warning preprocessor
I am going to use #warning in my protable C code for generating compile time warnings. But #warning is not supported in all platforms. Is there any way to find whether #warning is supported in that ...
0
votes
1answer
66 views
Eclipse Timestamp compiletime Android
I am using Eclipse for Android SDK on Linux, and searching for a way to add the date and starttime of the compilation to one of the xml files. I like to see on the device which build version I am ...
2
votes
4answers
295 views
Compute nth prime at compile time [closed]
The C++11 features, with constexpr and template argument packs, should in my opinion be strong enough to perform some rather complex computations. One possible example for which I have a practical ...
11
votes
4answers
284 views
Static Guarantee on Key/Value Relationships in Data.Map
I want to make a special smart constructor for Data.Map with a certain constraint on the types of key/value pair relationships. This is the constraint I tried to express:
{-# LANGUAGE ...
0
votes
3answers
99 views
Does the compiler optimise structs of size 0?
If I have a struct defined such as the following:
struct blank {
int : 0;
};
Will the compiler optimise this away to nothing at runtime?
I ask because of this rather popular SO question. I ...
0
votes
1answer
43 views
Junit fails due to Aspect
I have a custom security framwork based on annotations.I use the aspectj maven plugin to weave the aspect when it comes across the security annotation for the method.
I use jenkins to build the ...
1
vote
3answers
79 views
Can a C# custom attribute specify the type of method it is applied to?
I know I can use [AttributeUsage(AttributeTargets.Method)] to make sure a custom attribute can only be applied to a method, but can I go further and get a compile-time error if the custom attribute is ...
1
vote
1answer
126 views
Compile time and Run time in perl
I am reading this document to understand the life cycle of a Perl program.
I am unable to figure out when RUN time and when COMPILE time events occur while running a perl script on a command line ...
5
votes
2answers
155 views
Scala - Enforcing size of Vector at compile time
Is it possible to enforce the size of a Vector passed in to a method at compile time? I want to model an n-dimensional Euclidean space using a collection of points in the space that looks something ...
0
votes
4answers
168 views
Java Compile-time error and multiple catch blocks in exception handling
Given a piece java code:
class SampleExpcetion {
public static void main(String args[]){
try {
int a[]= new int[15];
a[5]= 30/0;
}
...
2
votes
1answer
77 views
Is it possible to (re)bind the receiver inside a block of code?
Problem
This question is motivated by trying to find a solution for this question.
Assume that you would like to construct a hierarchical structure by using the following syntax:
root {
subA {
...
3
votes
1answer
68 views
Is it possible to make a function behave differently for constant argument or variable argument?
For example, factorial(n), if the argument is a constant (expression), then the result is deterministic, and can be done at compile time (by using template meta-programming).
Is that possible to ...
3
votes
1answer
120 views
Why does an Ada compiler let range violations pass? Why is my type declaration a runtime entity?
Why does Ada compiler let range violations pass?
It does give warning, but why does it let it pass if it is an error in any case? Is there a practical scenario in which this is a useful behaviour?
...
3
votes
2answers
125 views
Compile-time generated 2D array in D
In my program I need to generate array with powers' (from 0 to 5) sum of numbers from 1 to 100,000.
So I tried to compile this code:
const enum size_t MAX_ARRAY_SIZE = 100_000 + 1;
const enum size_t ...
0
votes
1answer
32 views
Reference a COM Library at Compile time In a Late format
I have an unusual scenario with a third party library I'm required to use.
The library is packaged with the last 3 versions of the product. Normally this would mean for my software to work with all ...
2
votes
1answer
140 views
Compile-time validation of the caller, or is it possible to extend C# compiler?
Consider this method and the description:
[Description("It must be called from a property, else it is a runtime error.")]
protected T Load<T>()
{
return InternalLoad<T>();
}
The ...
6
votes
1answer
278 views
Forcing a constant expression to be evaluated during compile-time?
A few days ago I asked by which criteria the compiler decides whether or not, to compute a constexpr function during compile time.
When does a constexpr function get evaluated at compile time?
As ...
3
votes
2answers
123 views
Is there some way to determine whether the context allows the use of “this”?
Is there some way to determine whether the context allows the use of "this"?
My goal is write a generic macro, for logging, which depending on the context use "this" (for instance, for print the ...
3
votes
4answers
193 views
Cast an std::array to another data type at compile time?
Is there a way in C++11 to cast an array of one type to another data type at compile-time :
#include <iostream>
#include <array>
#include <type_traits>
int main()
{
static ...
22
votes
2answers
2k views
When does a constexpr function get evaluated at compile time?
Since it is possible that a function declared as constexpr can be called during run-time, under which criteria does the compiler decide whether to compute it at compile-time or during runtime?
...
8
votes
1answer
91 views
template metafunction for detecting template specialisations
Inspired by this question, i'm wondering if there is some compile-time check one can introduce to detect if two given template instantiations:
template <typename T>
class Templ...
typedef ...
4
votes
3answers
112 views
Get static type of struct element
I've looked in the Golang documentation and haven't seen an example of how to achieve what I'm looking to do. Specifically, I'm trying to write a map from inodes, represented by syscall.Stat_t.Ino, ...
1
vote
3answers
235 views
C++ Constructors Runtime/Compile Time
As I know we can create objects in runtime or in compile-time. For example
SomeType object1;
SomeType *object2 = new SomeType;
So I think that in the code here;
int main(){
cout << ...
2
votes
6answers
186 views
Creating a non-static version of compiler-based “dictionary” where keys are types
There is a very easy trick which creates a dictionary-like structure where keys are types.
The structure acts like a Dictionary<Type, T?> where keys are Type objects and values are instances of ...
2
votes
2answers
84 views
Compile time dynamic function call
Not sure the title highlights my goal.
Can I dynamically call a method at compile time ?
For example:
int CallMethod(string methodName, string methodArg)
{
Foo foo;
return ...
3
votes
3answers
114 views
Trace the compiler to see how much time it spent on certain files
Compiling my project takes ages and I thought I would like to improve the compile time of it. The first thing I am trying to do is to break down the compile time into the individual files.
So that ...
1
vote
1answer
71 views
what is the context of a static initializator, and how do I declare a friendship to it?
class test{
static const int veryprivate=3;
};
const int anarray[]={test::veryprivate};
g++ smartly points out that anarray is neither a function or a member function. Is it possible to fix ...
0
votes
3answers
81 views
Is there a way to prevent usage of unimplemented functions during compile time?
often I encounter hacks like
//lets say this is some class that still doesnt support...
//...all the functionality that it should based on the design docs
void MyClass::MyFunction()
{
throw ...
0
votes
0answers
146 views
Error: Type was not found or was not a compile-time constant:
I have question related to flash MP3 player:
http://www.spencer-tech.com/my_scripts/mp3_player/download/
Source code is included in download package.
I use Flash develop and flex_sdk.
I create new ...
3
votes
2answers
157 views
Ada-style Range Types in D
After having read this interesting article about Ada and C++ and knowing of D's support for CTFE and constant-parameter specialization of functions I wonder if Ada-Style Range types could be more ...
3
votes
2answers
110 views
Is it possible to error check case statement options during compile time?
How can I rewrite this code in such a way that user is always shown the correct state(CA,AL etc.) string whenever he passes a valid direction.
i.e How do I make sure there is a valid case statement ...




