3 writes to SizeOfRawData
ILCompiler.ReadyToRun (3)
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\CoffObjectWriter.cs (1)
394section.Header.SizeOfRawData = (uint)section.Stream.Length;
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\PEObjectWriter.cs (2)
500h.SizeOfRawData = (uint)s.Stream.Length; 510h.SizeOfRawData = rawAligned;
8 references to SizeOfRawData
ILCompiler.ReadyToRun (8)
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\CoffObjectWriter.cs (4)
404dataOffset += section.Header.SizeOfRawData; 412_outputSectionLayout.Add(new OutputSection(section.Header.Name, section.Header.PointerToRawData, section.Header.VirtualAddress, section.Header.SizeOfRawData)); 434auxRecord.SizeOfRawData = section.Header.SizeOfRawData; 644BinaryPrimitives.WriteUInt32LittleEndian(buffer.Slice(NameSize + 8), SizeOfRawData);
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\PEObjectWriter.cs (4)
504: (uint)AlignmentHelper.AlignUp((int)h.SizeOfRawData, (int)uint.Max(requestedAlignment, _peFileAlignment)); 541uint virtualSize = (uint)AlignmentHelper.AlignUp((int)h.SizeOfRawData, (int)_peSectionAlignment); 549sizeOfCode += h.SizeOfRawData; 551sizeOfInitializedData += h.SizeOfRawData;