Tagged articles
4 articles
Page 1 of 1
IT Services Circle
IT Services Circle
May 9, 2026 · Fundamentals

What Your CPU Actually Does All Day: The Four Core Tasks

The article explains that a CPU continuously repeats four stages—fetch, decode, execute, and write‑back—while highlighting the role of registers, the differences between CISC and RISC instruction sets, how function calls build and tear down stack frames, and why user‑mode coroutines are far lighter than kernel threads.

ARMCPUCoroutines
0 likes · 28 min read
What Your CPU Actually Does All Day: The Four Core Tasks
Test Development Learning Exchange
Test Development Learning Exchange
Mar 3, 2025 · Fundamentals

Understanding Function Calls and References in Python

This article explains the core concepts of function calls and references in Python, covering basic definitions, common calling methods, advanced applications such as passing functions as arguments, returning functions, using functions as objects, and includes numerous code examples illustrating direct calls, indirect calls, decorators, closures, and callbacks.

Function CallsFunction ReferencesHigher-Order Functions
0 likes · 9 min read
Understanding Function Calls and References in Python
Tencent Cloud Developer
Tencent Cloud Developer
Dec 21, 2022 · Backend Development

Function Call Mechanisms in Go and Performance Optimization

The article explains Go’s caller‑callee model, stack‑frame layout, and how parameter and return‑value passing shifted in Go 1.17.1—using registers for up to nine arguments or results and the stack for any beyond—highlighting the impact on performance and optimization.

Backend DevelopmentFunction CallsGo
0 likes · 24 min read
Function Call Mechanisms in Go and Performance Optimization
IT Services Circle
IT Services Circle
Apr 6, 2022 · Fundamentals

Understanding Function Calls and Stack Frames in Memory

This article explains how function calls are implemented using a stack‑based memory model, describing stack frames, the role of base and stack pointer registers, and the assembly instructions that create and dismantle these frames during program execution.

AssemblyC programmingFunction Calls
0 likes · 7 min read
Understanding Function Calls and Stack Frames in Memory