| 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 | #ifndef REGLIST_H |
| 6 | #define REGLIST_H |
| 7 | |
| 8 | #include "target.h" |
| 9 | #include "tinyarray.h" |
| 10 | |
| 11 | // The "regList" type is a small set of registerse |
| 12 | #ifdef _TARGET_X86_ |
| 13 | typedef TinyArray<unsigned short, regNumber, REGNUM_BITS> regList; |
| 14 | #else |
| 15 | // The regList is unused for all other targets. |
| 16 | #endif // _TARGET_* |
| 17 | |
| 18 | #endif // REGLIST_H |
| 19 | |