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