Commit | Line | Data |
---|---|---|
06dc4de1 | 1 | |
2ef2b01e A |
2 | #/** @file |
3 | # Base Library implementation. | |
4 | # | |
5 | # Copyright (c) 2009, Apple, Inc. | |
6 | # | |
7 | # All rights reserved. This program and the accompanying materials | |
8 | # are licensed and made available under the terms and conditions of the BSD License | |
9 | # which accompanies this distribution. The full text of the license may be found at | |
10 | # http://opensource.org/licenses/bsd-license.php | |
11 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, | |
12 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. | |
13 | # | |
14 | # | |
15 | #**/ | |
16 | ||
17 | [Defines] | |
18 | INF_VERSION = 0x00010005 | |
19 | BASE_NAME = CompilerIntrinsicsLib | |
20 | FILE_GUID = 855274FA-3575-4C20-9709-C031DC5589FA | |
21 | MODULE_TYPE = BASE | |
22 | VERSION_STRING = 1.0 | |
23 | LIBRARY_CLASS = CompilerIntrinsicsLib | |
24 | ||
25 | ||
26 | [Sources.common] | |
27 | ||
28 | ||
29 | [Sources.ARM] | |
30 | Arm/mullu.asm | RVCT | |
31 | Arm/switch.asm | RVCT | |
32 | Arm/llsr.asm | RVCT | |
33 | Arm/memcpy.asm | RVCT | |
34 | Arm/memcpy4.asm | RVCT | |
35 | Arm/uread.asm | RVCT | |
36 | Arm/uwrite.asm | RVCT | |
37 | Arm/lasr.asm | RVCT | |
38 | Arm/llsl.asm | RVCT | |
39 | Arm/div.asm | RVCT | |
40 | Arm/uldiv.asm | RVCT | |
41 | Arm/ldivmod.asm | RVCT | |
42 | ||
43 | ||
44 | # | |
45 | # Move .c to .s to work around LLVM issues | |
46 | # | |
47 | # Arm/ashrdi3.c | GCC | |
48 | # Arm/ashldi3.c | GCC | |
49 | # Arm/divdi3.c | GCC | |
50 | # Arm/divsi3.c | GCC | |
51 | # Arm/lshrdi3.c | GCC | |
52 | Arm/ashrdi3.S | GCC | |
53 | Arm/ashldi3.S | GCC | |
54 | Arm/divdi3.S | GCC | |
55 | Arm/divsi3.S | GCC | |
56 | Arm/lshrdi3.S | GCC | |
57 | ||
58 | Arm/memcpy.S | GCC | |
59 | Arm/memset.S | GCC | |
60 | ||
61 | # Arm/modsi3.c | GCC | |
62 | # Arm/moddi3.c | GCC | |
63 | # Arm/muldi3.c | GCC | |
64 | Arm/modsi3.S | GCC | |
65 | Arm/moddi3.S | GCC | |
66 | Arm/muldi3.S | GCC | |
67 | ||
68 | # Arm/udivsi3.c | GCC | |
69 | # Arm/umodsi3.c | GCC | |
70 | # Arm/udivdi3.c | GCC | |
71 | # Arm/umoddi3.c | GCC | |
72 | # Arm/udivmoddi4.c | GCC | |
73 | Arm/udivsi3.S | GCC | |
74 | Arm/umodsi3.S | GCC | |
75 | Arm/udivdi3.S | GCC | |
76 | Arm/umoddi3.S | GCC | |
77 | Arm/udivmoddi4.S | GCC | |
78 | ||
79 | # Arm/clzsi2.c | GCC | |
80 | # Arm/ctzsi2.c | GCC | |
81 | # Arm/ucmpdi2.c | GCC | |
06dc4de1 A |
82 | Arm/clzsi2.S | GCC |
83 | Arm/ctzsi2.S | GCC | |
84 | Arm/ucmpdi2.S | GCC | |
2ef2b01e A |
85 | Arm/switch8.S | GCC |
86 | Arm/switchu8.S | GCC | |
87 | Arm/switch16.S | GCC | |
88 | Arm/switch32.S | GCC | |
89 | ||
90 | ||
91 | [Packages] | |
92 | MdePkg/MdePkg.dec | |
93 | ||
94 | [LibraryClasses] | |
95 |