make
The current status of this entry is:
STATUS: INABIAF - please **DO NOT** fix
For more detailed information see 2020 burton bugs.
./prog arg ...
./try.sh
By default, the program works for Little Endian machines. This alternate build is for Big Endian machines (that works whether you have LE or BE).
Running make
builds the alternate code by default.
Use prog_be
as you would prog
above.
Can you determine why this shows strange output for ./prog 128 128
and ./prog 128 128 128 128
but not ./prog 128 128 128
?
Can you find a pattern here?
What happens if you specify different numbers?
This tiny one-liner is a bit-twiddler’s delight! It does all of the work without looping.
To understand how it works, a good place to start is to look at the hex
value that results when the two magic constants are XOR
ed.
Once you’ve figured out what happens with one set of constants, how can choosing new constants, but using the same computation generate a reversed result?
This code may be tested by:
make test
Invoke this with a single non-negative integer less than 256, and a useful transformation occurs.
Exporting the constants B
,I
,T
,S
to the Makefile allows the
code to be compiled for either LE (little-endian) or BE (big-endian)
machines(!!), so they are truly configuration parameters, not logic.
One ping argument only. It will segfault on zero arguments, and
display strange results with more than one argument.
Small, non-negative integers only. Useful range is 0 .. 511
, sorta, for LE; 0 .. 255
for BE. Bonus points if you can explain why the limits work this way.
ASCII character set, 64-bit long long
s are required.
v,a,r,i,a,b,l,e,s_NAME the operation.
No loops, no branches?!?
Compiles cleanly under clang -Wall -Weverything -pedantic
, but you need to add
--include stdio.h --include stdlib.h
for the printf(3)
and atoi(3)
.
On a little-endian machine:
clang -include stdio.h -include stdlib.h -Wall -Weverything -pedantic -DB=6945503773712347754LL -DI=5859838231191962459LL -DT=0 -DS=7 -o prog prog.c
On a big-endian machine:
clang -include stdio.h -include stdlib.h -Wall -Weverything -pedantic -DB=7091606191627001958LL -DI=6006468689561538903LL -DT=1 -DS=0 -o prog_be prog.c
You might be interested to compile it both ways on the same host, and try:
./prog 1; ./prog_be 1