|
|
|
|
|
by glitch
3954 days ago
|
|
CR3: https://en.wikipedia.org/wiki/Control_register#CR3 Some relevant excerpts from Mac OS X and iOS Internals: To the Apple's Core by Jonathan Levi: From page 133: In 64-bit mode, there is such a huge amount of memory available anyway that it makes sense to follow the model used in other operating systems, namely to map the kernel’s address space into each and every process. This is a departure from the traditional OS X model, which had the kernel in its own address space, but it makes for much faster user/kernel transition (by sharing CR3, the control register containing the page tables). From page 266:
Still, unlike Windows or Linux, OS X applications in 32-bit (Intel) used to enjoy
a largely unfettered address space with virtually no kernel reservation — that is, the kernel had its own address space. Apple has conformed, however, and in 64-bit mode OS X behaves more like its monolithic peers: the kernel/user address spaces are shared, unless otherwise stated (by setting the -no-shared-cr3 boot argument on Intel architectures). The same holds true in iOS, wherein XNU currently reserves the top 2 GB of the 4 GB address space (prior to iOS version 4 the separation was 3 GB user/1 GB kernel). |
|