10 references to PE
crossgen2 (4)
Crossgen2RootCommand.cs (2)
410return ReadyToRunContainerFormat.PE; 414"pe" => ReadyToRunContainerFormat.PE,
Program.cs (2)
417if (format == ReadyToRunContainerFormat.PE && typeSystemContext.Target.Architecture == TargetArchitecture.Wasm32) 421if (!composite && format != ReadyToRunContainerFormat.PE && format != ReadyToRunContainerFormat.Wasm)
ILCompiler.ReadyToRun (6)
CodeGen\ReadyToRunObjectWriter.cs (1)
184ReadyToRunContainerFormat.PE => CreatePEObjectWriter(),
Compiler\DependencyAnalysis\ReadyToRun\MethodColdCodeNode.cs (1)
29ReadyToRunContainerFormat.PE => ObjectNodeSection.ManagedCodeWindowsContentSection,
Compiler\DependencyAnalysis\ReadyToRun\MethodWithGCInfo.cs (1)
309ReadyToRunContainerFormat.PE => ObjectNodeSection.ManagedCodeWindowsContentSection,
Compiler\ReadyToRunCodegenCompilation.cs (2)
514if (NodeFactory.Target.IsWindows && NodeFactory.Format == ReadyToRunContainerFormat.PE) 532_format == ReadyToRunContainerFormat.Wasm ? ReadyToRunContainerFormat.Wasm : ReadyToRunContainerFormat.PE;
Compiler\ReadyToRunCodegenCompilationBuilder.cs (1)
48private ReadyToRunContainerFormat _format = ReadyToRunContainerFormat.PE;