I've been experimenting with constexpr. On my test compiler (g++ 4.6) this fails to compile with an error about out of bounds access. Is a compiler required to spot this at compile time?

#include <iostream>

constexpr const char *str = "hi";

constexpr int fail() {
  return str[1000]; // Way past the end!
}

template <int N>
struct foo {
  static void print() { std::cout << N << std::endl; }
};

int main() {  
  foo<fail()>::print();
}
link|improve this question

1  
@ildjarn - that's a neat markdown trick I'd not seen before! – awoodland Sep 14 '11 at 18:34
1  
The compiler has to be able to determine the value of fail() at compile time. Since it cannot, it produces an error. Sounds logical to me. – Kerrek SB Sep 14 '11 at 18:45
@Kerrek - But if it's undefined behaviour it would be quite reasonable for an implementation of a compiler to pick a random value for N or to fail during linking. Or to fail in some weird way at run time, or even during compile time? – awoodland Sep 14 '11 at 18:51
1  
I can't see any discussion of it in § 5.19 [expr.const] in the draft I have. Clearly you don't want buffer overflows in your compiler (lookout ideone!), but that doesn't mean the only sane solution is an error message. – awoodland Sep 14 '11 at 18:53
1  
Re UB: In this case, with the bounds known & violated at compile-time, it would even require work to produce weird behaviour (at least without comprimising the whole compiler). I hope other compiler writers will be sane enough to produce errors as well, even if it will not be required by the standard. – Georg Fritzsche Sep 14 '11 at 18:59
show 5 more comments
feedback

1 Answer

up vote 6 down vote accepted

§5.19/2 (on the second page; it really should be split into many paragraphs) forbids constant expressions containing

— an lvalue-to-rvalue conversion (4.1) unless it is applied to

— a glvalue of integral or enumeration type that refers to a non-volatile const object with a preceding initialization, initialized with a constant expression, or

— a glvalue of literal type that refers to a non-volatile object defined with constexpr, or that refers to a sub-object of such an object

str[1000] translates to * ( str + 1000 ), which does not refer to a subobject of str, in contrast with an in-bounds array access. So this is a diagnosable rule, and the compiler is required to complain.

EDIT: It seems there's some confusion about how this diagnosis comes about. The compiler checks an expression against §5.19 when it needs to be constant. If the expression doesn't satisfy the requirements, the compiler is required to complain. This doesn't involve evaluating the expression, and it would be silly to have the compiler attempt to do so. In effect, it is required to validate constant expressions against anything that might otherwise cause UB.

link|improve this answer
It's certainly wrong, but can you prove that it's diagnosable please? – Lightness Races in Orbit Sep 15 '11 at 0:00
1  
s/diagnosable/required to be diagnosed/ I can count on one hand the number of things of this ilk that require diagnostics, and I'd be amazed were this one of them. – Lightness Races in Orbit Sep 15 '11 at 0:01
2  
@Tomalak: No dereference occurs because the expression cannot be formed in the first place. §5.19 describes what can be included in a constant expression. This cannot. End of story. – Potatoswatter Sep 15 '11 at 1:02
2  
@Omni: str[1] is a subobject of a a glvalue of literal type that refers to a non-volatile object defined with constexpr. str[1000] is not. One is is well-defined, the other is disallowed. – Potatoswatter Sep 15 '11 at 3:40
1  
@Omni: Exactly. Except that there's no broad inference about finding anything that might might cause UB, it's just an application of a particular rule of 5.19. An example of a constant expression containing UB would be signed integer overflow. One could reasonably expect wraparound, a compile-time error, or a trapping value getting compiled into the program and causing a problem at runtime. – Potatoswatter Sep 15 '11 at 3:52
show 15 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.