Quantcast
Channel: User CPlus - Programming Language Design and Implementation Stack Exchange
Browsing latest articles
Browse All 65 View Live

Comment by CPlus on Why is type-punning at compile-time a no-go?

@kaya3 I find it hard to imagine how 'little-endian at runtime but big-endian at compile-time' could be, for example, the compiler has to know ahead of time what endian to put integer constants in the...

View Article


Comment by CPlus on Why do compilers typically convert code into abstract...

@apropos So does that mean an optimizing C compiler would have more 'effect' on C code than an optimizing assembly compiler would have on assembly?

View Article


Comment by CPlus on Are there any languages where conditions are not...

@kaya3 What if you don't have boolean types at all, and all the 'logical operators' and comparisons are just part of the if statement syntax, and do not exist outside of one? Are any languages like that?

View Article

Why would accessing uninitialized memory necessarily be undefined behavior?

In C, accessing any indeterminate/uninitialized memory is undefined behavior, period. Even in the case that the type in question is guaranteed to have no trap representations, such as unsigned char or...

View Article

Why are mixed declarations more challenging to implement than forcing all...

C89 had a requirement that all declarations must appear at the top of the scope before any statements:int func(void) { int x = 10; f(); int y = 20; // Invalid // ...}However this requirement was easy...

View Article


Answer by CPlus for What are the advantages/disadvantages of null-terminated...

Short String OptimizationOne way one could save having to allocate a separate buffer at a separate location is short string optimization. The idea is if the string is shorter than the size of a...

View Article

Why are symbols (especially static/internal symbols) necessary?

Compiled languages seem to always have to attach some name to any global object, such as a function or global variable, even after they are compiled, but not local variables. As such, languages such as...

View Article

Answer by CPlus for Why do so many programming languages not have a...

One possible reason why C does this is because C has a concept of hosted and freestanding implementations. If an implementation is freestanding, then the standard libraries do not need to be provided....

View Article


Is there any particular reason to only include 3 out of the 6 trigonometry...

Most languages seem to only have sincos and tan. While the other 3 are just 1/cos1/sin and 1/tan, is there any way that supporting the other 3 directly could be faster than calculating one and then...

View Article


Answer by CPlus for What are the pros and cons of interpreted programming...

The ability to product self-modifying code, such as by producing strings that are then executed as if they are a piece of code of said language, are trivial to do in an interpreted language, but not so...

View Article

Answer by CPlus for Types and variables in a different namespace

Function call or type cast?One example of an ambiguous statement in a C-style language that supports type names and object names overlapping is if there is a function or function pointer called x and a...

View Article

Types and variables in a different namespace

What would it take to design a language that permitted construct such as below?int int = 10;Such a language would need to be able to infer contextually whether a type name or an expression is expected....

View Article

Is there any way a Java-like language could implement immutable primitive...

I asked: What prevents Java from having immutable primitive arrays? a while back and got an answer: Because immutable primitive arrays would typically require checking some immutable flag every time a...

View Article


What are the drawbacks of allowing implicit boolean/integer conversions?

Some languages (C, C++, JavaScript, Python) allow one to use integers as booleans and vice versa:int x;if (x) // Equivalent to: x != 0 y();Or:int x = 10 + (y > 10); // Equivalent to: y > 10 ? 11...

View Article

What are the advantages and disadvantages of the callee versus caller...

This is more a question about compiler design than language design, but in low level languages, when a function is called, the parameters are pushed onto the stack, and when the function returns, the...

View Article


How can memory addresses be compile-time constants?

In C the memory address of a statically allocated object or a function is considered compile-time constant. For example this is valid code:static int x;static int *const p = &x;static const char...

View Article

Image may be NSFW.
Clik here to view.

Why is truncated or non-Euclidean division/modulo the norm?

Related to, but not the same question: Distinguishing modulo (Euclidean division) from remainderThere are multiple ways a modulo operation can be performed. Most implementations, in C, for example, use...

View Article


What are the implications of a 'packed' keyword/feature?

I am bothered by the fact that, in C, struct types can be arbitrarily large. We have no control over their memory layout except for the fact that the first member is always at the beginning of the...

View Article

Why would a language have a concept of undefined behavior instead of raising...

Certain constructs or conditions in programming just are not allowed. Languages such as Java or Swift handle these by raising an error when encountered. C and C++ on the other hand say 'Anything could...

View Article

What prevented fopen() from utilizing macros/flags but not fseek()?

In C, fopen() uses string literals such as "r" or "r+" or "w" to specify the mode with which to open a file. One possible reason for this I read is at the time C was so new that there might not have...

View Article

What are the advantages of strings and character arrays being different?

In many languages such as Java, strings and character arrays are distinct types. In Java one must use toCharArray() in order to use array semantics on strings.In C, strings and character arrays are...

View Article


Entry point of low level languages

I noticed C defines the entry point as a main() function. So does Java. So does C++ (or not, because functions called as global variable initializers are called before main(). I was wondering. Is there...

View Article


What are the ways compilers recognize complex patterns?

This answer is an example of a compiler recognizing that a complex expression is equivalent to a single operation:uint8_t pcnt64(uint64_t n) { n = n - ((n >> 1) & 0x5555555555555555ULL); n =...

View Article

How would I describe an expression separately from a statement?

I have thought about how I could specify an expression separate from a statement.A fragment of code that resolves to a value.But void expressions are still expressions but do not really resolve to a...

View Article

When can widening conversions cause problems?

I can understand the reason for raising a warning or error when you try to convert a wider integer type to a narrower one, due to the loss of precision.Some C compilers will warn about this:uint32_t x...

View Article


Comment by CPlus on Why short and long and double and similar instead of...

I was not aware of such a requirement. I thought the Standard said that floating point format is implementation-defined.

View Article

Comment by CPlus on Why short and long and double and similar instead of...

@NateEldredge In hindsight in those cases, I find what C99 did to be the most logical, having the ambiguous, but required intlong etc., but also offering the unambiguous int32_tint64_t but only...

View Article

Comment by CPlus on Is there any way a Java-like language could implement...

What is meant by if we cannot prove linearity, freezing would fall back to copying?

View Article

What optimizations are possible with unsequenced operators?

In C, most binary operators do not specify which operand will be evaluated first:int x(void) { putchar('x'); return 10;}int y(void) { putchar('y'); return 10;}// ...x()+y(); // Unspecified behavior as...

View Article



Why did C99 have to add the underscored keywords for _Bool _Complex...

C99 introduced the following keywords: _Bool_Complex_ImaginaryinlinerestrictWhy _Bool_Complex and _Imaginary instead of just boolcomplex and imaginary? To preserve backwards compatibility for existing...

View Article

Comment by CPlus on What are the advantages if caller is responsible for...

This question is similar to: What are the advantages and disadvantages of the callee versus caller clearing the stack after a call?. If you believe it’s different, please [edit] the question, make it...

View Article

Why would a language need to have trap representations?

In C there is a concept of trap representations, or non-value representations. If such a value is produced or used, immediate undefined behavior is invoked. This is one of the dangers of using...

View Article

How do modern compilers choose which variables to put in registers?

C has the register keyword, originally designed as a hint to the compiler that a variable should be placed in a register rather than on the stack. However this is generally considered an unneeded...

View Article


Comment by CPlus on Decimal point as a binary operation

I am not sure why this would simplify the PL design.

View Article

Comment by CPlus on Decimal point as a binary operation

With no leading zeros, 10^-c would be just one, which is not necessarily desirable.

View Article

Comment by CPlus on What obstacles prevented C and C++ from standardizing π?

But... hex floating point constants are already a thing in C.

View Article


Comment by CPlus on What are the different ways of handling multiple return...

@user That would be the responsibility of the caller to ensure otherwise.

View Article


Comment by CPlus on What syntax could be used to implement both an...

@supercat Squared can be easily emulated by multiplying the number by itself.

View Article

Comment by CPlus on What obstacles prevented C and C++ from standardizing π?

If they can define the sin, asin, tan, atan, etc. functions, they could just define M_PI as having the same value that atan(1)*4 would produce.

View Article
Browsing latest articles
Browse All 65 View Live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>