Processor design

Processor design is a subfield of computer science and computer engineering (fabrication) that deals with creating a processor, a key component of computer hardware.

The design process involves choosing an instruction set and a certain execution paradigm (e.g. VLIW or RISC) and results in a microarchitecture, which might be described in e.g. VHDL or Verilog. For microprocessor design, this description is then manufactured employing some of the various semiconductor device fabrication processes, resulting in a die which is bonded onto a chip carrier. This chip carrier is then soldered onto, or inserted into a socket on, a printed circuit board (PCB).

The mode of operation of any processor is the execution of lists of instructions. Instructions typically include those to compute or manipulate data values using registers, change or retrieve values in read/write memory, perform relational tests between data values and to control program flow.

Processor designs are often tested and validated on one or several FPGAs before sending the design of the processor to a foundry for semiconductor fabrication.[1]

Details

Basics

CPU design is divided into multiple components. Information is transferred through datapaths (such as ALUs and pipelines). These datapaths are controlled through logic by control units. Memory components include register files and caches to retain information, or certain actions. Clock circuitry maintains internal rhythms and timing through clock drivers, PLLs, and clock distribution networks. Pad transceiver circuitry with allows signals to be received and sent and a logic gate cell library which is used to implement the logic. Logic gates are the foundation for processor design as they are used to implement most of the processor's components.[2]

CPUs designed for high-performance markets might require custom (optimized or application specific (see below)) designs for each of these items to achieve frequency, power-dissipation, and chip-area goals whereas CPUs designed for lower performance markets might lessen the implementation burden by acquiring some of these items by purchasing them as intellectual property. Control logic implementation techniques (logic synthesis using CAD tools) can be used to implement datapaths, register files, and clocks. Common logic styles used in CPU design include unstructured random logic, finite-state machines, microprogramming (common from 1965 to 1985), and Programmable logic arrays (common in the 1980s, no longer common).

Implementation logic

Device types used to implement the logic include:

A CPU design project generally has these major tasks:

Re-designing a CPU core to a smaller die area helps to shrink everything (a "photomask shrink"), resulting in the same number of transistors on a smaller die. It improves performance (smaller transistors switch faster), reduces power (smaller wires have less parasitic capacitance) and reduces cost (more CPUs fit on the same wafer of silicon). Releasing a CPU on the same size die, but with a smaller CPU core, keeps the cost about the same but allows higher levels of integration within one very-large-scale integration chip (additional cache, multiple CPUs or other components), improving performance and reducing overall system cost.

As with most complex electronic designs, the logic verification effort (proving that the design does not have bugs) now dominates the project schedule of a CPU.

Key CPU architectural innovations include index register, cache, virtual memory, instruction pipelining, superscalar, CISC, RISC, virtual machine, emulators, microprogram, and stack.

Micro-architectural concepts

Research topics

A variety of new CPU design ideas have been proposed, including reconfigurable logic, clockless CPUs, computational RAM, and optical computing.

Performance analysis and benchmarking

Benchmarking is a way of testing CPU speed. Examples include SPECint and SPECfp, developed by Standard Performance Evaluation Corporation, and ConsumerMark developed by the Embedded Microprocessor Benchmark Consortium EEMBC.

Some of the commonly used metrics include:

  • Instructions per second - Most consumers pick a computer architecture (normally Intel IA32 architecture) to be able to run a large base of pre-existing pre-compiled software. Being relatively uninformed on computer benchmarks, some of them pick a particular CPU based on operating frequency (see Megahertz Myth).
  • FLOPS - The number of floating point operations per second is often important in selecting computers for scientific computations.
  • Performance per watt - System designers building parallel computers, such as Google, pick CPUs based on their speed per watt of power, because the cost of powering the CPU outweighs the cost of the CPU itself.[3][4]
  • Some system designers building parallel computers pick CPUs based on the speed per dollar.
  • System designers building real-time computing systems want to guarantee worst-case response. That is easier to do when the CPU has low interrupt latency and when it has deterministic response. (DSP)
  • Computer programmers who program directly in assembly language want a CPU to support a full featured instruction set.
  • Low power - For systems with limited power sources (e.g. solar, batteries, human power).
  • Small size or low weight - for portable embedded systems, systems for spacecraft.
  • Environmental impact - Minimizing environmental impact of computers during manufacturing and recycling as well during use. Reducing waste, reducing hazardous materials. (see Green computing).

