Chinaunix首页 | 论坛 | 博客
  • 博客访问: 6538101
  • 博文数量: 1159
  • 博客积分: 12444
  • 博客等级: 上将
  • 技术积分: 12570
  • 用 户 组: 普通用户
  • 注册时间: 2008-03-13 21:34
文章分类

全部博文(1159)

文章存档

2016年(126)

2015年(350)

2014年(56)

2013年(91)

2012年(182)

2011年(193)

2010年(138)

2009年(23)

分类: LINUX

2012-08-29 17:32:26

32位的Linux中,0x00000000-0xBFFFFFFFFF 这3GB是 用户空间
0xC00000000-0xFFFFFFFFFF 这1GB是 内核空间

++++++++++++++++++++++++++++++++++++++++++



x86-64
From Wikipedia, the free encyclopedia
  (Redirected from )
Jump to: ,

x86-64 is an extension of the . It supports vastly larger virtual and physical address spaces than are possible on x86, thereby allowing programmers to conveniently work with much larger data sets. x86-64 also provides general purpose registers and numerous other enhancements. The original specification was created by , and has been implemented by AMD, , , and others. It is fully backwards compatible with Intel 16-bit and 32-bit code.(p13-14) Because the full x86 16-bit and 32-bit instruction sets remains implemented in hardware without any intervening emulation, existing x86 executables run with no compatibility or performance penalties, although existing applications that are recoded to take advantage of new features of the processor design may see performance increases.

AMD's method of extending Intel's x86 32-bit instruction set to be a subset of its x86-64 instruction set is the same technique Intel employed to extend its .

Prior to launch, "x86-64" and "x86_64" were used to refer to the instruction set. Upon release, AMD named it AMD64 Intel initially used the names IA-32e and EM64T before finally settling on Intel 64 for their implementation. x86-64 is still used by many in the industry, while others, notably (now ) and , use x64 while the BSD family of OSs use AMD64.

The core was the first to implement the architecture; this was the first significant addition to the architecture designed by a company other than Intel. Intel was forced to follow suit and introduced a modified family which was fully software-compatible with AMD's design and specification. introduced x86-64 in their VIA Isaiah architecture, with the .

The x86-64 specification is distinct from the Intel (formerly IA-64) architecture, which is not compatible on the native instruction set level with the x86 architecture.

Contents
AMD64
AMD64 logo

The AMD64 instruction set is implemented in AMD's , , , , , , , , , , and later processors.

History of AMD64

AMD64 was created as an alternative to the radically different architecture, which was designed by Intel and . Originally announced in 1999 with a full specification in August 2000, the AMD64 architecture was positioned by AMD from the beginning as an evolutionary way to add 64-bit computing capabilities to the existing x86 architecture, as opposed to Intel's approach of creating an entirely new 64-bit architecture with IA-64.

The first AMD64-based processor, the , was released in April 2003.

Architectural features

