Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/C/Linux/arch/powerpc/lib/   (Open Source Betriebssystem Version 6.17.9©)  Datei vom 24.10.2025 mit Größe 1 kB image not shown  

Quelle  vmx-helper.c   Sprache: C

 
// SPDX-License-Identifier: GPL-2.0-or-later
/*
 *
 * Copyright (C) IBM Corporation, 2011
 *
 * Authors: Sukadev Bhattiprolu <sukadev@linux.vnet.ibm.com>
 *          Anton Blanchard <anton@au.ibm.com>
 */

#include <linux/uaccess.h>
#include <linux/hardirq.h>
#include <asm/switch_to.h>

int enter_vmx_usercopy(void)
{
 if (in_interrupt())
  return 0;

 preempt_disable();
 /*
 * We need to disable page faults as they can call schedule and
 * thus make us lose the VMX context. So on page faults, we just
 * fail which will cause a fallback to the normal non-vmx copy.
 */

 pagefault_disable();

 enable_kernel_altivec();

 return 1;
}

/*
 * This function must return 0 because we tail call optimise when calling
 * from __copy_tofrom_user_power7 which returns 0 on success.
 */

int exit_vmx_usercopy(void)
{
 disable_kernel_altivec();
 pagefault_enable();
 preempt_enable_no_resched();
 /*
 * Must never explicitly call schedule (including preempt_enable())
 * while in a kuap-unlocked user copy, because the AMR register will
 * not be saved and restored across context switch. However preempt
 * kernels need to be preempted as soon as possible if need_resched is
 * set and we are preemptible. The hack here is to schedule a
 * decrementer to fire here and reschedule for us if necessary.
 */

 if (need_irq_preemption() && need_resched())
  set_dec(1);
 return 0;
}

int enter_vmx_ops(void)
{
 if (in_interrupt())
  return 0;

 preempt_disable();

 enable_kernel_altivec();

 return 1;
}

/*
 * All calls to this function will be optimised into tail calls. We are
 * passed a pointer to the destination which we return as required by a
 * memcpy implementation.
 */

void *exit_vmx_ops(void *dest)
{
 disable_kernel_altivec();
 preempt_enable();
 return dest;
}

Messung V0.5
C=93 H=89 G=90

¤ Dauer der Verarbeitung: 0.20 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.