-
Notifications
You must be signed in to change notification settings - Fork 4.9k
/
Copy pathlayout.h
287 lines (237 loc) · 7.39 KB
/
layout.h
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
#ifndef LAYOUT_H
#define LAYOUT_H
#include "jit.h"
#include "segmentlist.h"
// Builder for class layouts
//
class ClassLayoutBuilder
{
friend class ClassLayout;
friend class ClassLayoutTable;
friend struct CustomLayoutKey;
Compiler* m_compiler;
BYTE* m_gcPtrs = nullptr;
unsigned m_size;
unsigned m_gcPtrCount = 0;
SegmentList* m_nonPadding = nullptr;
#ifdef DEBUG
const char* m_name = "UNNAMED";
const char* m_shortName = "UNNAMED";
#endif
BYTE* GetOrCreateGCPtrs();
void SetGCPtr(unsigned slot, CorInfoGCType type);
SegmentList* GetOrCreateNonPadding();
public:
// Create a class layout builder.
//
ClassLayoutBuilder(Compiler* compiler, unsigned size);
void SetGCPtrType(unsigned slot, var_types type);
void CopyGCInfoFrom(unsigned offset, ClassLayout* layout);
void CopyGCInfoFromMakeByref(unsigned offset, ClassLayout* layout);
void CopyPaddingFrom(unsigned offset, ClassLayout* layout);
void AddPadding(const SegmentList::Segment& padding);
void RemovePadding(const SegmentList::Segment& nonPadding);
#ifdef DEBUG
void SetName(const char* name, const char* shortName);
void CopyNameFrom(ClassLayout* layout, const char* prefix);
#endif
static ClassLayoutBuilder BuildArray(Compiler* compiler, CORINFO_CLASS_HANDLE arrayType, unsigned length);
};
// Encapsulates layout information about a class (typically a value class but this can also be
// be used for reference classes when they are stack allocated). The class handle is optional,
// allowing the creation of custom layout objects having a specific size where the offsets of
// GC fields can be specified during creation.
class ClassLayout
{
private:
// Class handle or NO_CLASS_HANDLE for "block" layouts.
const CORINFO_CLASS_HANDLE m_classHandle;
// Size of the layout in bytes (as reported by ICorJitInfo::getClassSize/getHeapClassSize
// for non "block" layouts). For "block" layouts this may be 0 due to 0 being a valid size
// for cpblk/initblk.
const unsigned m_size;
const unsigned m_isValueClass : 1;
// The number of GC pointers in this layout. Since the maximum size is 2^32-1 the count
// can fit in at most 30 bits.
unsigned m_gcPtrCount : 30;
// Array of CorInfoGCType (as BYTE) that describes the GC layout of the class.
// For small classes the array is stored inline, avoiding an extra allocation
// and the pointer size overhead.
union
{
BYTE* m_gcPtrs;
BYTE m_gcPtrsArray[sizeof(BYTE*)];
};
class SegmentList* m_nonPadding = nullptr;
// The normalized type to use in IR for block nodes with this layout.
const var_types m_type;
// Name of the layout
INDEBUG(const char* m_name;)
// Short name of the layout
INDEBUG(const char* m_shortName;)
// ClassLayout instances should only be obtained via ClassLayoutTable.
friend class ClassLayoutTable;
friend class ClassLayoutBuilder;
friend struct CustomLayoutKey;
ClassLayout(unsigned size)
: m_classHandle(NO_CLASS_HANDLE)
, m_size(size)
, m_isValueClass(false)
, m_gcPtrCount(0)
, m_gcPtrs(nullptr)
, m_type(TYP_STRUCT)
#ifdef DEBUG
, m_name(size == 0 ? "Empty" : "Custom")
, m_shortName(size == 0 ? "Empty" : "Custom")
#endif
{
}
static ClassLayout* Create(Compiler* compiler, CORINFO_CLASS_HANDLE classHandle);
static ClassLayout* Create(Compiler* compiler, const ClassLayoutBuilder& builder);
ClassLayout(CORINFO_CLASS_HANDLE classHandle,
bool isValueClass,
unsigned size,
var_types type DEBUGARG(const char* className) DEBUGARG(const char* shortClassName))
: m_classHandle(classHandle)
, m_size(size)
, m_isValueClass(isValueClass)
, m_gcPtrCount(0)
, m_gcPtrs(nullptr)
, m_type(type)
#ifdef DEBUG
, m_name(className)
, m_shortName(shortClassName)
#endif
{
assert(size != 0);
}
public:
CORINFO_CLASS_HANDLE GetClassHandle() const
{
return m_classHandle;
}
bool IsCustomLayout() const
{
return m_classHandle == NO_CLASS_HANDLE;
}
bool IsBlockLayout() const
{
return IsCustomLayout() && !HasGCPtr();
}
#ifdef DEBUG
const char* GetClassName() const
{
return m_name;
}
const char* GetShortClassName() const
{
return m_shortName;
}
#endif // DEBUG
bool IsValueClass() const
{
return m_isValueClass;
}
unsigned GetSize() const
{
return m_size;
}
var_types GetType() const
{
return m_type;
}
//------------------------------------------------------------------------
// GetRegisterType: Determine register type for the layout.
//
// Return Value:
// TYP_UNDEF if the layout is not enregistrable, register type otherwise.
//
var_types GetRegisterType() const
{
if (HasGCPtr())
{
return (GetSlotCount() == 1) ? GetGCPtrType(0) : TYP_UNDEF;
}
switch (m_size)
{
case 1:
return TYP_UBYTE;
case 2:
return TYP_USHORT;
case 4:
return TYP_INT;
#ifdef TARGET_64BIT
case 8:
return TYP_LONG;
#endif
#ifdef FEATURE_SIMD
// TODO: check TYP_SIMD12 profitability,
// it will need additional support in `BuildStoreLoc`.
case 16:
return TYP_SIMD16;
#endif
default:
return TYP_UNDEF;
}
}
unsigned GetSlotCount() const
{
return roundUp(m_size, TARGET_POINTER_SIZE) / TARGET_POINTER_SIZE;
}
unsigned GetGCPtrCount() const
{
return m_gcPtrCount;
}
bool HasGCPtr() const
{
return m_gcPtrCount != 0;
}
bool IsStackOnly(Compiler* comp) const;
bool IsGCPtr(unsigned slot) const
{
return GetGCPtr(slot) != TYPE_GC_NONE;
}
bool IsGCRef(unsigned slot) const
{
return GetGCPtr(slot) == TYPE_GC_REF;
}
bool IsGCByRef(unsigned slot) const
{
return GetGCPtr(slot) == TYPE_GC_BYREF;
}
var_types GetGCPtrType(unsigned slot) const
{
switch (GetGCPtr(slot))
{
case TYPE_GC_NONE:
return TYP_I_IMPL;
case TYPE_GC_REF:
return TYP_REF;
case TYPE_GC_BYREF:
return TYP_BYREF;
default:
unreached();
}
}
bool IntersectsGCPtr(unsigned offset, unsigned size) const;
const SegmentList& GetNonPadding(Compiler* comp);
static bool AreCompatible(const ClassLayout* layout1, const ClassLayout* layout2);
bool CanAssignFrom(const ClassLayout* sourceLayout);
private:
const BYTE* GetGCPtrs() const
{
return (GetSlotCount() > sizeof(m_gcPtrsArray)) ? m_gcPtrs : m_gcPtrsArray;
}
CorInfoGCType GetGCPtr(unsigned slot) const
{
assert(slot < GetSlotCount());
if (m_gcPtrCount == 0)
{
return TYPE_GC_NONE;
}
return static_cast<CorInfoGCType>(GetGCPtrs()[slot]);
}
};
#endif // LAYOUT_H