1 write to VirtualAddress
ILCompiler.ReadyToRun (1)
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\PEObjectWriter.cs (1)
543h.VirtualAddress = virtualAddress;
7 references to VirtualAddress
ILCompiler.ReadyToRun (7)
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\CoffObjectWriter.cs (3)
412_outputSectionLayout.Add(new OutputSection(section.Header.Name, section.Header.PointerToRawData, section.Header.VirtualAddress, section.Header.SizeOfRawData)); 429Debug.Assert(section.Header.VirtualAddress == 0); 643BinaryPrimitives.WriteUInt32LittleEndian(buffer.Slice(NameSize + 4), VirtualAddress);
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\PEObjectWriter.cs (4)
556_outputSectionLayout.Add(new OutputSection(h.Name, h.VirtualAddress, h.PointerToRawData, (uint)s.Stream.Length)); 578uint targetRva = _sections[sectionIndex].Header.VirtualAddress + (uint)reloc.Offset; 889uint relocOffset = checked((uint)(_sections[sectionIndex].Header.VirtualAddress + reloc.Offset)); 891uint symbolImageOffset = checked((uint)(_sections[definedSymbol.SectionIndex].Header.VirtualAddress + definedSymbol.Value));