Path: blob/main/sys/contrib/edk2/Include/Pi/PiDependency.h
96339 views
/** @file1Present the dependency expression values in PI.23Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>4SPDX-License-Identifier: BSD-2-Clause-Patent56@par Revision Reference:7PI Version 1.089**/1011#ifndef __PI_DEPENDENCY_H__12#define __PI_DEPENDENCY_H__1314///15/// If present, this must be the first and only opcode,16/// EFI_DEP_BEFORE may be used by DXE and SMM drivers.17///18#define EFI_DEP_BEFORE 0x001920///21/// If present, this must be the first and only opcode,22/// EFI_DEP_AFTER may be used by DXE and SMM drivers.23///24#define EFI_DEP_AFTER 0x012526#define EFI_DEP_PUSH 0x0227#define EFI_DEP_AND 0x0328#define EFI_DEP_OR 0x0429#define EFI_DEP_NOT 0x0530#define EFI_DEP_TRUE 0x0631#define EFI_DEP_FALSE 0x0732#define EFI_DEP_END 0x083334///35/// If present, this must be the first opcode,36/// EFI_DEP_SOR is only used by DXE driver.37///38#define EFI_DEP_SOR 0x093940#endif414243