There may be tradeoffs in optimizing some of these metrics. In particular, many design techniques that make a CPU run faster make the "performance per watt", "performance per dollar", and "deterministic response" much worse, and vice versa.

Markets

There are several different markets in which CPUs are used. Since each of these markets differ in their requirements for CPUs, the devices designed for one market are in most cases inappropriate for the other markets.

General purpose computing

As of 2010, in the general-purpose computing market, that is, desktop, laptop, and server computers commonly used in businesses and homes, the Intel IA-32 and the 64-bit version x86-64 architecture dominate the market, with its rivals PowerPC and SPARC maintaining much smaller customer bases. Yearly, hundreds of millions of IA-32 architecture CPUs are used by this market. A growing percentage of these processors are for mobile implementations such as netbooks and laptops.[5]

Since these devices are used to run countless different types of programs, these CPU designs are not specifically targeted at one type of application or one function. The demands of being able to run a wide range of programs efficiently has made these CPU designs among the more advanced technically, along with some disadvantages of being relatively costly, and having high power consumption.

High-end processor economics

In 1984, most high-performance CPUs required four to five years to develop.[6]

Scientific computing

Scientific computing is a much smaller niche market (in revenue and units shipped). It is used in government research labs and universities. Before 1990, CPU design was often done for this market, but mass market CPUs organized into large clusters have proven to be more affordable. The main remaining area of active hardware design and research for scientific computing is for high-speed data transmission systems to connect mass market CPUs.

Embedded design

As measured by units shipped, most CPUs are embedded in other machinery, such as telephones, clocks, appliances, vehicles, and infrastructure. Embedded processors sell in the volume of many billions of units per year, however, mostly at much lower price points than that of the general purpose processors.

These single-function devices differ from the more familiar general-purpose CPUs in several ways:

  • Low cost is of high importance.
  • It is important to maintain a low power dissipation as embedded devices often have a limited battery life and it is often impractical to include cooling fans.
  • To give lower system cost, peripherals are integrated with the processor on the same silicon chip.
  • Keeping peripherals on-chip also reduces power consumption as external GPIO ports typically require buffering so that they can source or sink the relatively high current loads that are required to maintain a strong signal outside of the chip.
    • Many embedded applications have a limited amount of physical space for circuitry; keeping peripherals on-chip will reduce the space required for the circuit board.
    • The program and data memories are often integrated on the same chip. When the only allowed program memory is ROM, the device is known as a microcontroller.
  • For many embedded applications, interrupt latency will be more critical than in some general-purpose processors.

Embedded processor economics

The embedded CPU family with the largest number of total units shipped is the 8051, averaging nearly a billion units per year.[7] The 8051 is widely used because it is very inexpensive. The design time is now roughly zero, because it is widely available as commercial intellectual property. It is now often embedded as a small part of a larger system on a chip. The silicon cost of an 8051 is now as low as US$0.001, because some implementations use as few as 2,200 logic gates and take 0.4730 square millimeters of silicon.[8][9]

As of 2009, more CPUs are produced using the ARM architecture family instruction sets than any other 32-bit instruction set.[10][11] The ARM architecture and the first ARM chip were designed in about one and a half years and 5 human years of work time.[12]

The 32-bit Parallax Propeller microcontroller architecture and the first chip were designed by two people in about 10 human years of work time.[13]

The 8-bit AVR architecture and first AVR microcontroller was conceived and designed by two students at the Norwegian Institute of Technology.

