13 references to PEHeaderConstants
ILCompiler.ReadyToRun (13)
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\PEObjectWriter.cs (13)
175MajorLinkerVersion = PEHeaderConstants.MajorLinkerVersion; 176MinorLinkerVersion = PEHeaderConstants.MinorLinkerVersion; 187SectionAlignment = (uint)PEHeaderConstants.SectionAlignment; 190MajorOperatingSystemVersion = PEHeaderConstants.MajorOperatingSystemVersion; 191MinorOperatingSystemVersion = PEHeaderConstants.MinorOperatingSystemVersion; 193MajorImageVersion = PEHeaderConstants.MajorImageVersion; 194MinorImageVersion = PEHeaderConstants.MinorImageVersion; 196MajorSubsystemVersion = PEHeaderConstants.MajorSubsystemVersion; 197MinorSubsystemVersion = PEHeaderConstants.MinorSubsystemVersion; 416fileAlignment = PEHeaderConstants.SectionAlignment; 419uint sectionAlignment = (uint)PEHeaderConstants.SectionAlignment; 579uint pageRva = targetRva & ~(PEHeaderConstants.SectionAlignment - 1); 580ushort offsetInPage = (ushort)(targetRva & (PEHeaderConstants.SectionAlignment - 1));