blob: 117e62f84c3d43e5c80b50b767bc82804e7373a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
#ifndef REGALLOC_H_
#define REGALLOC_H_
enum FrameType
{
FT_NOT_SET,
FT_ESP_FRAME,
FT_EBP_FRAME,
#if DOUBLE_ALIGN
FT_DOUBLE_ALIGN_FRAME,
#endif
};
#if DOUBLE_ALIGN
enum CanDoubleAlign
{
CANT_DOUBLE_ALIGN,
CAN_DOUBLE_ALIGN,
MUST_DOUBLE_ALIGN,
COUNT_DOUBLE_ALIGN,
DEFAULT_DOUBLE_ALIGN = CAN_DOUBLE_ALIGN
};
#endif
#endif // REGALLOC_H_
|