1 | // Licensed to the .NET Foundation under one or more agreements. |
---|---|
2 | // The .NET Foundation licenses this file to you under the MIT license. |
3 | // See the LICENSE file in the project root for more information. |
4 | |
5 | #include <stdint.h> |
6 | #include <windows.h> |
7 | #include <wchar.h> |
8 | #include <stdio.h> |
9 | #include <stddef.h> |
10 | #include <stdlib.h> |
11 | #include <limits.h> |
12 | #include <string.h> |
13 | #include <float.h> |
14 | #include <share.h> |
15 | #include <cstdlib> |
16 | #include <intrin.h> |
17 | |
18 | #include "jitconfig.h" |
19 | #include "jit.h" |
20 | #include "iallocator.h" |
21 | #include "hashbv.h" |
22 | #include "compiler.h" |
23 | #include "dataflow.h" |
24 | #include "block.h" |
25 | #include "jiteh.h" |
26 | #include "rationalize.h" |
27 | #include "jitstd.h" |
28 | #include "ssaconfig.h" |
29 | #include "blockset.h" |
30 | #include "bitvec.h" |
31 | #include "inline.h" |
32 | #include "objectalloc.h" |
33 |