The 8-bit 6502 architecture and the first MOS Technology 6502 chip were designed in 13 months by a group of about 9 people.[14]

Research and educational CPU design

The 32-bit Berkeley RISC I and RISC II processors were mostly designed by a series of students as part of a four quarter sequence of graduate courses.[15] This design became the basis of the commercial SPARC processor design.

For about a decade, every student taking the 6.004 class at MIT was part of a team—each team had one semester to design and build a simple 8 bit CPU out of 7400 series integrated circuits. One team of 4 students designed and built a simple 32 bit CPU during that semester.[16]

Some undergraduate courses require a team of 2 to 5 students to design, implement, and test a simple CPU in a FPGA in a single 15-week semester.[17]

The MultiTitan CPU was designed with 2.5 man years of effort, which was considered "relatively little design effort" at the time.[18] 24 people contributed to the 3.5 year MultiTitan research project, which included designing and building a prototype CPU.[19]

Soft microprocessor cores

For embedded systems, the highest performance levels are often not needed or desired due to the power consumption requirements. This allows for the use of processors which can be totally implemented by logic synthesis techniques. These synthesized processors can be implemented in a much shorter amount of time, giving quicker time-to-market.

See also

References

  1. ^ Cutress, Ian (August 27, 2019). "Xilinx Announces World Largest FPGA: Virtex Ultrascale+ VU19P with 9m Cells". AnandTech.
  2. ^ Deschamps, Jean-Pierre; Valderrama, Elena; Terés, Lluís (12 October 2016). Digital Systems: From Logic Gates to Processors. Springer. ISBN 978-3-319-41198-9.
  3. ^ "EEMBC ConsumerMark". Archived from the original on March 27, 2005.
  4. ^ Stephen Shankland (December 9, 2005). "Power could cost more than servers, Google warns". ZDNet.
  5. ^ Kerr, Justin. "AMD Loses Market Share as Mobile CPU Sales Outsell Desktop for the First Time." Maximum PC. Published 2010-10-26.
  6. ^ "New system manages hundreds of transactions per second" article by Robert Horst and Sandra Metz, of Tandem Computers Inc., "Electronics" magazine, 1984 April 19: "While most high-performance CPUs require four to five years to develop, The NonStop TXP processor took just 2+1/2 years -- six months to develop a complete written specification, one year to construct a working prototype, and another year to reach volume production."
  7. ^ Curtis A. Nelson. "8051 Overview" (PDF). Archived from the original (PDF) on 2011-10-09. Retrieved 2011-07-10.
  8. ^ "T8051 Tiny 8051-compatible Microcontroller" (PDF). Archived from the original (PDF) on 2011-09-29.
  9. ^ To figure dollars per square millimeter, see [1], and note that an SOC component has no pin or packaging costs.
  10. ^ "ARM Cores Climb Into 3G Territory" by Mark Hachman, 2002.
  11. ^ "The Two Percent Solution" by Jim Turley 2002.
  12. ^ "ARM's way" 1998
  13. ^ Gracey, Chip. "Why the Propeller Works" (PDF). Archived from the original (PDF) on 2009-04-19.
  14. ^ "Interview with William Mensch". Archived from the original on 2016-03-04. Retrieved 2009-02-01.
  15. ^ C.H. Séquin; D.A. Patterson. "Design and Implementation of RISC I" (PDF). Archived (PDF) from the original on 2006-03-05.
  16. ^ "the VHS". Archived from the original on 2010-02-27.
  17. ^ Jan Gray. "Teaching Computer Design with FPGAs".
  18. ^ Jouppi, N.P.; Tang, J.Y.-F. (October 1989). "A 20-MIPS sustained 32-bit CMOS microprocessor with high ratio of sustained to peak performance". IEEE Journal of Solid-State Circuits. 24 (5): 1348–1359. Bibcode:1989IJSSC..24.1348J. doi:10.1109/JSSC.1989.572612.
  19. ^ "MultiTitan: Four Architecture Papers" (PDF). 1988. pp. 4–5. Archived (PDF) from the original on 2004-08-25.

