16 references to IsSzArray
ILCompiler.Compiler (8)
Compiler\CompilerTypeSystemContext.Aot.cs (2)
89
if (type.
IsSzArray
94
TypeDesc elementType = type.
IsSzArray
? ((ArrayType)type).ElementType : type.Instantiation[0];
Compiler\DependencyAnalysis\CustomAttributeBasedDependencyAlgorithm.cs (1)
272
if (type.
IsSzArray
)
Compiler\DependencyAnalysis\GenericTypesTemplateMap.cs (1)
100
if (!type.
IsSzArray
)
Compiler\DependencyAnalysis\NativeLayoutVertexNode.cs (1)
733
if (owningType.
IsSzArray
|| owningType.HasSameTypeDefinition(factory.ArrayOfTClass) || owningType.IsValueType || owningType.IsSealed())
Compiler\DependencyAnalysis\NodeFactory.NativeLayout.cs (1)
159
if (type.
IsSzArray
&& !type.IsArrayTypeWithoutGenericInterfaces())
parent\parent\Common\TypeSystem\Interop\IL\MarshalHelpers.cs (1)
458
else if (type.
IsSzArray
)
parent\parent\Common\TypeSystem\MetadataEmitter\TypeSystemMetadataEmitter.cs (1)
413
else if (type.
IsSzArray
)
ILCompiler.ReadyToRun (5)
Compiler\DependencyAnalysis\ReadyToRunCodegenNodeFactory.cs (1)
247
else if (type.
IsSzArray
)
JitInterface\CorInfoImpl.ReadyToRun.cs (1)
917
Debug.Assert(type.
IsSzArray
);
parent\parent\Common\JitInterface\CorInfoImpl.cs (1)
3314
return td.
IsSzArray
;
parent\parent\Common\TypeSystem\Interop\IL\MarshalHelpers.cs (1)
458
else if (type.
IsSzArray
)
parent\parent\Common\TypeSystem\MetadataEmitter\TypeSystemMetadataEmitter.cs (1)
413
else if (type.
IsSzArray
)
ILCompiler.RyuJit (1)
parent\parent\Common\JitInterface\CorInfoImpl.cs (1)
3314
return td.
IsSzArray
;
ILCompiler.TypeSystem (2)
parent\parent\Common\TypeSystem\Common\ArrayType.cs (1)
96
while (t.
IsSzArray
)
parent\parent\Common\TypeSystem\Common\CastingHelper.cs (1)
429
bool arrayCovariance = thisType.
IsSzArray
&& otherType.HasInstantiation;