Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×
Microsoft Windows Technology

Microsoft Leaks Details of 128-bit Windows 8 581

Barence writes "Microsoft is planning to make Windows 8 a 128-bit operating system, according to details leaked from the software giant's Research department. The discovery came to light after Microsoft Research employee Robert Morgan carelessly left details of his work on the social-networking site LinkedIn. His page read: 'Working in high-security department for research and development involving strategic planning for medium and long-term projects. Research & Development projects including 128-bit architecture compatibility with the Windows 8 kernel and Windows 9 project plan. Forming relationships with major partners: Intel, AMD, HP and IBM.' It has since been removed."
This discussion has been archived. No new comments can be posted.

Microsoft Leaks Details of 128-bit Windows 8

Comments Filter:
  • More information (Score:5, Informative)

    by SlashDotDotDot ( 1356809 ) on Thursday October 08, 2009 @11:50AM (#29681941) Journal
    here [arstechnica.com].
  • Re:Not really (Score:5, Informative)

    by BrokenHalo ( 565198 ) on Thursday October 08, 2009 @11:52AM (#29681963)
    It refers to a 128 bit filesystem ala ZFS, not the whole OS.

    Either we're not reading the same article, or I suspect you didn't read it at all. At no point is a filesystem mentioned.
  • Re:Not really (Score:3, Informative)

    by MrNemesis ( 587188 ) on Thursday October 08, 2009 @11:54AM (#29681985) Homepage Journal

    Noooooo! I want to be able to say I have a 23488102 bit OS if that's the size of my bzImage! And once I have 1TB of porn I can call it a 8.79609302*10^12 bit operating system!

    Seriously - it's one thing for some IT marketing types not to know that a 128bit OS would need a 128bit processor (which would be a Big Thing, especially if HP were getting back into the market of CPU design and manufacture), but for the submitter and eds to not point it out makes it look a little daft.

  • Re:Not really (Score:5, Informative)

    by noundi ( 1044080 ) on Thursday October 08, 2009 @11:57AM (#29682033)

    It refers to a 128 bit filesystem ala ZFS, not the whole OS.

    Either we're not reading the same article, or I suspect you didn't read it at all. At no point is a filesystem mentioned.

    I'm with you, I don't know where he got filesystem from:

    The senior researcher's profile said he was: "Working in high security department for research and development involving strategic planning for medium and longterm projects. Research & Development projects including 128-bit architecture compatibility with the Windows 8 kernel and Windows 9 project plan. Forming relationships with major partners: Intel, AMD, HP and IBM."

    Clearly says architechture.

  • by FunkyELF ( 609131 ) on Thursday October 08, 2009 @12:00PM (#29682077)

    This has been discussed on OSNews and it is most likely about the filesystem or FPU and not memory addressing.

    http://www.osnews.com/story/22301/128-Bit_Support_in_Windows_8_9_ [osnews.com]

  • by TheRaven64 ( 641858 ) on Thursday October 08, 2009 @12:03PM (#29682119) Journal
    Neither has AMD or Intel. Most 64-bit processors provide 40 or 48 bits of address space; they ignore the other two or three bytes of the address (often they support a larger virtual address space than physical, but even then it's usually less than 64-bit). I've yet to see a consumer-grade machine with more RAM than PAE (36-bit addressing) could address. That said, memory is not the only place where the number of bits is important. Hard drives are typically addressed by 512-byte blocks, so 32 bits gives you 2TB, which is a single disk these days. 64 bits gives you 8ZB, which is quite a lot, but it's not a completely unreasonable amount; some people are going to find that constraining in the next few years, which is why ZFS uses 128 bits. It's not that 128 bits are necessary, so much that 65 bits are and 128 is the most computationally-convenient size after 128. Making sure everything in the kernel supports 128-bit filesystem offsets is an important for long-term project.

    If we start using PCRAM then we are likely to want to use byte-addressable filesystems, rather than keep relying on blocks, which reduces the size you can address with 64 bits to 16EB, which is a lot less; there are almost certainly already people with datasets larger than this. Because PCRAM has similar characteristics to DRAM, the most convenient way of addressing it is likely to be mapping it directly into the CPU's address space, rather than treating it as a device. You could use paging tricks and only map accessed files, but having two MMUs doesn't make life very simple for operating system writers, so ideally you're going to want to have all of your persistent storage in your address space (like MULTICS: everything old is new again). If you do this, then you may well want to have more than a 64-bit address space within ten years. And, when I say 'you' I mean 'companies with a lot of spare money to spend on IT infrastructure'.

  • Re:Not really (Score:5, Informative)

    by Richard_at_work ( 517087 ) on Thursday October 08, 2009 @12:20PM (#29682357)
    Not only does it say 'architecture', it also says 'architecture compatibility'.

    Why is that important? Because it does not mean that Windows 8 will necessarily be 128bit, just capable of being 128bit - for all we know, his entire role is ensuring that the teams code to a set standard which allows ease of porting to 128bit in future.
  • Re:Fuck Everything (Score:5, Informative)

    by ElSupreme ( 1217088 ) on Thursday October 08, 2009 @12:31PM (#29682495)
    BEST Onion article EVER!

    I almost wet my pants during the Fusion ads in the Superbowl. Becaues they did go to 5 (+1) blades.
    http://www.theonion.com/content/node/33930 [theonion.com]
  • Re:Not really (Score:5, Informative)

    by commodore64_love ( 1445365 ) on Thursday October 08, 2009 @12:48PM (#29682731) Journal

    I'm still confused.

    What's the point of having 128 bit compatibility? 128 bit CPUs don't even exist yet. Heck most of us are still just using 32, and haven't even visited the 64 generation yet.

  • by Lemming Mark ( 849014 ) on Thursday October 08, 2009 @12:50PM (#29682751) Homepage

    PAE doesn't "hide" memory, really. You can only address 4GB (i.e. a 32-bit address space) of virtual memory at once but that can be *anywhere* across the 36-bit physical address space. As long as no individual app needs more than 4GB of memory you're (mostly) OK. The kernel can alter the mappings as it needs to poke at anywhere interesting in all of physical RAM. It's less efficient than mapping it all in at once but you can manage quite well.

  • by TheRaven64 ( 641858 ) on Thursday October 08, 2009 @12:57PM (#29682845) Journal

    Let me guess: you've never written any ring 0 code for x86. PAE doesn't hide the memory. It modifies the page table structure slightly (so does 64-bit, by the way, it makes the page tables deeper which makes every TLB fault slower). You have a 32-bit virtual address space and a 36-bit physical address space. No process can see more than 4GB of RAM, but if you have two processes then they can each see a different 4GB of physical RAM. None of my processes currently uses more than 760MB of address space, but I have 3GB of RAM and 3GB of swap used, so with a PAE system and 8GB of RAM each process would be using physical memory and I'd have 2GB for filesystem cache.

    Oh, and when people talk about PAE, they also often mean PAE or PSE. PSE just makes pages bigger (up to 4MB), which can be used to address 64GB of RAM without changing the size of the page tables. This is better in some situations, because it involves smaller page tables and fewer TLB faults, but it means that you are swapping 4MB at a time, which can be very slow if you are swapping a lot.

  • by TheRaven64 ( 641858 ) on Thursday October 08, 2009 @01:12PM (#29683029) Journal
    The 386SX used 32-bit addresses. It had a 16-bit data bus, meaning that it loaded and stored 16 bits at a time. Actually, in practice the SX only had a 24-bit physical address space because 8 of the address pins were not connected, but it had 32-bit virtual addresses and 32-bit physical addresses with 8 of those bits silently ignored.
  • Re:Not really (Score:3, Informative)

    by 1729 ( 581437 ) <slashdot1729@nOsPAM.gmail.com> on Thursday October 08, 2009 @01:24PM (#29683193)

    Not too long ago (15-20 years, maybe?) 64-bit processors would have been unheard of on the desktop. I see 64-bit being stretched as we put more high-definition video into our datasets. And then we'll have the next "ultra high def" format that will stretch it even more. And then you have a small (in terms of units shipped), but very profitable business in supercomputing. Protein folding and subatomic research folks would probably jump at the chance to rerun their simulations with a higher resolution.

    Just to put this into perspective, the forthcoming IBM Sequoia [wikipedia.org] supercomputer will have 1.6 petabytes of RAM, and only a very small fraction of this can be accessed by a single compute node. The total amount of RAM in this machine is still 4 orders of magnitude smaller than what can be addressed with a single 64-bit pointer.

  • Re:Not really (Score:3, Informative)

    by MoxFulder ( 159829 ) on Thursday October 08, 2009 @01:37PM (#29683367) Homepage

    None of the linked articles say that the 128 bits is for the filesystem only, but I still believe you're right:

    Making the entire os 128-bit would simply waste a _lot_ of memory, for zero real gain. (Rather the opposite: A larger working set always leads to slower code.)

    Right. There's no widely-used 128-bit-native processor architecture either. And there is no reason to have 128-bit address bus either.

    I don't think there are 2^128 bytes of DRAM on the planet, even. Lessee... that's 2^98 GiB. Which is almost 10^20 GiB of RAM for every single person on the planet. I think that I personally can account for 10 GiB or so. Maybe 100 GiB if my parents have a secret DRAM trust fund for me that I don't know about. So yeah, 128-bit memory addresses are waaaaay off. I believe current 64-bit processors are currently limited to 40-bit external address buses... that'd be 1 TiB of RAM.

  • Re:Not really (Score:5, Informative)

    by atari2600 ( 545988 ) on Thursday October 08, 2009 @02:01PM (#29683611)
    For the uninitiated, v- and a- are Microsoft's way of identifying vendors (Microsoft is their client for whatever reason) and CSGs respectively (a fancy acronym for contractors).
  • Re:Not really (Score:3, Informative)

    by Bigjeff5 ( 1143585 ) on Thursday October 08, 2009 @02:45PM (#29684139)

    Itanium is not unsuccessful for VMS machines (you cannot put VMS on an x86 based chip, 64bit or no), and VMS is used in mainframe and other ultra-high availability applications. The Itanium just didn't pan out for any sort of windows-based operating systems, because windows is so tied to its x86 legacy.

    I believe they also have a successor that will be compatible with Itanium as well, I'm not sure though. I mainly only looked at Itanium from the VMS point of view. They certainly have a future their though, their only competitor is the Alpha by HP, and these tend to be very very very expensive applications they are used for.

  • Re:Not really (Score:5, Informative)

    by jdgeorge ( 18767 ) on Thursday October 08, 2009 @02:53PM (#29684243)

    No, IBM never produced an "OS 500". The branding went from OS/400 to i5/OS to today's "IBM i".

    No, the system never had a 128-bit address space. The address space of OS400 went from 48-bit to 64-bit when IBM started using 64-bit Power-based processors in those systems.

    Yes, the instruction set uses 128-bit pointers, but only the rightmost 64 bits of the pointer are used in the current system.

    Yes, The 64-bit address space covers both system memory and disk storage.

    This Wikipedia article about IBM System i [wikipedia.org] is a pretty good reference about this kind of stuff.

  • Re:Ha ha (Score:3, Informative)

    by shutdown -p now ( 807394 ) on Thursday October 08, 2009 @02:59PM (#29684305) Journal

    Even the netbook processors (Intel Atom and VIA Nano) have full 64-bit support.

    Educate yourself [intel.com]. Only two shipping Atom models have x64 support - 330 and 230 - and I'm not aware of any netbooks in production using either one (Intel itself positions them for "nettops", and the rest of the model line for "netbooks"). Most certainly, all popular netbooks are not x64-capable.

  • Re:CPU? (Score:3, Informative)

    by Cassini2 ( 956052 ) on Thursday October 08, 2009 @04:15PM (#29685231)

    I haven't heard of any 128-bit CPUs for micros even being discussed, let alone prototyped. in fact, the only 128-bit CPU I can find any mention of is in IBM's System/370. Anyone have any info about 128-bit microprocessors.

    The x86 line permits chaining of basic binary arithmetic operations to any level of complexity. However, why would we want 128-bit operands? Double precision arithmetic is 64-bits, and there isn't a significant clamor for more precision in scientific circles. (More speed = yes, Vector Operations = yes, More precision = no).

    Computer hardware has supported wider data buses than CPU bus widths for some time now. Wide data buses are useful for vector operations, and to quickly fill CPU caches. Nvidia has a 512-bit GPU. I think IBM has at least experimented with 512-bits for the Power Platform. Currently, an external data bus wider than 128 bits remains expensive. However, internal to the CPU, the Core i7 processor uses cache line widths of 128-bits and 256-bits, so someone might argue the Core i7 is a 256-bit processor. In the past, Intel has adopted misleading marketing practices with regarding data bus sizes.

    Programmers care about the unit word size for key operations. 64-bits is likely to be sufficient for all practical uses for some time now, particularly for PC usage. Essentially, a 64-bit processor can directly address 18 exa-bytes of hard drive storage to the byte level. Barring massive breakthroughs, for the near future, multi-exabyte supercomputers/compute clusters will be scarce.

    Additionally, 1 exa-byte of storage is only useful in a cluster. At a 10 GB/sec (80 Gb/sec), which is faster than pretty much any single storage device currently in existence, it takes 3 years to move 1 Exabyte of data. That's a long time to back up a hard drive. Even DDR-3 2000 RAM requires multiple devices to reach 10 GB/sec transfer rates, and who wants 3 years worth of data sitting in RAM? As such, 64-bit addressing is only useful in the context of supercomputers/compute clusters that have the massive parallelism required to read and write Exabytes of data quickly.

    If Microsoft expects serious personal computer uses for 128-bit addressing by the time Windows 9 ships, Microsoft must be planning on Windows 9 shipping sometime next century.

  • Re:Ha ha (Score:3, Informative)

    by TheRaven64 ( 641858 ) on Thursday October 08, 2009 @04:50PM (#29685761) Journal

    What is Windows missing in terms of 64 bit migration, and what else can Microsoft do about it?

    Make long 64 bits. On Win64, int and long are 4 bytes, long long and void* are 8. A huge amount of legacy code assumed that you can always store a void* in a long without truncation. On pretty much every mainstream or near-mainstream platform that assumption is valid... except for win64.

  • by JLF65 ( 888379 ) on Thursday October 08, 2009 @06:09PM (#29686685)

    Software people get this wrong all the time... leave it to a hardware guy to straighten it out. :)

    It's not the bus size, it's the size of the ALU inside the CPU (the ALU actually performs the operations). The 68000 was a 16 bit processor NOT because of the 16 bit bus, but because the ALU was only 16 bits. The 68000 has a full 32 bit architecture, but because the ALU was 16 bit, it took two operations to perform 32 bit instructions. It wasn't until the 68020 that the M68K family had their first 32 bit processor. The 386SX may have had a 16 bit bus, but internally had a 32 bit ALU, so it was still a 32 bit processor.

  • by sohp ( 22984 ) <.moc.oi. .ta. .notwens.> on Friday October 09, 2009 @12:06AM (#29688909) Homepage

    Because MS Visual Studio STILL doesn't support it, methinks.

  • Re:April fools! (Score:3, Informative)

    by olivesaregross ( 590033 ) on Friday October 09, 2009 @06:51AM (#29690503)
    From Windows IT Pro: "All your rumors are belong to me: Windows 8 to be 128-bit? No. Good God, no. People can be so silly sometimes. Writers at PC World, Ars Technica, Slashdot and many other publications fell for an obviously faked LinkedIn profile from a supposed Microsoft researcher who claimed he was working on a 128-bit kernel for Windows 8. There's just one problem. This guy doesn't exist. No one with his name has ever worked at Microsoft Research. His job title is fake. Microsoft is not working on a 128-bit kernel for Windows 8. And, best of all, the guy's listed university? It's an "online supplier of academic degrees," according to Wikipedia. OK, that's five problems, or four more than those geniuses on the web should have needed to figure out this rumor was fake. Seriously, you guys make me laugh so hard sometimes I could cry. It's just sad." http://windowsitpro.com/Articles/Index.cfm?ArticleID=102939&feed=rss&subj=0 [windowsitpro.com]

Two can Live as Cheaply as One for Half as Long. -- Howard Kandel

Working...