The primary defining characteristic of AMD64 is the availability of 64-bit general-purpose , e.g. rax, rbx etc., 64-bit arithmetic and logical operations, and 64-bit . The designers took the opportunity to make other improvements as well. The most significant changes include:

  • 64-bit integer capability: All general-purpose registers (GPRs) are expanded from 32  to 64 bits, and all arithmetic and logical operations, memory-to-register and register-to-memory operations, etc., can now operate directly on 64-bit integers. on the are always in 8-byte strides, and are 8 bytes wide.
  • Additional registers: In addition to increasing the size of the general-purpose registers, the number of named general-purpose registers is increased from eight (i.e. eax, ebx, ecx, edx, ebp, esp, esi, edi) in x86 to 16 (i.e. rax, rbx, rcx, rdx, rbp, rsp, rsi, rdi, r8, r9, r10, r11, r12, r13, r14, r15). It is therefore possible to keep more local variables in registers rather than on the stack, and to let registers hold frequently accessed constants; arguments for small and fast subroutines may also be passed in registers to a greater extent. However, AMD64 still has fewer registers than many common ISAs (which typically have 32–64 registers) or -like machines such as the (which has 128 registers); note, however, that because of the number of physical registers is often much larger than the number of registers exposed by the instruction set.
  • Additional XMM (SSE) registers: Similarly, the number of 128-bit XMM registers (used for instructions) is also increased from 8 to 16.
  • Larger virtual address space: The AMD64 architecture defines a 64-bit virtual address format, of which the low-order 48 bits are used in current implementations.(p120) This allows up to 256  (248 ) of virtual address space. The architecture definition allows this limit to be raised in future implementations to the full 64 bits,(p2)(p3)(p13)(p117)(p120) extending the virtual address space to 16  (264 bytes). This is compared to just 4  (232 bytes) for the x86. This means that very large files can be operated on by the entire file into the process' address space (which is often much faster than working with file read/write calls), rather than having to map regions of the file into and out of the address space.
  • Larger physical address space: The original implementation of the AMD64 architecture implemented 40-bit physical addresses and so could address up to 1 TB (240 bytes) of RAM.(p24) Current implementations of the AMD64 architecture (starting from ) extend this to 48-bit physical addresses and therefore can address up to 256 TB of RAM. The architecture permits extending this to 52 bits in the future(p24) (limited by the page table entry format);(p131) this would allow addressing of up to 4  of RAM. For comparison, 32-bit x86 processors are limited to 64 GB of RAM in (PAE) mode, or 4 GB of RAM without PAE mode.(p4)
  • Larger physical address space in legacy mode: When operating in the AMD64 architecture supports (PAE) mode, as do most current x86 processors, but AMD64 extends PAE from 36 bits to an architectural limit of 52 bits of physical address. Any implementation therefore allows the same physical address limit as under long mode.(p24)
  • Instruction pointer relative data access: Instructions can now reference data relative to the instruction pointer (RIP register). This makes , as is often used in shared libraries and code loaded at run time, more efficient.
  • SSE instructions: The original AMD64 architecture adopted Intel's and as core instructions. instructions were added in April 2005. SSE2 is an alternative to the instruction set's with the choice of either IEEE 32-bit or 64-bit floating-point mathematics. This provides floating-point operations compatible with many other modern CPUs. The SSE and SSE2 instructions have also been extended to operate on the eight new XMM registers. SSE and SSE2 are available in 32-bit mode in modern x86 processors; however, if they're used in 32-bit programs, those programs will only work on systems with processors that have the feature. This is not an issue in 64-bit programs, as all AMD64 processors have SSE and SSE2, so using SSE and SSE2 instructions instead of x87 instructions does not reduce the set of machines on which x86-64 programs can be run. SSE and SSE2 are generally faster than, and duplicate most of the features of the traditional x87 instructions, , and .
  • No-Execute bit: The "NX" bit (bit 63 of the page table entry) allows the operating system to specify which pages of virtual address space can contain executable code and which cannot. An attempt to execute code from a page tagged "no execute" will result in a memory access violation, similar to an attempt to write to a read-only page. This should make it more difficult for malicious code to take control of the system via "" or "unchecked buffer" attacks. A similar feature has been available on x86 processors since the as an attribute of segment descriptors; however, this works only on an entire segment at a time. Segmented addressing has long been considered an obsolete mode of operation, and all current PC operating systems in effect bypass it, setting all segments to a base address of 0 and (in their 32 bit implementation) a size of 4 GB. AMD was the first x86-family vendor to implement no-execute in linear addressing mode. The feature is also available in legacy mode on AMD64 processors, and recent Intel x86 processors, when PAE is used.
  • Removal of older features: A number of "system programming" features of the x86 architecture are not used in modern operating systems and are not available on AMD64 in long (64-bit and compatibility) mode. These include segmented addressing (although the FS and GS segments are retained in vestigial form for use as extra base pointers to operating system structures)(p70), the mechanism, and . These features remain fully implemented in "legacy mode," thus permitting these processors to run 32-bit and 16-bit operating systems without modification.
Virtual address space details Canonical form addresses

