15 references to GeneratedAssembly
ilc (6)
Program.cs (6)
182typeMapManager = new UsageBasedTypeMapManager(TypeMapMetadata.CreateFromAssembly(assembly, typeSystemContext.GeneratedAssembly, TypeMapAssemblyTargetsMode.Traverse)); 239compilationRoots.Add(new NativeLibraryInitializerRootProvider(typeSystemContext.GeneratedAssembly, CreateInitializerList(typeSystemContext))); 256compilationRoots.Add(new NativeLibraryInitializerRootProvider(typeSystemContext.GeneratedAssembly, CreateInitializerList(typeSystemContext))); 301typeMapManager = new UsageBasedTypeMapManager(TypeMapMetadata.CreateFromAssembly(typeMapEntryAssembly, typeSystemContext.GeneratedAssembly, TypeMapAssemblyTargetsMode.Traverse)); 306typeMapManager = new UsageBasedTypeMapManager(TypeMapMetadata.CreateFromAssembly(entryAssembly, typeSystemContext.GeneratedAssembly, TypeMapAssemblyTargetsMode.Traverse)); 463InteropStateManager interopStateManager = new InteropStateManager(typeSystemContext.GeneratedAssembly);
ILCompiler.Compiler (7)
Compiler\Compilation.cs (1)
63MetadataType globalModuleGeneratedType = nodeFactory.TypeSystemContext.GeneratedAssembly.GetGlobalModuleType();
Compiler\CompilerTypeSystemContext.DynamicInvoke.cs (1)
19return new DynamicInvokeMethodThunk(((CompilerTypeSystemContext)key.Context).GeneratedAssembly.GetGlobalModuleType(), key);
Compiler\CompilerTypeSystemContext.InterfaceThunks.cs (1)
140TypeDesc owningTypeOfThunks = ((CompilerTypeSystemContext)key.TargetMethod.Context).GeneratedAssembly.GetGlobalModuleType();
Compiler\DependencyAnalysis\ILScanNodeFactory.cs (1)
55return new ScannedMethodNode(TypeSystemContext.GetSpecialUnboxingThunk(method, TypeSystemContext.GeneratedAssembly));
Compiler\MultiFileCompilationModuleGroup.cs (1)
22_compilationModuleSet.Add(context.GeneratedAssembly);
Compiler\ReachabilityInstrumentationProvider.cs (1)
242public override TypeDesc OwningType => _context.GeneratedAssembly.GetGlobalModuleType();
IL\ILImporter.Scanner.cs (1)
446AsyncResumptionStub resumptionStub = _compilation.TypeSystemContext.GetAsyncResumptionStub(_canonMethod, _compilation.TypeSystemContext.GeneratedAssembly.GetGlobalModuleType());
ILCompiler.RyuJit (2)
Compiler\DependencyAnalysis\RyuJitNodeFactory.cs (1)
63return new MethodCodeNode(TypeSystemContext.GetSpecialUnboxingThunk(method, TypeSystemContext.GeneratedAssembly));
JitInterface\CorInfoImpl.RyuJit.cs (1)
59MethodDesc asyncResumptionStub = _compilation.TypeSystemContext.GetAsyncResumptionStub(MethodBeingCompiled, _compilation.TypeSystemContext.GeneratedAssembly.GetGlobalModuleType());