BaseMemoryLibStm.inf 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. ## @file
  2. # Instance of Base Memory Library with some ARM ldm/stm assembly.
  3. #
  4. # This is a copy of the MdePkg BaseMemoryLib with the CopyMem and
  5. # SetMem worker functions replaced with assembler that uses
  6. # ldm/stm.
  7. #
  8. # Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.<BR>
  9. # Portions copyright (c) 2010, Apple Inc. All rights reserved.<BR>
  10. # Portions copyright (c) 2011 - 2013, ARM Ltd. All rights reserved.<BR>
  11. #
  12. # This program and the accompanying materials
  13. # are licensed and made available under the terms and conditions of the BSD License
  14. # which accompanies this distribution. The full text of the license may be found at
  15. # http://opensource.org/licenses/bsd-license.php
  16. # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
  17. # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
  18. #
  19. #
  20. ##
  21. [Defines]
  22. INF_VERSION = 0x00010005
  23. BASE_NAME = BaseMemoryLibStm
  24. FILE_GUID = 4D466AF3-2380-448D-A337-E4033F29F3F7
  25. MODULE_TYPE = BASE
  26. VERSION_STRING = 1.0
  27. LIBRARY_CLASS = BaseMemoryLib
  28. #
  29. # VALID_ARCHITECTURES = ARM AARCH64
  30. #
  31. [Sources.Common]
  32. ScanMem64Wrapper.c
  33. ScanMem32Wrapper.c
  34. ScanMem16Wrapper.c
  35. ScanMem8Wrapper.c
  36. ZeroMemWrapper.c
  37. CompareMemWrapper.c
  38. SetMem64Wrapper.c
  39. SetMem32Wrapper.c
  40. SetMem16Wrapper.c
  41. SetMemWrapper.c
  42. CopyMemWrapper.c
  43. MemLibGeneric.c
  44. MemLibGuid.c
  45. MemLibInternals.h
  46. [Sources.ARM]
  47. Arm/CopyMem.asm
  48. Arm/CopyMem.S
  49. Arm/SetMem.asm
  50. Arm/SetMem.S
  51. [Sources.AARCH64]
  52. AArch64/CopyMem.c
  53. AArch64/SetMem.c
  54. [Packages]
  55. MdePkg/MdePkg.dec
  56. [LibraryClasses]
  57. DebugLib
  58. BaseLib