Host introspection: Difference between revisions

From Rosetta Code
Content added Content deleted
Line 491: Line 491:
</pre>
</pre>


=={{header|Mathematica}}==
=={{header|Mathematica}} / {{header|Wolfram Language}}==
<lang Mathematica>If[$ByteOrdering > 0, Print["Big endian"], Print["Little endian" ]]
<lang Mathematica>If[$ByteOrdering > 0, Print["Big endian"], Print["Little endian" ]]
$SystemWordLength "bits"</lang>
$SystemWordLength "bits"</lang>
Line 500: Line 500:
32 bits
32 bits
</pre>
</pre>




=={{header|MATLAB}} / {{header|Octave}}==
=={{header|MATLAB}} / {{header|Octave}}==

Revision as of 16:31, 11 December 2015

Task
Host introspection
You are encouraged to solve this task according to the task description, using any language you may know.

Print the word size and endianness of the host machine.

See also: Variable size/Get

Ada

<lang ada>with Ada.Text_IO; use Ada.Text_IO; with System; use System;

procedure Host_Introspection is begin

  Put_Line ("Word size" & Integer'Image (Word_Size));
  Put_Line ("Endianness " & Bit_Order'Image (Default_Bit_Order));

end Host_Introspection;</lang>

Sample output on a Pentium machine:
Word size 32
Endianness LOW_ORDER_FIRST

ALGOL 68

Works with: ALGOL 68 version Revision 1 - no extensions to language used
Works with: ALGOL 68G version Any - tested with release 1.18.0-9h.tiny

<lang algol68>INT max abs bit = ABS(BIN 1 SHL 1)-1; INT bits per char = ENTIER (ln(max abs char+1)/ln(max abs bit+1)); INT bits per int = ENTIER (1+ln(max int+1.0)/ln(max abs bit+1));

printf(($"states per bit: "dl$,max abs bit+1)); printf(($"bits per char: "z-dl$,bits per char)); printf(($"bits per int: "z-dl$,bits per int)); printf(($"chars per int: "z-dl$,bits per int OVER bits per char));

printf(($"bits width: "z-dl$, bits width));

STRING abcds = "ABCD"; FILE abcdf; INT abcdi;

INT errno := open(abcdf, "abcd.dat",stand back channel); put(abcdf,abcds); # output alphabetically # reset(abcdf); get bin(abcdf,abcdi); # input in word byte order # STRING int byte order := ""; FOR shift FROM 0 BY bits per char TO bits per int - bits per char DO

 int byte order +:= REPR(abcdi OVER (max abs bit+1) ** shift MOD (max abs char+1))

OD; printf(($"int byte order: "g,", Hex:",16r8dl$,int byte order, BIN abcdi))</lang>

Output:

(Intel i686)

states per bit:  2
bits per char:   8
bits per int:   32
chars per int:   4
bits width:  32
int byte order: ABCD, Hex:44434241

On older CPUs the results would vary:

ALGOL 68R ALGOL 68RS
~
bits per char:   6
bits per int:   24
chars per int:   4
ICL 2900
bits per char:   8
bits per int:   32
chars per int:   4
Multics
bits per char:   6
bits per int:   36
chars per int:   6

Applesoft BASIC

<lang ApplesoftBasic>1 DATA248,169,153,24,105,1,48 2 DATA6,24,251,144,2,251,56 3 DATA216,105,0,133,251,96 4 FOR I = 768 TO 787 5 READ B: POKE I,B: NEXT 6 CALL 768:M = PEEK (251) 7 PRINT " WORD SIZE: "; 8 IF NOT M THEN PRINT 8 9 M$ = "HYBRID 8/16" 10 IF M THEN PRINT M$ 11 PRINT "ENDIANNESS: "; 12 PRINT "LITTLE-ENDIAN"</lang>

Babel

<lang babel>main :

   { "Word size: " << msize 3 shl %d << " bits" cr << 
    "Endianness: " << { endian } { "little" } { "big" } ifte cr << }</lang>

BBC BASIC

<lang bbcbasic> DIM P% 8

     !P% = -1
     I% = 0 : REPEAT I% += 1 : UNTIL P%?I%=0
     PRINT "Word size = " ; I% " bytes"
     !P% = 1
     IF P%?0 = 1 THEN PRINT "Little-endian"
     IF P%?(I%-1) = 1 THEN PRINT "Big-endian"</lang>

The 'word size' is reported as the number of bytes accessed by the ! indirection operator, which is 4 in all current versions of BBC BASIC.

C

<lang c>#include <stdio.h>

  1. include <stddef.h> /* for size_t */
  2. include <limits.h> /* for CHAR_BIT */

int main() {

   int one = 1;
   /*
    * Best bet: size_t typically is exactly one word.
    */
   printf("word size = %d bits\n", (int)(CHAR_BIT * sizeof(size_t)));
   /*
    * Check if the least significant bit is located
    * in the lowest-address byte.
    */
   if (*(char *)&one)
       printf("little endian\n");
   else
       printf("big endian\n");
   return 0;

}</lang>

On POSIX-compatible systems, the following also tests the endianness (this makes use of the fact that network order is big endian): <lang c>#include <stdio.h>

  1. include <arpa/inet.h>

int main() {

 if (htonl(1) == 1)
   printf("big endian\n");
 else
   printf("little endian\n");

}</lang>

C#

<lang csharp>static void Main() {

 Console.WriteLine("Word size = {0} bytes,",sizeof(int));
 if (BitConverter.IsLittleEndian)
   Console.WriteLine("Little-endian.");
 else
   Console.WriteLine("Big-endian.");

}</lang>

Caché ObjectScript

USER>Write "Word Size: "_$Case($System.Version.Is64Bits(), 1: 64, : 32)
Word Size: 32

USER>Write "Endianness: "_$Case($System.Version.IsBigEndian(), 1: "Big", : "Little")
Endianness: Little

Clojure

<lang clojure>(println "word size: " (System/getProperty "sun.arch.data.model")) (println "endianness: " (System/getProperty "sun.cpu.endian"))</lang>

Common Lisp

Common Lisp doesn't provide a native way to reliably determine this (though some unlike other languages, you rarely, if ever, need this information).

The Environment has some implementation-specific functions that might provide a good hint, e.g., <lang lisp>(machine-type) ;; => "X86-64" on SBCL here</lang>

The *features* list also provides useful information, e.g., some compilers declare :LITTLE-ENDIAN there.

The cl-trivial-features library standardizes this, so you will always get either :LITTLE-ENDIAN or :BIG-ENDIAN. It also adds the CPU (:X86, :X86-64, :PPC, :PPC64, etc.), from which you can probably derive the word size, but it's not (yet) available as a separate flag.

D

<lang d>void main() {

 import std.stdio, std.system;
 writeln("Word size = ", size_t.sizeof * 8, " bits.");
 writeln(endian == Endian.littleEndian ? "Little" : "Big", " endian.");

}</lang>

Output:
Word size = 64 bits.
Little endian.

Delphi

<lang Delphi>program HostIntrospection ;

{$APPTYPE CONSOLE}

uses SysUtils;

begin

 Writeln('word size: ', SizeOf(Integer));
 Writeln('endianness: little endian'); // Windows is always little endian

end.</lang>

Erlang

To find the word size: <lang erlang>1> erlang:system_info(wordsize). 4</lang>

In the case of endianness, Erlang's bit syntax by default has a 'native' option which lets you use what is supported natively. As such, there is no function to find endianness. However, one could write one by using bit syntax, setting endianness and then comparing to the native format:

<lang erlang>1> <<1:4/native-unit:8>>. <<1,0,0,0>> 2> <<1:4/big-unit:8>> <<0,0,0,1>> 3> <<1:4/little-unit:8>>. <<1,0,0,0>></lang>

And so the following function would output endianness:

<lang erlang>endianness() when <<1:4/native-unit:8>> =:= <<1:4/big-unit:8>> -> big; endianness() -> little.</lang>

Factor

<lang factor>USING: alien.c-types alien.data io layouts ; "Word size: " write cell 8 * . "Endianness: " write little-endian? "little" "big" ? print</lang>

Forth

<lang forth>: endian

 cr 1 cells . ." address units per cell"
 s" ADDRESS-UNIT-BITS" environment? if cr . ." bits per address unit" then
 cr 1 here ! here c@ if ." little" else ." big" then ."  endian" ;</lang>

This relies on c@ being a byte fetch (4 chars = 1 cells). Although it is on most architectures, ANS Forth only guarantees that 1 chars <= 1 cells. Some Forths like OpenFirmware have explicitly sized fetches, like b@.

Fortran

Works with: Fortran version 90 and later

<lang fortran> integer :: i

  character(len=1) :: c(20)
  equivalence (c, i)
  WRITE(*,*) bit_size(1)  ! number of bits in the default integer type
                          ! which may (or may not!) equal the word size
  i = 1
  IF (ichar(c(1)) == 0) THEN
     WRITE(*,*) "Big Endian"
  ELSE
    WRITE(*,*) "Little Endian"
  END IF</lang>

Frink

<lang frink> println["Word size: " + callJava["java.lang.System", "getProperty", "sun.arch.data.model"]] println["Endianness: " + callJava["java.lang.System", "getProperty", "sun.cpu.endian"]] </lang>

F#

A lot of research before I finally came up with an answer to this that isn't dependent on the machine it was compiled on. Works on Win32 machines only (obviously, due to the interop). I think that strictly speaking, I should be double checking the OS version before making the call to wow64Process, but I'm not worrying about it. <lang fsharp>open System open System.Runtime.InteropServices open System.Diagnostics

[<DllImport("kernel32.dll", SetLastError = true, CallingConvention = CallingConvention.Winapi)>] extern bool IsWow64Process(nativeint hProcess, bool &wow64Process);

let answerHostInfo =

   let Is64Bit() =
       let mutable f64Bit = false;
       IsWow64Process(Process.GetCurrentProcess().Handle, &f64Bit) |> ignore
       f64Bit
   let IsLittleEndian() = BitConverter.IsLittleEndian
   (IsLittleEndian(), Is64Bit())</lang>

Go

<lang go>package main

import ( "fmt" "io/ioutil" "runtime" "strconv" "strings" "unsafe" )

func main() { fmt.Println(runtime.Version(), runtime.GOOS, runtime.GOARCH)

// Inspect a uint32 variable to determine endianness. x := uint32(0x01020304) switch *(*byte)(unsafe.Pointer(&x)) { case 0x01: fmt.Println("big endian") case 0x04: fmt.Println("little endian") default: fmt.Println("mixed endian?") }

// Usually one cares about the size the executible was compiled for // rather than the actual underlying host's size.

// There are several ways of determining the size of an int/uint. fmt.Println(" strconv.IntSize =", strconv.IntSize) // That uses the following definition we can also be done by hand intSize := 32 << uint(^uint(0)>>63) fmt.Println("32 << uint(^uint(0)>>63) =", intSize)

// With Go 1.0, 64-bit architectures had 32-bit int and 64-bit // uintptr. This was changed in Go 1.1. In general it would // still be possible that int and uintptr (the type large enough // to hold the bit pattern of any pointer) are of different sizes. const bitsPerByte = 8 fmt.Println(" sizeof(int) in bits:", unsafe.Sizeof(int(0))*bitsPerByte) fmt.Println(" sizeof(uintptr) in bits:", unsafe.Sizeof(uintptr(0))*bitsPerByte) // If we really want to know the architecture size the executable was // compiled for and not the size of int it safest to take the max of those. archSize := unsafe.Sizeof(int(0)) if psize := unsafe.Sizeof(uintptr(0)); psize > archSize { archSize = psize } fmt.Println(" compiled with word size:", archSize*bitsPerByte)

// There are some *very* unportable ways to attempt to get the actual // underlying hosts' word size. // Inspect cpuinfo to determine word size (some unix-like OS' only). c, err := ioutil.ReadFile("/proc/cpuinfo") if err != nil { fmt.Println(err) return } ls := strings.Split(string(c), "\n") for _, l := range ls { if strings.HasPrefix(l, "flags") { for _, f := range strings.Fields(l) { if f == "lm" { // "long mode" fmt.Println("64 bit word size") return } } fmt.Println("32 bit word size") return } } }</lang>

Output:
go1.3.1 freebsd amd64
little endian
         strconv.IntSize = 64
32 << uint(^uint(0)>>63) = 64
  sizeof(int)     in bits: 64
  sizeof(uintptr) in bits: 64
  compiled with word size: 64
open /proc/cpuinfo: no such file or directory
go1.3.1 freebsd 386
little endian
         strconv.IntSize = 32
32 << uint(^uint(0)>>63) = 32
  sizeof(int)     in bits: 32
  sizeof(uintptr) in bits: 32
  compiled with word size: 32
open /proc/cpuinfo: no such file or directory
go1.3.1 nacl amd64p32
little endian
         strconv.IntSize = 32
32 << uint(^uint(0)>>63) = 32
  sizeof(int)     in bits: 32
  sizeof(uintptr) in bits: 32
  compiled with word size: 32
open /proc/cpuinfo: No such file or directory

Alternative technique: <lang go>package main

import (

   "debug/elf"
   "fmt"
   "os"

)

func main() {

   f, err := elf.Open(os.Args[0])
   if err != nil {
       fmt.Println("  ", err)
       return
   }
   fmt.Println(f.FileHeader.ByteOrder)
   f.Close()

}</lang>

Output:
LittleEndian

Groovy

Solution follows Java: <lang groovy>println "word size: ${System.getProperty('sun.arch.data.model')}" println "endianness: ${System.getProperty('sun.cpu.endian')}"</lang>

Output:
word size:  64
endianness: little

Haskell

<lang haskell>import Data.Bits import ADNS.Endian -- http://hackage.haskell.org/package/hsdns

main = do

 putStrLn $ "Word size: " ++ bitsize
 putStrLn $ "Endianness: " ++ show endian
     where
       bitsize = show $ bitSize (undefined :: Int)</lang>

Icon and Unicon

<lang unicon>procedure main()

   write(if 0 = ishift(1,-1) then "little" else "big"," endian")
   if match("flags",line := !open("/proc/cpuinfo")) then    # Unix-like only
       write(if find(" lm ",line) then 64 else 32," bits per word")
   else write("Cannot determine word size.")

end</lang>

Sample run:

->hi
little endian
64 bits per word
->

J

<lang j> IF64 {32 64 64</lang>

This returns 32 in 32 bit J.

Note that this mechanism is testing the interpreter, and not the OS or Hardware. (Though, of course, you cannot run a 64 bit interpreter on a machine that does not support it.)

That said, this does not deal with endianness. For the most part, J programs do not need to know their own endianness. When converting to and from binary format you can specify "native", "little endian" and "big endian", and it's rare that you have an interface which would need anything else. That said, you can inspect the binary representation of a simple constant:

<lang j> ":&> (|: 32 64  ;"0 big`little) {"_1~ 2 2 #: 16b_e0 + a. i. 0 { 3!:1 64 little</lang>

Java

Java conceals the byte order of its integers, but reports the native byte order through java.nio.ByteOrder.nativeOrder().

Works with: Java version 1.4

<lang java>import java.nio.ByteOrder;

public class ShowByteOrder {

   public static void main(String[] args) {
       // Print "BIG_ENDIAN" or "LITTLE_ENDIAN".
       System.out.println(ByteOrder.nativeOrder());
   }

}</lang>

Some JVMs also have system properties for the word size and byte order.

<lang java>System.out.println("word size: "+System.getProperty("sun.arch.data.model")); System.out.println("endianness: "+System.getProperty("sun.cpu.endian"));</lang>

Julia

Julia creates ENDIAN_BOM a 32 bit unsigned integer out of an array of 4 8 bit unsigned integers to serve as an endianness marker. <lang Julia> print("This host's word size is ", WORD_SIZE, ".") if ENDIAN_BOM == 0x04030201

   println("And it is a little-endian machine.")

elseif ENDIAN_BOM == 0x01020304

   println("And it is a big-endian machine.")

else

   println("ENDIAN_BOM = ", ENDIAN_BOM, ", which is confusing")

end </lang>

Output:
This host's word size is 64.And it is a little-endian machine.

Mathematica / Wolfram Language

<lang Mathematica>If[$ByteOrdering > 0, Print["Big endian"], Print["Little endian" ]] $SystemWordLength "bits"</lang>

Output:

x86

Little endian
32 bits

MATLAB / Octave

The concept of "word size" is not meaningful in Matlab and Octave, uint64 is also available on 32bit-platforms, and there are no pointers. Endianity can be tested with the function below:

<lang MATLAB> function [endian]=endian()

   fid=tmpfile();
   fwrite(fid,1:8,'uint8');
   fseek(fid,0,'bof');
   t=fread(fid,8,'int8');
   i8=sprintf('%02X',t);
   fseek(fid,0,'bof');
   t=fread(fid,4,'int16');
   i16=sprintf('%04X',t);
   fclose(fid);
   if strcmp(i8,i16) endian='big';
   else endian='little';
   end;

</lang>

Output:
  octave:128> computer 
  x86_64-unknown-linux-gnu
  octave:129> endian
  endian = little


Modula-3

<lang modula3>MODULE Host EXPORTS Main;

IMPORT IO, Fmt, Word, Swap;

BEGIN

 IO.Put("Word Size: " & Fmt.Int(Word.Size) & "\n");
 IF Swap.endian = Swap.Endian.Big THEN
   IO.Put("Endianness: Big\n");
 ELSE
   IO.Put("Endianness: Little\n");
 END;

END Host.</lang>

Output:

(on an x86)

Word Size: 32
Endianness: Little

NetRexx

Translation of: Java

NetRexx can access this information from the Java virtual machine in the same way as the Java sample above. <lang NetRexx>/* NetRexx */ options replace format comments java crossref savelog symbols nobinary

wordSize = System.getProperty('sun.arch.data.model') endian = System.getProperty('sun.cpu.endian')

say ' word size:' wordSize say 'endianness:' endian </lang>

Nim

<lang nim>import math echo cpuEndian echo round(log2(float(int.high))) + 1</lang>

Objective-C

Endianness: <lang objc>switch (NSHostByteOrder()) {

 case NS_BigEndian:
   NSLog(@"%@", @"Big Endian");
   break;
 case NS_LittleEndian:
   NSLog(@"%@", @"Little Endian");
   break;
 case NS_UnknownByteOrder:
   NSLog(@"%@", @"endianness unknown");
   break;

} </lang>

Architecture: (works on Mac OS X 10.6+) <lang objc>switch ([NSRunningApplication currentApplication].executableArchitecture) {

 case NSBundleExecutableArchitectureI386:
   NSLog(@"%@", @"i386 32-bit");
   break;
 case NSBundleExecutableArchitectureX86_64:
   NSLog(@"%@", @"x86_64 64-bit");
   break;
 case NSBundleExecutableArchitecturePPC:
   NSLog(@"%@", @"PPC 32-bit");
   break;
 case NSBundleExecutableArchitecturePPC64:
   NSLog(@"%@", @"PPC64 64-bit");
   break;
 default:
   NSLog(@"%@", @"Unknown");
   break;

}</lang>

OCaml

<lang ocaml>Printf.printf "%d\n" Sys.word_size; (* Print word size *) Printf.printf "%s\n" Sys.os_type; (* Print operating system *)</lang>

Works with: OCaml version 4.00+

<lang ocaml>(* Print endianness *) Printf.printf "%s\n" (if Sys.big_endian then "big endian" else "little endian");</lang>

On OCaml 3 and below, there are tricks to get endianness. For example in Linux or Unix variants, one may use the uname shell command :

<lang ocaml>let uname arg =

 let arg = if arg = "" then "-" else arg in
 let ic = Unix.open_process_in ("uname -" ^ arg) in
 (input_line ic)
  1. uname "sm";;

- : string = "Linux i686"</lang>

In most cases, endianness can be infered from informations given by uname.

One may also read files in the /proc directory in order to get informations about the host, only under linux :

<lang ocaml>(* Reading all the lines from a file. If the loop is implemented by a recursive auxiliary function, the try...with breaks tail recursion if not written carefully *) let lines name =

 let f = open_in name
 and r = ref []
 in
 (try
    while true do
      r := (input_line f)::!r
    done
  with End_of_file -> close_in f);
 (List.rev !r)
  1. lines "/proc/meminfo";;

- : string list = ["MemTotal: 2075240 kB"; "MemFree: 469964 kB";

"Buffers:         34512 kB"; "Cached:        1296380 kB";
"SwapCached:         96 kB"; "Active:         317484 kB";
"Inactive:      1233500 kB"; "HighTotal:     1178432 kB";
"HighFree:        45508 kB"; "LowTotal:       896808 kB";
"LowFree:        424456 kB"; "SwapTotal:     2650684 kB";
"SwapFree:      2650588 kB"; "Dirty:             228 kB";
"Writeback:           0 kB"; "AnonPages:      220036 kB";
"Mapped:          67160 kB"; "Slab:            41540 kB";
"SReclaimable:    34872 kB"; "SUnreclaim:       6668 kB";
"PageTables:       1880 kB"; "NFS_Unstable:        0 kB";
"Bounce:              0 kB"; "WritebackTmp:        0 kB";
"CommitLimit:   3688304 kB"; "Committed_AS:   549912 kB";
"VmallocTotal:   114680 kB"; "VmallocUsed:      5172 kB";
"VmallocChunk:   109320 kB"; "HugePages_Total:     0";
"HugePages_Free:      0"; "HugePages_Rsvd:      0";
"HugePages_Surp:      0"; "Hugepagesize:     4096 kB"]</lang>

Same methods can be used to get the results of commands lshw, dmidecode...

Pascal

<lang pascal>program HostIntrospection(output); begin

 writeln('Pointer size: ', SizeOf(Pointer), ' byte, i.e. ', SizeOf(Pointer)*8, ' bit.');

{ NtoBE converts from native endianess to big endianess }

 if 23453 = NtoBE(23453) then
   writeln('This host is big endian.')
 else
   writeln('This host is little endian.');

end.</lang>

Output:
>: ./HostIntrospection
Pointer size: 4 byte, i.e. 32 bit.
This host is little endian.

Perl

Most basic example: <lang perl>use Config; print "UV size: $Config{uvsize}, byte order: $Config{byteorder}\n";</lang>

Output:
UV size: 4, byte order: 1234

More verbose example: <lang perl>use 5.010; use Config; my ($size, $order, $end) = @Config{qw(uvsize byteorder)}; given ($order) {

   when (join , sort split ) { $end = 'little' }
   when (join , reverse sort split ) { $end = 'big' }
   default { $end = 'mixed' }

} say "UV size: $size, byte order: $order ($end-endian)";</lang>

Output:
UV size: 4, byte order: 1234 (little-endian)
UV size: 4, byte order: 3412 (mixed-endian)
UV size: 8, byte order: 87654321 (big-endian)

Perl 6

Works with: Rakudo version 2015-09-14

<lang perl6>say $*VM.config<ptr_size>; say pack('N', 123456789).unpack('V') == 123456789 ?? 'big-endian' !! 'little-endian';</lang>

Output:
8
little-endian

PicoLisp

We inspect the ELF header of the executable file (the 'cmd' function returns the path to the command that invoked the interpreter). Note that this (like most other contributions to this task) only tells how the binary was compiled/assembled/linked, not necessarily the nature of the underlying system. <lang PicoLisp>(in (cmd) # Inspect ELF header

  (rd 4)                              # Skip "7F" and 'E', 'L' and 'F'
  (prinl
     (case (rd 1)                     # Get EI_CLASS byte
        (1 "32 bits")
        (2 "64 bits")
        (T "Bad EI_CLASS") ) )
  (prinl
     (case (rd 1)                     # Get EI_DATA byte
        (1 "Little endian")
        (2 "Big endian")
        (T "Bad EI_DATA") ) ) )</lang>
Output:
64 bits
Little endian

PL/I

<lang PL/I> details: procedure options (main); /* 6 July 2012 */ declare x float, i fixed binary initial (1);

put skip list ('word size=', length(unspec(x)));

if unspec(i) = '0000000000000001'b then put skip list ('Big endian'); else put skip list ('Little endian');

end details; </lang>

Output:
word size=                          32 
Little endian 

PowerShell

<lang powershell>Write-Host Word Size: ((Get-WMIObject Win32_Processor).DataWidth) Write-Host -NoNewLine "Endianness: " if ([BitConverter]::IsLittleEndian) {

   Write-Host Little-Endian

} else {

   Write-Host Big-Endian

}</lang> Note that endianness is essentially a moot point with PowerShell, as there is only a Windows implementation currently and current Windows versions don't run on big-endian systems. But in theory this check should work.

PureBasic

<lang PureBasic>Enumeration

 #LittleEndian
 #BigEndian

EndEnumeration

ProcedureDLL EndianTest()

 Protected Endian = #LittleEndian
 Protected dummy.l= 'ABCD'
 If "A"=Chr(PeekA(@dummy))
   Endian=#BigEndian
 EndIf
 ProcedureReturn Endian  

EndProcedure

- *** Start of test code

If OpenConsole()

 PrintN("Your word size is "+Str(SizeOf(Integer)) +" bytes,")
 Select EndianTest()
   Case #LittleEndian
     PrintN("and you use Little Endian.")
   Default
     PrintN("and you use Big Endian.")
 EndSelect

EndIf</lang>

Python

<lang python>>>> import platform, sys, socket >>> platform.architecture() ('64bit', 'ELF') >>> platform.machine() 'x86_64' >>> platform.node() 'yourhostname' >>> platform.system() 'Linux' >>> sys.byteorder little >>> socket.gethostname() 'yourhostname' >>></lang>

R

Word size <lang R>8 * .Machine$sizeof.long # e.g. 32 Endianness <lang R>.Platform$endian # e.g. "little"</lang>

Racket

<lang Racket>

  1. lang racket/base

(printf "Word size: ~a\n" (system-type 'word)) (printf "Endianness: ~a\n" (if (system-big-endian?) 'big 'little)) </lang>

Retro

These introspections are possible through the standard variations library.

Word Size

<lang Retro>needs variations' ^variations'size</lang>

Returns the number of bits per cell. This is normally 32, though may be smaller or larger on embedded systems and under special cases.

Endianness

<lang Retro>needs variations' ^variations'endian</lang>

Returns 0 for little endian, and 1 for big endian.

REXX

Since all variables in the REXX language are stored as characters, the wordsize is immaterial (REXX supports variable precision for numbers).
This also applies to the "endianness" of words or how they are stored.
The REXX language was designed for scripting and interfacing with the operating system.
However, there is a STORAGE built-in function that allows a program to look at (local) storage, and if there is an
indicator stored anywhere in the virtual address space, it can be examined. <lang rexx>/*REXX program to examine which operating system that REXX is running under. */

parse source opSys howInvoked pathName

/*where opSys will indicate which operating system REXX is running under, and */ /*from that, one could make assumptions what the wordsize is, etc. */</lang>

Ruby

<lang ruby># We assume that a Fixnum occupies one machine word.

  1. Fixnum#size returns bytes (1 byte = 8 bits).

word_size = 42.size * 8 puts "Word size: #{word_size} bits"

  1. Array#pack knows the native byte order. We pack 1 as a 16-bit integer,
  2. then unpack bytes: [0, 1] is big endian, [1, 0] is little endian.

bytes = [1].pack('S').unpack('C*') byte_order = (bytes[0] == 0 ? 'big' : 'little') + ' endian' puts "Byte order: #{byte_order}"</lang>

With MRI, ri Fixnum states, "A Fixnum holds Integer values that can be represented in a native machine word (minus 1 bit)." This bases our claim that a Fixnum occupies one machine word.

Some other implementations of Ruby are different. With JRuby, a Fixnum is always 64 bits, because it is a Java long (1). JRuby uses the correct native byte order by calling java.nio.ByteOrder.nativeOrder() (2).

Scala

Library: Scala

<lang Scala>import java.nio.ByteOrder

object ShowByteOrder extends App {

 println(ByteOrder.nativeOrder())
 println(s"Word size: ${System.getProperty("sun.arch.data.model")}")
 println(s"Endianness: ${System.getProperty("sun.cpu.endian")}")

}</lang>

Scheme

Works with: Chicken Scheme

<lang scheme>(define host-info

 (begin
   (display "Endianness: ")
   (display (machine-byte-order))
   (newline)
   (display "Word Size: ")
   (display (if (fixnum? (expt 2 33)) 64 32))
   (newline)))</lang>
Output:
Endianness: little-endian
Word Size: 32

Seed7

The library cc_conf.s7i provides values that describe C compiler and runtime library. The example below assumes that the word size is the size of a pointer.

<lang seed7>$ include "seed7_05.s7i";

 include "cc_conf.s7i";

const proc: main is func

 begin
   writeln("Word size: " <& ccConf.POINTER_SIZE);
   write("Endianness: ");
   if ccConf.LITTLE_ENDIAN_INTTYPE then
     writeln("Little endian");
   else
     writeln("Big endian");
   end if;
 end func;</lang>
Output:
Word size: 64
Endianness: Little endian

Slate

<lang slate>inform: 'Endianness: ' ; Platform current endianness. inform: 'Word Size: ' ; (Platform current bytesPerWord * 8) printString.</lang>

Output:
Endianness: LittleEndian
Word Size: 32

Tcl

This is very straightforward in Tcl. The global array tcl_platform contains these values. In an interactive tclsh: <lang tcl>% parray tcl_platform tcl_platform(byteOrder) = littleEndian tcl_platform(machine) = intel tcl_platform(os) = Windows NT tcl_platform(osVersion) = 5.1 tcl_platform(platform) = windows tcl_platform(pointerSize) = 4 tcl_platform(threaded) = 1 tcl_platform(user) = glennj tcl_platform(wordSize) = 4</lang>

TI-89 BASIC

<lang ti89b>Disp "32-bit big-endian"</lang>

XPL0

This is the result when running the 32-bit version of the language on Intel 386 (and later) processors. Other versions give 2 bytes per word, and the Motorola 68000 version would give 4 bytes per word and Big endian.

<lang XPL0>include c:\cxpl\codes; \intrinsic 'code' declarations int A, B; char C; [IntOut(0, @B-@A); CrLf(0); \word size = integer size A:= $1234; C:= @A; Text(0, if C(0)=$34 then "Little" else "Big"); Text(0, " endian "); ]</lang>

Output:
4
Little endian