What is risc-vs-cisc?
Two different approaches to instruction set architecture (ISA) design.
RISC (Reduced Instruction Set Computer) focuses on a small, highly optimized set of instructions that can be executed quickly (usually in one clock cycle). CISC (Complex Instruction Set Computer) focuses on a wider set of more complex instructions, some of which may perform multiple operations in a single instruction.
graph LR
Center["What is risc-vs-cisc?"]:::main
Rel_x86_architecture["x86-architecture"]:::related -.-> Center
click Rel_x86_architecture "/terms/x86-architecture"
Rel_microservices["microservices"]:::related -.-> Center
click Rel_microservices "/terms/microservices"
Rel_pipelining["pipelining"]:::related -.-> Center
click Rel_pipelining "/terms/pipelining"
classDef main fill:#7c3aed,stroke:#8b5cf6,stroke-width:2px,color:white,font-weight:bold,rx:5,ry:5;
classDef pre fill:#0f172a,stroke:#3b82f6,color:#94a3b8,rx:5,ry:5;
classDef child fill:#0f172a,stroke:#10b981,color:#94a3b8,rx:5,ry:5;
classDef related fill:#0f172a,stroke:#8b5cf6,stroke-dasharray: 5 5,color:#94a3b8,rx:5,ry:5;
linkStyle default stroke:#4b5563,stroke-width:2px;
🧠 Test de connaissances
🧒 Explique-moi comme si j'avais 5 ans
RISC is like a chef who only has a few simple tools (knife, spoon) but uses them incredibly fast to do everything. CISC is like a chef with 500 specialized gadgets (egg slicer, avocado masher) that can do one complex thing perfectly in one go.
🤓 Expert Deep Dive
RISC architectures (like ARM and RISC-V) favor energy efficiency and simpler hardware. CISC architectures (like x86) allow for denser code but require complex internal microcode to translate complex instructions into simpler micro-ops.