Although virtual addresses are 64 bits wide in 64-bit mode, current implementations (and all chips known to be in the planning stages) do not allow the entire virtual address space of 264 bytes (16 EB) to be used. Most operating systems and applications will not need such a large address space for the foreseeable future (for example, Windows implementations for AMD64 are only populating 16 TB, or 44 bits' worth), so implementing such wide virtual addresses would simply increase the complexity and cost of address translation with no real benefit. AMD therefore decided that, in the first implementations of the architecture, only the least significant 48 bits of a virtual address would actually be used in address translation ( lookup).(p120) Further, bits 48 through 63 of any virtual address must be copies of bit 47 (in a manner akin to ), or the processor will raise an exception.(p131) Addresses complying with this rule are referred to as "canonical form."(p130) Canonical form addresses run from 0 through 00007FFF'FFFFFFFF, and from FFFF8000'00000000 through FFFFFFFF'FFFFFFFF, for a total of 256 TB of usable virtual address space.

This "quirk" allows an important feature for later scalability to true 64-bit addressing: many operating systems (including, but not limited to, the family) take the higher-addressed half of the address space (named kernel space) for themselves and leave the lower-addressed half (user space) for application code, user mode stacks, heaps, and other data regions. The "canonical address" design ensures that every AMD64 compliant implementation has, in effect, two memory halves: the lower half starts at 00000000'00000000 and "grows upwards" as more virtual address bits become available, while the higher half is "docked" to the top of the address space and grows downwards. Also, fixing the contents of the unused address bits prevents their use by operating system as flags, privilege markers, etc., as such use could become problematic when the architecture is extended to implement more bits of virtual addresses.

Current 48-bit implementation

AMD64-canonical--48-bit.svg

56-bit implementation

AMD64-canonical--56-bit.svg

Full 64-bit implementation

AMD64-canonical--64-bit.svg


Page table structure

The 64-bit addressing mode ("") is a superset of (PAE); because of this, sizes may be 4  (212 bytes) or 2  (221 bytes).(p120) Long mode also supports page sizes of 1  (230 bytes).(p120) Rather than the three-level system used by systems in PAE mode, systems running in use four levels of page table: PAE's Page-Directory Pointer Table is extended from 4 entries to 512, and an additional Page-Map Level 4 (PML4) Table is added, containing 512 entries in 48-bit implementations.(p131) In implementations providing larger virtual addresses, this latter table would either grow to accommodate sufficient entries to describe the entire address range, up to a theoretical maximum of 33,554,432 entries for a 64-bit implementation, or be over ranked by a new mapping level, such as a PML5. A full mapping hierarchy of 4 KB pages for the whole 48-bit space would take a bit more than 512 GB of RAM (about 0.196% of the 256 TB virtual space).

Operating system limits

The operating system can also limit the virtual address space. Details, where applicable, are given in the "" section.

Physical address space details

Current AMD64 implementations support a physical address space of up to 248 bytes of RAM, or 256 TB,. A larger amount of installed RAM allows the operating system to keep more of the workload's pageable data and code in RAM, which can improve performance, though various workloads will have different points of diminishing returns.

The upper limit on RAM that can be used in a given x86-64 system depends on a variety of factors and can be far less than that implemented by the processor. For example, as of June 2010, there are no known for x86-64 processors that support 256 TB of RAM. The operating system may place additional limits on the amount of RAM that is usable or supported. Details on this point are given in the "" section of this article.

Operating modes
Operating mode required Compiled-application rebuild required Default address size Default operand size Register extensions Typical width
64-bit mode OS with 64-bit support, or bootloader for 64-bit OS Yes 64 32 Yes 64
Compatibility mode No 32 32 No 32
16 16 16
Legacy mode Legacy 16-bit or 32-bit OS; or bootloader for 16, 32, or 64-bit OS No 32 32 No 32
16 16 16
Legacy 16-bit or 32-bit OS 16 16 16
Legacy 16-bit OS; or bootloader for 16, 32, or 64 bit OS
State diagram of x86-64 operating modes

The architecture has two primary modes of operation:

Long mode

The architecture's intended primary mode of operation; it is a combination of the processor's native 64-bit mode and a combined 32-bit and 16-bit compatibility mode. It is used by 64-bit operating systems. Under a 64-bit operating system, 64-bit programs run under 64-bit mode, and 32-bit and 16-bit protected mode applications (that do not need to use either real mode or virtual 8086 mode in order to execute at any time) run under compatibility mode. Real-mode programs and programs that use virtual 8086 mode at any time cannot be run in long mode unless they are emulated in software.

Since the basic instruction set is the same, there is almost no performance penalty for executing protected mode x86 code. This is unlike Intel's , where differences in the underlying means that running 32-bit code must be done either in emulation of x86 (making the process slower) or with a dedicated x86 core. However, on the x86-64 platform, many x86 applications could benefit from a 64-bit , due to the additional registers in 64-bit code and guaranteed SSE2-based FPU support, which a can use for optimization. However, applications that regularly handle integers wider than 32 bits, such as cryptographic algorithms, will need a rewrite of the code handling the huge integers in order to take advantage of the 64-bit registers.

Legacy mode

The mode used by 16-bit ('protected mode' or 'real mode') and 32-bit operating systems. In this mode, the processor acts like a 32-bit x86 processor, and only 16-bit and 32-bit code can be executed. Legacy mode allows for a maximum of 32 bit virtual addressing which limits the virtual address space to 4 GB.(p14)(p24)(p118) 64-bit programs cannot be run from legacy mode.

AMD64 implementations

The following processors implement the AMD64 architecture:

  • AMD
  • AMD
  • AMD
  • AMD (followed by 'X2', 'X3', or 'X4' to indicate the number of cores, and XLT models)
  • AMD
  • AMD
  • AMD
  • AMD ("Palermo" E6 stepping and all "Manila" models)
  • AMD (followed by 'X3' or 'X4' to indicate the number of cores)
  • AMD (followed by 'X2', 'X3', 'X4' or 'X6' to indicate the number of cores)
  • AMD FX
Intel 64

Intel 64 is Intel's implementation of x86-64. It is used in newer versions of , , and processors, the D510, N450, N550, N2600 and N2800 and in all versions of the , , , , and processors.

History of Intel 64

Historically, AMD has developed and produced processors patterned after Intel's original designs, but with x86-64, roles were reversed: Intel found itself in the position of adopting the architecture which AMD had created as an extension to Intel's own x86 processor line.

Intel's project was originally Yamhill (after the in Oregon's Willamette Valley). After several years of denying its existence, Intel announced at the February 2004 that the project was indeed underway. Intel's chairman at the time, , admitted that this was one of their worst kept secrets.

