]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/BaseMemoryLibMmx/BaseMemoryLibMmx.inf
Import BaseMemoryLibMmx.
[mirror_edk2.git] / MdePkg / Library / BaseMemoryLibMmx / BaseMemoryLibMmx.inf
1 #/** @file
2 # Component description file for MMX Base Memory Library
3 #
4 # Base Memory Library that uses MMX registers for high performance.
5 # Optimized for use in DXE.
6 # Copyright (c) 2006, Intel Corporation
7 #
8 # All rights reserved. This program and the accompanying materials
9 # are licensed and made available under the terms and conditions of the BSD License
10 # which accompanies this distribution. The full text of the license may be found at
11 # http://opensource.org/licenses/bsd-license.php
12 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14 #
15 #
16 #**/
17
18 [Defines]
19 INF_VERSION = 0x00010005
20 BASE_NAME = BaseMemoryLibMmx
21 FILE_GUID = d458a654-f64c-49db-b8d1-3821306bf1f6
22 MODULE_TYPE = BASE
23 VERSION_STRING = 1.0
24 LIBRARY_CLASS = BaseMemoryLib
25 EDK_RELEASE_VERSION = 0x00020000
26 EFI_SPECIFICATION_VERSION = 0x00020000
27
28
29 #
30 # VALID_ARCHITECTURES = IA32 X64
31 #
32
33 [Sources.common]
34 ScanMem64Wrapper.c
35 ScanMem32Wrapper.c
36 ScanMem16Wrapper.c
37 ScanMem8Wrapper.c
38 ZeroMemWrapper.c
39 CompareMemWrapper.c
40 SetMem64Wrapper.c
41 SetMem32Wrapper.c
42 SetMem16Wrapper.c
43 SetMemWrapper.c
44 CopyMemWrapper.c
45 MemLibGuid.c
46 MemLibInternals.h
47
48 [Sources.Ia32]
49 Ia32/ScanMem64.S
50 Ia32/ScanMem32.S
51 Ia32/ScanMem16.S
52 Ia32/ScanMem8.S
53 Ia32/CompareMem.S
54 Ia32/SetMem64.S
55 Ia32/SetMem32.S
56 Ia32/SetMem16.S
57 Ia32/ZeroMem.S
58 Ia32/SetMem.S
59 Ia32/CopyMem.S
60 Ia32/ScanMem64.asm
61 Ia32/ScanMem32.asm
62 Ia32/ScanMem16.asm
63 Ia32/ScanMem8.asm
64 Ia32/CompareMem.asm
65 Ia32/SetMem64.asm
66 Ia32/SetMem32.asm
67 Ia32/SetMem16.asm
68 Ia32/ZeroMem.asm
69 Ia32/SetMem.asm
70 Ia32/CopyMem.asm
71
72 [Sources.X64]
73 X64/ZeroMem.asm
74 X64/ScanMem64.asm
75 X64/ScanMem32.asm
76 X64/ScanMem16.asm
77 X64/ScanMem8.asm
78 X64/CompareMem.asm
79 X64/SetMem64.asm
80 X64/SetMem32.asm
81 X64/SetMem16.asm
82 X64/SetMem.asm
83 X64/CopyMem.asm
84
85
86 [LibraryClasses]
87 DebugLib
88 BaseLib
89