]>
git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/BaseLib/Ebc/CpuBreakpoint.c
2 Base Library CPU Functions for EBC
4 Copyright (c) 2006, Intel Corporation<BR>
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
22 Generates a breakpoint on the CPU.
24 Generates a breakpoint on the CPU. The breakpoint must be implemented such
25 that code can resume normal execution after the breakpoint.
38 Used to serialize load and store operations.
40 All loads and stores that proceed calls to this function are guaranteed to be
41 globally visible when this function returns.
53 Disables CPU interrupts.
55 Disables CPU interrupts.
68 Enables CPU interrupts.
70 Enables CPU interrupts.
83 Retrieves the current CPU interrupt state.
85 Retrieves the current CPU interrupt state. Returns TRUE is interrupts are
86 currently enabled. Otherwise returns FALSE.
88 @retval TRUE CPU interrupts are enabled.
89 @retval FALSE CPU interrupts are disabled.
103 Enables CPU interrupts for the smallest window required to capture any
106 Enables CPU interrupts for the smallest window required to capture any
112 EnableDisableInterrupts (
117 DisableInterrupts ();
121 Requests CPU to pause for a short period of time.
123 Requests CPU to pause for a short period of time. Typically used in MP
124 systems to prevent memory starvation while waiting for a spin lock.
136 Flushes all the Translation Lookaside Buffers(TLB) entries in a CPU.
138 Flushes all the Translation Lookaside Buffers(TLB) entries in a CPU.
151 Places the CPU in a sleep state until an interrupt is received.
153 Places the CPU in a sleep state until an interrupt is received. If interrupts
154 are disabled prior to calling this function, then the CPU will be placed in a
155 sleep state indefinitely.