53 instantiations of NodeCache
ILCompiler.ReadyToRun (53)
Compiler\DependencyAnalysis\ReadyToRunCodegenNodeFactory.cs (32)
392_allMethodsOnType = new NodeCache<TypeDesc, AllMethodsOnTypeNode>(type =>
397_inheritedVirtualMethods = new NodeCache<TypeDesc, InheritedVirtualMethodsNode>(type =>
402_gvmDependenciesNode = new NodeCache<MethodDesc, GVMDependenciesNode>(method =>
407_arrayInterfaceMethods = new NodeCache<ArrayType, ArrayInterfaceMethodsNode>(arrayType =>
412_virtualMethodUseNodes = new NodeCache<MethodDesc, VirtualMethodUseNode>(method =>
417_genericReadyToRunHelpersFromDict = new NodeCache<ReadyToRunGenericHelperKey, ISymbolNode>(helperKey =>
428_genericReadyToRunHelpersFromType = new NodeCache<ReadyToRunGenericHelperKey, ISymbolNode>(helperKey =>
439_constructedHelpers = new NodeCache<ReadyToRunHelper, Import>(helperId =>
444_importThunks = new NodeCache<ImportThunkKey, ISymbolDefinitionNode>(key =>
449_wasmImportThunks = new NodeCache<WasmImportThunkKey, ISymbolDefinitionNode>(key =>
454_wasmImportThunkPortableEntrypoints = new NodeCache<WasmImportThunkPortableEntrypointKey, ISymbolDefinitionNode>(key =>
459_wasmR2RToInterpreterThunks = new NodeCache<WasmSignature, WasmR2RToInterpreterThunkNode>(key =>
464_wasmInterpreterToR2RThunks = new NodeCache<WasmSignature, WasmInterpreterToR2RThunkNode>(key =>
469_wasmVirtualDispatchThunks = new NodeCache<WasmVirtualDispatchThunkKey, WasmVirtualDispatchThunkNode>(key =>
474_wasmUnboxingStubs = new NodeCache<WasmUnboxingStubKey, WasmUnboxingStubNode>(key =>
479_wasmUnboxingStubTargets = new NodeCache<MethodDesc, WasmUnboxingStubTargetNode>(CreateWasmUnboxingStubTargetNode);
481_importMethods = new NodeCache<TypeAndMethod, IMethodNode>(CreateMethodEntrypoint);
483_localMethodCache = new NodeCache<MethodDesc, MethodWithGCInfo>(key =>
488_methodSignatures = new NodeCache<MethodFixupKey, MethodFixupSignature>(key =>
497_typeSignatures = new NodeCache<TypeFixupKey, TypeFixupSignature>(key =>
502_virtualResolutionSignatures = new NodeCache<VirtualResolutionFixupSignatureFixupKey, VirtualResolutionFixupSignature>(key =>
507_dynamicHelperCellCache = new NodeCache<DynamicHelperCellKey, ISymbolNode>(key =>
522_copiedCorHeaders = new NodeCache<EcmaModule, CopiedCorHeaderNode>(module =>
527_debugDirectoryEntries = new NodeCache<ModuleAndIntValueKey, DebugDirectoryEntryNode>(key =>
532_copiedMetadataBlobs = new NodeCache<EcmaModule, CopiedMetadataBlobNode>(module =>
537_copiedMethodIL = new NodeCache<MethodDesc, CopiedMethodILNode>(method =>
542_copiedFieldRvas = new NodeCache<ModuleAndIntValueKey, CopiedFieldRvaNode>(key =>
547_copiedStrongNameSignatures = new NodeCache<EcmaModule, CopiedStrongNameSignatureNode>(module =>
552_copiedManagedResources = new NodeCache<EcmaModule, CopiedManagedResourcesNode>(module =>
557_wasmTypeNodes = new(key =>
562_wasmMethodRelativeVirtualIPs = new(method =>
888new NodeCache<ILBodyFixupSignatureFixupKey, ILBodyFixupSignature>((key) => new ILBodyFixupSignature(key.FixupKind, key.Method));
Compiler\DependencyAnalysis\ReadyToRunSymbolNodeFactory.cs (21)
56_importStrings = new NodeCache<ModuleToken, Import>(key =>
61_r2rHelpers = new NodeCache<ReadyToRunHelperKey, Import>(CreateReadyToRunHelper);
63_instructionSetSupportFixups = new NodeCache<string, Import>(key =>
70_resumptionStubEntryPointFixups = new NodeCache<MethodWithGCInfo, Import>(key =>
77_fieldAddressCache = new NodeCache<FieldWithToken, Import>(key =>
87_fieldOffsetCache = new NodeCache<FieldWithToken, Import>(key =>
95_fieldBaseOffsetCache = new NodeCache<TypeDesc, Import>(key =>
103_rvaFieldAddressCache = new NodeCache<FieldWithToken, Import>(key =>
111_checkFieldOffsetCache = new NodeCache<FieldWithToken, Import>(key =>
119_dispatchCells = new NodeCache<MethodAndCallSite, Import>(cellKey =>
134_delegateCtors = new NodeCache<TypeAndMethod, Import>(ctorKey =>
149_checkTypeLayoutCache = new NodeCache<TypeDesc, Import>(key =>
157_virtualFunctionOverrideCache = new NodeCache<VirtualResolutionFixupSignature, Import>(key =>
162_ilBodyFixupsCache = new NodeCache<ILBodyFixupSignature, Import>(key => new PrecodeHelperImport(_codegenNodeFactory.ILBodyPrecodeImports, key));
164_genericLookupHelpers = new NodeCache<GenericLookupKey, Import>(key =>
179_pInvokeTargetNodes = new NodeCache<PInvokeTargetKey, Import>(key =>
189_continuationTypeFixups = new NodeCache<AsyncContinuationType, ISymbolNode>((key) =>
197_ecmaModuleFixupCache = new NodeCache<IEcmaModule, Import>(key =>
486private NodeCache<MethodAndCallSite, Import> _dispatchCells = new NodeCache<MethodAndCallSite, Import>();
494private NodeCache<TypeAndMethod, Import> _delegateCtors = new NodeCache<TypeAndMethod, Import>();
746private NodeCache<PInvokeTargetKey, Import> _pInvokeTargetNodes = new NodeCache<PInvokeTargetKey, Import>();
50 references to NodeCache
ILCompiler.ReadyToRun (50)
Compiler\DependencyAnalysis\ReadyToRunCodegenNodeFactory.cs (32)
131private NodeCache<MethodDesc, MethodWithGCInfo> _localMethodCache;
206private NodeCache<TypeDesc, AllMethodsOnTypeNode> _allMethodsOnType;
213private NodeCache<TypeDesc, InheritedVirtualMethodsNode> _inheritedVirtualMethods;
220private NodeCache<ArrayType, ArrayInterfaceMethodsNode> _arrayInterfaceMethods;
254private NodeCache<MethodDesc, GVMDependenciesNode> _gvmDependenciesNode;
264private NodeCache<MethodDesc, VirtualMethodUseNode> _virtualMethodUseNodes;
275private NodeCache<ReadyToRunGenericHelperKey, ISymbolNode> _genericReadyToRunHelpersFromDict;
282private NodeCache<ReadyToRunGenericHelperKey, ISymbolNode> _genericReadyToRunHelpersFromType;
649private NodeCache<ReadyToRunHelper, Import> _constructedHelpers;
658private NodeCache<TypeAndMethod, IMethodNode> _importMethods;
780private NodeCache<MethodFixupKey, MethodFixupSignature> _methodSignatures;
818private NodeCache<TypeFixupKey, TypeFixupSignature> _typeSignatures;
863private NodeCache<VirtualResolutionFixupSignatureFixupKey, VirtualResolutionFixupSignature> _virtualResolutionSignatures;
887private NodeCache<ILBodyFixupSignatureFixupKey, ILBodyFixupSignature> _ilBodySignatures =
929private NodeCache<ImportThunkKey, ISymbolDefinitionNode> _importThunks;
969private NodeCache<WasmImportThunkKey, ISymbolDefinitionNode> _wasmImportThunks;
1003private NodeCache<WasmImportThunkPortableEntrypointKey, ISymbolDefinitionNode> _wasmImportThunkPortableEntrypoints;
1010private NodeCache<WasmSignature, WasmR2RToInterpreterThunkNode> _wasmR2RToInterpreterThunks;
1016private NodeCache<WasmSignature, WasmInterpreterToR2RThunkNode> _wasmInterpreterToR2RThunks;
1047private NodeCache<WasmVirtualDispatchThunkKey, WasmVirtualDispatchThunkNode> _wasmVirtualDispatchThunks;
1381private NodeCache<DynamicHelperCellKey, ISymbolNode> _dynamicHelperCellCache;
1389private NodeCache<EcmaModule, CopiedCorHeaderNode> _copiedCorHeaders;
1396private NodeCache<ModuleAndIntValueKey, DebugDirectoryEntryNode> _debugDirectoryEntries;
1403private NodeCache<EcmaModule, CopiedMetadataBlobNode> _copiedMetadataBlobs;
1410private NodeCache<MethodDesc, CopiedMethodILNode> _copiedMethodIL;
1417private NodeCache<ModuleAndIntValueKey, CopiedFieldRvaNode> _copiedFieldRvas;
1433private NodeCache<EcmaModule, CopiedStrongNameSignatureNode> _copiedStrongNameSignatures;
1440private NodeCache<EcmaModule, CopiedManagedResourcesNode> _copiedManagedResources;
1472private NodeCache<WasmFuncType, WasmTypeNode> _wasmTypeNodes;
1473private NodeCache<MethodWithGCInfo, WasmMethodRelativeVirtualIPNode> _wasmMethodRelativeVirtualIPs;
1499private NodeCache<WasmUnboxingStubKey, WasmUnboxingStubNode> _wasmUnboxingStubs;
1500private NodeCache<MethodDesc, WasmUnboxingStubTargetNode> _wasmUnboxingStubTargets;
Compiler\DependencyAnalysis\ReadyToRunSymbolNodeFactory.cs (18)
205private NodeCache<AsyncContinuationType, ISymbolNode> _continuationTypeFixups;
212private NodeCache<ModuleToken, Import> _importStrings;
246private NodeCache<ReadyToRunHelperKey, Import> _r2rHelpers;
307private NodeCache<string, Import> _instructionSetSupportFixups;
308private NodeCache<MethodWithGCInfo, Import> _resumptionStubEntryPointFixups;
451private NodeCache<FieldWithToken, Import> _fieldAddressCache;
458private NodeCache<FieldWithToken, Import> _fieldOffsetCache;
465private NodeCache<FieldWithToken, Import> _checkFieldOffsetCache;
472private NodeCache<TypeDesc, Import> _fieldBaseOffsetCache;
479private NodeCache<FieldWithToken, Import> _rvaFieldAddressCache;
486private NodeCache<MethodAndCallSite, Import> _dispatchCells = new NodeCache<MethodAndCallSite, Import>();
494private NodeCache<TypeAndMethod, Import> _delegateCtors = new NodeCache<TypeAndMethod, Import>();
507private NodeCache<TypeDesc, Import> _checkTypeLayoutCache;
514private NodeCache<VirtualResolutionFixupSignature, Import> _virtualFunctionOverrideCache;
524private NodeCache<ILBodyFixupSignature, Import> _ilBodyFixupsCache;
533private NodeCache<IEcmaModule, Import> _ecmaModuleFixupCache;
618private NodeCache<GenericLookupKey, Import> _genericLookupHelpers;
746private NodeCache<PInvokeTargetKey, Import> _pInvokeTargetNodes = new NodeCache<PInvokeTargetKey, Import>();