Lines Matching refs:shadow
144 The state of each 8 aligned bytes of memory is encoded in one shadow byte.
146 We use the following encoding for each shadow byte: 0 means that all 8 bytes
153 In the report above the arrows point to the shadow byte 03, which means that
167 of kmemcheck: use shadow memory to record whether each byte of memory is safe
168 to access, and use compile-time instrumentation to insert checks of shadow
171 Generic KASAN dedicates 1/8th of kernel memory to its shadow memory (e.g. 16TB
173 translate a memory address to its corresponding shadow address.
175 Here is the function which translates an address to its corresponding shadow
189 access is valid or not by checking corresponding shadow memory.
192 function calls GCC directly inserts the code to check the shadow memory.
201 uses shadow memory to store memory tags associated with each 16-byte memory
202 cell (therefore it dedicates 1/16th of the kernel memory for shadow memory).
212 emits callbacks to check memory accesses; and inline, that performs the shadow
220 manual shadow memory manipulation.