Skip to content

Commit fae05be

Browse files
authored
JIT: Support custom ClassLayout instances with GC pointers in them (#112064)
- Add a `ClassLayoutBuilder` that can be used to build new `ClassLayout` instances with arbitrary GC pointers - Add support for GC types to `LCL_FLD` stress to test some of this new support Subsumes #111942 Fixes #103362
1 parent 2faef6d commit fae05be

File tree

6 files changed

+424
-129
lines changed

6 files changed

+424
-129
lines changed

src/coreclr/jit/compiler.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8292,7 +8292,7 @@ const StructSegments& Compiler::GetSignificantSegments(ClassLayout* layout)
82928292

82938293
StructSegments* newSegments = new (this, CMK_Promotion) StructSegments(getAllocator(CMK_Promotion));
82948294

8295-
if (layout->IsBlockLayout())
8295+
if (layout->IsCustomLayout())
82968296
{
82978297
newSegments->Add(StructSegments::Segment(0, layout->GetSize()));
82988298
}

src/coreclr/jit/compiler.h

+7-5
Original file line numberDiff line numberDiff line change
@@ -9246,7 +9246,7 @@ class Compiler
92469246

92479247
bool isOpaqueSIMDType(ClassLayout* layout) const
92489248
{
9249-
if (layout->IsBlockLayout())
9249+
if (layout->IsCustomLayout())
92509250
{
92519251
return true;
92529252
}
@@ -11104,14 +11104,16 @@ class Compiler
1110411104
ClassLayout* typGetLayoutByNum(unsigned layoutNum);
1110511105
// Get the layout number of the specified layout.
1110611106
unsigned typGetLayoutNum(ClassLayout* layout);
11107+
// Get the layout for the specified class handle.
11108+
ClassLayout* typGetObjLayout(CORINFO_CLASS_HANDLE classHandle);
11109+
// Get the number of a layout for the specified class handle.
11110+
unsigned typGetObjLayoutNum(CORINFO_CLASS_HANDLE classHandle);
11111+
ClassLayout* typGetCustomLayout(const ClassLayoutBuilder& builder);
11112+
unsigned typGetCustomLayoutNum(const ClassLayoutBuilder& builder);
1110711113
// Get the layout having the specified size but no class handle.
1110811114
ClassLayout* typGetBlkLayout(unsigned blockSize);
1110911115
// Get the number of a layout having the specified size but no class handle.
1111011116
unsigned typGetBlkLayoutNum(unsigned blockSize);
11111-
// Get the layout for the specified class handle.
11112-
ClassLayout* typGetObjLayout(CORINFO_CLASS_HANDLE classHandle);
11113-
// Get the number of a layout for the specified class handle.
11114-
unsigned typGetObjLayoutNum(CORINFO_CLASS_HANDLE classHandle);
1111511117

1111611118
var_types TypeHandleToVarType(CORINFO_CLASS_HANDLE handle, ClassLayout** pLayout = nullptr);
1111711119
var_types TypeHandleToVarType(CorInfoType jitType, CORINFO_CLASS_HANDLE handle, ClassLayout** pLayout = nullptr);

0 commit comments

Comments
 (0)