Slashdot Mirror


Nvidia Waiting In the Wings In FTC-Intel Dispute

The NY Times has a Bits Blog piece speculating on some of the fallout if the FTC prevails in its anti-competition lawsuit against Intel. The Times picks out two among the 26 remedies proposed by the regulator, and concludes that they add up to Nvidia being able to license x86 technology. This could open up 3-way competition in the market for combined CPU-graphics chips. There is a good deal of circumstantial evidence pointing to the possibility that Nvidia has been working on x86 technology since 2007, including the presence on its employment rolls of more than 70 former Transmeta workers.

1 of 143 comments (clear)

  1. Re:Is x86 shit? by SpazmodeusG · · Score: 5, Insightful

    It's just an instruction set.

    The modern CPUs you call x86s use a non-x86 core with an instruction decoder bolted on to make it run the x86 instruction set. It has been that way since the Pentium Pro, the NextGen chips and the AMD K5.
    The AMD K5 in particular was pretty much identical to the Am29000 RISC processor. AMD just put a decoder on it and sold it as an x86.

    CISC type instruction sets are considered to be the most optimal for code density (better cache and memory usage). So we pretty much have the best of both worlds. The instruction set is CISC so we get the memory benefits and the code is run as RISC via an instruction decoder which makes it easier to pipeline and for parallelism.