General references

Read other articles:

Nama ini merupakan sebuah nama Belanda; nama keluarganya adalah van Dijk, bukan Dijk. Virgil van Dijk Van Dijk bersama Liverpool pada 2019Informasi pribadiNama lengkap Virgil van Dijk[1]Tanggal lahir 8 Juli 1991 (umur 32)[2]Tempat lahir Breda, BelandaTinggi 215 cm (7 ft 1 in)[3]Posisi bermain Bek tengahInformasi klubKlub saat ini LiverpoolNomor 4Karier junior2009–2010 Willem II2010–2011 GroningenKarier senior*Tahun Tim Tampil (Gol)2011–2013 Gr...

 

Tempat pemukiman Pecheneg 1015. Pecheneg atau Patzinaks (Turkish: Peçenek(ler)code: tr is deprecated , Hongaria: Besenyő(k)code: hu is deprecated , bahasa Yunani: Πατζινάκοι, Πετσενέγοι, Πατζινακίται, Latin: Pacinacae, Bissenicode: la is deprecated ) adalah bangsa Turkik semi-nomaden di Asia Tengah. Mereka menuturkan bahasa Pecheneg, yang masuk ke dalam rumpun bahasa Turkik. Pranala luar Wikimedia Commons memiliki media mengenai Pechenegs. www.patzinakia....

 

Kepe-kepe merak ekor kuning Chaetodon baronessa Status konservasiRisiko rendahIUCN165692 TaksonomiKerajaanAnimaliaFilumChordataKelasActinopteriOrdoChaetodontiformesFamiliChaetodontidaeGenusChaetodonSpesiesChaetodon baronessa Cuvier, 1829 lbs Kepe-kepe merak ekor kuning ( Chaetodon baronessa ), juga dikenal sebagai kepe merak ekor kuning saja, adalah spesies ikan bersirip pari laut, ikan kepe-kepe milik famili Chaetodontidae . Ditemukan di wilayah Indo-Pasifik Barat tengah dari Kepulauan Cocos...

Glutaraldehida Nama Nama IUPAC (preferensi) Pentanedial[1] Nama lain GlutaraldehidaGlutardialdehidaAsam glutarat dialdehidaGlutarat aldehidaGlutarat dialdehida1,5-Pentanadial Penanda Nomor CAS 111-30-8 Y Model 3D (JSmol) Gambar interaktif 3DMet {{{3DMet}}} ChemSpider 3365 Y DrugBank DB03266 Y Nomor EC KEGG D01120 Y PubChem CID 3485 Nomor RTECS {{{value}}} UNII T3C89M417N Y CompTox Dashboard (EPA) DTXSID6025355 InChI InChI=1S/C5H8O2/c6-4-2-1-3-5-7/h4-5H,1-3H2&...

 

Bupati Timor Tengah UtaraLambang Timor Tengah UtaraPetahanaJuandi Davidsejak 26 Februari 2021Masa jabatan5 tahunDibentuk1958Pejabat pertamaPetrus Canisius Tarcisius SalassaSitus webhttps://ttukab.go.id Berikut daftar Bupati Timor Tengah Utara dari masa ke masa: No. Potret Nama(Masa Hidup) Mulai Menjabat Selesai Menjabat Prd. Jabatan Sebelumnya Wakil Bupati Ket. M.E.Ngefak 1 Januari 1957 20 Desember 1958 Sekretaris Daerah Timor dan Kepulauan SK Gubernur Nusa Tenggara No.494/UP.3/3/41 M.E....

 

