Home | History | Annotate | Download | only in Ia32

Lines Matching refs:Cr3

260   Reads the current value of the Control Register 3 (CR3).

262 Reads and returns the current value of CR3. This function is only available
266 @return The value of the Control Register 3 (CR3).
278 "movl %%cr3, %0"
366 Writes a value to Control Register 3 (CR3).
368 Writes and returns a new value to CR3. This function is only available on
371 @param Cr3 The value to write to CR3.
373 @return The value written to CR3.
379 UINTN Cr3
383 "movl %0, %%cr3"
385 : "r" (Cr3)
387 return Cr3;