Questions tagged [compilers]
Historical compilers, or modern compilers targeting retro platforms.
79 questions
7
votes
0
answers
332
views
What were the last C & C++ compilers to support automatic MMX vectorisation?
It was suggested to me to move this question from SO to here.
There was a relatively short (in tech terms, at least) period during which MMX was the only way to vectorise integer operations on the x86,...
28
votes
6
answers
4k
views
How much faster are binaries produced by Modern compilers vs 1980s compilers vs for Retro CPUs/Computers? Binary benchmarks
See title.
I saw that forks of LLVM and GCC compilers for 80s CPUs like MOS6502, Z80, Intel, M68k, etc are being maintained.
Please note that I'm talking about the binary benchmarks, not the compiler ...
13
votes
1
answer
3k
views
Was there ever a C compiler written in Pascal?
When C was gaining popularity across various computer architectures and it was being ported to those architectures, was it always done via cross-compiling, or was there a known case of a C compiler ...
3
votes
1
answer
257
views
Is there any compiler (either native or cross-compiler) for NEC PC-88?
After searching for the file system for this computer I have gained interest in this machine and development for it.
I have found a C compiler but anything else.
So basically I would like to ask if ...
6
votes
3
answers
511
views
Are there known attempts to revive Algol-68 on PDP-11?
There was an implementation of Algol-68 on PDP-11, which is present in the form of raw binary files, allegedly from RSX-11M, and UNIX V7 loaders/adapters for them in the form of Assembly language ...
6
votes
0
answers
311
views
Enumerated types in Pascal: which compilers did I/O of them?
As far as can be seen in ISO 7185:1990, §6.9.1, page 60
read(f,vi,...,v„) shall access the textfile and establish a reference to that textfile for the remaining execution of the statement; each of vi,...
3
votes
0
answers
236
views
Did any Algol 58 implementation support the “do” facility?
Algol 58 had a do statement that performed a kind of macro substitution. It is described on page 16 in the preliminary report. Even though the language was intentionally drafty and incomplete, various ...
4
votes
0
answers
278
views
When was the /LD MSVC compiler option available and what was it good for? [closed]
I stumbled upon the /LD compiler option in the Microsoft compiler and I wondered why my Visual Studio 2022 doesn't have that option. So I asked this question on StackOverflow, where famous Hans ...
31
votes
3
answers
19k
views
Why did Borland ignore the Macintosh market?
During the 80s and 90s, Borland developed several amazing, cutting edge developer products. Their Turbo Pascal and Delphi, an Object Pascal development environment, were very popular on DOS and ...
12
votes
2
answers
1k
views
Is there a pre-defined compiler macro for legacy Microsoft C 5.10 to get the compiler's name and version number?
In Microsoft Visual C++, I can use the macros _MSC_VER for compiler identification and _MSC_FULL_VER for its version number to retrieve the data of the used compiler at runtime of my C program. But ...
4
votes
2
answers
285
views
How were strings printed in the Dijkstra-Zonneveld ALGOL 60 compiler for the Electrologica X1?
Reading the report on the first Algol 60 compiler in the world, namely the Dijkstra-Zonneveld ALGOL 60 compiler for the Electrologica X1, which contains the Pascal source faithfully reproducing its ...
19
votes
6
answers
6k
views
How did the `long` and `short` integer types originate in C?
I was wondering why C has the long and short integer type in addition to the plain int, and came across the following quote in the C99 Rationale (thanks to this answer here):
[...] In the 1970s, 16-...
7
votes
0
answers
555
views
Looking for the name of a natural language Fortran compiler
Back in the 80s I ran across a book at a garage sale titled something like "Programming Fortran In English" or "Programming Fortran In Natural Language" that described a compiler ...
23
votes
3
answers
3k
views
Why were OS/360 PL/I procedure calls so expensive in terms of stack space?
In 1977, Guy Steele published a paper entitled Debunking the “expensive procedure call” myth or, procedure call implementations considered harmful or, LAMBDA: The Ultimate GOTO. The paper was the ...
34
votes
11
answers
12k
views
Has there ever been a C compiler where using ++i was faster than i++?
Please take a look at this post: Is there a performance difference between i++ and ++i in C?
There are two essential statements in the answer:
Modern compiler produce the same machine code no matter ...
24
votes
2
answers
4k
views
Using Clang to compile MS-DOS executables
I have a simple C program, and I would like to compile it targeting MS-DOS. Can this be achieved with Clang?
I would like to produce the following formats:
COM executable
16-bit MZ executable
32-bit ...
6
votes
5
answers
4k
views
Were there cross-compiler online services for the public?
Compiling takes computing power, and to a lesser extent, storage and memory. Back in the 70s and 80s personal computers weren't powerful enough to compile codes in high-level languages or if capable ...
3
votes
1
answer
2k
views
What were top-10 popular programming languages in the 60s, 70s, and the 80s?
TIOBE index has been tracking the most popular programming languages since 2001, which reflects the dominance of C/C++/Java in the first score of 21st century. However C derivatives hadn't beat Pascal ...
7
votes
1
answer
412
views
Is there really any implementation of a Ada compiler/cross-compiler/interpreter for 6502?
I found some Ada compilers for CP/M machines but no luck for 6502-based C64/Apple II/BBC Micro. I'm not sure if Abacus Ada on C64 exists or how much a subset it implements for Ada.
There is, though, ...
19
votes
3
answers
3k
views
When did type punning through violating the strict aliasing rule become disallowed?
Looking at the C code from the Fast Inverse Square Root, the casting of a float to a long is done via pointer arithmetic:
i = * ( long * ) &y; // evil floating point bit level hacking
The ...
26
votes
3
answers
1k
views
What is the history of SysV i386 calling convention for struct return?
I would like to understand historical roots of the quirk in the SysV calling convention for the 32-bit x86, which was inherited by the ELF standard, and so remains used on Linux to this day. Consider ...
14
votes
1
answer
976
views
What sequence of instructions is the equivalent to `fcomip` on i486?
Do you perhaps happen to know, what would be the easiest way to modify my AEC-to-x86 compiler (you can run the core of it in browser: https://flatassembler.github.io/compiler ) to be able to target ...
14
votes
3
answers
3k
views
Were Windows 3.x applications dependent upon 80286 instructions?
While Windows 3.x operating system stuck to the 80286 platform, did applications compiled for Windows 3.x have to use 80286 instructions explicitly or be aware of the 80286 memory layout?
Or was it ...
26
votes
12
answers
8k
views
Why were nested functions excluded from B and C?
I'm learning C and was curious as to why the language does not allow nested functions.
From what I've read, the lack of nested functions seems to have been a simplification that was inherited from its ...
35
votes
5
answers
9k
views
Most modern C compilers targeting DOS 8086, running on DOS 8086 (16-bit)
I'm looking for the most recent versions of modern C compilers which were/are targeting DOS 8086, also running on DOS 8086 (16-bit). I'm mostly interested in production-ready C compilers, rather than ...
18
votes
1
answer
2k
views
GCC to make Amiga executables, including Fortran support?
I have been compiling some command line programs to run on the classic Commodore Amiga. I started with GCC on WinUAE which worked but I realised I didn't have the understanding of the memory stack and ...
10
votes
1
answer
635
views
What were the typical game development toolchains for the pre-i386 IBM PC era
On i386 and beyond (assuming MS-DOS as the target OS and IBM PC as the target platform), my impression is game developers most typically used Watcom C / DJGPP plus one of the DOS extenders (DOS4GW, ...
38
votes
6
answers
8k
views
Why couldn't early C compilers handle variable declarations between statements?
In modern C, you may place variable declarations between statements:
do_something();
int x;
x = something_else();
However, older C compilers required that variables are declared before all statements:...
14
votes
1
answer
2k
views
Did any compilers hash long symbol names when truncating them?
Many early compilers and interpreters had maximum length for variable and function names. Usually you could use longer names but everything beyond e.g. the first 8 characters was discarded.
This ...
7
votes
1
answer
401
views
When was a compiler first used to generate code to be placed in ROM?
In the early days of compilers, it was expected that programs would generally be stored in an inexpensive medium (such as punched cards or magnetic tape) when not in use. Although it was possible to ...
20
votes
1
answer
2k
views
How can I set up the Microsoft C compiler to make it prefer immediate-mode push instructions?
I started a project to get a better understanding on how to compile a game for Windows 3.x. I tried to set up the build workflow so that it produce the byte-exact clone of a great open sourced Win16 ...
3
votes
1
answer
294
views
How to remove ___EXPORTEDSTUB statement from a NE (Win16) program's MAP?
I started a project to get a better understanding on how to compile a game for Windows 3.x. I tried to set up the build workflow so that it produce the byte-exact clone of a great open sourced Win16 ...
11
votes
7
answers
5k
views
Did compilers ever give error messages without line numbers?
I'm having an argument with my friend, who told me that when she was learning programming in the 1980s, the compiler gave errors without line numbers.
I'm pretty sure that compilers have always given ...
12
votes
1
answer
574
views
What sort of intermediate representation did the first Fortran compiler use?
Proebsting's Law asserts that improvements to compiler technology double the performance of typical programs every 18 years, but even granted that this is somewhat tongue-in-cheek, it's not really ...
5
votes
1
answer
353
views
Which extant ALGOL-60 compilers fully support numeric labels?
This question is prompted by a related one by texdr.aft. It turns out that the Revised report on Algol-60 allowed numeric labels (3.5.1, page 15),
<label> ::= <identifier> | <unsigned ...
4
votes
1
answer
410
views
Where can I find a copy of the HiSoft C compiler manual for ZX Spectrum?
I've been able to find the manual for the CPC version of HiSoft C, but not for the ZX. The only ones I could find appeared to have been OCRed, so virtually all of the necessary information was lost.
...
9
votes
1
answer
701
views
What was the first compiler/interpreter/assembler to indicate problematic columns in diagnostic messages?
These days, most compilers and interpreters seem to provide the following in diagnostics:
A description of the problem
The name of the source file
A line number
A relevant position within the line
...
14
votes
6
answers
1k
views
Are there any primary sources for the “passing constant by reference” behavior in old Fortran compilers?
Occasionally I have heard references to a peculiarity of certain (old) Fortran compilers, with regards to subprogram argument passing. Here is an example, from an answer to a Stack Overflow question:
...
1
vote
1
answer
248
views
When did cross-platform C start assuming function prototypes? [closed]
The most important difference between the original 'K&R' C, and ANSI/ISO C89/90, was function prototypes. These started being supported by some compilers in the mid-eighties, were formally ...
24
votes
2
answers
2k
views
Where and when did the ".s" suffix for assembly-language source files originate?
The closest I was able to find on StackOverflow is What are .S files?, in which no answerer addresses why we use .s for assembly. (And .S for preprocessor/macro assembly; and gcc -S to produce ...
23
votes
11
answers
8k
views
When if ever was the C language 'int' size altered from the host machine word (register) size into a literal 32 bit size?
From the earliest K&R reference manuals I read, 'int' was synonymous with machine word and it seemed to raise adverse reactions in various user domains. With the UNIX crowd, they minimally ...
36
votes
15
answers
13k
views
When did compilers start generating optimized code that runs faster than an average programmer's assembly code?
It is highly unrecommended to write your own code in assembly now since, in most cases, gcc -O3 does magic. But in the ‘80s it was believed that compiled C code takes 4(?) times or more than a well-...
65
votes
15
answers
12k
views
What languages are better fit for generating efficient code for popular 8-bit CPU's than C?
I found Why do C to Z80 compilers produce poor code? very interesting as it pointed out that C (which was leveraged to be an abstraction of a CPU for porting Unix) was not a very easy language to ...
37
votes
11
answers
10k
views
When and why did high-level language compilers start targeting assembly language rather than machine code?
From what I've read, the first FORTRAN compiler built a machine-code program entirely in memory; it was, in fact, designed to read the entire source code of the program, and then sequentially load ...
12
votes
1
answer
694
views
How much time and how many people were required to develop Delphi version 1?
I would guess the compiler was primarily a modification of Borland's Turbo Pascal, while the Integrated Development Environment and Visual Component Library required a lot more development from ...
3
votes
3
answers
689
views
How can I get cl65 to include its subroutines, like pushax and tosmulax?
This question is about cc65, which is a toolkit including a C compiler, assembler, linker, etc. All targeting various 6502 computers, like the various 8 bit commodores, the Apple II and whatever else. ...
3
votes
5
answers
1k
views
Z88DK ZX Spectrum "%f" printf not working
I'm attempting to compile a program in C for the ZX Spectrum using Z88DK.
However, I'm facing an issue when trying to use printf to print out the value of a float.
The code I'm trying to compile:
#...
6
votes
2
answers
516
views
Why isn't the 'restrict' keyword useful in SDCC when compiling for Z80 target? [closed]
Context
SDCC claims to support C11.
I use it to write games on Z80 target (for fun and experience).
C11 defines restrict
C11 specifies the restrict keyword on pointers, which can improve generated ...
20
votes
0
answers
1k
views
Oxford C compiler for Commodore 64
I kept one floppy from my Commodore 128 (which I used mostly in C64 mode), labelled ‘Oxford C compiler’. It is a 5.25″ floppy. Don't ask me why I kept just this one; probably because I thought I ...
11
votes
1
answer
3k
views
What was the first Lisp implementation that could generate machine code?
LISP is considered by some to be primarily an interpreted language, but compilers
have been made for it. What was the first compiler?
To be clear, this is about compilers that compile LISP code stored ...