Alphonse Beau de Rochas Alphonse Beau de Rochas (9 April 1815 – 27 Maret 1893) adalah insinyur Prancis yang awalnya mengemukakan asas mesin pembakaran dalam empat tak. Pencapaiannya sebagian dalam penekanan pada pentingnya mendinginkan campuran udara-bahan bakar sebelum pemanasan yang sebelumnya diabaikan. Ia mencapainya bersamaan dengan insinyur Jerman Nicolaus Otto. Rujukan Ronald M Dell, David Anthony James Rand (2004). Clean Energy. Royal Society of Chemistry. ISBN 0-85404...

American politician Frank B. KlepperMember of the U.S. House of Representativesfrom Missouri's 3rd districtIn officeMarch 4, 1905 – March 3, 1907Preceded byJohn DoughertySucceeded byJoshua Willis Alexander Personal detailsBorn(1864-06-22)June 22, 1864Cameron, MissouriDiedAugust 4, 1933(1933-08-04) (aged 69)Liberty, MissouriPolitical partyRepublican Frank B. Klepper (June 22, 1864 – August 4, 1933) was a U.S. Representative from Missouri. Born in St. John, Putnam ...

 

لينبروك     الإحداثيات 40°39′30″N 73°40′22″W / 40.6583°N 73.6728°W / 40.6583; -73.6728   [1] تقسيم إداري  البلد الولايات المتحدة[2]  التقسيم الأعلى مقاطعة ناسو  خصائص جغرافية  المساحة 5.215371 كيلومتر مربع5.215708 كيلومتر مربع (1 أبريل 2010)  ارتفاع 6 متر  عدد السكا...

 

Языковая карта Швейцарии Итальянский язык в кантоне Тичино Италья́нская Швейца́рия, или италоязы́чная Швейца́рия (итал. Svizzera italiana, нем. Italienische Schweiz, фр. Suisse italienne, романш. Svizra taliana) — совокупность территорий Швейцарии, где распространён и официально закреплён итальянск�...

Pendudukan Italia di PrancisAmministrazione militare italiana in Francia (Italia)Pendudukan militer Italia1940–1943 Bendera Coat of arms Ibu kotaMentonSejarah • JenisPendudukan militer Era sejarahPerang Dunia II• Invasi Italia 10 Juni 1940• Gencatan senjata Prancis-Italia 24 Juni 1940• Operasi Anton 11 November 1942• Gencatan senjata Cassibile 3 September 1943 Didahului oleh Digantikan oleh 1940:Republik Prancis Ketiga 1942:Prancis Vichy Pendudukan m...

 