Intel's name for this instruction set has changed several times. The name used at the IDF was CT (presumably for Clackamas Technology, another codename from an ); within weeks they began referring to it as IA-32e (for extensions) and in March 2004 unveiled the "official" name EM64T (Extended Memory 64 Technology). In late 2006 Intel began instead using the name Intel 64 for its implementation, paralleling AMD's use of the name AMD64.

Intel 64 implementations

The first processor to implement Intel 64 was the multi-socket processor code-named in June 2004. In contrast, the initial Prescott chips (February 2004) did not enable this feature. Intel subsequently began selling Intel 64-enabled Pentium 4s using the E0 revision of the Prescott core, being sold on the OEM market as the Pentium 4, model F. The E0 revision also adds eXecute Disable (XD) (Intel's name for the ) to Intel 64, and has been included in then current Xeon code-named Irwindale. Intel's official launch of Intel 64 (under the name EM64T at that time) in mainstream desktop processors was the N0 Stepping Prescott-2M. All 9xx, 8xx, 6xx, 5x9, 5x6, 5x1, 3x6, and 3x1 series CPUs have Intel 64 enabled, as do the CPUs, as will future Intel CPUs for workstations or servers. Intel 64 is also present in the last members of the line.

The first Intel implementing Intel 64 is the version of the processor, which was released on 27 July 2006. None of Intel's earlier notebook CPUs (, , , ) implements Intel 64.

The following processors implement the Intel 64 architecture:

  • Intel
    • Intel (all models since "")
    • Intel (some models since "Prescott")
    • Intel (some models since "")
    • Intel
    • Intel
  • Intel
    • Intel (all models since "Woodcrest")
    • (including Mobile processors since "Merom")
    • Intel (E2140, E2160, E2180, E2200, E2220, E5200, E5300, E5400, E6300, E6500, T2310, T2330, T2370, T2390, T3200 and T3400)
    • Intel (Celeron 4x0; Celeron M 5xx; E3200, E3300, E3400)
  • Intel Atom microarchitecture
    • (not to be confused with the N200 series, widely used in )
  • Intel
    • Intel
    • Intel
    • Intel
  • Intel
    • Intel
    • Intel
    • Intel
VIA's x86-64 implementation
  • Isaiah microarchitecture, implemented in the

The VIA Nano (formerly VIA Isaiah) is a for . The VIA Nano was released by in 2008 after five years of development by its CPU division, . This new Isaiah 64-bit architecture was designed from scratch, unveiled on 24 January 2008, and launched on May 29, including low-voltage variants and the Nano brand name. The processor supports a number of VIA-specific x86 extensions designed to boost efficiency in low-power appliances. It is expected that the VIA Isaiah will be twice as fast in integer performance and four times as fast in performance as the previous-generation at an equivalent . Power consumption is also expected to be on par with the previous-generation VIA CPUs, with ranging from 5 W to 25 W. Being a completely new design, the Isaiah architecture was built with support for features like the x86-64 instruction set and which were unavailable on its predecessors, the line, while retaining their encryption extensions.

Differences between AMD64 and Intel 64

Although nearly identical, there are some differences between the two instruction sets in the semantics of a few seldom used machine instructions (and/or situations), which are mainly used for . Compilers generally produce executables (i.e. ) that avoid any differences, at least for ordinary . This is therefore of interest mainly to developers of compilers, operating systems and similar, which must deal with individual and special system instructions.

Recent implementations
  • Intel 64's BSF and BSR instructions act differently when the source is 0 and the operand size is 32 bits. The processor sets the zero flag and leaves the upper 32 bits of the destination undefined.
  • AMD64 requires a different microcode update format and control MSRs (model-specific registers) while Intel 64 implements update unchanged from their 32-bit only processors.
  • Intel 64 lacks some MSRs that are considered architectural in AMD64. These include SYSCFG, TOP_MEM, and TOP_MEM2.
  • Intel 64 allows SYSCALL and SYSRET only in 64-bit mode (not in compatibility mode). It allows SYSENTER and SY***IT in both modes.
  • AMD64 lacks SYSENTER and SY***IT in both sub-modes of .
  • Near branches with the 66H (operand size override) prefix behave differently. Intel 64 clears only the top 32 bits, while AMD64 clears the top 48 bits.
  • AMD processors raise a floating point Invalid Exception when performing an FLD or FSTP of an 80-bit signalling NaN, while Intel processors do not.
  • Intel 64 lacks the ability to save and restore a reduced (and thus faster) version of the state (involving the FXSAVE and FXRSTOR instructions).
  • Recent AMD64 processors have reintroduced limited support for segmentation to ease of 64-bit guests.
Older implementations
  • Early AMD64 processors lacked the CMPXCHG16B instruction, which is an extension of the CMPXCHG8B instruction present on most post- processors. Similar to CMPXCHG8B, CMPXCHG16B allows for on octal words. This is useful for parallel algorithms that use on data larger than the size of a pointer, common in . Without CMPXCHG16B one must use workarounds, such as a or alternative lock-free approaches. This also prevents 64-bit from having a address space larger than 8 terabytes.
  • Early AMD64 and Intel 64 CPUs lacked LAHF and SAHF instructions. AMD introduced the instructions with their Athlon 64, Opteron and Turion 64 revision D processors in March 2005 while Intel introduced the instructions with the Pentium 4 G1 stepping in December 2005.
  • Early Intel CPUs with Intel 64 also lack the of the AMD64 architecture.
  • Early Intel 64 implementations only allowed access to 64 GB of physical memory while original AMD64 implementations allowed access to 1 TB of physical memory. Recent AMD64 and Intel 64 implementations provide 256 TB of physical address space (and AMD plans an expansion to 4 PB.)[] Physical memory capacities of this size are appropriate for large-scale applications (such as large databases), and high-performance computing (centrally oriented applications and scientific computing.)
  • AMD64 originally lacked the MONITOR and MWAIT instructions.
Operating system compatibility and characteristics

The following operating systems and releases support the x86-64 architecture in .

BSD DragonFly BSD

Preliminary infrastructure work was started in February 2004 for a x86-64 port. This development later stalled. Development started again during July 2007 and continued during 2008 and SoC 2009. The first official release to contain x86-64 support was version 2.4.

FreeBSD

first added x86-64 support under the name "amd64" as an experimental architecture in 5.1-RELEASE in June 2003. It was included as a standard distribution architecture as of 5.2-RELEASE in January 2004. Since then, FreeBSD has designated it as a Tier 1 platform. The 6.0-RELEASE version cleaned up some quirks with running x86 executables under amd64, and most drivers work just as they do on the x86 architecture. Work is currently being done to integrate more fully the x86 (ABI), in the same manner as the Linux 32-bit ABI compatibility currently works.

NetBSD

x86-64 architecture support was first committed to the source tree on 19 June 2001. As of NetBSD 2.0, released on 9 December 2004, NetBSD/amd64 is a fully integrated and supported port. 32-bit code is still supported in 64-bit mode, with a netbsd-32 kernel compatibility layer for 32-bit syscalls. The NX bit is used to provide non-executable stack and heap with per-page granularity (segment granularity being used on 32-bit x86).

OpenBSD

has supported AMD64 since OpenBSD 3.5, released on 1 May 2004. Complete in-tree implementation of AMD64 support was achieved prior to the hardware's initial release due to AMD's loaning of several machines for the project's that year. OpenBSD developers have taken to the platform because of its support for the , which allowed for an easy implementation of the feature.

The code for the AMD64 port of OpenBSD also runs on Intel 64 processors which contains cloned use of the AMD64 extensions, but since Intel left out the page table NX bit in early Intel 64 processors, there is no W^X capability on those Intel CPUs; later Intel 64 processors added the NX bit under the name "XD bit". (SMP) works on OpenBSD's AMD64 port, starting with release 3.6 on 1 November 2004.

DOS

It is possible to enter under without a DOS extender, but the user must return to real mode in order to call BIOS or DOS interrupts.

It may also be possible to enter with a similar to , but more complex since x86-64 lacks . DOS itself is not aware of that, and no benefits should be expected unless running DOS in an emulation with an adequate virtualization driver backend, for example: the mass storage interface.

Linux

was the first operating system kernel to run the x86-64 architecture in , starting with the 2.4 version in 2001 (prior to the physical hardware's availability). Linux also provides backward compatibility for running 32-bit executables. This permits programs to be recompiled into long mode while retaining the use of 32-bit programs. Several Linux distributions currently ship with x86-64-native kernels and . Some, such as , , , and , allow users to install a set of 32-bit components and libraries when installing off a 64-bit DVD, thus allowing most existing 32-bit applications to run alongside the 64-bit OS. Other distributions, such as , and , are available in one version compiled for a 32-bit architecture and another compiled for a 64-bit architecture. Fedora and allow concurrent installation of all userland components in both 32 and 64-bit versions on a 64-bit system.

(Application Binary Interface), introduced in Linux 3.4, allows programs compiled for the x32 ABI to run in the 64-bit mode of x86-64 while only using 32-bit pointers and data fields. Though this limits the program to a virtual address space of 4 GB it also decreases the memory footprint of the program and in some cases can allow it to run faster.

64-bit Linux allows up to 128  of virtual address space for individual processes, and can address approximately 64 TB of physical memory, subject to processor and system limitations.

Mac OS X

Mac OS X v10.4.7 and higher versions of run 64-bit command-line tools using the POSIX and math libraries on 64-bit Intel-based machines, just as all versions of Mac OS X v10.4 and 10.5 run them on 64-bit PowerPC machines. No other libraries or frameworks work with 64-bit applications in Mac OS X v10.4. The kernel, and all kernel extensions, are 32-bit only.

supports 64-bit GUI applications using , , , and on 64-bit Intel-based machines, as well as on 64-bit machines. All non-GUI libraries and frameworks also support 64-bit applications on those platforms. The kernel, and all kernel extensions, are 32-bit only.

is the first version of Mac OS X that supports a 64-bit . However, with its first release (v10.6.0), not all 64-bit computers are currently supported. The 64-bit kernel, like the 32-bit kernel, supports 32-bit applications; both kernels also support 64-bit applications. 32-bit applications have a virtual address space limit of 4 GB under either kernel.

The 64-bit kernel does not support 32-bit , and the 32-bit kernel does not support 64-bit kernel extensions.

Mac OS X uses the format to package 32- and 64-bit versions of application and library code into a single file; the most appropriate version is automatically selected at load time. In Mac OS X 10.6, the universal binary format is also used for the kernel and for those kernel extensions that support both 32-bit and 64-bit kernels.

Solaris

10 and later releases support the x86-64 architecture.

For Solaris 10, just as with the architecture, there is only one operating system image, which contains a 32-bit kernel and a 64-bit kernel; this is labeled as the "x64/x86" DVD-ROM image. The default behavior is to boot a 64-bit kernel, allowing both 64-bit and existing or new 32-bit executables to be run. A 32-bit kernel can also be manually selected, in which case only 32-bit executables will run. The isainfo command can be used to determine if a system is running a 64-bit kernel.

For Solaris 11, only the 64-bit kernel is provided. However, the 64-bit kernel supports both 32- and 64-bit executables, libraries, and system calls.

Windows

x64 editions of Microsoft Windows client and server, and x64 Edition were released in March 2005. Internally they are actually the same build (5.2.3790.1830 SP1), as they share the same source base and operating system binaries, so even system updates are released in unified packages, much in the manner as Windows 2000 Professional and Server editions for x86. , which also has many different editions, was released in January 2007. was released in July 2009. and later versions will only be available as x64 versions. Windows for x64 has the following characteristics:

  • 8 TB of "user mode" virtual address space per process. A x64 program can use all of this, subject of course to backing-store limits on the system, and provided it is linked with the "large address aware" option. This is a 4096-fold increase over the default 2 GB user-mode virtual address space offered by 32-bit Windows.
  • 8 TB of kernel mode virtual address space for the operating system. As with the user mode address space, this is a 4096-fold increase over 32-bit Windows versions. The increased space primarily benefits the file-system cache and kernel-mode "heaps" (non-paged pool and paged pool). Windows only uses a total of 16 TB out of the 256 TB implemented by the processors because early AMD64 processors lacked a CMPXCHG16B instruction.
  • Ability to run existing 32-bit applications (.exe programs) and dynamic link libraries (.dlls) using . Furthermore, a 32-bit program, if it was linked with the "large address aware" option, can use up to 4 GB of virtual address space in 64-bit Windows, instead of the default 2 GB (optional 3 GB with /3GB boot option and "large address aware" link option) offered by 32-bit Windows. Unlike the use of the /3GB boot option on x86, this does not reduce the kernel-mode virtual-address space available to the operating system. 32-bit applications can therefore benefit from running on x64 Windows even if they are not recompiled for x86-64.
  • Both 32- and 64-bit applications, if not linked with "large address aware," are limited to 2 GB of virtual address space.
  • Ability to use up to 128 GB (Windows XP/Vista), 192 GB (Windows 7), 1 TB (Windows Server 2003), 2 TB (Windows Server 2008), or 4 TB (Windows Server 2012) of physical random access memory (RAM).
  • data model: "int" and "long" types are 32 bits wide, long long is 64 bits, while pointers and types derived from pointers are 64 bits wide.
  • Kernel-mode device drivers must be 64-bit versions; there is no way to run 32-bit kernel-mode executables within the 64-bit operating system. User mode device drivers can be either 32-bit or 64-bit.
  • 16-bit Windows (Win16) and DOS applications will not run on x86-64 versions of Windows due to removal of the subsystem (NTVDM) which relied upon the ability to use virtual 8086 mode. Virtual 8086 mode cannot be entered while running in long mode.
  • Full implementation of the (No Execute) page protection feature. This is also implemented on recent 32-bit versions of Windows when they are started in PAE mode.
  • Instead of FS segment descriptor on x86 versions of the family, GS segment descriptor is used to point to two operating system defined structures: Thread Information Block (NT_TIB) in user mode and Processor Control Region (KPCR) in kernel mode. Thus, for example, in user mode GS:0 is the address of the first member of the Thread Information Block. Maintaining this convention made the x86-64 port easier, but required AMD to retain the function of the FS and GS segments in long mode — even though segmented addressing per se is not really used by any modern operating system.
  • Early reports claimed that the operating system scheduler would not save and restore the x87 FPU machine state across thread context switches. Observed behavior shows that this is not the case: the x87 state is saved and restored, except for kernel-mode-only threads (a limitation that exists in the 32-bit version as well). The most recent documentation available from Microsoft states that the x87/MMX/3DNow! instructions may be used in long mode, but that they are deprecated and may cause compatibility problems in the future.
  • Some components like and will not be ported to 64-bit architectures such as x86-64 and IA-64.
  • can compile to target either the x86-64 architecture, which can run only on 64-bit Microsoft Windows, or the architecture, which can run as a 32-bit application on 32-bit Microsoft Windows or 64-bit Microsoft Windows in emulation mode. can be compiled either in IA-32, x86-64 or AnyCPU modes. Software created in the first two modes behave like their IA-32 or x86-64 native code counterparts respectively; When using the AnyCPU mode however, applications in 32-bit versions of Microsoft Windows run as 32-bit applications, while they run as a 64-bit application in 64-bit editions of Microsoft Windows.
Industry naming conventions

Since AMD64 and Intel 64 are substantially similar, many software and hardware products use one vendor-neutral term to indicate their compatibility with both implementations. AMD's original designation for this processor architecture, "x86-64", is still sometimes used for this purpose, as is the variant "x86_64". Other companies, such as and , use the contraction "x64" in marketing material.

The term refers to the processor, and should not be confused with x86-64, as it is a completely different instruction set.

Many operating systems and products, especially those that introduced x86-64 support prior to Intel's entry into the market, use the term "AMD64" or "amd64" to refer to both AMD64 and Intel 64.

  • systems such as , , and refer to both AMD64 and Intel 64 under the architecture name "amd64".
  • The kernel and refers to 64-bit architecture as "x86_64".
  • , , and refer to both AMD64 and Intel 64 under the architecture name "amd64".
  • The , , , , and refer to this 64-bit architecture as "x86_64".
  • : refers to 64-bit architecture as "x86_64".
  • (JDK): The name "amd64" is used in directory names containing x86-64 files.
  • : Apple refers to 64-bit architecture as "x86_64", as noted with the Terminal command arch and in their developer documentation. [2]
  • : x64 versions of Windows use the AMD64 moniker internally to designate various components which use or are compatible with this architecture. For example, the system directory on a Windows x64 Edition installation CD-ROM is named "AMD64", in contrast to "i386" in 32-bit versions.
  • : The isalist command in Sun's Solaris operating system identifies both AMD64- and Intel 64–based systems as "amd64".
  • refer to both AMD64 and Intel 64 under the architecture name "x86-64", in source code directories and package meta information.
Licensing issues

Intel licenses to AMD the right to use the original x86 architecture (upon which AMD's x86-64 is based). In 2009, AMD and Intel settled several lawsuits and cross-licensing disagreements, extending their cross-licensing agreements.



阅读(8235) | 评论(0) | 转发(2) |
给主人留下些什么吧!~~