13 references to PEHeaderConstants
ILCompiler.ReadyToRun (13)
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\PEObjectWriter.cs (13)
174MajorLinkerVersion = PEHeaderConstants.MajorLinkerVersion; 175MinorLinkerVersion = PEHeaderConstants.MinorLinkerVersion; 186SectionAlignment = (uint)PEHeaderConstants.SectionAlignment; 189MajorOperatingSystemVersion = PEHeaderConstants.MajorOperatingSystemVersion; 190MinorOperatingSystemVersion = PEHeaderConstants.MinorOperatingSystemVersion; 192MajorImageVersion = PEHeaderConstants.MajorImageVersion; 193MinorImageVersion = PEHeaderConstants.MinorImageVersion; 195MajorSubsystemVersion = PEHeaderConstants.MajorSubsystemVersion; 196MinorSubsystemVersion = PEHeaderConstants.MinorSubsystemVersion; 415fileAlignment = PEHeaderConstants.SectionAlignment; 418uint sectionAlignment = (uint)PEHeaderConstants.SectionAlignment; 578uint pageRva = targetRva & ~(PEHeaderConstants.SectionAlignment - 1); 579ushort offsetInPage = (ushort)(targetRva & (PEHeaderConstants.SectionAlignment - 1));