1 write to _infoSectionWriter
ILCompiler.Compiler (1)
Compiler\ObjectWriter\Dwarf\DwarfInfoWriter.cs (1)
40_infoSectionWriter = infoSectionWriter;
15 references to _infoSectionWriter
ILCompiler.Compiler (15)
Compiler\ObjectWriter\Dwarf\DwarfInfoWriter.cs (15)
52public long Position => _infoSectionWriter.Position; 82public void Write(ReadOnlySpan<byte> buffer) => _infoSectionWriter.Write(buffer); 83public void WriteULEB128(ulong value) => _infoSectionWriter.WriteULEB128(value); 84public void WriteUInt8(byte value) => _infoSectionWriter.WriteLittleEndian<byte>(value); 85public void WriteUInt16(ushort value) => _infoSectionWriter.WriteLittleEndian<ushort>(value); 86public void WriteUInt32(uint value) => _infoSectionWriter.WriteLittleEndian<uint>(value); 87public void WriteUInt64(ulong value) => _infoSectionWriter.WriteLittleEndian<ulong>(value); 105_infoSectionWriter.EmitSymbolReference(RelocType.IMAGE_REL_BASED_HIGHLOW, new Utf8String(".debug_str"u8), stringsOffset); 114_infoSectionWriter.EmitSymbolReference(RelocType.IMAGE_REL_BASED_HIGHLOW, new Utf8String(".debug_str"u8), stringsOffset); 131_lateBoundReferences.Add(new InfoReference(typeIndex, (int)_infoSectionWriter.Position, data)); 132_infoSectionWriter.EmitData(data); 143_infoSectionWriter.EmitSymbolReference(_codeRelocType, sectionSymbolName, offset); 149_infoSectionWriter.EmitSymbolReference(RelocType.IMAGE_REL_BASED_HIGHLOW, new Utf8String(".debug_line"u8), offset); 169_infoSectionWriter.EmitSymbolReference(RelocType.IMAGE_REL_BASED_HIGHLOW, new Utf8String(".debug_loc"u8), (int)offset); 190_infoSectionWriter.EmitSymbolReference(RelocType.IMAGE_REL_BASED_HIGHLOW, new Utf8String(".debug_ranges"u8), offset);