Searched defs:fGlobal (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Main/src-server/
H A DHostPower.cpp128 int fGlobal = 0; local
132 fGlobal = 1;
134 fGlobal = -1;
159 if (fGlobal + fPerVM >= 0)
/vbox/src/VBox/VMM/VMMAll/
H A DPGMAll.cpp1933 * @param fGlobal Indicates whether this is a global flush or not.
1935 VMMDECL(int) PGMFlushTLB(PVMCPU pVCpu, uint64_t cr3, bool fGlobal) argument
1947 if (fGlobal)
1949 LogFlow(("PGMFlushTLB: cr3=%RX64 OldCr3=%RX64 fGlobal=%d\n", cr3, pVCpu->pgm.s.GCPhysCR3, fGlobal));
1992 if (fGlobal)
2016 if (fGlobal)
2099 * @param fGlobal Including global page directories or not
2101 VMMDECL(int) PGMSyncCR3(PVMCPU pVCpu, uint64_t cr0, uint64_t cr3, uint64_t cr4, bool fGlobal) argument
2133 fGlobal
[all...]
/vbox/src/recompiler/
H A DVBoxRecompiler.c1847 * @param fGlobal Set if the flush is global.
1849 void remR3FlushTLB(CPUX86State *env, bool fGlobal) argument
1866 if (!fGlobal && !(env->cr[4] & X86_CR4_PGE))
1867 fGlobal = true;
1868 Log(("remR3FlushTLB: CR0=%08RX64 CR3=%08RX64 CR4=%08RX64 %s\n", (uint64_t)env->cr[0], (uint64_t)env->cr[3], (uint64_t)env->cr[4], fGlobal ? " global" : ""));
1887 PGMFlushTLB(env->pVCpu, env->cr[3], fGlobal);

Completed in 503 milliseconds