Janasuci Nikolaj dari Ohrid dan ŽičaUskup suciLahirNikola Velimirović4 Januari 1881Lelić, SerbiaMeninggal18 Maret 1956(1956-03-18) (umur 75)South Canaan, Pennsylvania, Amerika SerikatDihormati diOrtodoks TimurKanonisasi24 Mei 2003 oleh Gereja Ortodoks SerbiaTempat ziarahBiara Lelić, SerbiaPesta3 Mei (Kalender Julian: 20 Mei)[1][2]AtributBerbusana uskup Nikolaj Velimirović (Kiril Serbia: Николај Велимировић; 4 Januari 1881 [K.J. 23 Desember 188...

 

Political convention 1976 Democratic National Convention1976 presidential election NomineesCarter and MondaleConventionDate(s)July 12–15, 1976CityNew York CityVenueMadison Square GardenKeynote speakerBarbara JordanCandidatesPresidential nomineeJimmy Carter of GeorgiaVice presidential nomineeWalter Mondale of Minnesota‹ 1972 · 1980 › Madison Square Garden was the site of the 1976 Democratic National Convention Barbara Jordan delivering the keynote address on the firs...

This article needs additional citations for verification. Please help improve this article by adding citations to reliable sources. Unsourced material may be challenged and removed.Find sources: Isovitexin – news · newspapers · books · scholar · JSTOR (January 2021) (Learn how and when to remove this message) Isovitexin Names IUPAC name 6-(β-D-Glucopyranosyl)-4′,5,7-trihydroxyflavone Systematic IUPAC name 5,7-Dihydroxy-2-(4-hydroxyphenyl)-6-[(2S,3R,...

 

NinurtaDewa pertanian, perburuan dan perangRelief batu Asiria dari kuil Ninurta di Kalhu, (Austen Henry Layard Monumen Nineveh, Seri kedua, 1853)KediamanKuil Eshumesha di Nippursekarang bernama Kalhu, selama masa AsiriaPlanetSaturnusSimbolBajak dan burung yang bertenggerKendaraanKadang-kadang terlihat mengendarai binatan buas dengan badan singa dan ekor kalajengkingSebagai Ninurta: GulaSebagai Ninĝirsu: BauOrang tuaBiasanya Enlil dan Ninhursag, namun terkadang Enlil dan Ninlil Ninurta (diseb...

 

Lighthouse in Kerala, India LighthouseTangasseri Lighthouse The lighthouse in 2017LocationTangasseri, Kollam, IndiaCoordinates8°52′50″N 76°33′57″E / 8.880691°N 76.565955°E / 8.880691; 76.565955TowerConstructed1902Foundationreinforced concreteConstructionmasonry towerHeight41 metres (135 ft)[1]Shapecylindrical tower with double balcony and lanternMarkingsred and white diagonal stripeLightFocal height42 metres (138 ft) above mean sea lev...

ÁlftanesTown and MunicipalityLocation of the Municipality of ÁlftanesCountry IcelandConstituency[1]SuðvesturkjördæmiRegion[2]HöfuðborgarsvæðiCountyGullbringusýslaMunicipalityÁlftanesPemerintahan • MayorSigurður G. GunnarssonLuas • Total5 km2 (2 sq mi)Populasi (2011) • Total2.484 • Kepadatan472/km2 (1,220/sq mi)Situs webSitus web resmiPostal Codes: 225 Álftanes adalah kota yang terletak d...

 

此條目没有列出任何参考或来源。 (2021年6月16日)維基百科所有的內容都應該可供查證。请协助補充可靠来源以改善这篇条目。无法查证的內容可能會因為異議提出而被移除。 梭发那·富马ເຈົ້າສຸວັນນະພູມາ老挝首相任期1951年11月21日—1954年10月20日前任培·萨纳尼空继任卡代·萨索里特任期1956年3月21日—1958年8月17日前任卡代·萨索里特继任培·萨纳尼空任期1...

 

A tree-climbing lioness in Queen Elizabeth National Park. Tourism in Uganda is focused on Uganda's landscape and wildlife. It is a major driver of employment, investment and foreign exchange, contributing USh 4.9 trillion (US$1.88 billion or €1.4 billion as of August 2013) to Uganda's GDP in the financial year 2012–2013.[1] Tourism can be used to fight poverty in Uganda. There are the tourism companies which employ people directly as drivers, guides, secretaries, accoun...

此條目需要补充更多来源。 (2021年5月1日)请协助補充多方面可靠来源以改善这篇条目,无法查证的内容可能會因為异议提出而被移除。致使用者:请搜索一下条目的标题(来源搜索:每日放送 (韩国) — 网页、新闻、书籍、学术、图像),以检查网络上是否存在该主题的更多可靠来源(判定指引)。 每日放送매일방송國家 韩国开播1995年3月1日口號Opening the world MBN(열�...

 

韦尔万Vervins 法國市镇 徽章韦尔万的位置 韦尔万显示法国的地图韦尔万显示埃纳省的地图坐标:49°50′06″N 3°54′33″E / 49.835°N 3.9092°E / 49.835; 3.9092国家 法國大区 上法蘭西大區省 埃纳省区韦尔万区面积1 • 市镇10.35 平方公里(4.00 平方英里)人口(2021年)[1] • 市镇2,600人 • 密度251人/平方公里(651人/�...