Slashdot Mirror


A History of PowerPC

A reader writes: "There's a article about chipmaking at IBM up at DeveloperWorks. While IBM-centric, it talks a lot about the PowerPC, but really dwells on the common ancestory of IBM 801" Interesting article, especially for people interested in chips and chip design.

65 of 193 comments (clear)

  1. IBM also says Screw you to intel by Erect+Horsecock · · Score: 4, Informative

    IBM Also announced a ton of new PPC information and tech today at an event in new york. Opening up the ISA to third parties including Sony.

    --
    I hope you die painfully and alone.
    1. Re:IBM also says Screw you to intel by Anonymous Coward · · Score: 4, Interesting

      Sony?

      Does this mean that ALL next-generation consoles (next Gamebuce, PS3 and Xbox2) will use a IBM chip?

    2. Re:IBM also says Screw you to intel by Erect+Horsecock · · Score: 3, Informative

      yes they are all PPC "based" now. The PS3 will be using what is called the Cell cpu which is derived from the Power ISA.

      Theres a pantload of info here.

      --
      I hope you die painfully and alone.
    3. Re:IBM also says Screw you to intel by Erect+Horsecock · · Score: 2, Informative
      The new POWER 5s, although i have no idea how they work, are said to allow virtual microprocessors to allow you to run multiple OSes at once. That could make for some pretty usefull linux apps/distros for windows technician (think repairing viruses and stuff)


      This is really cool stuff. IBM is a little late to the game in some regards, SGI has been doing this stuff for years in IRIX on their MIPS machines. But hey better late than never...
      --
      I hope you die painfully and alone.
    4. Re:IBM also says Screw you to intel by Apple+Acolyte · · Score: 2, Interesting
      Parent AC asks,
      Does this mean that ALL next-generation consoles (next Gamebuce, PS3 and Xbox2) will use a IBM chip?

      It has been known for some time that the PS3 would based on the IBM "Cell" project, which is some sort of Power derivative (a.k.a. PPC). So yes, as far as anyone knows, the next generation consoles will all be powered by the PPC. With Generation 5 (G5) and beyond, it looks like the PowerPC Revolution may finally be closer to reality. :-)

      --
      Part of the hardcore faithful who believed in Apple long before it was cool again to do so
    5. Re:IBM also says Screw you to intel by bhtooefr · · Score: 4, Informative

      If it's what I think it is, then Intel has been doing this since the 80386 (try VMWare, which uses your box's CPU in this way, then Bochs, which emulates an x86 CPU), Motorola (and therefore IBM, because of the AIM alliance) has been doing this since the PPC 601 (Mac-on-Linux only runs on PPCs, pretty damn obvious here, isn't it?), and it just goes on and on.

    6. Re:IBM also says Screw you to intel by levram2 · · Score: 3, Informative

      Intel has also shown virtual micropartitions, rebooting Windows XP while running a DVD without a hitch. The SMT being added to the Power5 is called Hyperthreading by Intel PR. I hope IBM, Intel, AMD and others keep competing.

    7. Re:IBM also says Screw you to intel by Thaidog · · Score: 3, Informative

      Actually, think MOL Linux running Mac in it's own runtime... at natvie speed. This technology is from the mainframe chips. A hand me down so to speak.

      --

      ||| I still can't believe Parkay's not butter.

  2. Chip design in a nutshell for the lazy: by Anonymous Coward · · Score: 3, Funny

    Cut up a russet potato into thin strips or wedges.

    Fry in oil or bake in oven.

    Salt.

    Enjoy!

    1. Re:Chip design in a nutshell for the lazy: by Lord+Kano · · Score: 2, Funny

      You dumb ass. That's chip fabrication!

      --
      "Hi. This is my friend, Jack Shit, and you don't know him." - Lord Kano
    2. Re:Chip design in a nutshell for the lazy: by bhtooefr · · Score: 2, Funny

      Following those directions is chip fabrication. He just designed a chip, and told you to how to fabricate it.

  3. *sigh* by nocomment · · Score: 2, Insightful

    I still want a PPC ATX board. Pegasos was supposed to deliver, but their boards are still so expensive. :-(

    --
    /* oops I accidentally made a comment, sorry */
    /* http://allyourbasearebelongto.us */
    1. Re:*sigh* by Homology · · Score: 3, Interesting
      I still want a PPC ATX board. Pegasos was supposed to deliver, but their boards are still so expensive. :-(

      Supposed to deliver? OpenBSD people thought that as well, and got the OS running on it. Now OpenBSD consider Pegasos a scam operation and has pulled the support for Pegasos from CVS :

      R.I.P. OpenBSD/Pegasos - All the story

    2. Re:*sigh* by niko9 · · Score: 2, Interesting

      You might just get what you want

      Woudn't it be great to be a able to pick up and ASUS or Epox PowerPC motherboard and run it with a Power970FX?

      One can dream.

  4. Big Endian by nycsubway · · Score: 4, Funny

    I'm not a fan of big endian... or is it little endian... I dont remember, but I do know, if it's backwards, it's backwards because it's reverse of what I'm used to.

    1. Re:Big Endian by Mattintosh · · Score: 5, Informative

      PPC is big endian, which is normal.

      X86 is little endian, which is chunked-up and backwards.

      Example:
      View the stored number 0x12345678.

      Big endian: 12 34 56 78
      Little endian: 78 56 34 12

      Clear as mud?

    2. Re:Big Endian by Erect+Horsecock · · Score: 3, Interesting

      Isn't Motorolas PPC implementation both big and little endian (i think it's called bit flipping) which is what made Virtual PC possible on Macs? I seem to remember an article somewhere about thats why VPC 6 wouldn't run on the G5 since it lacked the dual modes....

      Then again I could be completely wrong.

      --
      I hope you die painfully and alone.
    3. Re:Big Endian by Pius+II. · · Score: 3, Informative

      Motorolas PPC implementation is only partly dual-endian. The G3s are byte-sexual, most G4s are, but some G4 chipsets are not.

    4. Re:Big Endian by Anonymous Coward · · Score: 5, Informative

      Big-endian appeals to people because they learned to do their base-10 arithmetic in big-endian fashion. The most significant digit is the first one encountered. It's habit.

      Little-endian has some nice hardware properties, because it isn't necessary to change the address due to the size of the operand.

      Big Endian:
      uint32 src = 0x00001234; // at address 1000, say
      uint32 dst1 = src; // fetch from 1000 to get 00001234
      uint16 dst2 = src; // fetch from 1000 + 2 to get 1234

      Little Endian:
      uint32 src = 0x00001234; // at address 1000, say
      uint32 dst1 = src; // fetch from 1000
      uint16 dst2 = src; // fetch from 1000

      The processor doesn't have to modify register values and funk around with shifting the data bus to perform different read and write sizes with a little-endian design. Expanding the data to 64 bits has no effect on existing code, whereas the big-endian case will have to change all the pointer values.

      To me, this seems less "chunked up" than big endian storage, where you have to jump back and forth to pick out pieces.

      In any event, it seems unnecessary to use prejudicial language like "normal" and "chunked up". It's just another way of writing digits in an integer. Any competent programmer should be able to deal with both representations with equal facility.

      Being unable to deal with little-endian representation is like being unable to read hexadecimal and insisting all numbers be in base-10 only. (Dotted-decimal IP numbers, anyone?)

      Big-endian has one big practical advantage other than casual programmer convenience. Many major network protocols (TCP/IP, Ethernet) define the network byte order as big-endian.

    5. Re:Big Endian by karlm · · Score: 4, Informative
      What kind of strange CPU implementation modifies register values when addressing sub-word vlaues? This is done most commonly by the programmer at write-time, (or maybe by some strange compiler or assembler at compile-time). This is not a hardware advantage in any architecture I'm aware of. Are you perhaps talking about extra hardware burden associated with unaligned memory access? Unaligned memory access is not a consequence of byte ordering.

      One more big advantage of the big-endian byte order is that 64-bit big-endian CPUs can do string comparisons 8 bytes at a time. This is a big advantage where the length of the strings is known (Java strings, Pascal strings, burrows-wheeler transform for data compression) and still an advantage for null-terminated strings.

      I'm not aware of any such performance advantages for the little-endian byte order.

      The main advantage of little-endian byte order is ease of modifying code written in assembly or raw opcodes if you later decide to change your design and go with larger or smaller data fields. The main uses for assembly programming are very low-level kernel programming (generally the most stable part of the kernel code base) and performace enhancement of small snippets of code that have been well tested and profiled and are unlikely to change a lot.

      I agree that an decent programmer should be able to deal with either endianess, but the advantages of the little-endian byte order seem to be becoming less and less relevant.

      --
      Copyright Violation:"theft, piracy"::Anti-Trust Violation:"thermonuclear price terrorism"<-Overly dramatic language.
  5. Guide to the PowerPC architecture by Anonymous Coward · · Score: 5, Informative

    They also have a very good article about the PowerPC's three instruction levels and how to use implementation-specific deviations, while code stays compatible. This introduction to the PowerPC application-level programming model will give you an overview of the instruction set, important registers, and other details necessary for developing reliable, high performing PowerPC applications and maintaining code compatibility among processors.

    1. Re:Guide to the PowerPC architecture by Pope · · Score: 2, Informative

      The 604 had better floating point performance than the 601, so a number of audio apps I used to use had different specific versions that were installed when the installer ran.

      You'd go into its folder and see "Peak (604)" or "Deck II (604)" to let you know that it was going to use your particular processor to its best performance.

      --
      It doesn't mean much now, it's built for the future.
  6. Nice 42 year backward compatibility by JohnGrahamCumming · · Score: 4, Insightful
    From TFA:
    "Today's IBM mainframes still maintain backwards-compatibility with that revolutionary 1962 instruction set."
    Good plan then, Intel, on that whole Itanium mess.

    John.

  7. Interesting quote from the article by alispguru · · Score: 4, Funny
    Buried in the middle of a section talking about CMOS, we find this:

    Thus, in the days when computing was still so primitive that people thought that digital watches were a neat idea, it was CMOS chips that powered them.

    You find Douglas Adams fans all over, don't you?
    --

    To a Lisp hacker, XML is S-expressions in drag.
  8. Obligatory Quote of the Day by crumbz · · Score: 5, Funny

    "Finally, the Fishkill operation is so hip that the server room runs exclusively on Linux."

    I didn't think it was possible to use the words "Fishkill" and "hip" in the same sentence with a straight face.

  9. Re:Motorola by Kiryat+Malachi · · Score: 3, Informative

    Motorola didn't give up on PPC.

    They gave up on desktop PPC. They still do a lot of new PPCs, just working on improving MIPS/watt instead of pure MIPS. Embedded space is a lot higher volume and bigger profit than Apple.

    --

    ---
    Mod me down, you fucking twits. Go ahead. I dare you.
    (I read with sigs off.)
  10. Power PC was the death of the MIPS processor by MrIrwin · · Score: 3, Insightful
    Not that it was necessarily a bad think, but with the PowerPC came a whole new generation of workstation.


    Gone where the intelligent disk and network subsystems. No more die cast aluminimum chassis.


    Whilst I can understand in some sectors the incessant drive for highest MIPS per $, is there not also a place for bullet proof proven technology?

    --

    And if you thought that was boring you obviously havn't read my Journal ;-)

  11. Yeah, I remember by Anonymous Coward · · Score: 4, Interesting

    back in 94 or so, when the AIM were predicting that they were going to completely obliterate the x86 in a few years. Anyone still have those neat graphs that showed exactly where Intel would hopelessly fall behind while PPC would accellerate exponentially into the atmosphere?

    1. Re:Yeah, I remember by Billly+Gates · · Score: 4, Informative

      Yes

      What Intel did was include RISC architecture in around the x86 instruction set to create the pentium pro, pentium II, III, etc. Otherwise they would have been killed.

      Infact IBM was correct. Cisc was dying. THe pentium1 could not compete agaisnt the powerpc unless it had a very high clock speed. All chips today are either pure risc or a hybrid cisc/risc like todays Althons/Pentium's. The exception is the nasty Itanium which is not doing too well

    2. Re:Yeah, I remember by Bert64 · · Score: 2, Insightful

      Well Motorola hoped the PPC would be the successor to the M68k, a very successfull processor that was very widely used, easy to program for and very good for learning assembly on.

      --
      http://spamdecoy.net - free throwaway anonymous email - avoid spam!
  12. Nice PowerPC Roadmap by bcolflesh · · Score: 4, Informative

    Motorola has a nice overview graphic - you can also checkout a more generalized article at The Star Online.

  13. So what HDL do they use? by exp(pi*sqrt(163)) · · Score: 2, Interesting

    VHDL, Verilog, something else entirely?

    --
    Doesn't it make you feel good to know that our freedoms are protected by politicans, lawyers and journalists.
    1. Re:So what HDL do they use? by sam_van · · Score: 4, Informative

      When I was working on the embedded IBM PowerPCs (400 series), we used Verilog primarily...though there were a few VHDL hold-outs.

      --
      Thinking of starting a business in Minnesota? Me too! mnsmall.biz
  14. One of the coolest things about PowerPC chips by Anonymous Coward · · Score: 5, Funny

    Is its revolutionary three level cache architecture, utilising a 3-way 7 set-transitive cache structure, which gives performance equivalent to a 2-level traditional x86 style cache for more content addressable memory. Each processor has a direct triple-beat burstless fly-by cache gate interface capable of fourteen sequential memory write cycles, including read/write-back and speculative write-thru on both the instruction and data caches. Instruction post-fetch, get-post, roll-forward and cipher3 registers further enhance instruction cache design, and integrated bus snooping guarantees cache coherency on all power PC devices with software intervention. Special cache control and instructions were necessary to control this revolutionary design, such as 'sync', which flushes the cache, and the ever-popular 'exeio' memory fence-case instruction, named after the line in the popular nursery rhyme.

  15. Both Endians by bsd4me · · Score: 2, Informative

    The PPC ISA has support for both big- and little-endian modes. However, the little-endian mode is a bit screwy. There are some appnotes on the Motorola website on using little-endian mode.

    --

    (S(SKK)(SKK))(S(SKK)(SKK))

  16. Computer history IS IBM-centric by Random+BedHead+Ed · · Score: 4, Insightful

    I don't see how computer history that goes back to the 1960s can fail to be "IBM-centric." Remember, these were the big guys Microsoft was afraid of pissing off in the 1970s and 1980s. No one ever got fired for buying IBM, because they pretty much wrote the book on chip design before Intel hit it big.

    1. Re:Computer history IS IBM-centric by MrIrwin · · Score: 2, Informative
      OTOH it would be difficult to write computer history pre late '60's **with** IBM. Apart from sponsoring the Harvard MK1 they were pretty oblivious to waht computers would do to thier market.

      It was Lyons Tea Shop Company, of all unlikely contenders, who married "electronic programmible devices" to IT.

      Of course when they realised thier mistake they went hell for leather to redress the balance. But...amazingly.....they were totally off the ball **again** with microcomputer technology.

      --

      And if you thought that was boring you obviously havn't read my Journal ;-)

  17. Re:PowerPC in PlayStation 2? Huh? by afidel · · Score: 3, Informative

    The core has a full mips-3 instruction set, with extensions from mips-4 and mips-5
    link

    So yes, it is in a way MIPS derived, but the MIPS core does very little of the actual processing, it's more of a bootloader and I/O coprocessor.

    --
    There are 4 boxes to use in the defense of liberty: soap, ballot, jury, ammo. Use in that order. Starting now.
  18. Re:"Chips May Physically Reconfigure Themselves" by Snocone · · Score: 4, Informative

    P.S. Does anyone know why Windows has never been adapted to run under PPC?

    Errm, actually, it WAS. See for instance

    http://home1.gte.net/res008nh/nt/ppc/default.htm

  19. Re:"Chips May Physically Reconfigure Themselves" by sirinek · · Score: 2, Informative

    They did briefly for WinNT 3.51, but then shit-canned it pretty quickly. They had a MIPS version as well, and an Alpha version that lasted even to 4.0 IIRC.

  20. Re:Motorola by Kiryat+Malachi · · Score: 2, Informative

    They're spinning it off, actually, not selling it. Going to be called Freescale Semiconductor.

    So, you could say Motorola is giving up on semiconductors... but the division that worked on the G4 will continue to work on PPC. Just under a different name.

    --

    ---
    Mod me down, you fucking twits. Go ahead. I dare you.
    (I read with sigs off.)
  21. Re:For those who want PPC970 without getting a Mac by Lord+Kano · · Score: 4, Funny

    Geez, I can't believe I'm saying this, but it would be cheaper to just buy a Mac.

    LK

    --
    "Hi. This is my friend, Jack Shit, and you don't know him." - Lord Kano
  22. 200 instructions at once? by Phs2501 · · Score: 4, Insightful
    I think it's quite imprecise writing for the article to state (several times, for POWER4 and the PowerPC 970) that they "can process 200 instructions at once at speeds of up to 2 GHz." That makes it sound like they can finish 200 instructions at once, which is silly. I imagine what they really mean is that there can be up to 200 instructions in flight in the pipeline at a time.

    (Which is great until you mispredict a branch, of course. :-)

    1. Re:200 instructions at once? by Abcd1234 · · Score: 4, Informative

      Yeah. It's a good thing that the processors in the POWER line has unbelievable branch prediction logic. So, for example, the branch prediction rate for the POWER 4 is in the mid to high 90 percentile for most workloads (as high as 98%, IIRC) In fact, quite a large number of transitors are dedicated to this very topic, which allows the processor to do a pretty good job of achieving something close to it's theoretical IPC.

      Although, it should be noted that the pipeline depth for the POWER4 is just 15 stages (as opposed to the P4 which has, IIRC, 28 stages), so while a branch misprediction is quite bad, it's not as bad as some architectures. My understanding is that, in order to achieve that 200 IPC number, the POWER4 is just a very wide superscalar architecture, so it simply reorders and executes a lot of instructions at once. Plus, that number may in fact be 200 micro-ops per second, as opposed to real "instructions" (although, that's just speculation on my part... it's been quite a while since I read up on the POWER4), as the POWER4 has what they term a "cracking" stage, similar to most Intel processors, where the opcodes are broken down into smaller micro-ops for execution.

  23. Well sort of by Erect+Horsecock · · Score: 4, Informative

    It's actually closer to Intel's Vanderpool technology that allows you to partition the cpu through firmware.

    Example: Windows is running on slice 1, BSD on slice 2, and Linux on slice 3.

    BSD gets a kernel panic and crashes, the slice is restarted without affecting the remaining running OS's. It's, for the lack of a better term, Hyperthreading for the whole computer.

    --
    I hope you die painfully and alone.
  24. Re:For those who want PPC970 without getting a Mac by Morologous · · Score: 5, Informative

    Or, you could always settle for an RS/6000.

    RS/6000

    Or, a Power-based IBM workstation,

    Workstation

  25. Sounds fishy to me... by geoswan · · Score: 4, Interesting

    ...Even x86 chip manufacturers, which continued for quite a time to produce CISC chips, have based their 5th- and 6th-generation chips on RISC architectures and translate x86 opcodes into RISC operations to make them backwards-compatible...

    Maybe this is a sign that it has been too long since I learned about computer architecture, but is it really fair to call a CPU that has a deep pipeline, a crypto-RISC CPU?

    When my buddy first told me about this exciting new RISC idea one of the design goals was each instruction was to take a single instruction cycle to execute. Isn't this completely contrary to a deep pipeline? The Pentium 4 has a 20-stage pipeline IIRC.

    Was I wrong to laugh when I heard hardware manufacturers claim, "sure, we make a CISC, but it has RISC-like elements .

    What I am reminded of is the change in how musicians are classified. When I grew up rock music was just about all that young people listened to. Rap and punk music had never been heard of. And country music was considered incredibly uncool. Now country music's coolness factor has grown considerably. And a strange thing has happened. Lots of artists who were unquestionably considered in the Rock camp back then, like Neil Young, or Credence Clearwater, are now classified as Country music, as if they had never been anything else.

    It has been a long time, but I remember learning in my computer architecture course about wide microcode instruction words, and narrow microcode instruction words. Wide microcode instruction words allowed the CPU to do more operations in parallel. Ie. the opposite of a RISC. So, I ask in perfect ignorance -- how wide are the Pentium 4 and Athlon microcode?

    If I am not mistaken the Transmeta was a very wide instruction word. And if I am not mistaken, doesn't that make it the opposite of a RISC?

    1. Re:Sounds fishy to me... by Zo0ok · · Score: 2, Informative

      The concept of RISC (that each instruction takes one cycle) is what makes pipelining possible in the first place. If you have instructions that take 2-35 cycles to execute its very hard to produce an efficient pipeline.

      Also, things like Out-of-order-execution and Branch-prediction makes more sense for a RISC instruction set (so I was told ;).

      But I more or less agree with you that a long pipeline is somewhat contradictory to the idea of RISC.

    2. Re:Sounds fishy to me... by Steveftoth · · Score: 3, Informative

      When my buddy first told me about this exciting new RISC idea one of the design goals was each instruction was to take a single instruction cycle to execute. Isn't this completely contrary to a deep pipeline? The Pentium 4 has a 20-stage pipeline IIRC.
      Not really, the idea is to make every instruction simple.
      Reduced Instruction Set Computer
      The side effects of this are that every instruction can be the same length thus simplifying the complex decoding process of a CPU.
      x86 can be multiple bytes in length, while all PPC (and most RISC) instructions are all 32 bits long (yes even the PPC-64 instructions).
      the simplified insruction set allows for more instructions to be processed in less cycles, but generally you need more instructions to do the same thing. Since it's easier to decode the PPC instructions, it's also easier to pipeline them, easier to do superscalar cores (since less transistors are required to do the same thing).

      This doesn't always translate into more performance since RISC computers generally need more memory (the code is less dense) and thus more bandwidth to achieve the same performance sometimes. While some x86 instructions are hard to crack for the decoder, the savings in memory to store the instruction can make it worthwhile to do.

      If I am not mistaken the Transmeta was a very wide instruction word. And if I am not mistaken, doesn't that make it the opposite of a RISC?

      Yep, but the problem is that you're asking the compiler to extract the parrallelism from the instruction stream, which is not always possible. Usually, there is more thread level parallelism then instruction level parallslism.

    3. Re:Sounds fishy to me... by Zathrus · · Score: 4, Informative

      When my buddy first told me about this exciting new RISC idea one of the design goals was each instruction was to take a single instruction cycle to execute. Isn't this completely contrary to a deep pipeline?

      No, in fact pipelining is central to the entire concept of RISC.

      In traditional CISC there was no pipelining and operations could take anywhere from 2-n cycles to complete -- at the very least you would have to fetch the instruction (1 cycle) and decode the instruction (1 cycle; no, you can't decode it at the same time you fetch it -- you must wait 1 cycle for the address lines to settle, otherwise you cannot be sure of what you're actually reading). If it's a NOOP, there's no operation, but otherwise it takes 1+ cycles to actually execute -- not all operators ran in the same amount of time. If it needs data then you'd need to decode the address (1 cycle) and fetch (1 cycle -- if you're lucky). Given that some operators took multiple operands you can rinse and repeat the decode/fetch several times. Oh, and don't forget about the decode/store for the result. So, add all that up and you could expect an average instruction to run in no less than 7-9 cycles (fetch, decode, fetch, decode, execute, decode, store). And that's all presuming that you have a memory architecture that can actually produce instructions or data in a single clock cycle.

      In RISC you pipeline all of that stuff and reduce the complexity of the instructions so that (optimally) you are executing 1 instruction/cycle as long as the pipelines are full. You have separate modules doing the decodes, fetches, stores, etc. (and in deep-pipeline architectures, like the P4, these steps are broken up even more). This lets you pump the hell out of the clockrate since there's less for each stage of the pipeline to actually do.

      Modern CPUs have multiple everything -- multiple decoders, fetchers, execution units, etc. so it's actually possible to execute >1 cycle/cycle. Of course, the danger to the pipelining is that if you branch (like when a loop runs out or an if-then-else case) then all those instructions you've been decoding go out the window and you have to start all over from wherever the program is now executing (this is called a pipeline stall and is very costly; once you consider the memory delays it can cost hundreds of cycles). Branch prediction is used to try and mitigate this risk -- generally by executing both branches at the same time and only keeping the one that turns out to be valid.

      Was I wrong to laugh when I heard hardware manufacturers claim, "sure, we make a CISC, but it has RISC-like elements .

      Yes, because neither one exists anymore. CISC absorbed useful bits from RISC (like cache and pipelining) and RISC realized there was more to life than ADD/MUL/SHIFT/ROTATE (oversimplification of course). The PowerPC is allegedly a RISC chip, but go check on how many operators it actually has. And note that not all of them execute in one cycle. x86 is allegedly CISC, but, well... read on.

      how wide are the Pentium 4 and Athlon microcode?

      The x86 ISA has varying width. It's one of the many black marks against it. Of course, in reality, the word "microcode" isn't really applicable to most CPUs nowadays -- at least not for commonly used instructions. And to further muddy the picture both AMD and Intel don't actually execute x86 ISA. Instead there's a translation layer that converts x86 into a much more RISC-y internal ISA that's conducive to running at more than a few megahertz. AFAIK, the internal language is highly guarded by both companies.

      If I am not mistaken the Transmeta was a very wide instruction word. And if I am not mistaken, doesn't that make it the opposite of a RISC?

      Transmeta and Intel's Itanium use VLIW (very large instruction word) computing, which is supposed to make the hardware capable of executing multiple dependant or independant operations in one cycle. It does so by putting the onus on the compiler

  26. Re:"Chips May Physically Reconfigure Themselves" by bhtooefr · · Score: 2, Informative

    They actually didn't shit-can it until NT4. The MIPS version (AFAIK) got shit-canned as 2000 went into alpha, and Alpha got shit-canned as 2000 was coming out of alpha. Itanium came into the picture between Whistler (AKA WinXP) alphas and W2K final, and some W2K Itanium alphas exist (they obviously got shit-canned, and the tech went into WinXP 64-bit for IA64).

  27. I like this quote by Zo0ok · · Score: 4, Insightful
    The 64-bit PowerPC 970, a single-core version of the POWER4, can process 200 instructions at once at speeds of up to 2 GHz and beyond -- all while consuming just tens of watts of power. Its low power consumption makes it a favorite with notebooks and other portable applications on the one hand, and with large server and storage farms on the other.

    Can anyone tell me where I can buy a G5 laptop?

  28. MVS... by DAldredge · · Score: 2, Informative

    Yea, IBM is a little late to the virtual processor market. About -10 to -20 years.

    Damn them! Dam them to HELL!!!!

  29. Re:Motorola by Gizzmonic · · Score: 4, Interesting

    I've seen this myth repeated again and again, usually in conjunction with conspiracy theories like "Motorola quit developing the G4 to hurt Apple".

    1) 80% of all G4s sold have gone to Apple. So targetting the larger embedded market is a marketing excuse, a failure, or both.

    2)Motorola's fabrication facilities have been in horrendous shape for at least 4 years. High failure rates, In one location, they even quit running the fans to "save energy."

    3)Motorola has failed to advance in the embedded world as well. TiVO and many others are switching from PPC to MIPS because Motorola's stuff is not moving forward.

    4)Brain-drain and 'Dilbert syndrome' have plagued Motorola's CPU division since Apple killed the clones in 1997. They are spinning off that part of their business, but there's no indication that the situation has improved.

    --
    (-1, Raw and Uncut is the only way to read)
  30. On a similar note... by kyoko21 · · Score: 2, Interesting

    IBM announced today that they will be offering more information on the architecture of its PowerPC and Power server chips to device makers and software developers. First software with Linux, and now hardward with their own Power Line. If intel can only do this for the Centrino line. :-/

  31. Don't ignore integer sizes! by Dog135 · · Score: 5, Insightful

    Expanding the data to 64 bits has no effect on existing code, whereas the big-endian case will have to change all the pointer values

    So, you're reading in an array of integers, which are now 64 bit vs 32 bit and no code change is needed?

    Programs NEED to know the size of the data they're working with. Simply pulling data from an address without caring for it's size is a recipee for disaster!

    --
    "That's so plausible, I can't believe it!" - Leela
  32. G5 laptop? by DreadSpoon · · Score: 2, Funny

    Can anyone tell me where I can buy a G5 laptop?

    Sure! Send me your CC info and I promise I'll send you a G5 laptop! I'm also selling Playstation 5s.

  33. Re:For those who want PPC970 without getting a Mac by mdw2 · · Score: 2, Funny

    Gotta love the "Add to Cart" buttons on the POWER 275 workstation page :)

    --
    This sig intentionally left blank.
  34. This is revolutionary: Self-evolving machines. by Toe,+The · · Score: 2, Interesting
    I figured /. would have a lot more discussion of the Terminator-like aspects of today's announcement.

    Did you read this? Look at the second-to-last paragraph:

    "...IBM is working on future Power chips that can physically reconfigure themselves -- adding memory or accelerators, for example -- to optimize performance or power utilization for a specific application."

    That is the first step in self-evolving machines.

    Yes, it is a minor step, but it is a friggin first step, OK? If they can pull this off, they are creating machines with the ability to adapt and evolve.

    This is what I would call artificial life. Once that step is taken, it's only a matter of time before the machines start evolving themselves.

    P.S. Now think about the kinds of viruses that could happen in that environment.

  35. The complete history by dncsky1530 · · Score: 2, Interesting

    I found this site a couple years ago, and i'm sure everyone has heard of it, but just in case: apple-history.com

  36. Re:About My Resume... by Wudbaer · · Score: 2, Informative

    Points taken, but I think they owe(d) this more to their absolutely overwhelming market presence and domination (as well as doing things like calling your boss to make sure you get fired for not buying IBM) than their supreme marketing. For a long time, for people computers was IBM. IBM always was there, and everyone thought they would stick around as they always would, unchanged, untouched, invincible. Their style of selling apparently was more something like shock and awe with sales people, threats and promises, one-to-one, than marketing as it is usually done.

    Then came the PC, Unix, the fiascos with OS/2 (especially OS/2 marketing was pretty bad) and Microchannel, and IBM changed. They certainly still are one of (if not even the) largest, but they are only a shadow of their former might and the terror they could inflict on people daring to not choose IBM.

  37. VLIW is very impressive. by Schlaefer · · Score: 2, Informative

    In the dsp range vliw gets more attention. Take the TI C6000 serie for example. Pure VLIW (8 instruction/cycle for the 8 exec-units) Risc (dedicated load-store arch. etc.) with no pipeline interlock and a very short pipelines you have impressive performance at low cycles/s. In addition you have the advantace off compile ones and have a dedicatet behavior at runtime. Unlike cisc cpus which have to rearange the instructions at runtime you can (if you want) literaly move at compile time any the assembler instruction to the cycle/exec.-unit you want at runtime. Schlaefer i'm sorry for my poor engl.

  38. Re:Too scary! by Feynman · · Score: 2, Informative
    What kind of design tools did you use?

    Mostly IBM-developed schematic capture, simulation, and physical design tools. I also did some work on test structure verification using an IBM-designed tool.

    Tools available in the current ASIC methodology are on the IBM website. Some of these would have been used back then, too.

  39. Impressive by 1000101 · · Score: 2, Informative
    "What do the Nintendo GameCube's Gekko, Transmeta's first Crusoe chips, Cray's X1 supercomputer chips, Xilinx Virtex-II Pro processors, Agilent Tachyon chips, and the next-generation Microsoft XBox processors-which-have-yet-to-be-named all have in common? All of them were or will be manufactured by IBM."

    That's quite impressive. Throw the 970 in that mix and it's even more impressive. The bottom line is that Intel isn't alone at the top of the mountain when it comes to producing high quality, fast, and reliable chips. On a side note, as a soon-to-be-graduating CS major, I dream about working at a place like IBM.

  40. Re:Motorola by mrand · · Score: 2, Informative
    As much as it pains me to, I must agree with your general theme that something is missing in Motorola's processor development. As a embedded hardware engineer, I've watched them stumble over themselves time and again on the PowerQUICC II:

    - Just last year they reached core speeds they promised back in 2000 (or was it 1999?).

    - PCI support was two years late (or was it three)?

    - Power dissipation has been higher than expected.

    - Some clock speeds require you to run a different voltage, while other other clock speeds don't work at all (if you use certain clock multipliers).

    We still actively design in their parts because they are a perfect fit, but we don't trust them to deliver their next feature on time (last Oct they promised the 8270 and related devices would be in production by December... here we are in March and now they are promising May). I hope they can get their act together, cause when they finally release a product, it works like a hose.

    --
    -- PGP keyID: 0x4C95994D