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