Symbol: get_cr
arch/arm/include/asm/cp15.h
46
#define vectors_high() (get_cr() & CR_V)
arch/arm/kernel/setup.c
721
proc_arch[cpu_architecture()], get_cr());
arch/arm/mm/alignment.c
1036
cr_no_alignment = get_cr() & ~CR_A;
arch/arm/mm/alignment.c
97
return cpu_architecture() >= CPU_ARCH_ARMv6 && get_cr() & CR_U;
arch/arm/mm/cache-feroceon-l2.c
242
cr = get_cr();
arch/arm/mm/cache-feroceon-l2.c
259
cr = get_cr();
arch/arm/mm/cache-feroceon-l2.c
272
cr = get_cr();
arch/arm/mm/cache-feroceon-l2.c
285
cr = get_cr();
arch/arm/mm/cache-xsc3l2.c
197
if (get_cr() & CR_L2) {
arch/arm/mm/dma-mapping-nommu.c
50
dev->dma_coherent = (get_cr() & CR_M) ? coherent : true;
arch/arm/mm/init.c
336
return !!(get_cr() & CR_XP);
arch/arm/mm/ioremap.c
330
(((cpu_architecture() >= CPU_ARCH_ARMv6) && (get_cr() & CR_XP)) ||
arch/arm/mm/mmu.c
1680
cr = get_cr();
arch/arm/mm/mmu.c
445
unsigned int cr = get_cr();
arch/arm/mm/nommu.c
45
unsigned long reg = get_cr();
arch/arm/mm/nommu.c
72
unsigned long base = 0, reg = get_cr();
arch/x86/kvm/emulate.c
1040
if (ctxt->ops->get_cr(ctxt, 0) & (X86_CR0_TS | X86_CR0_EM))
arch/x86/kvm/emulate.c
1053
if (ctxt->ops->get_cr(ctxt, 0) & (X86_CR0_TS | X86_CR0_EM))
arch/x86/kvm/emulate.c
1069
if (ctxt->ops->get_cr(ctxt, 0) & (X86_CR0_TS | X86_CR0_EM))
arch/x86/kvm/emulate.c
1495
if (!(ctxt->ops->get_cr(ctxt, 4) & X86_CR4_CET))
arch/x86/kvm/emulate.c
2959
ops->set_cr(ctxt, 0, ops->get_cr(ctxt, 0) | X86_CR0_TS);
arch/x86/kvm/emulate.c
3333
(ctxt->ops->get_cr(ctxt, 4) & X86_CR4_UMIP) &&
arch/x86/kvm/emulate.c
3413
cr0 = ctxt->ops->get_cr(ctxt, 0);
arch/x86/kvm/emulate.c
3439
if ((ctxt->ops->get_cr(ctxt, 4) & X86_CR4_UMIP) &&
arch/x86/kvm/emulate.c
3503
if ((ctxt->ops->get_cr(ctxt, 4) & X86_CR4_UMIP) &&
arch/x86/kvm/emulate.c
3509
ctxt->dst.val = ctxt->ops->get_cr(ctxt, 0);
arch/x86/kvm/emulate.c
3515
ctxt->ops->set_cr(ctxt, 0, (ctxt->ops->get_cr(ctxt, 0) & ~0x0eul)
arch/x86/kvm/emulate.c
3659
if (ctxt->ops->get_cr(ctxt, 0) & (X86_CR0_TS | X86_CR0_EM))
arch/x86/kvm/emulate.c
3687
cr4_osfxsr = ctxt->ops->get_cr(ctxt, 4) & X86_CR4_OSFXSR;
arch/x86/kvm/emulate.c
3792
if (!(ctxt->ops->get_cr(ctxt, 4) & X86_CR4_OSXSAVE))
arch/x86/kvm/emulate.c
3833
cr4 = ctxt->ops->get_cr(ctxt, 4);
arch/x86/kvm/emulate.c
3886
u64 cr4 = ctxt->ops->get_cr(ctxt, 4);
arch/x86/kvm/emulate.c
3896
u64 cr4 = ctxt->ops->get_cr(ctxt, 4);
arch/x86/kvm/emulate.c
5086
ctxt->ops->get_cr(ctxt, 4) & X86_CR4_CET) {
arch/x86/kvm/emulate.c
5291
if ((ctxt->d & (Avx|Sse|Mmx)) && ((ops->get_cr(ctxt, 0) & X86_CR0_EM))) {
arch/x86/kvm/emulate.c
5298
if (!(ops->get_cr(ctxt, 4) & X86_CR4_OSXSAVE)
arch/x86/kvm/emulate.c
5305
if (!(ops->get_cr(ctxt, 4) & X86_CR4_OSFXSR)) {
arch/x86/kvm/emulate.c
5311
if ((ctxt->d & (Avx|Sse|Mmx)) && (ops->get_cr(ctxt, 0) & X86_CR0_TS)) {
arch/x86/kvm/emulate.c
5583
ctxt->dst.val = ops->get_cr(ctxt, ctxt->modrm_reg);
arch/x86/kvm/emulate.c
600
return (ctxt->ops->get_cr(ctxt, 4) & X86_CR4_LA57) ? 57 : 48;
arch/x86/kvm/emulate.c
740
if (!(ctxt->ops->get_cr(ctxt, 0) & X86_CR0_PE)) {
arch/x86/kvm/kvm_emulate.h
211
ulong (*get_cr)(struct x86_emulate_ctxt *ctxt, int cr);
arch/x86/kvm/x86.c
8913
.get_cr = emulator_get_cr,