├── .gitattributes ├── .gitignore ├── ILCompiler ├── Common │ ├── CommandLine │ │ ├── CommandLineException.cs │ │ └── CommandLineHelpers.cs │ ├── Internal │ │ ├── LowLevelLinq │ │ │ ├── LowLevelEnumerable.ToArray.cs │ │ │ ├── LowLevelEnumerable.ToList.cs │ │ │ └── LowLevelEnumerable.cs │ │ ├── Metadata │ │ │ └── NativeFormat │ │ │ │ ├── Generator │ │ │ │ ├── CsWriter.cs │ │ │ │ ├── MdBinaryReaderGen.cs │ │ │ │ ├── MdBinaryWriterGen.cs │ │ │ │ ├── NativeFormatGen.csproj │ │ │ │ ├── Program.cs │ │ │ │ ├── PublicGen.cs │ │ │ │ ├── ReaderGen.cs │ │ │ │ ├── SchemaDef.cs │ │ │ │ └── WriterGen.cs │ │ │ │ ├── MdBinaryReader.cs │ │ │ │ ├── MdBinaryReaderGen.cs │ │ │ │ ├── MetadataTypeHashingAlgorithms.cs │ │ │ │ ├── NativeFormatReaderCommonGen.cs │ │ │ │ ├── NativeFormatReaderGen.cs │ │ │ │ ├── NativeMetadataReader.cs │ │ │ │ └── UpdateNativeFormatSources.cmd │ │ ├── NativeFormat │ │ │ ├── NativeFormat.cs │ │ │ ├── NativeFormatReader.Metadata.cs │ │ │ ├── NativeFormatReader.Primitives.cs │ │ │ ├── NativeFormatReader.String.cs │ │ │ ├── NativeFormatReader.cs │ │ │ ├── NativeFormatWriter.Primitives.cs │ │ │ ├── NativeFormatWriter.cs │ │ │ ├── NativeFormatWriterExtensions.cs │ │ │ └── TypeHashingAlgorithms.cs │ │ ├── Runtime │ │ │ ├── CanonTypeKind.cs │ │ │ ├── CompilerHelpers │ │ │ │ ├── StartupCodeHelpers.cs │ │ │ │ └── StartupDebug.cs │ │ │ ├── EEType.Constants.cs │ │ │ ├── EEType.cs │ │ │ ├── EETypeBuilderHelpers.cs │ │ │ ├── EETypeOptionalFieldsBuilder.cs │ │ │ ├── GCDescEncoder.cs │ │ │ ├── ITargetBinaryWriter.cs │ │ │ ├── InterfaceDispatchCellCachePointerFlags.cs │ │ │ ├── InteropConstants.cs │ │ │ ├── LowLevelStringConverter.cs │ │ │ ├── MappingTableFlags.cs │ │ │ ├── MetadataBlob.cs │ │ │ ├── ModuleHeaders.cs │ │ │ ├── RuntimeConstants.cs │ │ │ ├── TransitionBlock.cs │ │ │ ├── TypeManagerHandle.RVA.cs │ │ │ ├── TypeManagerHandle.cs │ │ │ └── UniversalGenericParameterLayout.cs │ │ └── Text │ │ │ ├── Utf8String.cs │ │ │ └── Utf8StringBuilder.cs │ ├── Interop │ │ ├── Unix │ │ │ ├── Interop.Libraries.cs │ │ │ └── System.Private.CoreLib.Native │ │ │ │ ├── Interop.Abort.cs │ │ │ │ ├── Interop.DynamicLoad.cs │ │ │ │ ├── Interop.ErrNo.cs │ │ │ │ ├── Interop.Exit.cs │ │ │ │ ├── Interop.GetEnv.cs │ │ │ │ ├── Interop.GetEnviron.cs │ │ │ │ ├── Interop.GetExecutableAbsolutePath.cs │ │ │ │ ├── Interop.GetTickCount64.cs │ │ │ │ ├── Interop.MemAllocFree.cs │ │ │ │ ├── Interop.MemAllocWithZeroInitializeNoThrow.cs │ │ │ │ ├── Interop.MemReAlloc.cs │ │ │ │ ├── Interop.SchedGetCpu.cs │ │ │ │ └── Interop.Threading.cs │ │ └── Windows │ │ │ ├── Interop.Libraries.cs │ │ │ ├── Kernel32 │ │ │ ├── Interop.CompletionPort.cs │ │ │ ├── Interop.ConditionVariable.cs │ │ │ ├── Interop.CriticalSection.cs │ │ │ ├── Interop.ExitProcess.cs │ │ │ ├── Interop.GetModuleFileName.cs │ │ │ ├── Interop.GetSystemTimes.cs │ │ │ ├── Interop.MultiByteToWideChar.cs │ │ │ └── Interop.Threading.cs │ │ │ ├── Mincore │ │ │ ├── Interop.CLSIDFromProgID.cs │ │ │ ├── Interop.CommandLine.cs │ │ │ ├── Interop.DynamicLoad.cs │ │ │ ├── Interop.Environment.cs │ │ │ ├── Interop.GetCurrentProcessorNumber.cs │ │ │ ├── Interop.GetLastError.cs │ │ │ ├── Interop.GetSystemDirectory.cs │ │ │ ├── Interop.GetTickCount64.cs │ │ │ ├── Interop.IsDebuggerPresent.cs │ │ │ ├── Interop.MemAllocFree.cs │ │ │ ├── Interop.MemAllocWithZeroInitializeNoThrow.cs │ │ │ ├── Interop.MemReAlloc.cs │ │ │ ├── Interop.RaiseFailFastException.cs │ │ │ ├── Interop.SetLastError.cs │ │ │ ├── Interop.ThreadPool.cs │ │ │ ├── Interop.ThreadPoolIO.cs │ │ │ ├── Interop.TimeZone.cs │ │ │ └── Interop.Timer.cs │ │ │ └── Ole32 │ │ │ ├── Interop.CoGetApartmentType.cs │ │ │ ├── Interop.CoInitializeEx.cs │ │ │ ├── Interop.CoTaskMemAllocFree.cs │ │ │ └── Interop.CoUninitialize.cs │ ├── JitInterface │ │ ├── CorInfoTypes.VarInfo.cs │ │ └── MemoryHelper.cs │ ├── System │ │ ├── Collections │ │ │ ├── Concurrent │ │ │ │ ├── ConcurrentUnifier.cs │ │ │ │ ├── ConcurrentUnifierW.cs │ │ │ │ ├── ConcurrentUnifierWKeyed.cs │ │ │ │ └── IKeyedItem.cs │ │ │ ├── Generic │ │ │ │ ├── ArrayBuilder.cs │ │ │ │ ├── Empty.cs │ │ │ │ ├── EnumerableExtensions.cs │ │ │ │ ├── LowLevelDictionary.cs │ │ │ │ ├── LowLevelList.cs │ │ │ │ └── LowLevelStack.cs │ │ │ └── HashHelpers.cs │ │ ├── CommonRuntimeTypes.cs │ │ ├── FormattingHelpers.cs │ │ ├── NotImplemented.cs │ │ ├── Runtime │ │ │ ├── CompilerServices │ │ │ │ ├── DeveloperExperienceModeOnlyAttribute.cs │ │ │ │ ├── DeveloperExperienceState.cs │ │ │ │ ├── __BlockAllReflectionAttribute.cs │ │ │ │ └── __BlockReflectionAttribute.cs │ │ │ └── InteropServices │ │ │ │ ├── McgGeneratedNativeCallCodeAttribute.cs │ │ │ │ └── McgIntrinsicsAttribute.cs │ │ └── SR.cs │ └── TypeSystem │ │ ├── Canon │ │ ├── ArrayType.Canon.cs │ │ ├── ByRefType.Canon.cs │ │ ├── CanonTypes.Interop.cs │ │ ├── CanonTypes.Sorting.cs │ │ ├── CanonTypes.cs │ │ ├── DefType.Canon.cs │ │ ├── FunctionPointerType.Canon.cs │ │ ├── GenericParameterDesc.Canon.cs │ │ ├── InstantiatedMethod.Canon.cs │ │ ├── InstantiatedType.Canon.cs │ │ ├── MetadataType.Canon.cs │ │ ├── MethodDelegator.Canon.cs │ │ ├── MethodDesc.Canon.cs │ │ ├── MethodForInstantiatedType.Canon.cs │ │ ├── ParameterizedType.Canon.cs │ │ ├── PointerType.Canon.cs │ │ ├── SignatureVariable.Canon.cs │ │ ├── StandardCanonicalizationAlgorithm.cs │ │ ├── TypeDesc.Canon.cs │ │ └── TypeSystemContext.Canon.cs │ │ ├── CodeGen │ │ ├── FieldDesc.CodeGen.cs │ │ ├── INonEmittableType.cs │ │ ├── MethodDelegator.CodeGen.cs │ │ ├── MethodDesc.CodeGen.cs │ │ ├── NativeStructType.CodeGen.cs │ │ ├── TargetDetails.CodeGen.cs │ │ └── TypeDesc.CodeGen.cs │ │ ├── Common │ │ ├── AlignmentHelper.cs │ │ ├── ArrayOfTRuntimeInterfacesAlgorithm.cs │ │ ├── ArrayType.cs │ │ ├── BaseTypeRuntimeInterfacesAlgorithm.cs │ │ ├── ByRefType.cs │ │ ├── CastingHelper.cs │ │ ├── ConstructedTypeRewritingHelpers.cs │ │ ├── DefType.FieldLayout.cs │ │ ├── DefType.cs │ │ ├── ExceptionStringID.cs │ │ ├── FieldDesc.FieldLayout.cs │ │ ├── FieldDesc.ToString.cs │ │ ├── FieldDesc.cs │ │ ├── FieldForInstantiatedType.cs │ │ ├── FieldLayoutAlgorithm.cs │ │ ├── FunctionPointerType.cs │ │ ├── GenericParameterDesc.cs │ │ ├── IAssemblyDesc.cs │ │ ├── InstantiatedMethod.cs │ │ ├── InstantiatedType.FieldLayout.cs │ │ ├── InstantiatedType.Interfaces.cs │ │ ├── InstantiatedType.MethodImpls.cs │ │ ├── InstantiatedType.cs │ │ ├── Instantiation.cs │ │ ├── LayoutInt.cs │ │ ├── LocalVariableDefinition.cs │ │ ├── MetadataFieldLayoutAlgorithm.cs │ │ ├── MetadataRuntimeInterfacesAlgorithm.cs │ │ ├── MetadataType.Interfaces.cs │ │ ├── MetadataType.MethodImpls.cs │ │ ├── MetadataType.cs │ │ ├── MetadataTypeSystemContext.cs │ │ ├── MetadataVirtualMethodAlgorithm.cs │ │ ├── MethodDelegator.cs │ │ ├── MethodDesc.ToString.cs │ │ ├── MethodDesc.cs │ │ ├── MethodForInstantiatedType.cs │ │ ├── ModuleDesc.cs │ │ ├── ParameterizedType.cs │ │ ├── PointerType.cs │ │ ├── PropertySignature.cs │ │ ├── RuntimeInterfacesAlgorithm.cs │ │ ├── SignatureVariable.cs │ │ ├── TargetDetails.ToString.cs │ │ ├── TargetDetails.cs │ │ ├── ThreadSafeFlags.cs │ │ ├── ThrowHelper.Common.cs │ │ ├── ThrowHelper.cs │ │ ├── TypeDesc.Interfaces.cs │ │ ├── TypeDesc.ToString.cs │ │ ├── TypeDesc.cs │ │ ├── TypeFlags.cs │ │ ├── TypeHashingAlgorithms.cs │ │ ├── TypeSystemConstraintsHelpers.cs │ │ ├── TypeSystemContext.cs │ │ ├── TypeSystemEntity.cs │ │ ├── TypeSystemException.cs │ │ ├── TypeSystemHelpers.cs │ │ ├── UniversalCanonLayoutAlgorithm.cs │ │ ├── Utilities │ │ │ ├── CustomAttributeTypeNameFormatter.cs │ │ │ ├── CustomAttributeTypeNameParser.cs │ │ │ ├── DebugNameFormatter.cs │ │ │ ├── ExceptionTypeNameFormatter.Metadata.cs │ │ │ ├── ExceptionTypeNameFormatter.cs │ │ │ ├── GCPointerMap.Algorithm.cs │ │ │ ├── GCPointerMap.cs │ │ │ ├── LockFreeReaderHashtable.cs │ │ │ ├── LockFreeReaderHashtableOfPointers.cs │ │ │ └── TypeNameFormatter.cs │ │ ├── VirtualMethodAlgorithm.cs │ │ └── WellKnownType.cs │ │ ├── Ecma │ │ ├── CachingMetadataStringDecoder.cs │ │ ├── CustomAttributeTypeProvider.cs │ │ ├── EcmaAssembly.Symbols.cs │ │ ├── EcmaAssembly.cs │ │ ├── EcmaField.CodeGen.cs │ │ ├── EcmaField.Serialization.cs │ │ ├── EcmaField.Sorting.cs │ │ ├── EcmaField.cs │ │ ├── EcmaGenericParameter.Sorting.cs │ │ ├── EcmaGenericParameter.cs │ │ ├── EcmaMethod.Sorting.cs │ │ ├── EcmaMethod.cs │ │ ├── EcmaModule.Sorting.cs │ │ ├── EcmaModule.Symbols.cs │ │ ├── EcmaModule.cs │ │ ├── EcmaSignatureEncoder.cs │ │ ├── EcmaSignatureParser.cs │ │ ├── EcmaType.Interfaces.cs │ │ ├── EcmaType.MethodImpls.cs │ │ ├── EcmaType.Serialization.cs │ │ ├── EcmaType.Sorting.cs │ │ ├── EcmaType.cs │ │ ├── IMetadataStringDecoderProvider.cs │ │ ├── MetadataExtensions.cs │ │ ├── PrimitiveTypeProvider.cs │ │ └── SymbolReader │ │ │ ├── PdbSymbolReader.cs │ │ │ ├── PortablePdbSymbolReader.cs │ │ │ └── UnmanagedPdbSymbolReader.cs │ │ ├── IL │ │ ├── CoreRTILProvider.cs │ │ ├── DelegateInfo.cs │ │ ├── EcmaMethodIL.Symbols.cs │ │ ├── EcmaMethodIL.cs │ │ ├── HelperExtensions.cs │ │ ├── ILDisassembler.cs │ │ ├── ILImporter.cs │ │ ├── ILOpcode.cs │ │ ├── ILOpcodeHelper.cs │ │ ├── ILProvider.cs │ │ ├── ILReader.cs │ │ ├── ILStackHelper.cs │ │ ├── InstantiatedMethodIL.cs │ │ ├── MethodIL.Symbols.cs │ │ ├── MethodIL.cs │ │ ├── MethodILDebugView.cs │ │ ├── StackValueKind.cs │ │ ├── Stubs │ │ │ ├── AddrOfIntrinsic.cs │ │ │ ├── ArrayMethodILEmitter.cs │ │ │ ├── AssemblyGetExecutingAssemblyMethodThunk.Sorting.cs │ │ │ ├── AssemblyGetExecutingAssemblyMethodThunk.cs │ │ │ ├── CalliIntrinsic.cs │ │ │ ├── CalliMarshallingMethodThunk.Mangling.cs │ │ │ ├── CalliMarshallingMethodThunk.Sorting.cs │ │ │ ├── CalliMarshallingMethodThunk.cs │ │ │ ├── ComparerIntrinsics.cs │ │ │ ├── DebuggerSteppingHelpers.cs │ │ │ ├── DelegateMarshallingMethodThunk.Mangling.cs │ │ │ ├── DelegateMarshallingMethodThunk.Sorting.cs │ │ │ ├── DelegateMarshallingMethodThunk.cs │ │ │ ├── DelegateMethodILEmitter.cs │ │ │ ├── DelegateThunks.Sorting.cs │ │ │ ├── DelegateThunks.cs │ │ │ ├── DynamicInvokeMethodThunk.Sorting.cs │ │ │ ├── DynamicInvokeMethodThunk.cs │ │ │ ├── EETypePtrOfIntrinsic.cs │ │ │ ├── EnumThunks.Sorting.cs │ │ │ ├── EnumThunks.cs │ │ │ ├── ForwardDelegateCreationThunk.Mangling.cs │ │ │ ├── ForwardDelegateCreationThunk.Sorting.cs │ │ │ ├── ForwardDelegateCreationThunk.cs │ │ │ ├── GetCanonTypeIntrinsic.cs │ │ │ ├── ILEmitter.cs │ │ │ ├── MethodBaseGetCurrentMethodThunk.Mangling.cs │ │ │ ├── MethodBaseGetCurrentMethodThunk.Sorting.cs │ │ │ ├── MethodBaseGetCurrentMethodThunk.cs │ │ │ ├── PInvokeILEmitter.cs │ │ │ ├── PInvokeLazyFixupField.Sorting.cs │ │ │ ├── PInvokeLazyFixupField.cs │ │ │ ├── PInvokeTargetNativeMethod.Mangling.cs │ │ │ ├── PInvokeTargetNativeMethod.Sorting.cs │ │ │ ├── PInvokeTargetNativeMethod.cs │ │ │ ├── StructMarshallingThunk.Mangling.cs │ │ │ ├── StructMarshallingThunk.Sorting.cs │ │ │ ├── StructMarshallingThunk.cs │ │ │ ├── TypeGetTypeMethodThunk.Sorting.cs │ │ │ ├── TypeGetTypeMethodThunk.cs │ │ │ ├── TypeSystemThrowingILEmitter.cs │ │ │ ├── UnsafeIntrinsics.cs │ │ │ ├── ValueTypeGetFieldHelperMethodOverride.Sorting.cs │ │ │ └── ValueTypeGetFieldHelperMethodOverride.cs │ │ ├── TypeSystemContext.DelegateInfo.cs │ │ ├── TypeSystemContext.DynamicInvoke.cs │ │ ├── TypeSystemContext.EnumMethods.cs │ │ ├── TypeSystemContext.GeneratedAssembly.Sorting.cs │ │ ├── TypeSystemContext.GeneratedAssembly.cs │ │ └── TypeSystemContext.ValueTypeMethods.cs │ │ ├── Interop │ │ ├── IL │ │ │ ├── InlineArrayType.Sorting.cs │ │ │ ├── InlineArrayType.cs │ │ │ ├── MarshalHelpers.cs │ │ │ ├── MarshalUtils.cs │ │ │ ├── Marshaller.cs │ │ │ ├── NativeStructType.Mangling.cs │ │ │ ├── NativeStructType.Sorting.cs │ │ │ ├── NativeStructType.cs │ │ │ ├── PInvokeDelegateWrapper.Mangling.cs │ │ │ ├── PInvokeDelegateWrapper.Sorting.cs │ │ │ ├── PInvokeDelegateWrapper.cs │ │ │ ├── PInvokeDelegateWrapperConstructor.Sorting.cs │ │ │ ├── PInvokeDelegateWrapperConstructor.cs │ │ │ └── PInvokeILEmitterConfiguration.cs │ │ ├── InstantiatedType.Interop.cs │ │ ├── InteropStateManager.cs │ │ ├── InteropTypes.cs │ │ ├── MarshalAsDescriptor.cs │ │ ├── MetadataType.Interop.cs │ │ ├── MethodDelegator.Interop.cs │ │ └── MethodDesc.Interop.cs │ │ ├── Mangling │ │ ├── IPrefixMangledMethod.cs │ │ ├── IPrefixMangledSignature.cs │ │ └── IPrefixMangledType.cs │ │ ├── NativeFormat │ │ ├── MetadataExtensions.cs │ │ ├── NativeFormatField.CodeGen.cs │ │ ├── NativeFormatField.cs │ │ ├── NativeFormatGenericParameter.cs │ │ ├── NativeFormatMetadataUnit.cs │ │ ├── NativeFormatMethod.cs │ │ ├── NativeFormatModule.cs │ │ ├── NativeFormatSignatureParser.cs │ │ ├── NativeFormatType.Interfaces.cs │ │ ├── NativeFormatType.MethodImpls.cs │ │ └── NativeFormatType.cs │ │ ├── RuntimeDetermined │ │ ├── ArrayType.RuntimeDetermined.cs │ │ ├── ByRefType.RuntimeDetermined.cs │ │ ├── DefType.RuntimeDetermined.cs │ │ ├── FieldDesc.RuntimeDetermined.cs │ │ ├── FunctionPointerType.RuntimeDetermined.cs │ │ ├── GenericParameterDesc.RuntimeDetermined.cs │ │ ├── MethodDesc.RuntimeDetermined.cs │ │ ├── MethodForRuntimeDeterminedType.Sorting.cs │ │ ├── MethodForRuntimeDeterminedType.cs │ │ ├── ParameterizedType.RuntimeDetermined.cs │ │ ├── PointerType.RuntimeDetermined.cs │ │ ├── RuntimeDeterminedCanonicalizationAlgorithm.cs │ │ ├── RuntimeDeterminedFieldLayoutAlgorithm.cs │ │ ├── RuntimeDeterminedType.Sorting.cs │ │ ├── RuntimeDeterminedType.cs │ │ ├── RuntimeDeterminedTypeUtilities.cs │ │ ├── SignatureVariable.RuntimeDetermined.cs │ │ ├── TypeDesc.RuntimeDetermined.cs │ │ └── TypeSystemContext.RuntimeDetermined.cs │ │ ├── Serialization │ │ ├── FieldDesc.Serialization.cs │ │ └── TypeDesc.Serialization.cs │ │ ├── Sorting │ │ ├── ArrayType.Sorting.cs │ │ ├── ByRefType.Sorting.cs │ │ ├── FieldDesc.Sorting.cs │ │ ├── FieldForInstantiatedType.Sorting.cs │ │ ├── FunctionPointerType.Sorting.cs │ │ ├── InstantiatedMethod.Sorting.cs │ │ ├── InstantiatedType.Sorting.cs │ │ ├── MethodDesc.Sorting.cs │ │ ├── MethodForInstantiatedType.Sorting.cs │ │ ├── MethodSignature.Sorting.cs │ │ ├── PointerType.Sorting.cs │ │ ├── SignatureVariable.Sorting.cs │ │ ├── TypeDesc.Sorting.cs │ │ └── TypeSystemComparer.cs │ │ └── TypesDebugInfoWriter │ │ ├── DebugInfoWriter.cs │ │ ├── PrimitiveTypeDescriptor.cs │ │ └── TypesDebugInfoWriter.cs ├── ILCompiler.Compiler │ ├── Compiler │ │ ├── AnalysisBasedInteropStubManager.cs │ │ ├── AnalysisBasedMetadataManager.cs │ │ ├── BlockedInternalsBlockingPolicy.cs │ │ ├── CodeGenerationFailedException.cs │ │ ├── ComparerCompilationRootProvider.cs │ │ ├── Compilation.cs │ │ ├── CompilationBuilder.cs │ │ ├── CompilationModuleGroup.cs │ │ ├── CompilerGeneratedInteropStubManager.cs │ │ ├── CompilerMetadataFieldLayoutAlgorithm.cs │ │ ├── CompilerTypeSystemContext.BoxedTypes.cs │ │ ├── CompilerTypeSystemContext.Mangling.cs │ │ ├── CompilerTypeSystemContext.Sorting.cs │ │ ├── CompilerTypeSystemContext.TypeInit.cs │ │ ├── CompilerTypeSystemContext.cs │ │ ├── CoreRTNameMangler.cs │ │ ├── DebugInformationProvider.cs │ │ ├── DelegateCreationInfo.cs │ │ ├── DependencyAnalysis │ │ │ ├── ArrayMapNode.cs │ │ │ ├── ArrayOfEmbeddedDataNode.cs │ │ │ ├── ArrayOfEmbeddedPointersNode.cs │ │ │ ├── ArrayOfFrozenObjectsNode.cs │ │ │ ├── AssemblyStubNode.cs │ │ │ ├── BlobNode.cs │ │ │ ├── BlockReflectionTypeMapNode.cs │ │ │ ├── CallingConventionConverterKey.cs │ │ │ ├── CanonicalDefinitionEETypeNode.cs │ │ │ ├── CanonicalEETypeNode.cs │ │ │ ├── ClassConstructorContextMap.cs │ │ │ ├── ClonedConstructedEETypeNode.cs │ │ │ ├── CodeBasedDependencyAlgorithm.cs │ │ │ ├── CompilerComparer.cs │ │ │ ├── ConstructedEETypeNode.cs │ │ │ ├── CustomAttributeBasedDependencyAlgorithm.cs │ │ │ ├── DefaultConstructorMapNode.cs │ │ │ ├── DelegateMarshallingDataNode.cs │ │ │ ├── DelegateMarshallingStubMapNode.cs │ │ │ ├── DictionaryLayoutNode.cs │ │ │ ├── DynamicInvokeTemplateDataNode.cs │ │ │ ├── EETypeNode.cs │ │ │ ├── EETypeOptionalFieldsNode.cs │ │ │ ├── EmbeddedDataContainerNode.cs │ │ │ ├── EmbeddedObjectNode.cs │ │ │ ├── EmbeddedPointerIndirectionNode.cs │ │ │ ├── ExactMethodInstantiationsNode.cs │ │ │ ├── ExternEETypeSymbolNode.cs │ │ │ ├── ExternMethodSymbolNode.cs │ │ │ ├── ExternSymbolNode.cs │ │ │ ├── ExternSymbolsImportedNodeProvider.cs │ │ │ ├── ExternSymbolsWithIndirectionImportedNodeProvider.cs │ │ │ ├── ExternalReferencesTableNode.cs │ │ │ ├── FatFunctionPointerNode.cs │ │ │ ├── FieldMetadataNode.cs │ │ │ ├── FrozenArrayNode.cs │ │ │ ├── FrozenStringNode.cs │ │ │ ├── GCStaticDescNode.cs │ │ │ ├── GCStaticEETypeNode.cs │ │ │ ├── GCStaticsNode.cs │ │ │ ├── GCStaticsPreInitDataNode.cs │ │ │ ├── GVMDependenciesNode.cs │ │ │ ├── GenericCompositionNode.cs │ │ │ ├── GenericDefinitionEETypeNode.cs │ │ │ ├── GenericDictionaryNode.cs │ │ │ ├── GenericLookupResult.cs │ │ │ ├── GenericMethodsHashtableNode.cs │ │ │ ├── GenericMethodsTemplateMap.cs │ │ │ ├── GenericTypesHashtableNode.cs │ │ │ ├── GenericTypesTemplateMap.cs │ │ │ ├── GenericVirtualMethodTableNode.cs │ │ │ ├── HelperEntrypoint.cs │ │ │ ├── IEETypeNode.cs │ │ │ ├── IExportableSymbolNode.cs │ │ │ ├── ILScanNodeFactory.cs │ │ │ ├── IMethodBodyNode.cs │ │ │ ├── IMethodBodyNodeWithFuncletSymbols.cs │ │ │ ├── IMethodNode.cs │ │ │ ├── INodeWithCodeInfo.cs │ │ │ ├── INodeWithDebugInfo.cs │ │ │ ├── INodeWithRuntimeDeterminedDependencies.cs │ │ │ ├── IObjectDumper.cs │ │ │ ├── ISortableNode.cs │ │ │ ├── ISpecialUnboxThunkNode.cs │ │ │ ├── ISymbolNode.cs │ │ │ ├── ISymbolNodeWithDebugInfo.cs │ │ │ ├── ISymbolNodeWithFuncletId.cs │ │ │ ├── ImportedEETypeSymbolNode.cs │ │ │ ├── ImportedGenericDictionaryNode.cs │ │ │ ├── ImportedNodeProvider.cs │ │ │ ├── ImportedStaticsNode.cs │ │ │ ├── ImportedThreadStaticsNode.cs │ │ │ ├── IndirectionExtensions.cs │ │ │ ├── IndirectionNode.cs │ │ │ ├── InterfaceDispatchCellNode.cs │ │ │ ├── InterfaceDispatchCellSectionNode.cs │ │ │ ├── InterfaceDispatchMapNode.cs │ │ │ ├── InterfaceGenericVirtualMethodTableNode.cs │ │ │ ├── JumpStubNode.cs │ │ │ ├── LoopHijackFlagNode.cs │ │ │ ├── MetadataNode.cs │ │ │ ├── MethodAssociatedDataNode.cs │ │ │ ├── MethodMetadataNode.cs │ │ │ ├── ModuleMetadataNode.cs │ │ │ ├── ModulesSectionNode.cs │ │ │ ├── MrtImportImportedNodeProvider.cs │ │ │ ├── MrtImports.cs │ │ │ ├── MrtProcessedExportAddressTableNode.cs │ │ │ ├── MrtProcessedImportAddressTableNode.cs │ │ │ ├── NamedJumpStubNode.cs │ │ │ ├── NativeLayoutInfoNode.cs │ │ │ ├── NativeLayoutSignatureNode.cs │ │ │ ├── NativeLayoutVertexNode.cs │ │ │ ├── NecessaryCanonicalEETypeNode.cs │ │ │ ├── NodeFactory.GenericLookups.cs │ │ │ ├── NodeFactory.NativeLayout.cs │ │ │ ├── NodeFactory.WindowsDebugData.cs │ │ │ ├── NodeFactory.cs │ │ │ ├── NonExternMethodSymbolNode.cs │ │ │ ├── NonGCStaticsNode.cs │ │ │ ├── ObjectAndOffsetSymbolNode.cs │ │ │ ├── ObjectDataBuilder.cs │ │ │ ├── ObjectNode.cs │ │ │ ├── ObjectNodeSection.cs │ │ │ ├── ObjectWriter.cs │ │ │ ├── PInvokeMethodFixupNode.cs │ │ │ ├── PInvokeModuleFixupNode.cs │ │ │ ├── ReadyToRunGenericHelperNode.cs │ │ │ ├── ReadyToRunHeaderNode.cs │ │ │ ├── ReadyToRunHelperNode.cs │ │ │ ├── ReflectableMethodNode.cs │ │ │ ├── ReflectionFieldMapNode.cs │ │ │ ├── ReflectionInvokeMapNode.cs │ │ │ ├── ReflectionMethodBodyScanner.cs │ │ │ ├── ReflectionVirtualInvokeMapNode.cs │ │ │ ├── Relocation.cs │ │ │ ├── ResourceDataNode.cs │ │ │ ├── ResourceIndexNode.cs │ │ │ ├── RuntimeDecodableJumpStub.cs │ │ │ ├── RuntimeDeterminedMethodNode.cs │ │ │ ├── RuntimeFieldHandleNode.cs │ │ │ ├── RuntimeImportMethodNode.cs │ │ │ ├── RuntimeMethodHandleNode.cs │ │ │ ├── ScannedMethodNode.cs │ │ │ ├── SealedVTableNode.cs │ │ │ ├── ShadowConcreteMethodNode.cs │ │ │ ├── ShadowConcreteUnboxingThunkNode.cs │ │ │ ├── SortableDependencyNode.cs │ │ │ ├── StackTraceEmbeddedMetadataNode.cs │ │ │ ├── StackTraceMethodMappingNode.cs │ │ │ ├── StaticsInfoHashtableNode.cs │ │ │ ├── StringAllocatorMethodNode.cs │ │ │ ├── StructMarshallingDataNode.cs │ │ │ ├── StructMarshallingStubMapNode.cs │ │ │ ├── Target_ARM │ │ │ │ ├── ARMDebug.cs │ │ │ │ ├── ARMEmitter.cs │ │ │ │ ├── ARMInitialInterfaceDispatchStubNode.cs │ │ │ │ ├── ARMJumpStubNode.cs │ │ │ │ ├── ARMNodeFactory.cs │ │ │ │ ├── ARMReadyToRunGenericHelperNode.cs │ │ │ │ ├── ARMReadyToRunHelperNode.cs │ │ │ │ ├── ARMUnboxingStubNode.cs │ │ │ │ ├── Register.cs │ │ │ │ └── TargetRegisterMap.cs │ │ │ ├── Target_ARM64 │ │ │ │ ├── ARM64Emitter.cs │ │ │ │ ├── ARM64JumpStubNode.cs │ │ │ │ ├── ARM64ReadyToRunGenericHelperNode.cs │ │ │ │ ├── ARM64ReadyToRunHelperNode.cs │ │ │ │ ├── ARM64UnboxingStubNode.cs │ │ │ │ ├── AddrMode.cs │ │ │ │ ├── Register.cs │ │ │ │ └── TargetRegisterMap.cs │ │ │ ├── Target_X64 │ │ │ │ ├── AddrMode.cs │ │ │ │ ├── Register.cs │ │ │ │ ├── TargetRegisterMap.cs │ │ │ │ ├── X64Emitter.cs │ │ │ │ ├── X64JumpStubNode.cs │ │ │ │ ├── X64ReadyToRunGenericHelperNode.cs │ │ │ │ ├── X64ReadyToRunHelperNode.cs │ │ │ │ └── X64UnboxingStubNode.cs │ │ │ ├── Target_X86 │ │ │ │ ├── AddrMode.cs │ │ │ │ ├── Register.cs │ │ │ │ ├── TargetRegisterMap.cs │ │ │ │ ├── X86Emitter.cs │ │ │ │ ├── X86JumpStubNode.cs │ │ │ │ ├── X86ReadyToRunGenericHelperNode.cs │ │ │ │ ├── X86ReadyToRunHelperNode.cs │ │ │ │ └── X86UnboxingStubNode.cs │ │ │ ├── ThreadStaticsIndexNode.cs │ │ │ ├── ThreadStaticsNode.cs │ │ │ ├── ThreadStaticsOffsetNode.cs │ │ │ ├── TypeGVMEntriesNode.cs │ │ │ ├── TypeManagerIndirectionNode.cs │ │ │ ├── TypeMetadataMapNode.cs │ │ │ ├── TypeMetadataNode.cs │ │ │ ├── TypeThreadStaticIndexNode.cs │ │ │ ├── UnboxingStubNode.cs │ │ │ ├── UtcNodeFactory.cs │ │ │ ├── UtcThreadStaticsNode.cs │ │ │ ├── VTableSliceNode.cs │ │ │ ├── VirtualMethodUseNode.cs │ │ │ ├── WindowsDebugILImagesSection.cs │ │ │ ├── WindowsDebugManagedNativeDictionaryInfoSection.cs │ │ │ ├── WindowsDebugMergedAssemblyRecordsSection.cs │ │ │ ├── WindowsDebugMethodInfoSection.cs │ │ │ ├── WindowsDebugMethodMapSection.cs │ │ │ ├── WindowsDebugNeedTypeIndicesStoreNode.cs │ │ │ ├── WindowsDebugPseudoAssemblySection.cs │ │ │ ├── WindowsDebugTypeRecordsSection.cs │ │ │ └── WindowsDebugTypeSignatureMapSection.cs │ │ ├── DependencyTrackingLevel.cs │ │ ├── DevirtualizationManager.cs │ │ ├── DictionaryLayoutProvider.cs │ │ ├── DirectPInvokePolicy.cs │ │ ├── DynamicInvokeThunkGenerationPolicy.cs │ │ ├── EmptyInteropStubManager.cs │ │ ├── EmptyMetadataManager.cs │ │ ├── ExportedMethodsRootProvider.cs │ │ ├── ExportsFileWriter.cs │ │ ├── ExternSymbolMappedField.cs │ │ ├── FrameworkStringResourceBlockingPolicy.cs │ │ ├── GeneratingMetadataManager.cs │ │ ├── GenericDictionaryLookup.cs │ │ ├── HardwareIntrinsicHelpers.cs │ │ ├── ICompilationRootProvider.cs │ │ ├── ILAssemblyGeneratingMethodDebugInfoProvider.cs │ │ ├── ILScanner.cs │ │ ├── ILScannerBuilder.cs │ │ ├── ILStreamReader.cs │ │ ├── IRootingServiceProvider.cs │ │ ├── InternalCompilerErrorException.cs │ │ ├── InteropStubManager.cs │ │ ├── JitHelper.cs │ │ ├── LazyGenericsPolicy.cs │ │ ├── LibraryInitializers.cs │ │ ├── LibraryRootProvider.cs │ │ ├── MainMethodRootProvider.cs │ │ ├── ManagedBinaryEmitter.cs │ │ ├── ManifestResourceBlockingPolicy.cs │ │ ├── MergedAssemblyRecords.cs │ │ ├── MetadataBlockingPolicy.cs │ │ ├── MetadataManager.cs │ │ ├── MethodExtensions.cs │ │ ├── MultiFileCompilationModuleGroup.cs │ │ ├── NameMangler.cs │ │ ├── NativeLibraryInitializerRootProvider.cs │ │ ├── NoManifestResourceBlockingPolicy.cs │ │ ├── NoMetadataBlockingPolicy.cs │ │ ├── NodeMangler.cs │ │ ├── ObjectDumper.cs │ │ ├── PreInitFieldInfo.cs │ │ ├── PrecomputedMetadataManager.cs │ │ ├── ReadyToRun.cs │ │ ├── RootingHelpers.cs │ │ ├── RootingServiceProvider.cs │ │ ├── RuntimeConfigurationRootProvider.cs │ │ ├── SimdHelper.cs │ │ ├── SingleFileCompilationModuleGroup.cs │ │ ├── SingleMethodCompilationModuleGroup.cs │ │ ├── SingleMethodRootProvider.cs │ │ ├── StackTraceEmissionPolicy.cs │ │ ├── TypeExtensions.cs │ │ ├── UniversalGenericsRootProvider.cs │ │ ├── UnixNodeMangler.cs │ │ ├── UsageBasedInteropStubManager.cs │ │ ├── UsageBasedMetadataManager.cs │ │ ├── UserDefinedTypeDescriptor.cs │ │ ├── UtcNameMangler.cs │ │ ├── UtcNodeMangler.cs │ │ ├── UtcStackTraceEmissionPolicy.cs │ │ ├── VTableSliceProvider.cs │ │ ├── VectorFieldLayoutAlgorithm.cs │ │ ├── VectorOfTFieldLayoutAlgorithm.cs │ │ ├── VirtualMethodCallHelper.cs │ │ └── WindowsNodeMangler.cs │ ├── IL │ │ ├── ILImporter.Scanner.cs │ │ ├── McgInteropSupport.cs │ │ └── Stubs │ │ │ ├── PInvokeILProvider.cs │ │ │ └── StartupCode │ │ │ ├── AppContextInitializerMethod.Sorting.cs │ │ │ ├── AppContextInitializerMethod.cs │ │ │ ├── NativeLibraryStartupMethod.Sorting.cs │ │ │ ├── NativeLibraryStartupMethod.cs │ │ │ ├── StartupCodeMainMethod.Sorting.cs │ │ │ └── StartupCodeMainMethod.cs │ ├── ILCompiler.Compiler.csproj │ └── Logger.cs ├── ILCompiler.DependencyAnalysisFramework │ ├── ComputedStaticDependencyNode.cs │ ├── DependencyAnalyzer.cs │ ├── DependencyAnalyzerBase.cs │ ├── DependencyNode.cs │ ├── DependencyNodeCore.cs │ ├── DgmlWriter.cs │ ├── EventSourceLogStrategy.cs │ ├── FirstMarkLogStrategy.cs │ ├── FullGraphLogStrategy.cs │ ├── IDependencyAnalysisMarkStrategy.cs │ ├── IDependencyAnalyzerLogEdgeVisitor.cs │ ├── IDependencyAnalyzerLogNodeVisitor.cs │ ├── IDependencyNode.cs │ ├── ILCompiler.DependencyAnalysisFramework.csproj │ ├── NoLogStrategy.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── ILCompiler.Host │ ├── ILCompiler.Host.csproj │ ├── ILCompiler.Host.sln │ ├── ILCompiler │ │ ├── ByteArrayEqualityComparer.cs │ │ ├── CtlClassification.cs │ │ ├── DependencyAnalysis │ │ │ ├── ObjectWriterUTC.cs │ │ │ ├── PartiallyPrecomputedDictionaryLayoutNode.cs │ │ │ ├── UtcDictionaryLayoutEngine.cs │ │ │ ├── UtcGenericLookupNode.cs │ │ │ ├── UtcVersionedDictionaryLayoutNode.cs │ │ │ └── WriteablePrecomputedDictionaryLayoutNode.cs │ │ ├── DictionaryQueryResult.cs │ │ ├── FloatingLookupKey.cs │ │ ├── GenericLookupLayoutType.cs │ │ ├── HostedCompilation.cs │ │ ├── HostedCompilationGroup.cs │ │ ├── HostedCompilationType.cs │ │ ├── HostedCoreRTBasedMultifileCompilationGroup.cs │ │ ├── HostedDependencyNodeComparer.cs │ │ ├── HostedMultifleCompilationGroup.cs │ │ ├── IILCompilerHost.cs │ │ ├── ILCompilerHost.cs │ │ ├── ISTSTokenProvider.cs │ │ ├── LinkageNames.cs │ │ ├── LinkageTokenType.cs │ │ ├── MergedAssemblyRecordParser.cs │ │ ├── MethodKey.cs │ │ ├── MultifilePolicy.cs │ │ ├── NetNativeCompilerContext.cs │ │ ├── NetNativeFieldLayoutAlgorithm.cs │ │ ├── RootingServiceProvider.cs │ │ ├── ScannerOutcome.cs │ │ ├── SymbolIdentifier.cs │ │ ├── SystemPrivateCanonModuleDesc.cs │ │ ├── Toc │ │ │ ├── ElementsToExport.cs │ │ │ ├── ImportExportInfo.cs │ │ │ ├── NativeImportExportKind.cs │ │ │ ├── TocData.cs │ │ │ ├── TocEmitter.cs │ │ │ ├── TocOutputFlags.cs │ │ │ └── TocReader.cs │ │ ├── TocModuleKind.cs │ │ └── TypeSystemContextModuleProviderAdapter.cs │ ├── Internal.CommandLine │ │ ├── CommandLineException.cs │ │ └── Helpers.cs │ ├── Internal.TypeSystem.Bridge │ │ ├── ComposerModule.cs │ │ ├── ComposerTemporaryTokenMap_T_.cs │ │ ├── ComposerTokenResolver.cs │ │ ├── ComposerTypeSystemContext.cs │ │ ├── DummyGenericContext.cs │ │ ├── IEcmaModuleProvider.cs │ │ ├── IEcmaTokenResolver.cs │ │ ├── IReverseTypeSystemBridgeProvider.cs │ │ ├── ITypeSystemBridgeProvider.cs │ │ ├── MetadataComposer.cs │ │ ├── SignatureExtensions.cs │ │ ├── SignatureTypeProvider_T_.cs │ │ ├── TempToPermanentMapping.cs │ │ ├── TokenType.cs │ │ └── TypeSystemBridgeProvider.cs │ ├── Microsoft.NetNative │ │ └── ErrorTraceListener.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── System.Collections.Generic │ │ └── ArrayBuilder_T_.cs │ ├── app.config │ └── packages.config ├── ILCompiler.MetadataTransform │ ├── ILCompiler.MetadataTransform.csproj │ └── ILCompiler │ │ └── Metadata │ │ ├── EntityMap.cs │ │ ├── ExplicitScopeAssemblyPolicyMixin.cs │ │ ├── IMetadataPolicy.cs │ │ ├── MetadataTransform.cs │ │ ├── MetadataTransformResult.cs │ │ ├── Transform.Constant.cs │ │ ├── Transform.CustomAttribute.cs │ │ ├── Transform.Event.cs │ │ ├── Transform.Field.cs │ │ ├── Transform.Method.cs │ │ ├── Transform.Namespace.cs │ │ ├── Transform.Parameter.cs │ │ ├── Transform.Property.cs │ │ ├── Transform.Scope.cs │ │ ├── Transform.String.cs │ │ ├── Transform.Type.cs │ │ ├── Transform.TypeForwarders.cs │ │ └── Transform.cs ├── ILCompiler.MetadataWriter │ ├── ILCompiler.MetadataWriter.csproj │ └── Internal │ │ └── Metadata │ │ └── NativeFormat │ │ └── Writer │ │ ├── ConstantValues.cs │ │ ├── MdBinaryWriter.cs │ │ ├── MdBinaryWriterGen.cs │ │ ├── NativeFormatWriterGen.cs │ │ └── NativeMetadataWriter.cs └── ILCompiler.TypeSystem │ ├── ILCompiler.TypeSystem.csproj │ └── Utilities │ └── UniqueTypeNameFormatter.cs ├── LICENSE.txt ├── Libs ├── ARM │ ├── mrt100X_app.exp │ └── mrt100X_app.lib ├── mrt100X_app.def ├── x64 │ ├── mrt100X_app.exp │ └── mrt100X_app.lib └── x86 │ ├── mrt100X_app.exp │ └── mrt100X_app.lib ├── ProjectRT.sln ├── README.md ├── bootstrap ├── bootstrap.cpp ├── bootstrap.vcxproj └── bootstrap.vcxproj.filters ├── bootstrap_dll ├── bootstrap_dll.cpp ├── bootstrap_dll.vcxproj └── bootstrap_dll.vcxproj.filters ├── shimAppDll ├── shimAppDll.cpp ├── shimAppDll.vcxproj └── shimAppDll.vcxproj.filters └── shimExe ├── shimExe.cpp ├── shimExe.vcxproj └── shimExe.vcxproj.filters /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/.gitignore -------------------------------------------------------------------------------- /ILCompiler/Common/CommandLine/CommandLineException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/CommandLine/CommandLineException.cs -------------------------------------------------------------------------------- /ILCompiler/Common/CommandLine/CommandLineHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/CommandLine/CommandLineHelpers.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/LowLevelLinq/LowLevelEnumerable.ToArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/LowLevelLinq/LowLevelEnumerable.ToArray.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/LowLevelLinq/LowLevelEnumerable.ToList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/LowLevelLinq/LowLevelEnumerable.ToList.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/LowLevelLinq/LowLevelEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/LowLevelLinq/LowLevelEnumerable.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/Metadata/NativeFormat/Generator/CsWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/Metadata/NativeFormat/Generator/CsWriter.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/Metadata/NativeFormat/Generator/MdBinaryReaderGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/Metadata/NativeFormat/Generator/MdBinaryReaderGen.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/Metadata/NativeFormat/Generator/MdBinaryWriterGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/Metadata/NativeFormat/Generator/MdBinaryWriterGen.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/Metadata/NativeFormat/Generator/NativeFormatGen.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/Metadata/NativeFormat/Generator/NativeFormatGen.csproj -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/Metadata/NativeFormat/Generator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/Metadata/NativeFormat/Generator/Program.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/Metadata/NativeFormat/Generator/PublicGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/Metadata/NativeFormat/Generator/PublicGen.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/Metadata/NativeFormat/Generator/ReaderGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/Metadata/NativeFormat/Generator/ReaderGen.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/Metadata/NativeFormat/Generator/SchemaDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/Metadata/NativeFormat/Generator/SchemaDef.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/Metadata/NativeFormat/Generator/WriterGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/Metadata/NativeFormat/Generator/WriterGen.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/Metadata/NativeFormat/MdBinaryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/Metadata/NativeFormat/MdBinaryReader.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/Metadata/NativeFormat/MdBinaryReaderGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/Metadata/NativeFormat/MdBinaryReaderGen.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/Metadata/NativeFormat/MetadataTypeHashingAlgorithms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/Metadata/NativeFormat/MetadataTypeHashingAlgorithms.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/Metadata/NativeFormat/NativeFormatReaderCommonGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/Metadata/NativeFormat/NativeFormatReaderCommonGen.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/Metadata/NativeFormat/NativeFormatReaderGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/Metadata/NativeFormat/NativeFormatReaderGen.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/Metadata/NativeFormat/NativeMetadataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/Metadata/NativeFormat/NativeMetadataReader.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/Metadata/NativeFormat/UpdateNativeFormatSources.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/Metadata/NativeFormat/UpdateNativeFormatSources.cmd -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/NativeFormat/NativeFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/NativeFormat/NativeFormat.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/NativeFormat/NativeFormatReader.Metadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/NativeFormat/NativeFormatReader.Metadata.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/NativeFormat/NativeFormatReader.Primitives.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/NativeFormat/NativeFormatReader.Primitives.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/NativeFormat/NativeFormatReader.String.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/NativeFormat/NativeFormatReader.String.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/NativeFormat/NativeFormatReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/NativeFormat/NativeFormatReader.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/NativeFormat/NativeFormatWriter.Primitives.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/NativeFormat/NativeFormatWriter.Primitives.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/NativeFormat/NativeFormatWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/NativeFormat/NativeFormatWriter.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/NativeFormat/NativeFormatWriterExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/NativeFormat/NativeFormatWriterExtensions.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/NativeFormat/TypeHashingAlgorithms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/NativeFormat/TypeHashingAlgorithms.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/Runtime/CanonTypeKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/Runtime/CanonTypeKind.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/Runtime/CompilerHelpers/StartupCodeHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/Runtime/CompilerHelpers/StartupCodeHelpers.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/Runtime/CompilerHelpers/StartupDebug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/Runtime/CompilerHelpers/StartupDebug.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/Runtime/EEType.Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/Runtime/EEType.Constants.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/Runtime/EEType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/Runtime/EEType.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/Runtime/EETypeBuilderHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/Runtime/EETypeBuilderHelpers.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/Runtime/EETypeOptionalFieldsBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/Runtime/EETypeOptionalFieldsBuilder.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/Runtime/GCDescEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/Runtime/GCDescEncoder.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/Runtime/ITargetBinaryWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/Runtime/ITargetBinaryWriter.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/Runtime/InterfaceDispatchCellCachePointerFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/Runtime/InterfaceDispatchCellCachePointerFlags.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/Runtime/InteropConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/Runtime/InteropConstants.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/Runtime/LowLevelStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/Runtime/LowLevelStringConverter.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/Runtime/MappingTableFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/Runtime/MappingTableFlags.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/Runtime/MetadataBlob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/Runtime/MetadataBlob.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/Runtime/ModuleHeaders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/Runtime/ModuleHeaders.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/Runtime/RuntimeConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/Runtime/RuntimeConstants.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/Runtime/TransitionBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/Runtime/TransitionBlock.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/Runtime/TypeManagerHandle.RVA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/Runtime/TypeManagerHandle.RVA.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/Runtime/TypeManagerHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/Runtime/TypeManagerHandle.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/Runtime/UniversalGenericParameterLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/Runtime/UniversalGenericParameterLayout.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/Text/Utf8String.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/Text/Utf8String.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Internal/Text/Utf8StringBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Internal/Text/Utf8StringBuilder.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Unix/Interop.Libraries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Unix/Interop.Libraries.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Unix/System.Private.CoreLib.Native/Interop.Abort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Unix/System.Private.CoreLib.Native/Interop.Abort.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Unix/System.Private.CoreLib.Native/Interop.DynamicLoad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Unix/System.Private.CoreLib.Native/Interop.DynamicLoad.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Unix/System.Private.CoreLib.Native/Interop.ErrNo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Unix/System.Private.CoreLib.Native/Interop.ErrNo.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Unix/System.Private.CoreLib.Native/Interop.Exit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Unix/System.Private.CoreLib.Native/Interop.Exit.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Unix/System.Private.CoreLib.Native/Interop.GetEnv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Unix/System.Private.CoreLib.Native/Interop.GetEnv.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Unix/System.Private.CoreLib.Native/Interop.GetEnviron.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Unix/System.Private.CoreLib.Native/Interop.GetEnviron.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Unix/System.Private.CoreLib.Native/Interop.GetTickCount64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Unix/System.Private.CoreLib.Native/Interop.GetTickCount64.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Unix/System.Private.CoreLib.Native/Interop.MemAllocFree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Unix/System.Private.CoreLib.Native/Interop.MemAllocFree.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Unix/System.Private.CoreLib.Native/Interop.MemReAlloc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Unix/System.Private.CoreLib.Native/Interop.MemReAlloc.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Unix/System.Private.CoreLib.Native/Interop.SchedGetCpu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Unix/System.Private.CoreLib.Native/Interop.SchedGetCpu.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Unix/System.Private.CoreLib.Native/Interop.Threading.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Unix/System.Private.CoreLib.Native/Interop.Threading.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Windows/Interop.Libraries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Windows/Interop.Libraries.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Windows/Kernel32/Interop.CompletionPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Windows/Kernel32/Interop.CompletionPort.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Windows/Kernel32/Interop.ConditionVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Windows/Kernel32/Interop.ConditionVariable.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Windows/Kernel32/Interop.CriticalSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Windows/Kernel32/Interop.CriticalSection.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Windows/Kernel32/Interop.ExitProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Windows/Kernel32/Interop.ExitProcess.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Windows/Kernel32/Interop.GetModuleFileName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Windows/Kernel32/Interop.GetModuleFileName.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Windows/Kernel32/Interop.GetSystemTimes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Windows/Kernel32/Interop.GetSystemTimes.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Windows/Kernel32/Interop.MultiByteToWideChar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Windows/Kernel32/Interop.MultiByteToWideChar.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Windows/Kernel32/Interop.Threading.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Windows/Kernel32/Interop.Threading.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Windows/Mincore/Interop.CLSIDFromProgID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Windows/Mincore/Interop.CLSIDFromProgID.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Windows/Mincore/Interop.CommandLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Windows/Mincore/Interop.CommandLine.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Windows/Mincore/Interop.DynamicLoad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Windows/Mincore/Interop.DynamicLoad.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Windows/Mincore/Interop.Environment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Windows/Mincore/Interop.Environment.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Windows/Mincore/Interop.GetCurrentProcessorNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Windows/Mincore/Interop.GetCurrentProcessorNumber.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Windows/Mincore/Interop.GetLastError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Windows/Mincore/Interop.GetLastError.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Windows/Mincore/Interop.GetSystemDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Windows/Mincore/Interop.GetSystemDirectory.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Windows/Mincore/Interop.GetTickCount64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Windows/Mincore/Interop.GetTickCount64.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Windows/Mincore/Interop.IsDebuggerPresent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Windows/Mincore/Interop.IsDebuggerPresent.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Windows/Mincore/Interop.MemAllocFree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Windows/Mincore/Interop.MemAllocFree.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Windows/Mincore/Interop.MemAllocWithZeroInitializeNoThrow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Windows/Mincore/Interop.MemAllocWithZeroInitializeNoThrow.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Windows/Mincore/Interop.MemReAlloc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Windows/Mincore/Interop.MemReAlloc.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Windows/Mincore/Interop.RaiseFailFastException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Windows/Mincore/Interop.RaiseFailFastException.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Windows/Mincore/Interop.SetLastError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Windows/Mincore/Interop.SetLastError.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Windows/Mincore/Interop.ThreadPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Windows/Mincore/Interop.ThreadPool.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Windows/Mincore/Interop.ThreadPoolIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Windows/Mincore/Interop.ThreadPoolIO.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Windows/Mincore/Interop.TimeZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Windows/Mincore/Interop.TimeZone.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Windows/Mincore/Interop.Timer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Windows/Mincore/Interop.Timer.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Windows/Ole32/Interop.CoGetApartmentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Windows/Ole32/Interop.CoGetApartmentType.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Windows/Ole32/Interop.CoInitializeEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Windows/Ole32/Interop.CoInitializeEx.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Windows/Ole32/Interop.CoTaskMemAllocFree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Windows/Ole32/Interop.CoTaskMemAllocFree.cs -------------------------------------------------------------------------------- /ILCompiler/Common/Interop/Windows/Ole32/Interop.CoUninitialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/Interop/Windows/Ole32/Interop.CoUninitialize.cs -------------------------------------------------------------------------------- /ILCompiler/Common/JitInterface/CorInfoTypes.VarInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/JitInterface/CorInfoTypes.VarInfo.cs -------------------------------------------------------------------------------- /ILCompiler/Common/JitInterface/MemoryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/JitInterface/MemoryHelper.cs -------------------------------------------------------------------------------- /ILCompiler/Common/System/Collections/Concurrent/ConcurrentUnifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/System/Collections/Concurrent/ConcurrentUnifier.cs -------------------------------------------------------------------------------- /ILCompiler/Common/System/Collections/Concurrent/ConcurrentUnifierW.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/System/Collections/Concurrent/ConcurrentUnifierW.cs -------------------------------------------------------------------------------- /ILCompiler/Common/System/Collections/Concurrent/ConcurrentUnifierWKeyed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/System/Collections/Concurrent/ConcurrentUnifierWKeyed.cs -------------------------------------------------------------------------------- /ILCompiler/Common/System/Collections/Concurrent/IKeyedItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/System/Collections/Concurrent/IKeyedItem.cs -------------------------------------------------------------------------------- /ILCompiler/Common/System/Collections/Generic/ArrayBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/System/Collections/Generic/ArrayBuilder.cs -------------------------------------------------------------------------------- /ILCompiler/Common/System/Collections/Generic/Empty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/System/Collections/Generic/Empty.cs -------------------------------------------------------------------------------- /ILCompiler/Common/System/Collections/Generic/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/System/Collections/Generic/EnumerableExtensions.cs -------------------------------------------------------------------------------- /ILCompiler/Common/System/Collections/Generic/LowLevelDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/System/Collections/Generic/LowLevelDictionary.cs -------------------------------------------------------------------------------- /ILCompiler/Common/System/Collections/Generic/LowLevelList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/System/Collections/Generic/LowLevelList.cs -------------------------------------------------------------------------------- /ILCompiler/Common/System/Collections/Generic/LowLevelStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/System/Collections/Generic/LowLevelStack.cs -------------------------------------------------------------------------------- /ILCompiler/Common/System/Collections/HashHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/System/Collections/HashHelpers.cs -------------------------------------------------------------------------------- /ILCompiler/Common/System/CommonRuntimeTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/System/CommonRuntimeTypes.cs -------------------------------------------------------------------------------- /ILCompiler/Common/System/FormattingHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/System/FormattingHelpers.cs -------------------------------------------------------------------------------- /ILCompiler/Common/System/NotImplemented.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/System/NotImplemented.cs -------------------------------------------------------------------------------- /ILCompiler/Common/System/Runtime/CompilerServices/DeveloperExperienceState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/System/Runtime/CompilerServices/DeveloperExperienceState.cs -------------------------------------------------------------------------------- /ILCompiler/Common/System/Runtime/CompilerServices/__BlockAllReflectionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/System/Runtime/CompilerServices/__BlockAllReflectionAttribute.cs -------------------------------------------------------------------------------- /ILCompiler/Common/System/Runtime/CompilerServices/__BlockReflectionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/System/Runtime/CompilerServices/__BlockReflectionAttribute.cs -------------------------------------------------------------------------------- /ILCompiler/Common/System/Runtime/InteropServices/McgGeneratedNativeCallCodeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/System/Runtime/InteropServices/McgGeneratedNativeCallCodeAttribute.cs -------------------------------------------------------------------------------- /ILCompiler/Common/System/Runtime/InteropServices/McgIntrinsicsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/System/Runtime/InteropServices/McgIntrinsicsAttribute.cs -------------------------------------------------------------------------------- /ILCompiler/Common/System/SR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/System/SR.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Canon/ArrayType.Canon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Canon/ArrayType.Canon.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Canon/ByRefType.Canon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Canon/ByRefType.Canon.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Canon/CanonTypes.Interop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Canon/CanonTypes.Interop.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Canon/CanonTypes.Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Canon/CanonTypes.Sorting.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Canon/CanonTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Canon/CanonTypes.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Canon/DefType.Canon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Canon/DefType.Canon.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Canon/FunctionPointerType.Canon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Canon/FunctionPointerType.Canon.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Canon/GenericParameterDesc.Canon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Canon/GenericParameterDesc.Canon.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Canon/InstantiatedMethod.Canon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Canon/InstantiatedMethod.Canon.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Canon/InstantiatedType.Canon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Canon/InstantiatedType.Canon.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Canon/MetadataType.Canon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Canon/MetadataType.Canon.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Canon/MethodDelegator.Canon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Canon/MethodDelegator.Canon.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Canon/MethodDesc.Canon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Canon/MethodDesc.Canon.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Canon/MethodForInstantiatedType.Canon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Canon/MethodForInstantiatedType.Canon.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Canon/ParameterizedType.Canon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Canon/ParameterizedType.Canon.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Canon/PointerType.Canon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Canon/PointerType.Canon.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Canon/SignatureVariable.Canon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Canon/SignatureVariable.Canon.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Canon/StandardCanonicalizationAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Canon/StandardCanonicalizationAlgorithm.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Canon/TypeDesc.Canon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Canon/TypeDesc.Canon.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Canon/TypeSystemContext.Canon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Canon/TypeSystemContext.Canon.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/CodeGen/FieldDesc.CodeGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/CodeGen/FieldDesc.CodeGen.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/CodeGen/INonEmittableType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/CodeGen/INonEmittableType.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/CodeGen/MethodDelegator.CodeGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/CodeGen/MethodDelegator.CodeGen.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/CodeGen/MethodDesc.CodeGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/CodeGen/MethodDesc.CodeGen.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/CodeGen/NativeStructType.CodeGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/CodeGen/NativeStructType.CodeGen.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/CodeGen/TargetDetails.CodeGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/CodeGen/TargetDetails.CodeGen.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/CodeGen/TypeDesc.CodeGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/CodeGen/TypeDesc.CodeGen.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/AlignmentHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/AlignmentHelper.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/ArrayOfTRuntimeInterfacesAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/ArrayOfTRuntimeInterfacesAlgorithm.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/ArrayType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/ArrayType.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/BaseTypeRuntimeInterfacesAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/BaseTypeRuntimeInterfacesAlgorithm.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/ByRefType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/ByRefType.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/CastingHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/CastingHelper.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/ConstructedTypeRewritingHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/ConstructedTypeRewritingHelpers.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/DefType.FieldLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/DefType.FieldLayout.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/DefType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/DefType.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/ExceptionStringID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/ExceptionStringID.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/FieldDesc.FieldLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/FieldDesc.FieldLayout.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/FieldDesc.ToString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/FieldDesc.ToString.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/FieldDesc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/FieldDesc.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/FieldForInstantiatedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/FieldForInstantiatedType.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/FieldLayoutAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/FieldLayoutAlgorithm.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/FunctionPointerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/FunctionPointerType.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/GenericParameterDesc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/GenericParameterDesc.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/IAssemblyDesc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/IAssemblyDesc.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/InstantiatedMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/InstantiatedMethod.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/InstantiatedType.FieldLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/InstantiatedType.FieldLayout.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/InstantiatedType.Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/InstantiatedType.Interfaces.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/InstantiatedType.MethodImpls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/InstantiatedType.MethodImpls.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/InstantiatedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/InstantiatedType.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/Instantiation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/Instantiation.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/LayoutInt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/LayoutInt.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/LocalVariableDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/LocalVariableDefinition.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/MetadataFieldLayoutAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/MetadataFieldLayoutAlgorithm.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/MetadataRuntimeInterfacesAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/MetadataRuntimeInterfacesAlgorithm.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/MetadataType.Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/MetadataType.Interfaces.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/MetadataType.MethodImpls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/MetadataType.MethodImpls.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/MetadataType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/MetadataType.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/MetadataTypeSystemContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/MetadataTypeSystemContext.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/MetadataVirtualMethodAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/MetadataVirtualMethodAlgorithm.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/MethodDelegator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/MethodDelegator.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/MethodDesc.ToString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/MethodDesc.ToString.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/MethodDesc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/MethodDesc.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/MethodForInstantiatedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/MethodForInstantiatedType.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/ModuleDesc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/ModuleDesc.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/ParameterizedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/ParameterizedType.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/PointerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/PointerType.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/PropertySignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/PropertySignature.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/RuntimeInterfacesAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/RuntimeInterfacesAlgorithm.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/SignatureVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/SignatureVariable.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/TargetDetails.ToString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/TargetDetails.ToString.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/TargetDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/TargetDetails.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/ThreadSafeFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/ThreadSafeFlags.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/ThrowHelper.Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/ThrowHelper.Common.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/ThrowHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/ThrowHelper.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/TypeDesc.Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/TypeDesc.Interfaces.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/TypeDesc.ToString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/TypeDesc.ToString.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/TypeDesc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/TypeDesc.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/TypeFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/TypeFlags.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/TypeHashingAlgorithms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/TypeHashingAlgorithms.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/TypeSystemConstraintsHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/TypeSystemConstraintsHelpers.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/TypeSystemContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/TypeSystemContext.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/TypeSystemEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/TypeSystemEntity.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/TypeSystemException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/TypeSystemException.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/TypeSystemHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/TypeSystemHelpers.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/UniversalCanonLayoutAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/UniversalCanonLayoutAlgorithm.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/Utilities/CustomAttributeTypeNameFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/Utilities/CustomAttributeTypeNameFormatter.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/Utilities/CustomAttributeTypeNameParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/Utilities/CustomAttributeTypeNameParser.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/Utilities/DebugNameFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/Utilities/DebugNameFormatter.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/Utilities/ExceptionTypeNameFormatter.Metadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/Utilities/ExceptionTypeNameFormatter.Metadata.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/Utilities/ExceptionTypeNameFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/Utilities/ExceptionTypeNameFormatter.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/Utilities/GCPointerMap.Algorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/Utilities/GCPointerMap.Algorithm.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/Utilities/GCPointerMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/Utilities/GCPointerMap.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/Utilities/LockFreeReaderHashtable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/Utilities/LockFreeReaderHashtable.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/Utilities/LockFreeReaderHashtableOfPointers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/Utilities/LockFreeReaderHashtableOfPointers.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/Utilities/TypeNameFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/Utilities/TypeNameFormatter.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/VirtualMethodAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/VirtualMethodAlgorithm.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Common/WellKnownType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Common/WellKnownType.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Ecma/CachingMetadataStringDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Ecma/CachingMetadataStringDecoder.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Ecma/CustomAttributeTypeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Ecma/CustomAttributeTypeProvider.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Ecma/EcmaAssembly.Symbols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Ecma/EcmaAssembly.Symbols.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Ecma/EcmaAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Ecma/EcmaAssembly.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Ecma/EcmaField.CodeGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Ecma/EcmaField.CodeGen.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Ecma/EcmaField.Serialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Ecma/EcmaField.Serialization.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Ecma/EcmaField.Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Ecma/EcmaField.Sorting.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Ecma/EcmaField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Ecma/EcmaField.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Ecma/EcmaGenericParameter.Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Ecma/EcmaGenericParameter.Sorting.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Ecma/EcmaGenericParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Ecma/EcmaGenericParameter.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Ecma/EcmaMethod.Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Ecma/EcmaMethod.Sorting.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Ecma/EcmaMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Ecma/EcmaMethod.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Ecma/EcmaModule.Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Ecma/EcmaModule.Sorting.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Ecma/EcmaModule.Symbols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Ecma/EcmaModule.Symbols.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Ecma/EcmaModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Ecma/EcmaModule.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Ecma/EcmaSignatureEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Ecma/EcmaSignatureEncoder.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Ecma/EcmaSignatureParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Ecma/EcmaSignatureParser.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Ecma/EcmaType.Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Ecma/EcmaType.Interfaces.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Ecma/EcmaType.MethodImpls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Ecma/EcmaType.MethodImpls.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Ecma/EcmaType.Serialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Ecma/EcmaType.Serialization.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Ecma/EcmaType.Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Ecma/EcmaType.Sorting.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Ecma/EcmaType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Ecma/EcmaType.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Ecma/IMetadataStringDecoderProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Ecma/IMetadataStringDecoderProvider.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Ecma/MetadataExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Ecma/MetadataExtensions.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Ecma/PrimitiveTypeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Ecma/PrimitiveTypeProvider.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Ecma/SymbolReader/PdbSymbolReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Ecma/SymbolReader/PdbSymbolReader.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Ecma/SymbolReader/PortablePdbSymbolReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Ecma/SymbolReader/PortablePdbSymbolReader.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Ecma/SymbolReader/UnmanagedPdbSymbolReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Ecma/SymbolReader/UnmanagedPdbSymbolReader.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/CoreRTILProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/CoreRTILProvider.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/DelegateInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/DelegateInfo.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/EcmaMethodIL.Symbols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/EcmaMethodIL.Symbols.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/EcmaMethodIL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/EcmaMethodIL.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/HelperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/HelperExtensions.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/ILDisassembler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/ILDisassembler.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/ILImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/ILImporter.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/ILOpcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/ILOpcode.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/ILOpcodeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/ILOpcodeHelper.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/ILProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/ILProvider.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/ILReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/ILReader.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/ILStackHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/ILStackHelper.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/InstantiatedMethodIL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/InstantiatedMethodIL.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/MethodIL.Symbols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/MethodIL.Symbols.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/MethodIL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/MethodIL.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/MethodILDebugView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/MethodILDebugView.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/StackValueKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/StackValueKind.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/AddrOfIntrinsic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/AddrOfIntrinsic.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/ArrayMethodILEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/ArrayMethodILEmitter.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/AssemblyGetExecutingAssemblyMethodThunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/AssemblyGetExecutingAssemblyMethodThunk.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/CalliIntrinsic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/CalliIntrinsic.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/CalliMarshallingMethodThunk.Mangling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/CalliMarshallingMethodThunk.Mangling.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/CalliMarshallingMethodThunk.Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/CalliMarshallingMethodThunk.Sorting.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/CalliMarshallingMethodThunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/CalliMarshallingMethodThunk.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/ComparerIntrinsics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/ComparerIntrinsics.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/DebuggerSteppingHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/DebuggerSteppingHelpers.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/DelegateMarshallingMethodThunk.Mangling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/DelegateMarshallingMethodThunk.Mangling.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/DelegateMarshallingMethodThunk.Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/DelegateMarshallingMethodThunk.Sorting.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/DelegateMarshallingMethodThunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/DelegateMarshallingMethodThunk.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/DelegateMethodILEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/DelegateMethodILEmitter.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/DelegateThunks.Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/DelegateThunks.Sorting.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/DelegateThunks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/DelegateThunks.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/DynamicInvokeMethodThunk.Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/DynamicInvokeMethodThunk.Sorting.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/DynamicInvokeMethodThunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/DynamicInvokeMethodThunk.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/EETypePtrOfIntrinsic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/EETypePtrOfIntrinsic.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/EnumThunks.Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/EnumThunks.Sorting.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/EnumThunks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/EnumThunks.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/ForwardDelegateCreationThunk.Mangling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/ForwardDelegateCreationThunk.Mangling.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/ForwardDelegateCreationThunk.Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/ForwardDelegateCreationThunk.Sorting.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/ForwardDelegateCreationThunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/ForwardDelegateCreationThunk.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/GetCanonTypeIntrinsic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/GetCanonTypeIntrinsic.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/ILEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/ILEmitter.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/MethodBaseGetCurrentMethodThunk.Mangling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/MethodBaseGetCurrentMethodThunk.Mangling.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/MethodBaseGetCurrentMethodThunk.Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/MethodBaseGetCurrentMethodThunk.Sorting.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/MethodBaseGetCurrentMethodThunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/MethodBaseGetCurrentMethodThunk.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/PInvokeILEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/PInvokeILEmitter.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/PInvokeLazyFixupField.Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/PInvokeLazyFixupField.Sorting.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/PInvokeLazyFixupField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/PInvokeLazyFixupField.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/PInvokeTargetNativeMethod.Mangling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/PInvokeTargetNativeMethod.Mangling.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/PInvokeTargetNativeMethod.Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/PInvokeTargetNativeMethod.Sorting.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/PInvokeTargetNativeMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/PInvokeTargetNativeMethod.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/StructMarshallingThunk.Mangling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/StructMarshallingThunk.Mangling.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/StructMarshallingThunk.Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/StructMarshallingThunk.Sorting.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/StructMarshallingThunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/StructMarshallingThunk.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/TypeGetTypeMethodThunk.Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/TypeGetTypeMethodThunk.Sorting.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/TypeGetTypeMethodThunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/TypeGetTypeMethodThunk.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/TypeSystemThrowingILEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/TypeSystemThrowingILEmitter.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/UnsafeIntrinsics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/UnsafeIntrinsics.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/ValueTypeGetFieldHelperMethodOverride.Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/ValueTypeGetFieldHelperMethodOverride.Sorting.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/Stubs/ValueTypeGetFieldHelperMethodOverride.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/Stubs/ValueTypeGetFieldHelperMethodOverride.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/TypeSystemContext.DelegateInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/TypeSystemContext.DelegateInfo.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/TypeSystemContext.DynamicInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/TypeSystemContext.DynamicInvoke.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/TypeSystemContext.EnumMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/TypeSystemContext.EnumMethods.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/TypeSystemContext.GeneratedAssembly.Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/TypeSystemContext.GeneratedAssembly.Sorting.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/TypeSystemContext.GeneratedAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/TypeSystemContext.GeneratedAssembly.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/IL/TypeSystemContext.ValueTypeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/IL/TypeSystemContext.ValueTypeMethods.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Interop/IL/InlineArrayType.Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Interop/IL/InlineArrayType.Sorting.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Interop/IL/InlineArrayType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Interop/IL/InlineArrayType.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Interop/IL/MarshalHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Interop/IL/MarshalHelpers.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Interop/IL/MarshalUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Interop/IL/MarshalUtils.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Interop/IL/Marshaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Interop/IL/Marshaller.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Interop/IL/NativeStructType.Mangling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Interop/IL/NativeStructType.Mangling.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Interop/IL/NativeStructType.Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Interop/IL/NativeStructType.Sorting.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Interop/IL/NativeStructType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Interop/IL/NativeStructType.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Interop/IL/PInvokeDelegateWrapper.Mangling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Interop/IL/PInvokeDelegateWrapper.Mangling.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Interop/IL/PInvokeDelegateWrapper.Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Interop/IL/PInvokeDelegateWrapper.Sorting.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Interop/IL/PInvokeDelegateWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Interop/IL/PInvokeDelegateWrapper.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Interop/IL/PInvokeDelegateWrapperConstructor.Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Interop/IL/PInvokeDelegateWrapperConstructor.Sorting.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Interop/IL/PInvokeDelegateWrapperConstructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Interop/IL/PInvokeDelegateWrapperConstructor.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Interop/IL/PInvokeILEmitterConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Interop/IL/PInvokeILEmitterConfiguration.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Interop/InstantiatedType.Interop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Interop/InstantiatedType.Interop.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Interop/InteropStateManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Interop/InteropStateManager.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Interop/InteropTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Interop/InteropTypes.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Interop/MarshalAsDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Interop/MarshalAsDescriptor.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Interop/MetadataType.Interop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Interop/MetadataType.Interop.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Interop/MethodDelegator.Interop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Interop/MethodDelegator.Interop.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Interop/MethodDesc.Interop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Interop/MethodDesc.Interop.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Mangling/IPrefixMangledMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Mangling/IPrefixMangledMethod.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Mangling/IPrefixMangledSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Mangling/IPrefixMangledSignature.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Mangling/IPrefixMangledType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Mangling/IPrefixMangledType.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/NativeFormat/MetadataExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/NativeFormat/MetadataExtensions.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/NativeFormat/NativeFormatField.CodeGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/NativeFormat/NativeFormatField.CodeGen.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/NativeFormat/NativeFormatField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/NativeFormat/NativeFormatField.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/NativeFormat/NativeFormatGenericParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/NativeFormat/NativeFormatGenericParameter.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/NativeFormat/NativeFormatMetadataUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/NativeFormat/NativeFormatMetadataUnit.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/NativeFormat/NativeFormatMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/NativeFormat/NativeFormatMethod.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/NativeFormat/NativeFormatModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/NativeFormat/NativeFormatModule.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/NativeFormat/NativeFormatSignatureParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/NativeFormat/NativeFormatSignatureParser.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/NativeFormat/NativeFormatType.Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/NativeFormat/NativeFormatType.Interfaces.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/NativeFormat/NativeFormatType.MethodImpls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/NativeFormat/NativeFormatType.MethodImpls.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/NativeFormat/NativeFormatType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/NativeFormat/NativeFormatType.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/RuntimeDetermined/ArrayType.RuntimeDetermined.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/RuntimeDetermined/ArrayType.RuntimeDetermined.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/RuntimeDetermined/ByRefType.RuntimeDetermined.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/RuntimeDetermined/ByRefType.RuntimeDetermined.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/RuntimeDetermined/DefType.RuntimeDetermined.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/RuntimeDetermined/DefType.RuntimeDetermined.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/RuntimeDetermined/FieldDesc.RuntimeDetermined.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/RuntimeDetermined/FieldDesc.RuntimeDetermined.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/RuntimeDetermined/FunctionPointerType.RuntimeDetermined.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/RuntimeDetermined/FunctionPointerType.RuntimeDetermined.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/RuntimeDetermined/MethodDesc.RuntimeDetermined.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/RuntimeDetermined/MethodDesc.RuntimeDetermined.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/RuntimeDetermined/MethodForRuntimeDeterminedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/RuntimeDetermined/MethodForRuntimeDeterminedType.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/RuntimeDetermined/ParameterizedType.RuntimeDetermined.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/RuntimeDetermined/ParameterizedType.RuntimeDetermined.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/RuntimeDetermined/PointerType.RuntimeDetermined.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/RuntimeDetermined/PointerType.RuntimeDetermined.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/RuntimeDetermined/RuntimeDeterminedFieldLayoutAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/RuntimeDetermined/RuntimeDeterminedFieldLayoutAlgorithm.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/RuntimeDetermined/RuntimeDeterminedType.Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/RuntimeDetermined/RuntimeDeterminedType.Sorting.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/RuntimeDetermined/RuntimeDeterminedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/RuntimeDetermined/RuntimeDeterminedType.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/RuntimeDetermined/RuntimeDeterminedTypeUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/RuntimeDetermined/RuntimeDeterminedTypeUtilities.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/RuntimeDetermined/SignatureVariable.RuntimeDetermined.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/RuntimeDetermined/SignatureVariable.RuntimeDetermined.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/RuntimeDetermined/TypeDesc.RuntimeDetermined.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/RuntimeDetermined/TypeDesc.RuntimeDetermined.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/RuntimeDetermined/TypeSystemContext.RuntimeDetermined.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/RuntimeDetermined/TypeSystemContext.RuntimeDetermined.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Serialization/FieldDesc.Serialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Serialization/FieldDesc.Serialization.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Serialization/TypeDesc.Serialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Serialization/TypeDesc.Serialization.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Sorting/ArrayType.Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Sorting/ArrayType.Sorting.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Sorting/ByRefType.Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Sorting/ByRefType.Sorting.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Sorting/FieldDesc.Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Sorting/FieldDesc.Sorting.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Sorting/FieldForInstantiatedType.Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Sorting/FieldForInstantiatedType.Sorting.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Sorting/FunctionPointerType.Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Sorting/FunctionPointerType.Sorting.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Sorting/InstantiatedMethod.Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Sorting/InstantiatedMethod.Sorting.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Sorting/InstantiatedType.Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Sorting/InstantiatedType.Sorting.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Sorting/MethodDesc.Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Sorting/MethodDesc.Sorting.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Sorting/MethodForInstantiatedType.Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Sorting/MethodForInstantiatedType.Sorting.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Sorting/MethodSignature.Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Sorting/MethodSignature.Sorting.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Sorting/PointerType.Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Sorting/PointerType.Sorting.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Sorting/SignatureVariable.Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Sorting/SignatureVariable.Sorting.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Sorting/TypeDesc.Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Sorting/TypeDesc.Sorting.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/Sorting/TypeSystemComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/Sorting/TypeSystemComparer.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/TypesDebugInfoWriter/DebugInfoWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/TypesDebugInfoWriter/DebugInfoWriter.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/TypesDebugInfoWriter/PrimitiveTypeDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/TypesDebugInfoWriter/PrimitiveTypeDescriptor.cs -------------------------------------------------------------------------------- /ILCompiler/Common/TypeSystem/TypesDebugInfoWriter/TypesDebugInfoWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/Common/TypeSystem/TypesDebugInfoWriter/TypesDebugInfoWriter.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/AnalysisBasedInteropStubManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/AnalysisBasedInteropStubManager.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/AnalysisBasedMetadataManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/AnalysisBasedMetadataManager.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/BlockedInternalsBlockingPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/BlockedInternalsBlockingPolicy.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/CodeGenerationFailedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/CodeGenerationFailedException.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/ComparerCompilationRootProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/ComparerCompilationRootProvider.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/Compilation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/Compilation.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/CompilationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/CompilationBuilder.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/CompilationModuleGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/CompilationModuleGroup.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/CompilerGeneratedInteropStubManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/CompilerGeneratedInteropStubManager.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/CompilerMetadataFieldLayoutAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/CompilerMetadataFieldLayoutAlgorithm.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/CompilerTypeSystemContext.BoxedTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/CompilerTypeSystemContext.BoxedTypes.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/CompilerTypeSystemContext.Mangling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/CompilerTypeSystemContext.Mangling.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/CompilerTypeSystemContext.Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/CompilerTypeSystemContext.Sorting.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/CompilerTypeSystemContext.TypeInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/CompilerTypeSystemContext.TypeInit.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/CompilerTypeSystemContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/CompilerTypeSystemContext.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/CoreRTNameMangler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/CoreRTNameMangler.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DebugInformationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DebugInformationProvider.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DelegateCreationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DelegateCreationInfo.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ArrayMapNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ArrayMapNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ArrayOfEmbeddedDataNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ArrayOfEmbeddedDataNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ArrayOfFrozenObjectsNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ArrayOfFrozenObjectsNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/AssemblyStubNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/AssemblyStubNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/BlobNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/BlobNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/CanonicalEETypeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/CanonicalEETypeNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/CompilerComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/CompilerComparer.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ConstructedEETypeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ConstructedEETypeNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/DefaultConstructorMapNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/DefaultConstructorMapNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/DictionaryLayoutNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/DictionaryLayoutNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/EETypeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/EETypeNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/EETypeOptionalFieldsNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/EETypeOptionalFieldsNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/EmbeddedDataContainerNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/EmbeddedDataContainerNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/EmbeddedObjectNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/EmbeddedObjectNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ExternEETypeSymbolNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ExternEETypeSymbolNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ExternMethodSymbolNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ExternMethodSymbolNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ExternSymbolNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ExternSymbolNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/FatFunctionPointerNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/FatFunctionPointerNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/FieldMetadataNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/FieldMetadataNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/FrozenArrayNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/FrozenArrayNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/FrozenStringNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/FrozenStringNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/GCStaticDescNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/GCStaticDescNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/GCStaticEETypeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/GCStaticEETypeNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/GCStaticsNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/GCStaticsNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/GCStaticsPreInitDataNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/GCStaticsPreInitDataNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/GVMDependenciesNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/GVMDependenciesNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/GenericCompositionNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/GenericCompositionNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/GenericDictionaryNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/GenericDictionaryNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/GenericLookupResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/GenericLookupResult.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/GenericMethodsTemplateMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/GenericMethodsTemplateMap.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/GenericTypesHashtableNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/GenericTypesHashtableNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/GenericTypesTemplateMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/GenericTypesTemplateMap.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/HelperEntrypoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/HelperEntrypoint.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/IEETypeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/IEETypeNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/IExportableSymbolNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/IExportableSymbolNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ILScanNodeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ILScanNodeFactory.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/IMethodBodyNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/IMethodBodyNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/IMethodNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/IMethodNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/INodeWithCodeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/INodeWithCodeInfo.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/INodeWithDebugInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/INodeWithDebugInfo.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/IObjectDumper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/IObjectDumper.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ISortableNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ISortableNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ISpecialUnboxThunkNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ISpecialUnboxThunkNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ISymbolNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ISymbolNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ISymbolNodeWithDebugInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ISymbolNodeWithDebugInfo.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ISymbolNodeWithFuncletId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ISymbolNodeWithFuncletId.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ImportedEETypeSymbolNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ImportedEETypeSymbolNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ImportedNodeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ImportedNodeProvider.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ImportedStaticsNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ImportedStaticsNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ImportedThreadStaticsNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ImportedThreadStaticsNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/IndirectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/IndirectionExtensions.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/IndirectionNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/IndirectionNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/InterfaceDispatchCellNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/InterfaceDispatchCellNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/InterfaceDispatchMapNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/InterfaceDispatchMapNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/JumpStubNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/JumpStubNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/LoopHijackFlagNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/LoopHijackFlagNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/MetadataNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/MetadataNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/MethodAssociatedDataNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/MethodAssociatedDataNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/MethodMetadataNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/MethodMetadataNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ModuleMetadataNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ModuleMetadataNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ModulesSectionNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ModulesSectionNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/MrtImports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/MrtImports.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/NamedJumpStubNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/NamedJumpStubNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/NativeLayoutInfoNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/NativeLayoutInfoNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/NativeLayoutSignatureNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/NativeLayoutSignatureNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/NativeLayoutVertexNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/NativeLayoutVertexNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/NodeFactory.NativeLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/NodeFactory.NativeLayout.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/NodeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/NodeFactory.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/NonExternMethodSymbolNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/NonExternMethodSymbolNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/NonGCStaticsNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/NonGCStaticsNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ObjectAndOffsetSymbolNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ObjectAndOffsetSymbolNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ObjectDataBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ObjectDataBuilder.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ObjectNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ObjectNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ObjectNodeSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ObjectNodeSection.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ObjectWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ObjectWriter.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/PInvokeMethodFixupNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/PInvokeMethodFixupNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/PInvokeModuleFixupNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/PInvokeModuleFixupNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ReadyToRunHeaderNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ReadyToRunHeaderNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ReadyToRunHelperNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ReadyToRunHelperNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ReflectableMethodNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ReflectableMethodNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ReflectionFieldMapNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ReflectionFieldMapNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ReflectionInvokeMapNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ReflectionInvokeMapNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/Relocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/Relocation.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ResourceDataNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ResourceDataNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ResourceIndexNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ResourceIndexNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/RuntimeDecodableJumpStub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/RuntimeDecodableJumpStub.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/RuntimeFieldHandleNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/RuntimeFieldHandleNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/RuntimeImportMethodNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/RuntimeImportMethodNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ScannedMethodNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ScannedMethodNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/SealedVTableNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/SealedVTableNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/SortableDependencyNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/SortableDependencyNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/Target_ARM/ARMDebug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/Target_ARM/ARMDebug.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/Target_ARM/ARMEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/Target_ARM/ARMEmitter.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/Target_ARM/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/Target_ARM/Register.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/Target_ARM64/AddrMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/Target_ARM64/AddrMode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/Target_ARM64/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/Target_ARM64/Register.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/Target_X64/AddrMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/Target_X64/AddrMode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/Target_X64/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/Target_X64/Register.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/Target_X64/X64Emitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/Target_X64/X64Emitter.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/Target_X86/AddrMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/Target_X86/AddrMode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/Target_X86/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/Target_X86/Register.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/Target_X86/X86Emitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/Target_X86/X86Emitter.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ThreadStaticsIndexNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ThreadStaticsIndexNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ThreadStaticsNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/ThreadStaticsNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/TypeGVMEntriesNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/TypeGVMEntriesNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/TypeMetadataMapNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/TypeMetadataMapNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/TypeMetadataNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/TypeMetadataNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/UnboxingStubNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/UnboxingStubNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/UtcNodeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/UtcNodeFactory.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/UtcThreadStaticsNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/UtcThreadStaticsNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/VTableSliceNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/VTableSliceNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/VirtualMethodUseNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyAnalysis/VirtualMethodUseNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DependencyTrackingLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DependencyTrackingLevel.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DevirtualizationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DevirtualizationManager.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DictionaryLayoutProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DictionaryLayoutProvider.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DirectPInvokePolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DirectPInvokePolicy.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/DynamicInvokeThunkGenerationPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/DynamicInvokeThunkGenerationPolicy.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/EmptyInteropStubManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/EmptyInteropStubManager.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/EmptyMetadataManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/EmptyMetadataManager.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/ExportedMethodsRootProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/ExportedMethodsRootProvider.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/ExportsFileWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/ExportsFileWriter.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/ExternSymbolMappedField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/ExternSymbolMappedField.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/FrameworkStringResourceBlockingPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/FrameworkStringResourceBlockingPolicy.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/GeneratingMetadataManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/GeneratingMetadataManager.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/GenericDictionaryLookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/GenericDictionaryLookup.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/HardwareIntrinsicHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/HardwareIntrinsicHelpers.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/ICompilationRootProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/ICompilationRootProvider.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/ILScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/ILScanner.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/ILScannerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/ILScannerBuilder.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/ILStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/ILStreamReader.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/IRootingServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/IRootingServiceProvider.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/InternalCompilerErrorException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/InternalCompilerErrorException.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/InteropStubManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/InteropStubManager.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/JitHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/JitHelper.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/LazyGenericsPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/LazyGenericsPolicy.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/LibraryInitializers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/LibraryInitializers.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/LibraryRootProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/LibraryRootProvider.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/MainMethodRootProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/MainMethodRootProvider.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/ManagedBinaryEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/ManagedBinaryEmitter.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/ManifestResourceBlockingPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/ManifestResourceBlockingPolicy.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/MergedAssemblyRecords.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/MergedAssemblyRecords.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/MetadataBlockingPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/MetadataBlockingPolicy.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/MetadataManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/MetadataManager.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/MethodExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/MethodExtensions.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/MultiFileCompilationModuleGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/MultiFileCompilationModuleGroup.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/NameMangler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/NameMangler.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/NativeLibraryInitializerRootProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/NativeLibraryInitializerRootProvider.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/NoManifestResourceBlockingPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/NoManifestResourceBlockingPolicy.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/NoMetadataBlockingPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/NoMetadataBlockingPolicy.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/NodeMangler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/NodeMangler.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/ObjectDumper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/ObjectDumper.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/PreInitFieldInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/PreInitFieldInfo.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/PrecomputedMetadataManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/PrecomputedMetadataManager.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/ReadyToRun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/ReadyToRun.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/RootingHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/RootingHelpers.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/RootingServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/RootingServiceProvider.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/RuntimeConfigurationRootProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/RuntimeConfigurationRootProvider.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/SimdHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/SimdHelper.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/SingleFileCompilationModuleGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/SingleFileCompilationModuleGroup.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/SingleMethodCompilationModuleGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/SingleMethodCompilationModuleGroup.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/SingleMethodRootProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/SingleMethodRootProvider.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/StackTraceEmissionPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/StackTraceEmissionPolicy.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/TypeExtensions.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/UniversalGenericsRootProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/UniversalGenericsRootProvider.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/UnixNodeMangler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/UnixNodeMangler.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/UsageBasedInteropStubManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/UsageBasedInteropStubManager.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/UsageBasedMetadataManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/UsageBasedMetadataManager.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/UserDefinedTypeDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/UserDefinedTypeDescriptor.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/UtcNameMangler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/UtcNameMangler.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/UtcNodeMangler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/UtcNodeMangler.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/UtcStackTraceEmissionPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/UtcStackTraceEmissionPolicy.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/VTableSliceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/VTableSliceProvider.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/VectorFieldLayoutAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/VectorFieldLayoutAlgorithm.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/VectorOfTFieldLayoutAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/VectorOfTFieldLayoutAlgorithm.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/VirtualMethodCallHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/VirtualMethodCallHelper.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Compiler/WindowsNodeMangler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Compiler/WindowsNodeMangler.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/IL/ILImporter.Scanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/IL/ILImporter.Scanner.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/IL/McgInteropSupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/IL/McgInteropSupport.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/IL/Stubs/PInvokeILProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/IL/Stubs/PInvokeILProvider.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/IL/Stubs/StartupCode/AppContextInitializerMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/IL/Stubs/StartupCode/AppContextInitializerMethod.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/IL/Stubs/StartupCode/NativeLibraryStartupMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/IL/Stubs/StartupCode/NativeLibraryStartupMethod.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/IL/Stubs/StartupCode/StartupCodeMainMethod.Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/IL/Stubs/StartupCode/StartupCodeMainMethod.Sorting.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/IL/Stubs/StartupCode/StartupCodeMainMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/IL/Stubs/StartupCode/StartupCodeMainMethod.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/ILCompiler.Compiler.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/ILCompiler.Compiler.csproj -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Compiler/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Compiler/Logger.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.DependencyAnalysisFramework/ComputedStaticDependencyNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.DependencyAnalysisFramework/ComputedStaticDependencyNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.DependencyAnalysisFramework/DependencyAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.DependencyAnalysisFramework/DependencyAnalyzer.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.DependencyAnalysisFramework/DependencyAnalyzerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.DependencyAnalysisFramework/DependencyAnalyzerBase.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.DependencyAnalysisFramework/DependencyNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.DependencyAnalysisFramework/DependencyNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.DependencyAnalysisFramework/DependencyNodeCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.DependencyAnalysisFramework/DependencyNodeCore.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.DependencyAnalysisFramework/DgmlWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.DependencyAnalysisFramework/DgmlWriter.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.DependencyAnalysisFramework/EventSourceLogStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.DependencyAnalysisFramework/EventSourceLogStrategy.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.DependencyAnalysisFramework/FirstMarkLogStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.DependencyAnalysisFramework/FirstMarkLogStrategy.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.DependencyAnalysisFramework/FullGraphLogStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.DependencyAnalysisFramework/FullGraphLogStrategy.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.DependencyAnalysisFramework/IDependencyAnalysisMarkStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.DependencyAnalysisFramework/IDependencyAnalysisMarkStrategy.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.DependencyAnalysisFramework/IDependencyNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.DependencyAnalysisFramework/IDependencyNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.DependencyAnalysisFramework/NoLogStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.DependencyAnalysisFramework/NoLogStrategy.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.DependencyAnalysisFramework/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.DependencyAnalysisFramework/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/ILCompiler.Host.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/ILCompiler.Host.csproj -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/ILCompiler.Host.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/ILCompiler.Host.sln -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/ILCompiler/ByteArrayEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/ILCompiler/ByteArrayEqualityComparer.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/ILCompiler/CtlClassification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/ILCompiler/CtlClassification.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/ILCompiler/DependencyAnalysis/ObjectWriterUTC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/ILCompiler/DependencyAnalysis/ObjectWriterUTC.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/ILCompiler/DependencyAnalysis/UtcGenericLookupNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/ILCompiler/DependencyAnalysis/UtcGenericLookupNode.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/ILCompiler/DictionaryQueryResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/ILCompiler/DictionaryQueryResult.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/ILCompiler/FloatingLookupKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/ILCompiler/FloatingLookupKey.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/ILCompiler/GenericLookupLayoutType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/ILCompiler/GenericLookupLayoutType.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/ILCompiler/HostedCompilation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/ILCompiler/HostedCompilation.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/ILCompiler/HostedCompilationGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/ILCompiler/HostedCompilationGroup.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/ILCompiler/HostedCompilationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/ILCompiler/HostedCompilationType.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/ILCompiler/HostedCoreRTBasedMultifileCompilationGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/ILCompiler/HostedCoreRTBasedMultifileCompilationGroup.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/ILCompiler/HostedDependencyNodeComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/ILCompiler/HostedDependencyNodeComparer.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/ILCompiler/HostedMultifleCompilationGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/ILCompiler/HostedMultifleCompilationGroup.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/ILCompiler/IILCompilerHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/ILCompiler/IILCompilerHost.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/ILCompiler/ILCompilerHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/ILCompiler/ILCompilerHost.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/ILCompiler/ISTSTokenProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/ILCompiler/ISTSTokenProvider.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/ILCompiler/LinkageNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/ILCompiler/LinkageNames.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/ILCompiler/LinkageTokenType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/ILCompiler/LinkageTokenType.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/ILCompiler/MergedAssemblyRecordParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/ILCompiler/MergedAssemblyRecordParser.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/ILCompiler/MethodKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/ILCompiler/MethodKey.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/ILCompiler/MultifilePolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/ILCompiler/MultifilePolicy.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/ILCompiler/NetNativeCompilerContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/ILCompiler/NetNativeCompilerContext.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/ILCompiler/NetNativeFieldLayoutAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/ILCompiler/NetNativeFieldLayoutAlgorithm.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/ILCompiler/RootingServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/ILCompiler/RootingServiceProvider.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/ILCompiler/ScannerOutcome.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/ILCompiler/ScannerOutcome.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/ILCompiler/SymbolIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/ILCompiler/SymbolIdentifier.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/ILCompiler/SystemPrivateCanonModuleDesc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/ILCompiler/SystemPrivateCanonModuleDesc.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/ILCompiler/Toc/ElementsToExport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/ILCompiler/Toc/ElementsToExport.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/ILCompiler/Toc/ImportExportInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/ILCompiler/Toc/ImportExportInfo.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/ILCompiler/Toc/NativeImportExportKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/ILCompiler/Toc/NativeImportExportKind.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/ILCompiler/Toc/TocData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/ILCompiler/Toc/TocData.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/ILCompiler/Toc/TocEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/ILCompiler/Toc/TocEmitter.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/ILCompiler/Toc/TocOutputFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/ILCompiler/Toc/TocOutputFlags.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/ILCompiler/Toc/TocReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/ILCompiler/Toc/TocReader.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/ILCompiler/TocModuleKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/ILCompiler/TocModuleKind.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/ILCompiler/TypeSystemContextModuleProviderAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/ILCompiler/TypeSystemContextModuleProviderAdapter.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/Internal.CommandLine/CommandLineException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/Internal.CommandLine/CommandLineException.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/Internal.CommandLine/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/Internal.CommandLine/Helpers.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/Internal.TypeSystem.Bridge/ComposerModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/Internal.TypeSystem.Bridge/ComposerModule.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/Internal.TypeSystem.Bridge/ComposerTokenResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/Internal.TypeSystem.Bridge/ComposerTokenResolver.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/Internal.TypeSystem.Bridge/ComposerTypeSystemContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/Internal.TypeSystem.Bridge/ComposerTypeSystemContext.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/Internal.TypeSystem.Bridge/DummyGenericContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/Internal.TypeSystem.Bridge/DummyGenericContext.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/Internal.TypeSystem.Bridge/IEcmaModuleProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/Internal.TypeSystem.Bridge/IEcmaModuleProvider.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/Internal.TypeSystem.Bridge/IEcmaTokenResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/Internal.TypeSystem.Bridge/IEcmaTokenResolver.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/Internal.TypeSystem.Bridge/ITypeSystemBridgeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/Internal.TypeSystem.Bridge/ITypeSystemBridgeProvider.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/Internal.TypeSystem.Bridge/MetadataComposer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/Internal.TypeSystem.Bridge/MetadataComposer.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/Internal.TypeSystem.Bridge/SignatureExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/Internal.TypeSystem.Bridge/SignatureExtensions.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/Internal.TypeSystem.Bridge/SignatureTypeProvider_T_.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/Internal.TypeSystem.Bridge/SignatureTypeProvider_T_.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/Internal.TypeSystem.Bridge/TempToPermanentMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/Internal.TypeSystem.Bridge/TempToPermanentMapping.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/Internal.TypeSystem.Bridge/TokenType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/Internal.TypeSystem.Bridge/TokenType.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/Internal.TypeSystem.Bridge/TypeSystemBridgeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/Internal.TypeSystem.Bridge/TypeSystemBridgeProvider.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/Microsoft.NetNative/ErrorTraceListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/Microsoft.NetNative/ErrorTraceListener.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/System.Collections.Generic/ArrayBuilder_T_.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/System.Collections.Generic/ArrayBuilder_T_.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/app.config -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.Host/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.Host/packages.config -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.MetadataTransform/ILCompiler.MetadataTransform.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.MetadataTransform/ILCompiler.MetadataTransform.csproj -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.MetadataTransform/ILCompiler/Metadata/EntityMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.MetadataTransform/ILCompiler/Metadata/EntityMap.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.MetadataTransform/ILCompiler/Metadata/IMetadataPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.MetadataTransform/ILCompiler/Metadata/IMetadataPolicy.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.MetadataTransform/ILCompiler/Metadata/MetadataTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.MetadataTransform/ILCompiler/Metadata/MetadataTransform.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.MetadataTransform/ILCompiler/Metadata/Transform.Constant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.MetadataTransform/ILCompiler/Metadata/Transform.Constant.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.MetadataTransform/ILCompiler/Metadata/Transform.Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.MetadataTransform/ILCompiler/Metadata/Transform.Event.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.MetadataTransform/ILCompiler/Metadata/Transform.Field.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.MetadataTransform/ILCompiler/Metadata/Transform.Field.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.MetadataTransform/ILCompiler/Metadata/Transform.Method.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.MetadataTransform/ILCompiler/Metadata/Transform.Method.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.MetadataTransform/ILCompiler/Metadata/Transform.Namespace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.MetadataTransform/ILCompiler/Metadata/Transform.Namespace.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.MetadataTransform/ILCompiler/Metadata/Transform.Parameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.MetadataTransform/ILCompiler/Metadata/Transform.Parameter.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.MetadataTransform/ILCompiler/Metadata/Transform.Property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.MetadataTransform/ILCompiler/Metadata/Transform.Property.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.MetadataTransform/ILCompiler/Metadata/Transform.Scope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.MetadataTransform/ILCompiler/Metadata/Transform.Scope.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.MetadataTransform/ILCompiler/Metadata/Transform.String.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.MetadataTransform/ILCompiler/Metadata/Transform.String.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.MetadataTransform/ILCompiler/Metadata/Transform.Type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.MetadataTransform/ILCompiler/Metadata/Transform.Type.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.MetadataTransform/ILCompiler/Metadata/Transform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.MetadataTransform/ILCompiler/Metadata/Transform.cs -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.MetadataWriter/ILCompiler.MetadataWriter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.MetadataWriter/ILCompiler.MetadataWriter.csproj -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.TypeSystem/ILCompiler.TypeSystem.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.TypeSystem/ILCompiler.TypeSystem.csproj -------------------------------------------------------------------------------- /ILCompiler/ILCompiler.TypeSystem/Utilities/UniqueTypeNameFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ILCompiler/ILCompiler.TypeSystem/Utilities/UniqueTypeNameFormatter.cs -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Libs/ARM/mrt100X_app.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/Libs/ARM/mrt100X_app.exp -------------------------------------------------------------------------------- /Libs/ARM/mrt100X_app.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/Libs/ARM/mrt100X_app.lib -------------------------------------------------------------------------------- /Libs/mrt100X_app.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/Libs/mrt100X_app.def -------------------------------------------------------------------------------- /Libs/x64/mrt100X_app.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/Libs/x64/mrt100X_app.exp -------------------------------------------------------------------------------- /Libs/x64/mrt100X_app.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/Libs/x64/mrt100X_app.lib -------------------------------------------------------------------------------- /Libs/x86/mrt100X_app.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/Libs/x86/mrt100X_app.exp -------------------------------------------------------------------------------- /Libs/x86/mrt100X_app.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/Libs/x86/mrt100X_app.lib -------------------------------------------------------------------------------- /ProjectRT.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/ProjectRT.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap/bootstrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/bootstrap/bootstrap.cpp -------------------------------------------------------------------------------- /bootstrap/bootstrap.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/bootstrap/bootstrap.vcxproj -------------------------------------------------------------------------------- /bootstrap/bootstrap.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/bootstrap/bootstrap.vcxproj.filters -------------------------------------------------------------------------------- /bootstrap_dll/bootstrap_dll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/bootstrap_dll/bootstrap_dll.cpp -------------------------------------------------------------------------------- /bootstrap_dll/bootstrap_dll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/bootstrap_dll/bootstrap_dll.vcxproj -------------------------------------------------------------------------------- /bootstrap_dll/bootstrap_dll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/bootstrap_dll/bootstrap_dll.vcxproj.filters -------------------------------------------------------------------------------- /shimAppDll/shimAppDll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/shimAppDll/shimAppDll.cpp -------------------------------------------------------------------------------- /shimAppDll/shimAppDll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/shimAppDll/shimAppDll.vcxproj -------------------------------------------------------------------------------- /shimAppDll/shimAppDll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/shimAppDll/shimAppDll.vcxproj.filters -------------------------------------------------------------------------------- /shimExe/shimExe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/shimExe/shimExe.cpp -------------------------------------------------------------------------------- /shimExe/shimExe.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/shimExe/shimExe.vcxproj -------------------------------------------------------------------------------- /shimExe/shimExe.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmed605/ProjectRT/HEAD/shimExe/shimExe.vcxproj.filters --------------------------------------------------------------------------------