Home | History | Annotate | Download | only in X64

Lines Matching refs:Cr3

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

272 Reads and returns the current value of CR3. This function is only available
276 @return The value of the Control Register 3 (CR3).
288 "mov %%cr3, %0"
376 Writes a value to Control Register 3 (CR3).
378 Writes and returns a new value to CR3. This function is only available on
381 @param Cr3 The value to write to CR3.
383 @return The value written to CR3.
389 UINTN Cr3
393 "mov %0, %%cr3"
395 : "r" (Cr3)
397 return Cr3;