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;

      

🧠 지식 테스트

1 / 1

🧒 5살도 이해할 수 있게 설명

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.

📚 출처