TLB (Translation Lookaside Buffer)

Translation lookaside buffer

A translation lookaside buffer (TLB) is a memory cache that stores recent translations of virtual memory to physical memory, reducing the time taken to access user memory. It is typically found in processors that use paged or segmented virtual memory and can be implemented as content-addressable memory (CAM). When a requested address is present in the TLB, it results in a quick match called a TLB hit, but if the address is not in the TLB, a page walk process is initiated to find the physical address.

1 courses cover this concept

CS 162: Operating Systems and Systems Programming

UC Berkeley

Fall 2022

This course introduces operating systems design and related concepts. It covers topics like memory allocation, file systems, basic networking, transactions, and security. The course requires foundational knowledge in data structures, assembly language, C programming, and debugging. It aims to improve students' skills in debugging large programs and computational problem solving.

No concepts data

+ 49 more concepts