9 references to Type
ILCompiler.Compiler (9)
Compiler\DependencyAnalysis\SerializedFrozenObjectNode.cs (9)
40
public override TypeDesc ObjectType => _data.
Type
;
45
=> _data.
Type
.IsArray
46
? _data.
Type
.Context.Target.PointerSize * 2 + ((ArrayType)_data.
Type
).ElementType.GetElementSize().AsInt * _data.ArrayLength
47
: ((DefType)_data.
Type
).InstanceByteCount.AsInt + (_data.
Type
.IsValueType ? _data.
Type
.Context.Target.PointerSize : 0);
49
public override int? ArrayLength => _data.
Type
.IsArray ? _data.ArrayLength : null;
80
public override string ToString() => $"Frozen {_data.
Type
.GetDisplayNameWithoutNamespace()} object";