3 writes to SizeOfRawData
ILCompiler.ReadyToRun (3)
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\CoffObjectWriter.cs (1)
394
section.Header.
SizeOfRawData
= (uint)section.Stream.Length;
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\PEObjectWriter.cs (2)
500
h.
SizeOfRawData
= (uint)s.Stream.Length;
510
h.
SizeOfRawData
= rawAligned;
8 references to SizeOfRawData
ILCompiler.ReadyToRun (8)
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\CoffObjectWriter.cs (4)
404
dataOffset += section.Header.
SizeOfRawData
;
412
_outputSectionLayout.Add(new OutputSection(section.Header.Name, section.Header.PointerToRawData, section.Header.VirtualAddress, section.Header.
SizeOfRawData
));
434
auxRecord.SizeOfRawData = section.Header.
SizeOfRawData
;
644
BinaryPrimitives.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));
541
uint virtualSize = (uint)AlignmentHelper.AlignUp((int)h.
SizeOfRawData
, (int)_peSectionAlignment);
549
sizeOfCode += h.
SizeOfRawData
;
551
sizeOfInitializedData += h.
SizeOfRawData
;