Package rekall :: Module addrspace :: Class TranslationLookasideBuffer
[frames] | no frames]

Class TranslationLookasideBuffer

source code


An implementation of a TLB.

This can be used by an address space to cache translations.

Instance Methods
 
__init__(self, max_size=10)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
Get(self, vaddr)
Returns the cached physical address for this virtual address.
source code
 
Put(self, vaddr, paddr) source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Class Variables
  PAGE_SHIFT = 12
  PAGE_ALIGNMENT = 4095
  PAGE_MASK = -4096
Properties

Inherited from object: __class__

Method Details

__init__(self, max_size=10)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)