17 references to _dwarfTypes
ILCompiler.Compiler (17)
Compiler\ObjectWriter\Dwarf\DwarfBuilder.cs (17)
187
_dwarfTypeOffsets = new uint[
_dwarfTypes
.Count];
190
foreach (DwarfInfo type in
_dwarfTypes
)
278
_dwarfTypes
.Add(new DwarfPrimitiveTypeInfo(typeFlags, _targetPointerSize));
279
uint typeIndex = (uint)
_dwarfTypes
.Count;
298
_dwarfTypes
.Add(new DwarfVoidPtrTypeInfo());
302
_dwarfTypes
.Add(new DwarfPointerTypeInfo(pointerDescriptor));
305
return (uint)
_dwarfTypes
.Count;
315
_dwarfTypes
.Add(new DwarfSimpleArrayTypeInfo(elementIndex, size));
316
uint typeIndex = (uint)
_dwarfTypes
.Count;
377
byte byteSize = ((DwarfPrimitiveTypeInfo)
_dwarfTypes
[(int)typeDescriptor.ElementType - 1]).ByteSize;
378
_dwarfTypes
.Add(new DwarfEnumTypeInfo(typeDescriptor, typeRecords, byteSize));
379
return (uint)
_dwarfTypes
.Count;
384
_dwarfTypes
.Add(new DwarfClassTypeInfo(classDescriptor));
385
return (uint)
_dwarfTypes
.Count;
395
_dwarfTypes
.Add(classInfo);
397
return (uint)
_dwarfTypes
.Count;
413
DwarfClassTypeInfo parentClass = (DwarfClassTypeInfo)
_dwarfTypes
[(int)(memberIdDescriptor.ParentClass - 1)];