| 470 | } |
| 471 | |
| 472 | static __inline void |
| 473 | load_xcr(u_int reg, u_long val) |
| 474 | { |
| 475 | u_int low, high; |
| 476 | |
| 477 | low = val; |
| 478 | high = val >> 32; |
| 479 | __asm __volatile("xsetbv" : : "c" (reg), "a" (low), "d" (high)); |
| 480 | } |
| 481 | |
| 482 | /* |
| 483 | * Global TLB flush (except for thise for pages marked PG_G) |
no outgoing calls
no test coverage detected