xref: /freebsd/share/man/man7/arch.7 (revision 7cc42f6d)
1.\" Copyright (c) 2016-2017 The FreeBSD Foundation. All rights reserved.
2.\"
3.\" This documentation was created by Ed Maste under sponsorship of
4.\" The FreeBSD Foundation.
5.\"
6.\" Redistribution and use in source and binary forms, with or without
7.\" modification, are permitted provided that the following conditions
8.\" are met:
9.\" 1. Redistributions of source code must retain the above copyright
10.\"    notice, this list of conditions and the following disclaimer.
11.\" 2. Redistributions in binary form must reproduce the above copyright
12.\"    notice, this list of conditions and the following disclaimer in the
13.\"    documentation and/or other materials provided with the distribution.
14.\"
15.\" THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND
16.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE
19.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25.\" SUCH DAMAGE.
26.\"
27.\" $FreeBSD$
28.\"
29.Dd September 22, 2020
30.Dt ARCH 7
31.Os
32.Sh NAME
33.Nm arch
34.Nd Architecture-specific details
35.Sh DESCRIPTION
36Differences between CPU architectures and platforms supported by
37.Fx .
38.Ss Introduction
39This document is a quick reference of key ABI details of
40.Fx
41architecture ports.
42For full details consult the processor-specific ABI supplement
43documentation.
44.Pp
45If not explicitly mentioned, sizes are in bytes.
46The architecture details in this document apply to
47.Fx 11.0
48and later, unless otherwise noted.
49.Pp
50.Fx
51uses a flat address space.
52Variables of types
53.Vt unsigned long ,
54.Vt uintptr_t ,
55and
56.Vt size_t
57and pointers all have the same representation.
58.Pp
59In order to maximize compatibility with future pointer integrity mechanisms,
60manipulations of pointers as integers should be performed via
61.Vt uintptr_t
62or
63.Vt intptr_t
64and no other types.
65In particular,
66.Vt long
67and
68.Vt ptrdiff_t
69should be avoided.
70.Pp
71On some architectures, e.g.,
72.Dv powerpc
73and AIM variants of
74.Dv powerpc64 ,
75the kernel uses a separate address space.
76On other architectures, kernel and a user mode process share a
77single address space.
78The kernel is located at the highest addresses.
79.Pp
80On each architecture, the main user mode thread's stack starts near
81the highest user address and grows down.
82.Pp
83.Fx
84architecture support varies by release.
85This table shows the first
86.Fx
87release to support each architecture, and, for discontinued
88architectures, the final release.
89.Bl -column -offset indent "Architecture" "Initial Release" "Final Release"
90.It Sy Architecture Ta Sy Initial Release Ta Sy Final Release
91.It aarch64     Ta 11.0
92.It alpha       Ta 3.2   Ta 6.4
93.It amd64       Ta 5.1
94.It arm         Ta 6.0   Ta 12.x
95.It armeb       Ta 8.0   Ta 11.x
96.It armv6       Ta 10.0
97.It armv7       Ta 12.0
98.It ia64        Ta 5.0   Ta 10.4
99.It i386        Ta 1.0
100.It mips        Ta 8.0
101.It mipsel      Ta 9.0
102.It mipselhf    Ta 12.0
103.It mipshf      Ta 12.0
104.It mipsn32     Ta 9.0
105.It mips64      Ta 9.0
106.It mips64el    Ta 9.0
107.It mips64elhf  Ta 12.0
108.It mips64hf    Ta 12.0
109.It pc98        Ta 2.2   Ta 11.x
110.It powerpc     Ta 6.0
111.It powerpcspe  Ta 12.0
112.It powerpc64   Ta 6.0
113.It powerpc64le Ta 13.0
114.It riscv64     Ta 12.0
115.It riscv64sf   Ta 12.0
116.It sparc64     Ta 5.0   Ta 12.x
117.El
118.Ss Type sizes
119All
120.Fx
121architectures use some variant of the ELF (see
122.Xr elf 5 )
123.Sy Application Binary Interface
124(ABI) for the machine processor.
125All supported ABIs can be divided into two groups:
126.Bl -tag -width "Dv ILP32"
127.It Dv ILP32
128.Vt int ,
129.Vt long ,
130.Vt void *
131types machine representations all have 4-byte size.
132.It Dv LP64
133.Vt int
134type machine representation uses 4 bytes,
135while
136.Vt long
137and
138.Vt void *
139are 8 bytes.
140.El
141.Pp
142Some machines support more than one
143.Fx
144ABI.
145Typically these are 64-bit machines, where the
146.Dq native
147.Dv LP64
148execution environment is accompanied by the
149.Dq legacy
150.Dv ILP32
151environment, which was the historical 32-bit predecessor for 64-bit evolution.
152Examples are:
153.Bl -column -offset indent "powerpc64" "ILP32 counterpart"
154.It Sy LP64        Ta Sy ILP32 counterpart
155.It Dv amd64       Ta Dv i386
156.It Dv powerpc64   Ta Dv powerpc
157.It Dv mips64*     Ta Dv mips*
158.It Dv aarch64     Ta Dv armv6/armv7
159.El
160.Pp
161.Dv aarch64
162will support execution of
163.Dv armv6
164or
165.Dv armv7
166binaries if the CPU implements
167.Dv AArch32
168execution state, however
169.Dv armv5
170binaries aren't supported.
171.Pp
172On all supported architectures:
173.Bl -column -offset -indent "long long" "Size"
174.It Sy Type Ta Sy Size
175.It short Ta 2
176.It int Ta 4
177.It long Ta sizeof(void*)
178.It long long Ta 8
179.It float Ta 4
180.It double Ta 8
181.El
182.Pp
183Integers are represented in two's complement.
184Alignment of integer and pointer types is natural, that is,
185the address of the variable must be congruent to zero modulo the type size.
186Most ILP32 ABIs, except
187.Dv arm ,
188require only 4-byte alignment for 64-bit integers.
189.Pp
190Machine-dependent type sizes:
191.Bl -column -offset indent "Architecture" "void *" "long double" "time_t"
192.It Sy Architecture Ta Sy void * Ta Sy long double Ta Sy time_t
193.It aarch64     Ta 8 Ta 16 Ta 8
194.It amd64       Ta 8 Ta 16 Ta 8
195.It armv6       Ta 4 Ta  8 Ta 8
196.It armv7       Ta 4 Ta  8 Ta 8
197.It i386        Ta 4 Ta 12 Ta 4
198.It mips        Ta 4 Ta  8 Ta 8
199.It mipsel      Ta 4 Ta  8 Ta 8
200.It mipselhf    Ta 4 Ta  8 Ta 8
201.It mipshf      Ta 4 Ta  8 Ta 8
202.It mipsn32     Ta 4 Ta  8 Ta 8
203.It mips64      Ta 8 Ta  8 Ta 8
204.It mips64el    Ta 8 Ta  8 Ta 8
205.It mips64elhf  Ta 8 Ta  8 Ta 8
206.It mips64hf    Ta 8 Ta  8 Ta 8
207.It powerpc     Ta 4 Ta  8 Ta 8
208.It powerpcspe  Ta 4 Ta  8 Ta 8
209.It powerpc64   Ta 8 Ta  8 Ta 8
210.It powerpc64le Ta 8 Ta  8 Ta 8
211.It riscv64     Ta 8 Ta 16 Ta 8
212.It riscv64sf   Ta 8 Ta 16 Ta 8
213.El
214.Pp
215.Sy time_t
216is 8 bytes on all supported architectures except i386.
217.Ss Endianness and Char Signedness
218.Bl -column -offset indent "Architecture" "Endianness" "char Signedness"
219.It Sy Architecture Ta Sy Endianness Ta Sy char Signedness
220.It aarch64     Ta little Ta unsigned
221.It amd64       Ta little Ta   signed
222.It armv6       Ta little Ta unsigned
223.It armv7       Ta little Ta unsigned
224.It i386        Ta little Ta   signed
225.It mips        Ta big    Ta   signed
226.It mipsel      Ta little Ta   signed
227.It mipselhf    Ta little Ta   signed
228.It mipshf      Ta big    Ta   signed
229.It mipsn32     Ta big    Ta   signed
230.It mips64      Ta big    Ta   signed
231.It mips64el    Ta little Ta   signed
232.It mips64elhf  Ta little Ta   signed
233.It mips64hf    Ta big    Ta   signed
234.It powerpc     Ta big    Ta unsigned
235.It powerpcspe  Ta big    Ta unsigned
236.It powerpc64   Ta big    Ta unsigned
237.It powerpc64le Ta little Ta unsigned
238.It riscv64     Ta little Ta   signed
239.It riscv64sf   Ta little Ta   signed
240.El
241.Ss Page Size
242.Bl -column -offset indent "Architecture" "Page Sizes"
243.It Sy Architecture Ta Sy Page Sizes
244.It aarch64     Ta 4K, 2M, 1G
245.It amd64       Ta 4K, 2M, 1G
246.It armv6       Ta 4K, 1M
247.It armv7       Ta 4K, 1M
248.It i386        Ta 4K, 2M (PAE), 4M
249.It mips        Ta 4K
250.It mipsel      Ta 4K
251.It mipselhf    Ta 4K
252.It mipshf      Ta 4K
253.It mipsn32     Ta 4K
254.It mips64      Ta 4K
255.It mips64el    Ta 4K
256.It mips64elhf  Ta 4K
257.It mips64hf    Ta 4K
258.It powerpc     Ta 4K
259.It powerpcspe  Ta 4K
260.It powerpc64   Ta 4K
261.It powerpc64le Ta 4K
262.It riscv64     Ta 4K, 2M, 1G
263.It riscv64sf   Ta 4K, 2M, 1G
264.El
265.Ss Floating Point
266.Bl -column -offset indent "Architecture" "float, double" "long double"
267.It Sy Architecture Ta Sy float, double Ta Sy long double
268.It aarch64     Ta hard Ta soft, quad precision
269.It amd64       Ta hard Ta hard, 80 bit
270.It armv6       Ta hard Ta hard, double precision
271.It armv7       Ta hard Ta hard, double precision
272.It i386        Ta hard Ta hard, 80 bit
273.It mips        Ta soft Ta identical to double
274.It mipsel      Ta soft Ta identical to double
275.It mipselhf    Ta hard Ta identical to double
276.It mipshf      Ta hard Ta identical to double
277.It mipsn32     Ta soft Ta identical to double
278.It mips64      Ta soft Ta identical to double
279.It mips64el    Ta soft Ta identical to double
280.It mips64elhf  Ta hard Ta identical to double
281.It mips64hf    Ta hard Ta identical to double
282.It powerpc     Ta hard Ta hard, double precision
283.It powerpcspe  Ta hard Ta hard, double precision
284.It powerpc64   Ta hard Ta hard, double precision
285.It powerpc64le Ta hard Ta hard, double precision
286.It riscv64     Ta hard Ta hard, quad precision
287.It riscv64sf   Ta soft Ta soft, quad precision
288.El
289.Ss Default Tool Chain
290.Fx
291uses
292.Xr clang 1
293as the default compiler on all supported CPU architectures,
294LLVM's
295.Xr ld.lld 1
296as the default linker, and
297ELF Tool Chain binary utilities such as
298.Xr objcopy 1
299and
300.Xr readelf 1 .
301.Ss MACHINE_ARCH vs MACHINE_CPUARCH vs MACHINE
302.Dv MACHINE_CPUARCH
303should be preferred in Makefiles when the generic
304architecture is being tested.
305.Dv MACHINE_ARCH
306should be preferred when there is something specific to a particular type of
307architecture where there is a choice of many, or could be a choice of many.
308Use
309.Dv MACHINE
310when referring to the kernel, interfaces dependent on a specific type of kernel
311or similar things like boot sequences.
312.Bl -column -offset indent "Dv MACHINE" "Dv MACHINE_CPUARCH" "Dv MACHINE_ARCH"
313.It Dv MACHINE Ta Dv MACHINE_CPUARCH Ta Dv MACHINE_ARCH
314.It arm64 Ta aarch64 Ta aarch64
315.It amd64 Ta amd64 Ta amd64
316.It arm Ta arm Ta armv6, armv7
317.It i386 Ta i386 Ta i386
318.It mips Ta mips Ta mips, mipsel, mips64, mips64el, mipshf, mipselhf, mips64elhf, mipsn32
319.It powerpc Ta powerpc Ta powerpc, powerpcspe, powerpc64, powerpc64le
320.It riscv Ta riscv Ta riscv64, riscv64sf
321.El
322.Ss Predefined Macros
323The compiler provides a number of predefined macros.
324Some of these provide architecture-specific details and are explained below.
325Other macros, including those required by the language standard, are not
326included here.
327.Pp
328The full set of predefined macros can be obtained with this command:
329.Bd -literal -offset indent
330cc -x c -dM -E /dev/null
331.Ed
332.Pp
333Common type size and endianness macros:
334.Bl -column -offset indent "BYTE_ORDER" "Meaning"
335.It Sy Macro Ta Sy Meaning
336.It Dv __LP64__ Ta 64-bit (8-byte) long and pointer, 32-bit (4-byte) int
337.It Dv __ILP32__ Ta 32-bit (4-byte) int, long and pointer
338.It Dv BYTE_ORDER Ta Either Dv BIG_ENDIAN or Dv LITTLE_ENDIAN .
339.Dv PDP11_ENDIAN
340is not used on
341.Fx .
342.El
343.Pp
344Architecture-specific macros:
345.Bl -column -offset indent "Architecture" "Predefined macros"
346.It Sy Architecture Ta Sy Predefined macros
347.It aarch64     Ta Dv __aarch64__
348.It amd64       Ta Dv __amd64__ , Dv __x86_64__
349.It armv6       Ta Dv __arm__ , Dv __ARM_ARCH >= 6
350.It armv7       Ta Dv __arm__ , Dv __ARM_ARCH >= 7
351.It i386        Ta Dv __i386__
352.It mips        Ta Dv __mips__ , Dv __MIPSEB__ , Dv __mips_o32
353.It mipsel      Ta Dv __mips__ , Dv __mips_o32
354.It mipselhf    Ta Dv __mips__ , Dv __mips_o32
355.It mipshf      Ta Dv __mips__ , Dv __MIPSEB__ , Dv __mips_o32
356.It mipsn32     Ta Dv __mips__ , Dv __MIPSEB__ , Dv __mips_n32
357.It mips64      Ta Dv __mips__ , Dv __MIPSEB__ , Dv __mips_n64
358.It mips64el    Ta Dv __mips__ , Dv __mips_n64
359.It mips64elhf  Ta Dv __mips__ , Dv __mips_n64
360.It mips64hf    Ta Dv __mips__ , Dv __MIPSEB__ , Dv __mips_n64
361.It powerpc     Ta Dv __powerpc__
362.It powerpcspe  Ta Dv __powerpc__ , Dv __SPE__
363.It powerpc64   Ta Dv __powerpc__ , Dv __powerpc64__
364.It powerpc64le Ta Dv __powerpc__ , Dv __powerpc64__
365.It riscv64     Ta Dv __riscv , Dv __riscv_xlen == 64
366.It riscv64sf   Ta Dv __riscv , Dv __riscv_xlen == 64 , Dv __riscv_float_abi_soft
367.El
368.Pp
369Compilers may define additional variants of architecture-specific macros.
370The macros above are preferred for use in
371.Fx .
372.Ss Important Xr make 1 variables
373Most of the externally settable variables are defined in the
374.Xr build 7
375man page.
376These variables are not otherwise documented and are used extensively
377in the build system.
378.Bl -tag -width "MACHINE_CPUARCH"
379.It Dv MACHINE
380Represents the hardware platform.
381This is the same as the native platform's
382.Xr uname 1
383.Fl m
384output.
385It defines both the userland / kernel interface, as well as the
386bootloader / kernel interface.
387It should only be used in these contexts.
388Each CPU architecture may have multiple hardware platforms it supports
389where
390.Dv MACHINE
391differs among them.
392It is used to collect together all the files from
393.Xr config 8
394to build the kernel.
395It is often the same as
396.Dv MACHINE_ARCH
397just as one CPU architecture can be implemented by many different
398hardware platforms, one hardware platform may support multiple CPU
399architecture family members, though with different binaries.
400For example,
401.Dv MACHINE
402of i386 supported the IBM-AT hardware platform while the
403.Dv MACHINE
404of pc98 supported the Japanese company NEC's PC-9801 and PC-9821
405hardware platforms.
406Both of these hardware platforms supported only the
407.Dv MACHINE_ARCH
408of i386 where they shared a common ABI, except for certain kernel /
409userland interfaces relating to underlying hardware platform
410differences in bus architecture, device enumeration and boot interface.
411Generally,
412.Dv MACHINE
413should only be used in src/sys and src/stand or in system imagers or
414installers.
415.It Dv MACHINE_ARCH
416Represents the CPU processor architecture.
417This is the same as the native platforms
418.Xr uname 1
419.Fl p
420output.
421It defines the CPU instruction family supported.
422It may also encode a variation in the byte ordering of multi-byte
423integers (endian).
424It may also encode a variation in the size of the integer or pointer.
425It may also encode a ISA revision.
426It may also encode hard versus soft floating point ABI and usage.
427It may also encode a variant ABI when the other factors do not
428uniquely define the ABI (e.g., MIPS' n32 ABI).
429It, along with
430.Dv MACHINE ,
431defines the ABI used by the system.
432For example, the MIPS CPU processor family supports 9 different
433combinations encoding pointer size, endian and hard versus soft float (for
4348 combinations) as well as N32 (which only ever had one variation of
435all these).
436Generally, the plain CPU name specifies the most common (or at least
437first) variant of the CPU.
438This is why mips and mips64 imply 'big endian' while 'armv6' and 'armv7'
439imply little endian.
440If we ever were to support the so-called x32 ABI (using 32-bit
441pointers on the amd64 architecture), it would most likely be encoded
442as amd64-x32.
443It is unfortunate that amd64 specifies the 64-bit evolution of the x86
444platform (it matches the 'first rule') as everybody else uses x86_64.
445There is no standard name for the processor: each OS selects its own
446conventions.
447.It Dv MACHINE_CPUARCH
448Represents the source location for a given
449.Dv MACHINE_ARCH .
450It is generally the common prefix for all the MACHINE_ARCH that
451share the same implementation, though 'riscv' breaks this rule.
452For example,
453.Dv MACHINE_CPUARCH
454is defined to be mips for all the flavors of mips that we support
455since we support them all with a shared set of sources.
456While amd64 and i386 are closely related, MACHINE_CPUARCH is not x86
457for them.
458The
459.Fx
460source base supports amd64 and i386 with two
461distinct source bases living in subdirectories named amd64 and i386
462(though behind the scenes there's some sharing that fits into this
463framework).
464.It Dv CPUTYPE
465Sets the flavor of
466.Dv MACHINE_ARCH
467to build.
468It is used to optimize the build for a specific CPU / core that the
469binaries run on.
470Generally, this does not change the ABI, though it can be a fine line
471between optimization for specific cases.
472.It Dv TARGET
473Used to set
474.Dv MACHINE
475in the top level Makefile for cross building.
476Unused outside of that scope.
477It is not passed down to the rest of the build.
478Makefiles outside of the top level should not use it at all (though
479some have their own private copy for hysterical raisons).
480.It Dv TARGET_ARCH
481Used to set
482.Dv MACHINE_ARCH
483by the top level Makefile for cross building.
484Like
485.Dv TARGET ,
486it is unused outside of that scope.
487.El
488.Sh SEE ALSO
489.Xr src.conf 5 ,
490.Xr build 7
491.Sh HISTORY
492An
493.Nm
494manual page appeared in
495.Fx 11.1 .
496