├── .claude └── settings.local.json ├── .github └── workflows │ └── macOS.yml ├── .gitignore ├── LICENSE ├── Package.resolved ├── Package.swift ├── README.md ├── Sources ├── Demangling │ ├── Enums │ │ ├── AutoDiffFunctionKind.swift │ │ ├── DemangleFunctionEntityArgs.swift │ │ ├── DemangleGenericRequirementConstraintKind.swift │ │ ├── DemangleGenericRequirementTypeKind.swift │ │ ├── DemanglingError.swift │ │ ├── Differentiability.swift │ │ ├── Directness.swift │ │ ├── FunctionSigSpecializationParamKind.swift │ │ ├── ManglingError.swift │ │ ├── ManglingFlavor.swift │ │ ├── SpecializationPass.swift │ │ ├── SugarType.swift │ │ ├── SymbolicReference.swift │ │ ├── TypePrinting.swift │ │ └── ValueWitnessKind.swift │ ├── Main │ │ ├── Demangle │ │ │ ├── DemangleInterface.swift │ │ │ ├── DemangleOptions.swift │ │ │ ├── DemangleSymbolicReferenceResolver.swift │ │ │ └── Demangler.swift │ │ ├── NodePrinter │ │ │ ├── NodePrintContext.swift │ │ │ ├── NodePrintState.swift │ │ │ ├── NodePrinter.swift │ │ │ └── NodePrinterTarget.swift │ │ ├── Remangle │ │ │ ├── RemangleInterface.swift │ │ │ └── Remangler.swift │ │ └── TypeDecoder │ │ │ ├── TypeBuilder.swift │ │ │ ├── TypeDecoder+Types.swift │ │ │ ├── TypeDecoder.swift │ │ │ └── TypeLookupError.swift │ ├── Node │ │ ├── Node+Conversions.swift │ │ ├── Node+CustomStringConvertible.swift │ │ ├── Node+Hashable.swift │ │ ├── Node+Init.swift │ │ ├── Node+Kind.swift │ │ ├── Node+PackageAPI.swift │ │ ├── Node+Sequence.swift │ │ └── Node.swift │ └── Utils │ │ ├── Common.swift │ │ ├── Extensions.swift │ │ └── Punycode.swift ├── MachOCaches │ └── MachOCache.swift ├── MachOExtensions │ ├── BinaryInteger+.swift │ ├── DyldCache+.swift │ ├── DyldCacheLoaded+.swift │ ├── File+.swift │ ├── LayoutWrapper+.swift │ ├── LoadCommandsProtocol+.swift │ ├── LocatableLayoutWrapper.swift │ ├── MachOFile+.swift │ ├── MachONamespace.swift │ ├── MachORepresentable+.swift │ ├── MachORepresentableWithCache+.swift │ ├── MachORepresentableWithCache.swift │ ├── OptionalProtocol.swift │ ├── RequiredNonOptional.swift │ ├── SegmentCommandProtocol+.swift │ ├── String+.swift │ └── UnsafeRawPointer+.swift ├── MachOFoundation │ └── Exported.swift ├── MachOMacros │ ├── LayoutMacro.swift │ └── MachOMacroPlugin.swift ├── MachOPointers │ ├── Pointer.swift │ ├── Protocol │ │ ├── PointerProtocol.swift │ │ ├── RelativeDirectPointerProtocol.swift │ │ ├── RelativeIndirectPointerProtocol.swift │ │ ├── RelativeIndirectType.swift │ │ ├── RelativeIndirectablePointerIntPairProtocol.swift │ │ ├── RelativeIndirectablePointerProtocol.swift │ │ └── RelativePointerProtocol.swift │ ├── RelativePointers.swift │ ├── TargetRelativeDirectPointer.swift │ ├── TargetRelativeIndirectPointer.swift │ ├── TargetRelativeIndirectablePointer.swift │ └── TargetRelativeIndirectablePointerIntPair.swift ├── MachOReading │ ├── Models │ │ ├── DataSequence.swift │ │ └── MemorySequence.swift │ └── Reading │ │ ├── DyldCache+.swift │ │ ├── FileHandle+.swift │ │ ├── FileIO+.swift │ │ ├── MachOFile+Reading.swift │ │ ├── MachOFileReadingError.swift │ │ ├── MachOImage+Reading.swift │ │ └── MachOReadable.swift ├── MachOResolving │ ├── AnyResolvable.swift │ ├── AsyncResolvable.swift │ └── Resolvable.swift ├── MachOSwiftSection │ ├── Exported.swift │ ├── Extensions │ │ ├── Array+.swift │ │ ├── Bool+.swift │ │ ├── MachORepresentable+.swift │ │ └── String+.swift │ ├── MachOFile+Swift.swift │ ├── MachOImage+Swift.swift │ ├── Models │ │ ├── Anonymous │ │ │ ├── AnonymousContext.swift │ │ │ ├── AnonymousContextDescriptor.swift │ │ │ ├── AnonymousContextDescriptorFlags.swift │ │ │ ├── AnonymousContextDescriptorLayout.swift │ │ │ └── AnonymousContextDescriptorProtocol.swift │ │ ├── AssociatedType │ │ │ ├── AssociatedType.swift │ │ │ ├── AssociatedTypeDescriptor.swift │ │ │ └── AssociatedTypeRecord.swift │ │ ├── BuiltinType │ │ │ ├── BuiltinType.swift │ │ │ └── BuiltinTypeDescriptor.swift │ │ ├── Capture │ │ │ ├── Capture.swift │ │ │ └── CaptureDescriptor.swift │ │ ├── ContextDescriptor │ │ │ ├── ContextDescriptor.swift │ │ │ ├── ContextDescriptorFlags.swift │ │ │ ├── ContextDescriptorKind.swift │ │ │ ├── ContextDescriptorKindSpecificFlags.swift │ │ │ ├── ContextDescriptorLayout.swift │ │ │ ├── ContextDescriptorProtocol.swift │ │ │ ├── ContextDescriptorWrapper.swift │ │ │ ├── ContextProtocol.swift │ │ │ ├── ContextWrapper.swift │ │ │ ├── NamedContextDescriptorLayout.swift │ │ │ └── NamedContextDescriptorProtocol.swift │ │ ├── DispatchClass │ │ │ └── DispatchClassMetadata.swift │ │ ├── ExistentialType │ │ │ ├── ExistentialMetatypeMetadata.swift │ │ │ ├── ExistentialTypeFlags.swift │ │ │ ├── ExistentialTypeMetadata.swift │ │ │ ├── ExistentialTypeMetadataLayout.swift │ │ │ ├── ExtendedExistentialTypeMetadata.swift │ │ │ ├── ExtendedExistentialTypeShape.swift │ │ │ └── NonUniqueExtendedExistentialTypeShape.swift │ │ ├── Extension │ │ │ ├── ExtensionContext.swift │ │ │ ├── ExtensionContextDescriptor.swift │ │ │ ├── ExtensionContextDescriptorLayout.swift │ │ │ └── ExtensionContextDescriptorProtocol.swift │ │ ├── FieldDescriptor │ │ │ ├── FieldDescriptor.swift │ │ │ └── FieldDescriptorKind.swift │ │ ├── FieldRecord │ │ │ ├── FieldRecord.swift │ │ │ └── FieldRecordFlags.swift │ │ ├── ForeignType │ │ │ ├── ForeignClassMetadata.swift │ │ │ ├── ForeignClassMetadataLayout.swift │ │ │ ├── ForeignReferenceTypeMetadata.swift │ │ │ └── ForeignReferenceTypeMetadataLayout.swift │ │ ├── Function │ │ │ ├── FunctionTypeFlags.swift │ │ │ └── FunctionTypeMetadata.swift │ │ ├── Generic │ │ │ ├── GenericBoxHeapMetadata.swift │ │ │ ├── GenericContext.swift │ │ │ ├── GenericContextDescriptorFlags.swift │ │ │ ├── GenericContextDescriptorHeader.swift │ │ │ ├── GenericContextDescriptorHeaderProtocol.swift │ │ │ ├── GenericEnvironment.swift │ │ │ ├── GenericEnvironmentFlags.swift │ │ │ ├── GenericPackKind.swift │ │ │ ├── GenericPackShapeDescriptor.swift │ │ │ ├── GenericPackShapeHeader.swift │ │ │ ├── GenericParamDescriptor.swift │ │ │ ├── GenericParamKind.swift │ │ │ ├── GenericRequirement.swift │ │ │ ├── GenericRequirementContent.swift │ │ │ ├── GenericRequirementDescriptor.swift │ │ │ ├── GenericRequirementFlags.swift │ │ │ ├── GenericRequirementKind.swift │ │ │ ├── GenericRequirementLayoutKind.swift │ │ │ ├── GenericValueDescriptor.swift │ │ │ ├── GenericValueHeader.swift │ │ │ ├── GenericValueType.swift │ │ │ ├── GenericWitnessTable.swift │ │ │ ├── TypeGenericContext.swift │ │ │ └── TypeGenericContextDescriptorHeader.swift │ │ ├── Heap │ │ │ └── HeapLocalVariableMetadata.swift │ │ ├── Mangling │ │ │ ├── MangledName.swift │ │ │ └── MangledNameKind.swift │ │ ├── Metadata │ │ │ ├── CanonicalSpecializedMetadataAccessorsListEntry.swift │ │ │ ├── CanonicalSpecializedMetadatasCachingOnceToken.swift │ │ │ ├── CanonicalSpecializedMetadatasListCount.swift │ │ │ ├── CanonicalSpecializedMetadatasListEntry.swift │ │ │ ├── FixedArrayTypeMetadata.swift │ │ │ ├── FixedArrayTypeMetadataLayout.swift │ │ │ ├── FullMetadata.swift │ │ │ ├── Headers │ │ │ │ ├── HeapMetadataHeader.swift │ │ │ │ ├── HeapMetadataHeaderLayout.swift │ │ │ │ ├── HeapMetadataHeaderPrefix.swift │ │ │ │ ├── HeapMetadataHeaderPrefixLayout.swift │ │ │ │ ├── HeapMetadataHeaderPrefixProtocol.swift │ │ │ │ ├── HeapMetadataHeaderProtocol.swift │ │ │ │ ├── TypeMetadataHeader.swift │ │ │ │ ├── TypeMetadataHeaderBase.swift │ │ │ │ ├── TypeMetadataHeaderBaseLayout.swift │ │ │ │ ├── TypeMetadataHeaderBaseProtocol.swift │ │ │ │ ├── TypeMetadataHeaderLayout.swift │ │ │ │ ├── TypeMetadataHeaderProtocol.swift │ │ │ │ ├── TypeMetadataLayoutPrefix.swift │ │ │ │ ├── TypeMetadataLayoutPrefixLayout.swift │ │ │ │ └── TypeMetadataLayoutPrefixProtocol.swift │ │ │ ├── HeapMetadataLayout.swift │ │ │ ├── HeapMetadataProtocol.swift │ │ │ ├── Metadata.swift │ │ │ ├── MetadataAccessor.swift │ │ │ ├── MetadataBounds.swift │ │ │ ├── MetadataBoundsLayout.swift │ │ │ ├── MetadataBoundsProtocol.swift │ │ │ ├── MetadataInitialization │ │ │ │ ├── ForeignMetadataInitialization.swift │ │ │ │ └── SingletonMetadataInitialization.swift │ │ │ ├── MetadataKind.swift │ │ │ ├── MetadataLayout.swift │ │ │ ├── MetadataProtocol.swift │ │ │ ├── MetadataRequest.swift │ │ │ ├── MetadataResponse.swift │ │ │ ├── MetadataState.swift │ │ │ ├── MetadataWrapper.swift │ │ │ ├── MetatypeMetadata.swift │ │ │ ├── MetatypeMetadataLayout.swift │ │ │ └── SingletonMetadataPointer.swift │ │ ├── Module │ │ │ ├── ModuleContext.swift │ │ │ ├── ModuleContextDescriptor.swift │ │ │ ├── ModuleContextDescriptorLayout.swift │ │ │ └── ModuleContextDescriptorProtocol.swift │ │ ├── OpaqueType │ │ │ ├── OpaqueMetadata.swift │ │ │ ├── OpaqueType.swift │ │ │ ├── OpaqueTypeDescriptor.swift │ │ │ ├── OpaqueTypeDescriptorLayout.swift │ │ │ └── OpaqueTypeDescriptorProtocol.swift │ │ ├── Protocol │ │ │ ├── Invertible │ │ │ │ ├── InvertibleProtocolKind.swift │ │ │ │ ├── InvertibleProtocolSet.swift │ │ │ │ └── InvertibleProtocolsRequirementCount.swift │ │ │ ├── ObjC │ │ │ │ ├── ObjCProtocolPrefix.swift │ │ │ │ └── RelativeObjCProtocolPrefix.swift │ │ │ ├── Protocol.swift │ │ │ ├── ProtocolClassConstraint.swift │ │ │ ├── ProtocolContextDescriptorFlags.swift │ │ │ ├── ProtocolDescriptor.swift │ │ │ ├── ProtocolDescriptorFlags.swift │ │ │ ├── ProtocolDescriptorLayout.swift │ │ │ ├── ProtocolDescriptorProtocol.swift │ │ │ ├── ProtocolDescriptorRef.swift │ │ │ ├── ProtocolDescriptorWithObjCInterop.swift │ │ │ ├── ProtocolDispatchStrategy.swift │ │ │ ├── ProtocolRequirement.swift │ │ │ ├── ProtocolRequirementFlags.swift │ │ │ ├── ProtocolRequirementKind.swift │ │ │ ├── ProtocolWitnessTable.swift │ │ │ ├── ResilientWitness.swift │ │ │ ├── ResilientWitnessesHeader.swift │ │ │ └── SpecialProtocolKind.swift │ │ ├── ProtocolConformance │ │ │ ├── ProtocolConformance.swift │ │ │ ├── ProtocolConformanceDescriptor.swift │ │ │ └── ProtocolConformanceFlags.swift │ │ ├── TupleType │ │ │ ├── TupleTypeMetadata.swift │ │ │ ├── TupleTypeMetadataElementLayout.swift │ │ │ └── TupleTypeMetadataLayout.swift │ │ ├── Type │ │ │ ├── Class │ │ │ │ ├── Class.swift │ │ │ │ ├── ClassDescriptor.swift │ │ │ │ ├── ClassDescriptorLayout.swift │ │ │ │ ├── ClassFlags.swift │ │ │ │ ├── ExtraClassDescriptorFlags.swift │ │ │ │ ├── Metadata │ │ │ │ │ ├── AnyClassMetadata │ │ │ │ │ │ ├── AnyClassMetadata.swift │ │ │ │ │ │ ├── AnyClassMetadataLayout.swift │ │ │ │ │ │ └── AnyClassMetadataProtocol.swift │ │ │ │ │ ├── AnyClassMetadataObjCInterop │ │ │ │ │ │ ├── AnyClassMetadataObjCInterop.swift │ │ │ │ │ │ ├── AnyClassMetadataObjCInteropLayout.swift │ │ │ │ │ │ └── AnyClassMetadataObjCInteropProtocol.swift │ │ │ │ │ ├── Bounds │ │ │ │ │ │ ├── ClassMetadataBounds.swift │ │ │ │ │ │ ├── ClassMetadataBoundsLayout.swift │ │ │ │ │ │ ├── ClassMetadataBoundsProtocol.swift │ │ │ │ │ │ └── StoredClassMetadataBounds.swift │ │ │ │ │ ├── ClassMetadata │ │ │ │ │ │ ├── ClassMetadata.swift │ │ │ │ │ │ ├── ClassMetadataLayout.swift │ │ │ │ │ │ └── ClassMetadataProtocol.swift │ │ │ │ │ ├── ClassMetadataObjCInterop │ │ │ │ │ │ ├── ClassMetadataObjCInterop.swift │ │ │ │ │ │ ├── ClassMetadataObjCInteropLayout.swift │ │ │ │ │ │ └── ClassMetadataObjCInteropProtocol.swift │ │ │ │ │ ├── FinalClassMetadataLayout.swift │ │ │ │ │ ├── FinalClassMetadataProtocol.swift │ │ │ │ │ └── ObjCClassWrapperMetadata.swift │ │ │ │ ├── Method │ │ │ │ │ ├── MethodDefaultOverrideDescriptor.swift │ │ │ │ │ ├── MethodDefaultOverrideTableHeader.swift │ │ │ │ │ ├── MethodDescriptor.swift │ │ │ │ │ ├── MethodDescriptorFlags.swift │ │ │ │ │ ├── MethodDescriptorKind.swift │ │ │ │ │ ├── MethodDescriptorWrapper.swift │ │ │ │ │ ├── MethodImplementationPointer.swift │ │ │ │ │ ├── MethodOverrideDescriptor.swift │ │ │ │ │ ├── OverrideTableHeader.swift │ │ │ │ │ └── VTableDescriptorHeader.swift │ │ │ │ └── Resilient │ │ │ │ │ ├── ObjCResilientClassStubInfo.swift │ │ │ │ │ └── ResilientSuperclass.swift │ │ │ ├── Enum │ │ │ │ ├── Enum.swift │ │ │ │ ├── EnumDescriptor.swift │ │ │ │ ├── EnumDescriptorLayout.swift │ │ │ │ ├── EnumFunctions.swift │ │ │ │ ├── Metadata │ │ │ │ │ ├── EnumMetadata.swift │ │ │ │ │ ├── EnumMetadataLayout.swift │ │ │ │ │ └── EnumMetadataProtocol.swift │ │ │ │ └── MultiPayloadEnum │ │ │ │ │ └── MultiPayloadEnumDescriptor.swift │ │ │ ├── Struct │ │ │ │ ├── Struct.swift │ │ │ │ ├── StructDescriptor.swift │ │ │ │ ├── StructDescriptorLayout.swift │ │ │ │ ├── StructMetadata.swift │ │ │ │ ├── StructMetadataLayout.swift │ │ │ │ └── StructMetadataProtocol.swift │ │ │ ├── TypeContextDescriptor.swift │ │ │ ├── TypeContextDescriptorFlags.swift │ │ │ ├── TypeContextDescriptorLayout.swift │ │ │ ├── TypeContextDescriptorProtocol.swift │ │ │ ├── TypeContextDescriptorWrapper.swift │ │ │ ├── TypeContextWrapper.swift │ │ │ ├── TypeReference.swift │ │ │ └── TypeReferenceKind.swift │ │ └── ValueWitnessTable │ │ │ ├── ValueWitnessFlags.swift │ │ │ └── ValueWitnessTable.swift │ ├── Pointer │ │ ├── ContextPointer.swift │ │ ├── RelativePointers.swift │ │ └── RelativeProtocolDescriptorPointer.swift │ ├── Protocols │ │ ├── FlagSet.swift │ │ ├── MachOSwiftSectionRepresentableWithCache.swift │ │ ├── RuntimeProtocol.swift │ │ ├── SwiftSectionRepresentable.swift │ │ ├── TopLevelDescriptor.swift │ │ └── TopLevelType.swift │ └── Utils │ │ ├── AnyLocatableLayoutWrapper.swift │ │ ├── MachOSwiftSectionError.swift │ │ ├── MachOSwiftSectionName.swift │ │ ├── PtrAuth.swift │ │ ├── ResolvableLocatableLayoutWrapper.swift │ │ └── RuntimeLayout.swift ├── MachOSymbolPointers │ └── SymbolOrElementPointer.swift ├── MachOSymbols │ ├── DemangledSymbol.swift │ ├── MachO+Symbol.swift │ ├── Symbol.swift │ ├── SymbolIndexStore.swift │ ├── SymbolOrElement.swift │ └── Symbols.swift ├── MachOTestingSupport │ ├── DemangleOptions.swift │ ├── DumpableTests.swift │ ├── DyldCacheTests.swift │ ├── DyldSharedCachePath.swift │ ├── Extensions.swift │ ├── MachOFileName.swift │ ├── MachOFileTests.swift │ ├── MachOImageName.swift │ ├── MachOImageTests.swift │ ├── SwiftStdlibDemangle.swift │ ├── URL+.swift │ ├── XcodeMachOFileName.swift │ └── XcodeMachOFileTests.swift ├── Semantic │ ├── Components │ │ ├── AnyComponent.swift │ │ ├── Argument.swift │ │ ├── Comment.swift │ │ ├── Error.swift │ │ ├── FunctionDeclaration.swift │ │ ├── FunctionName.swift │ │ ├── Keyword.swift │ │ ├── MemberDeclaration.swift │ │ ├── MemberName.swift │ │ ├── Numeric.swift │ │ ├── Other.swift │ │ ├── Standard.swift │ │ ├── TypeDeclaration.swift │ │ ├── TypeName.swift │ │ └── Variable.swift │ ├── SemanticString.swift │ ├── SemanticStringBuilder.swift │ ├── SemanticStringComponent.swift │ └── SemanticType.swift ├── SwiftDump │ ├── ClassHierarchyDumper.swift │ ├── DemangleResolver.swift │ ├── Dumpable │ │ ├── AssociatedType+Dumpable.swift │ │ ├── Class+Dumpable.swift │ │ ├── Enum+Dumpable.swift │ │ ├── Protocol+Dumpable.swift │ │ ├── ProtocolConformance+Dumpable.swift │ │ └── Struct+Dumpable.swift │ ├── Dumper │ │ ├── AssociatedTypeDumper.swift │ │ ├── ClassDumper.swift │ │ ├── EnumDumper.swift │ │ ├── ExtensionDumper.swift │ │ ├── ProtocolConformanceDumper.swift │ │ ├── ProtocolDumper.swift │ │ └── StructDumper.swift │ ├── DumperConfiguration.swift │ ├── Extensions │ │ ├── ContextDescriptorWrapper+Dump.swift │ │ ├── GenericContext+Dump.swift │ │ ├── Keyword+Swift.swift │ │ ├── Node+.swift │ │ ├── OpaqueType+.swift │ │ ├── ResilientSuperclass+Dump.swift │ │ ├── SemanticString+.swift │ │ ├── String+.swift │ │ └── TypeWrapper+Dumper.swift │ ├── MetadataFinder.swift │ ├── MetadataReader.swift │ ├── PrimitiveTypeMapping.swift │ ├── PrimitiveTypeMappingCache.swift │ └── Protocols │ │ ├── ConformedDumpable.swift │ │ ├── ConformedDumper.swift │ │ ├── Dumpable.swift │ │ ├── Dumper.swift │ │ ├── NamedDumpable.swift │ │ ├── NamedDumper.swift │ │ └── TypedDumper.swift ├── SwiftIndex │ └── SwiftIndex.swift ├── SwiftInterface │ ├── Components │ │ ├── Definitions │ │ │ ├── Accessor.swift │ │ │ ├── Definition+.swift │ │ │ ├── Definition.swift │ │ │ ├── DefinitionBuilder.swift │ │ │ ├── ExtensionDefinition.swift │ │ │ ├── FieldDefinition.swift │ │ │ ├── FunctionDefinition.swift │ │ │ ├── ProtocolDefinition.swift │ │ │ ├── SubscriptDefinition.swift │ │ │ ├── TypeDefinition.swift │ │ │ └── VariableDefinition.swift │ │ ├── Kinds │ │ │ ├── AccessorKind.swift │ │ │ ├── ExtensionKind.swift │ │ │ ├── FunctionKind.swift │ │ │ └── TypeKind.swift │ │ └── Names │ │ │ ├── DefinitionName.swift │ │ │ ├── ExtensionName.swift │ │ │ ├── ProtocolName.swift │ │ │ └── TypeName.swift │ ├── DependencyPath.swift │ ├── Extensions.swift │ ├── NodePrintables │ │ ├── BoundGenericNodePrintable.swift │ │ ├── DependentGenericNodePrintable.swift │ │ ├── FunctionTypeNodePrintable.swift │ │ ├── InterfaceNodePrintable.swift │ │ ├── NodePrintable.swift │ │ ├── NodePrintableDelegate.swift │ │ └── TypeNodePrintable.swift │ ├── NodePrinter │ │ ├── FunctionNodePrinter.swift │ │ ├── SubscriptNodePrinter.swift │ │ ├── TypeNodePrinter.swift │ │ └── VariableNodePrinter.swift │ ├── SwiftInterfaceBuilder.swift │ ├── SwiftInterfaceBuilderConfiguration.swift │ ├── SwiftInterfaceBuilderDependencies.swift │ ├── SwiftInterfaceBuilderExtraDataProvider.swift │ ├── SwiftInterfaceBuilderOpaqueTypeProvider.swift │ ├── SwiftInterfaceEvents.swift │ ├── SwiftInterfaceEventsHandlers.swift │ └── SwiftInterfaceIndexer.swift ├── TypeIndexing │ ├── APINodesManager.swift │ ├── ObjCInterfaceIndexer.swift │ ├── SDKIndexer.swift │ ├── SDKPlatform.swift │ ├── SourceKitManager.swift │ ├── Subprocess.swift │ ├── SwiftInterfaceBuilderTypeNameProvider.swift │ ├── SwiftInterfaceParser.swift │ ├── SwiftModule.swift │ └── TypeDatabase.swift ├── Utilities │ ├── AsyncExtensions.swift │ ├── GlobalUtilities.swift │ ├── Macros │ │ └── Layout.swift │ ├── MemoryPressureMonitor.swift │ ├── OffsetEnumeratedSequence.swift │ ├── OrFunctions.swift │ ├── StringBuilder.swift │ ├── SubstitutionMap.swift │ └── _PtrAuth.swift ├── UtilitiesC │ ├── PtrAuthWrapper.c │ └── include │ │ └── PtrAuthWrapper.h └── swift-section │ ├── Architecture.swift │ ├── Commands │ ├── DumpCommand.swift │ ├── InterfaceCommand.swift │ └── SwiftSectionCommand.swift │ ├── DemangleOptionGroup.swift │ ├── Extensions.swift │ ├── IgnoreCoding.swift │ ├── MachOOptionGroup.swift │ ├── SemanticColorScheme.swift │ ├── SwiftSection.swift │ └── SwiftSectionCommandError.swift └── Tests ├── DemanglingTests ├── DemangleAdditionalTests.swift ├── DemangleSwiftProjectDerivedTests.swift └── NodeTests.swift ├── MachOSwiftSectionTests ├── AssociatedTypeTests.swift ├── LayoutTests.swift ├── MangledTypeNameTests.swift ├── MetadataAccessorTests.swift ├── MetadataFinderTests.swift ├── OpaqueTypeTests.swift ├── PrimitiveTypeMappingTests.swift ├── ProtocolGenericContextTests.swift ├── ProtocolRequirementSignatureTests.swift ├── SymbolIndexStoreTests.swift ├── TypeContextDescriptorFlagsTests.swift └── TypeMangledNameTests.swift ├── MachOSymbolsTests ├── DyldCacheSymbolRemangleTests.swift ├── DyldCacheSymbolSimpleTests.swift ├── DyldCacheSymbolTests.swift ├── ExternalSymbolTests.swift └── XcodeMachOFilesSymbolDemangleTests.swift ├── Projects └── SymbolTests │ ├── SymbolTests.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── SymbolTests.xcscheme │ ├── SymbolTests │ └── SymbolTests.swift │ ├── SymbolTestsCore │ └── SymbolTestsCore.swift │ └── SymbolTestsHelper │ └── SymbolTestsHelper.swift ├── SwiftDumpTests ├── ClassHierarchyDumpTests.swift ├── DyldCacheDumpTests.swift ├── MachOFileDumpTests.swift ├── MachOImageDumpTests.swift └── XcodeMachOFileDumpTests.swift ├── SwiftInterfaceTests ├── NodePrinterTests.swift └── SwiftInterfaceBuilderTests.swift └── TypeIndexingTests ├── APINodesManagerTests.swift ├── SDKIndexerTests.swift ├── SourceKitManagerTests.swift └── SwiftInterfaceParserTests.swift /.claude/settings.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/.claude/settings.local.json -------------------------------------------------------------------------------- /.github/workflows/macOS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/.github/workflows/macOS.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Demangling/Enums/AutoDiffFunctionKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Demangling/Enums/AutoDiffFunctionKind.swift -------------------------------------------------------------------------------- /Sources/Demangling/Enums/DemangleFunctionEntityArgs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Demangling/Enums/DemangleFunctionEntityArgs.swift -------------------------------------------------------------------------------- /Sources/Demangling/Enums/DemangleGenericRequirementConstraintKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Demangling/Enums/DemangleGenericRequirementConstraintKind.swift -------------------------------------------------------------------------------- /Sources/Demangling/Enums/DemangleGenericRequirementTypeKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Demangling/Enums/DemangleGenericRequirementTypeKind.swift -------------------------------------------------------------------------------- /Sources/Demangling/Enums/DemanglingError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Demangling/Enums/DemanglingError.swift -------------------------------------------------------------------------------- /Sources/Demangling/Enums/Differentiability.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Demangling/Enums/Differentiability.swift -------------------------------------------------------------------------------- /Sources/Demangling/Enums/Directness.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Demangling/Enums/Directness.swift -------------------------------------------------------------------------------- /Sources/Demangling/Enums/FunctionSigSpecializationParamKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Demangling/Enums/FunctionSigSpecializationParamKind.swift -------------------------------------------------------------------------------- /Sources/Demangling/Enums/ManglingError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Demangling/Enums/ManglingError.swift -------------------------------------------------------------------------------- /Sources/Demangling/Enums/ManglingFlavor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Demangling/Enums/ManglingFlavor.swift -------------------------------------------------------------------------------- /Sources/Demangling/Enums/SpecializationPass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Demangling/Enums/SpecializationPass.swift -------------------------------------------------------------------------------- /Sources/Demangling/Enums/SugarType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Demangling/Enums/SugarType.swift -------------------------------------------------------------------------------- /Sources/Demangling/Enums/SymbolicReference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Demangling/Enums/SymbolicReference.swift -------------------------------------------------------------------------------- /Sources/Demangling/Enums/TypePrinting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Demangling/Enums/TypePrinting.swift -------------------------------------------------------------------------------- /Sources/Demangling/Enums/ValueWitnessKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Demangling/Enums/ValueWitnessKind.swift -------------------------------------------------------------------------------- /Sources/Demangling/Main/Demangle/DemangleInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Demangling/Main/Demangle/DemangleInterface.swift -------------------------------------------------------------------------------- /Sources/Demangling/Main/Demangle/DemangleOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Demangling/Main/Demangle/DemangleOptions.swift -------------------------------------------------------------------------------- /Sources/Demangling/Main/Demangle/DemangleSymbolicReferenceResolver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Demangling/Main/Demangle/DemangleSymbolicReferenceResolver.swift -------------------------------------------------------------------------------- /Sources/Demangling/Main/Demangle/Demangler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Demangling/Main/Demangle/Demangler.swift -------------------------------------------------------------------------------- /Sources/Demangling/Main/NodePrinter/NodePrintContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Demangling/Main/NodePrinter/NodePrintContext.swift -------------------------------------------------------------------------------- /Sources/Demangling/Main/NodePrinter/NodePrintState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Demangling/Main/NodePrinter/NodePrintState.swift -------------------------------------------------------------------------------- /Sources/Demangling/Main/NodePrinter/NodePrinter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Demangling/Main/NodePrinter/NodePrinter.swift -------------------------------------------------------------------------------- /Sources/Demangling/Main/NodePrinter/NodePrinterTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Demangling/Main/NodePrinter/NodePrinterTarget.swift -------------------------------------------------------------------------------- /Sources/Demangling/Main/Remangle/RemangleInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Demangling/Main/Remangle/RemangleInterface.swift -------------------------------------------------------------------------------- /Sources/Demangling/Main/Remangle/Remangler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Demangling/Main/Remangle/Remangler.swift -------------------------------------------------------------------------------- /Sources/Demangling/Main/TypeDecoder/TypeBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Demangling/Main/TypeDecoder/TypeBuilder.swift -------------------------------------------------------------------------------- /Sources/Demangling/Main/TypeDecoder/TypeDecoder+Types.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Demangling/Main/TypeDecoder/TypeDecoder+Types.swift -------------------------------------------------------------------------------- /Sources/Demangling/Main/TypeDecoder/TypeDecoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Demangling/Main/TypeDecoder/TypeDecoder.swift -------------------------------------------------------------------------------- /Sources/Demangling/Main/TypeDecoder/TypeLookupError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Demangling/Main/TypeDecoder/TypeLookupError.swift -------------------------------------------------------------------------------- /Sources/Demangling/Node/Node+Conversions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Demangling/Node/Node+Conversions.swift -------------------------------------------------------------------------------- /Sources/Demangling/Node/Node+CustomStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Demangling/Node/Node+CustomStringConvertible.swift -------------------------------------------------------------------------------- /Sources/Demangling/Node/Node+Hashable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Demangling/Node/Node+Hashable.swift -------------------------------------------------------------------------------- /Sources/Demangling/Node/Node+Init.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Demangling/Node/Node+Init.swift -------------------------------------------------------------------------------- /Sources/Demangling/Node/Node+Kind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Demangling/Node/Node+Kind.swift -------------------------------------------------------------------------------- /Sources/Demangling/Node/Node+PackageAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Demangling/Node/Node+PackageAPI.swift -------------------------------------------------------------------------------- /Sources/Demangling/Node/Node+Sequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Demangling/Node/Node+Sequence.swift -------------------------------------------------------------------------------- /Sources/Demangling/Node/Node.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Demangling/Node/Node.swift -------------------------------------------------------------------------------- /Sources/Demangling/Utils/Common.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Demangling/Utils/Common.swift -------------------------------------------------------------------------------- /Sources/Demangling/Utils/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Demangling/Utils/Extensions.swift -------------------------------------------------------------------------------- /Sources/Demangling/Utils/Punycode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Demangling/Utils/Punycode.swift -------------------------------------------------------------------------------- /Sources/MachOCaches/MachOCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOCaches/MachOCache.swift -------------------------------------------------------------------------------- /Sources/MachOExtensions/BinaryInteger+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOExtensions/BinaryInteger+.swift -------------------------------------------------------------------------------- /Sources/MachOExtensions/DyldCache+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOExtensions/DyldCache+.swift -------------------------------------------------------------------------------- /Sources/MachOExtensions/DyldCacheLoaded+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOExtensions/DyldCacheLoaded+.swift -------------------------------------------------------------------------------- /Sources/MachOExtensions/File+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOExtensions/File+.swift -------------------------------------------------------------------------------- /Sources/MachOExtensions/LayoutWrapper+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOExtensions/LayoutWrapper+.swift -------------------------------------------------------------------------------- /Sources/MachOExtensions/LoadCommandsProtocol+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOExtensions/LoadCommandsProtocol+.swift -------------------------------------------------------------------------------- /Sources/MachOExtensions/LocatableLayoutWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOExtensions/LocatableLayoutWrapper.swift -------------------------------------------------------------------------------- /Sources/MachOExtensions/MachOFile+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOExtensions/MachOFile+.swift -------------------------------------------------------------------------------- /Sources/MachOExtensions/MachONamespace.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOExtensions/MachONamespace.swift -------------------------------------------------------------------------------- /Sources/MachOExtensions/MachORepresentable+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOExtensions/MachORepresentable+.swift -------------------------------------------------------------------------------- /Sources/MachOExtensions/MachORepresentableWithCache+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOExtensions/MachORepresentableWithCache+.swift -------------------------------------------------------------------------------- /Sources/MachOExtensions/MachORepresentableWithCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOExtensions/MachORepresentableWithCache.swift -------------------------------------------------------------------------------- /Sources/MachOExtensions/OptionalProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOExtensions/OptionalProtocol.swift -------------------------------------------------------------------------------- /Sources/MachOExtensions/RequiredNonOptional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOExtensions/RequiredNonOptional.swift -------------------------------------------------------------------------------- /Sources/MachOExtensions/SegmentCommandProtocol+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOExtensions/SegmentCommandProtocol+.swift -------------------------------------------------------------------------------- /Sources/MachOExtensions/String+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOExtensions/String+.swift -------------------------------------------------------------------------------- /Sources/MachOExtensions/UnsafeRawPointer+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOExtensions/UnsafeRawPointer+.swift -------------------------------------------------------------------------------- /Sources/MachOFoundation/Exported.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOFoundation/Exported.swift -------------------------------------------------------------------------------- /Sources/MachOMacros/LayoutMacro.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOMacros/LayoutMacro.swift -------------------------------------------------------------------------------- /Sources/MachOMacros/MachOMacroPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOMacros/MachOMacroPlugin.swift -------------------------------------------------------------------------------- /Sources/MachOPointers/Pointer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOPointers/Pointer.swift -------------------------------------------------------------------------------- /Sources/MachOPointers/Protocol/PointerProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOPointers/Protocol/PointerProtocol.swift -------------------------------------------------------------------------------- /Sources/MachOPointers/Protocol/RelativeDirectPointerProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOPointers/Protocol/RelativeDirectPointerProtocol.swift -------------------------------------------------------------------------------- /Sources/MachOPointers/Protocol/RelativeIndirectPointerProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOPointers/Protocol/RelativeIndirectPointerProtocol.swift -------------------------------------------------------------------------------- /Sources/MachOPointers/Protocol/RelativeIndirectType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOPointers/Protocol/RelativeIndirectType.swift -------------------------------------------------------------------------------- /Sources/MachOPointers/Protocol/RelativeIndirectablePointerIntPairProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOPointers/Protocol/RelativeIndirectablePointerIntPairProtocol.swift -------------------------------------------------------------------------------- /Sources/MachOPointers/Protocol/RelativeIndirectablePointerProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOPointers/Protocol/RelativeIndirectablePointerProtocol.swift -------------------------------------------------------------------------------- /Sources/MachOPointers/Protocol/RelativePointerProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOPointers/Protocol/RelativePointerProtocol.swift -------------------------------------------------------------------------------- /Sources/MachOPointers/RelativePointers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOPointers/RelativePointers.swift -------------------------------------------------------------------------------- /Sources/MachOPointers/TargetRelativeDirectPointer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOPointers/TargetRelativeDirectPointer.swift -------------------------------------------------------------------------------- /Sources/MachOPointers/TargetRelativeIndirectPointer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOPointers/TargetRelativeIndirectPointer.swift -------------------------------------------------------------------------------- /Sources/MachOPointers/TargetRelativeIndirectablePointer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOPointers/TargetRelativeIndirectablePointer.swift -------------------------------------------------------------------------------- /Sources/MachOPointers/TargetRelativeIndirectablePointerIntPair.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOPointers/TargetRelativeIndirectablePointerIntPair.swift -------------------------------------------------------------------------------- /Sources/MachOReading/Models/DataSequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOReading/Models/DataSequence.swift -------------------------------------------------------------------------------- /Sources/MachOReading/Models/MemorySequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOReading/Models/MemorySequence.swift -------------------------------------------------------------------------------- /Sources/MachOReading/Reading/DyldCache+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOReading/Reading/DyldCache+.swift -------------------------------------------------------------------------------- /Sources/MachOReading/Reading/FileHandle+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOReading/Reading/FileHandle+.swift -------------------------------------------------------------------------------- /Sources/MachOReading/Reading/FileIO+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOReading/Reading/FileIO+.swift -------------------------------------------------------------------------------- /Sources/MachOReading/Reading/MachOFile+Reading.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOReading/Reading/MachOFile+Reading.swift -------------------------------------------------------------------------------- /Sources/MachOReading/Reading/MachOFileReadingError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOReading/Reading/MachOFileReadingError.swift -------------------------------------------------------------------------------- /Sources/MachOReading/Reading/MachOImage+Reading.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOReading/Reading/MachOImage+Reading.swift -------------------------------------------------------------------------------- /Sources/MachOReading/Reading/MachOReadable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOReading/Reading/MachOReadable.swift -------------------------------------------------------------------------------- /Sources/MachOResolving/AnyResolvable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOResolving/AnyResolvable.swift -------------------------------------------------------------------------------- /Sources/MachOResolving/AsyncResolvable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOResolving/AsyncResolvable.swift -------------------------------------------------------------------------------- /Sources/MachOResolving/Resolvable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOResolving/Resolvable.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Exported.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Exported.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Extensions/Array+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Extensions/Array+.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Extensions/Bool+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Extensions/Bool+.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Extensions/MachORepresentable+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Extensions/MachORepresentable+.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Extensions/String+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Extensions/String+.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/MachOFile+Swift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/MachOFile+Swift.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/MachOImage+Swift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/MachOImage+Swift.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Anonymous/AnonymousContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Anonymous/AnonymousContext.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Anonymous/AnonymousContextDescriptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Anonymous/AnonymousContextDescriptor.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Anonymous/AnonymousContextDescriptorFlags.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Anonymous/AnonymousContextDescriptorFlags.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Anonymous/AnonymousContextDescriptorLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Anonymous/AnonymousContextDescriptorLayout.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Anonymous/AnonymousContextDescriptorProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Anonymous/AnonymousContextDescriptorProtocol.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/AssociatedType/AssociatedType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/AssociatedType/AssociatedType.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/AssociatedType/AssociatedTypeDescriptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/AssociatedType/AssociatedTypeDescriptor.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/AssociatedType/AssociatedTypeRecord.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/AssociatedType/AssociatedTypeRecord.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/BuiltinType/BuiltinType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/BuiltinType/BuiltinType.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/BuiltinType/BuiltinTypeDescriptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/BuiltinType/BuiltinTypeDescriptor.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Capture/Capture.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Capture/CaptureDescriptor.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/ContextDescriptor/ContextDescriptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/ContextDescriptor/ContextDescriptor.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/ContextDescriptor/ContextDescriptorFlags.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/ContextDescriptor/ContextDescriptorFlags.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/ContextDescriptor/ContextDescriptorKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/ContextDescriptor/ContextDescriptorKind.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/ContextDescriptor/ContextDescriptorKindSpecificFlags.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/ContextDescriptor/ContextDescriptorKindSpecificFlags.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/ContextDescriptor/ContextDescriptorLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/ContextDescriptor/ContextDescriptorLayout.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/ContextDescriptor/ContextDescriptorProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/ContextDescriptor/ContextDescriptorProtocol.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/ContextDescriptor/ContextDescriptorWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/ContextDescriptor/ContextDescriptorWrapper.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/ContextDescriptor/ContextProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/ContextDescriptor/ContextProtocol.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/ContextDescriptor/ContextWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/ContextDescriptor/ContextWrapper.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/ContextDescriptor/NamedContextDescriptorLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/ContextDescriptor/NamedContextDescriptorLayout.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/ContextDescriptor/NamedContextDescriptorProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/ContextDescriptor/NamedContextDescriptorProtocol.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/DispatchClass/DispatchClassMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/DispatchClass/DispatchClassMetadata.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/ExistentialType/ExistentialMetatypeMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/ExistentialType/ExistentialMetatypeMetadata.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/ExistentialType/ExistentialTypeFlags.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/ExistentialType/ExistentialTypeFlags.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/ExistentialType/ExistentialTypeMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/ExistentialType/ExistentialTypeMetadata.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/ExistentialType/ExistentialTypeMetadataLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/ExistentialType/ExistentialTypeMetadataLayout.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/ExistentialType/ExtendedExistentialTypeMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/ExistentialType/ExtendedExistentialTypeMetadata.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/ExistentialType/ExtendedExistentialTypeShape.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/ExistentialType/ExtendedExistentialTypeShape.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/ExistentialType/NonUniqueExtendedExistentialTypeShape.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/ExistentialType/NonUniqueExtendedExistentialTypeShape.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Extension/ExtensionContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Extension/ExtensionContext.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Extension/ExtensionContextDescriptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Extension/ExtensionContextDescriptor.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Extension/ExtensionContextDescriptorLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Extension/ExtensionContextDescriptorLayout.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Extension/ExtensionContextDescriptorProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Extension/ExtensionContextDescriptorProtocol.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/FieldDescriptor/FieldDescriptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/FieldDescriptor/FieldDescriptor.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/FieldDescriptor/FieldDescriptorKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/FieldDescriptor/FieldDescriptorKind.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/FieldRecord/FieldRecord.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/FieldRecord/FieldRecord.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/FieldRecord/FieldRecordFlags.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/FieldRecord/FieldRecordFlags.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/ForeignType/ForeignClassMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/ForeignType/ForeignClassMetadata.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/ForeignType/ForeignClassMetadataLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/ForeignType/ForeignClassMetadataLayout.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/ForeignType/ForeignReferenceTypeMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/ForeignType/ForeignReferenceTypeMetadata.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/ForeignType/ForeignReferenceTypeMetadataLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/ForeignType/ForeignReferenceTypeMetadataLayout.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Function/FunctionTypeFlags.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Function/FunctionTypeFlags.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Function/FunctionTypeMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Function/FunctionTypeMetadata.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Generic/GenericBoxHeapMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Generic/GenericBoxHeapMetadata.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Generic/GenericContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Generic/GenericContext.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Generic/GenericContextDescriptorFlags.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Generic/GenericContextDescriptorFlags.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Generic/GenericContextDescriptorHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Generic/GenericContextDescriptorHeader.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Generic/GenericContextDescriptorHeaderProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Generic/GenericContextDescriptorHeaderProtocol.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Generic/GenericEnvironment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Generic/GenericEnvironment.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Generic/GenericEnvironmentFlags.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Generic/GenericEnvironmentFlags.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Generic/GenericPackKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Generic/GenericPackKind.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Generic/GenericPackShapeDescriptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Generic/GenericPackShapeDescriptor.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Generic/GenericPackShapeHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Generic/GenericPackShapeHeader.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Generic/GenericParamDescriptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Generic/GenericParamDescriptor.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Generic/GenericParamKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Generic/GenericParamKind.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Generic/GenericRequirement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Generic/GenericRequirement.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Generic/GenericRequirementContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Generic/GenericRequirementContent.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Generic/GenericRequirementDescriptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Generic/GenericRequirementDescriptor.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Generic/GenericRequirementFlags.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Generic/GenericRequirementFlags.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Generic/GenericRequirementKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Generic/GenericRequirementKind.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Generic/GenericRequirementLayoutKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Generic/GenericRequirementLayoutKind.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Generic/GenericValueDescriptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Generic/GenericValueDescriptor.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Generic/GenericValueHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Generic/GenericValueHeader.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Generic/GenericValueType.swift: -------------------------------------------------------------------------------- 1 | public enum GenericValueType: UInt32 { 2 | case int 3 | } 4 | -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Generic/GenericWitnessTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Generic/GenericWitnessTable.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Generic/TypeGenericContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Generic/TypeGenericContext.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Generic/TypeGenericContextDescriptorHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Generic/TypeGenericContextDescriptorHeader.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Heap/HeapLocalVariableMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Heap/HeapLocalVariableMetadata.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Mangling/MangledName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Mangling/MangledName.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Mangling/MangledNameKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Mangling/MangledNameKind.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Metadata/CanonicalSpecializedMetadataAccessorsListEntry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Metadata/CanonicalSpecializedMetadataAccessorsListEntry.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Metadata/CanonicalSpecializedMetadatasCachingOnceToken.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Metadata/CanonicalSpecializedMetadatasCachingOnceToken.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Metadata/CanonicalSpecializedMetadatasListCount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Metadata/CanonicalSpecializedMetadatasListCount.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Metadata/CanonicalSpecializedMetadatasListEntry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Metadata/CanonicalSpecializedMetadatasListEntry.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Metadata/FixedArrayTypeMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Metadata/FixedArrayTypeMetadata.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Metadata/FixedArrayTypeMetadataLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Metadata/FixedArrayTypeMetadataLayout.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Metadata/FullMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Metadata/FullMetadata.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Metadata/Headers/HeapMetadataHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Metadata/Headers/HeapMetadataHeader.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Metadata/Headers/HeapMetadataHeaderLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Metadata/Headers/HeapMetadataHeaderLayout.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Metadata/Headers/HeapMetadataHeaderPrefix.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Metadata/Headers/HeapMetadataHeaderPrefix.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Metadata/Headers/HeapMetadataHeaderPrefixLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Metadata/Headers/HeapMetadataHeaderPrefixLayout.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Metadata/Headers/HeapMetadataHeaderPrefixProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Metadata/Headers/HeapMetadataHeaderPrefixProtocol.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Metadata/Headers/HeapMetadataHeaderProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Metadata/Headers/HeapMetadataHeaderProtocol.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Metadata/Headers/TypeMetadataHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Metadata/Headers/TypeMetadataHeader.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Metadata/Headers/TypeMetadataHeaderBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Metadata/Headers/TypeMetadataHeaderBase.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Metadata/Headers/TypeMetadataHeaderBaseLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Metadata/Headers/TypeMetadataHeaderBaseLayout.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Metadata/Headers/TypeMetadataHeaderBaseProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Metadata/Headers/TypeMetadataHeaderBaseProtocol.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Metadata/Headers/TypeMetadataHeaderLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Metadata/Headers/TypeMetadataHeaderLayout.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Metadata/Headers/TypeMetadataHeaderProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Metadata/Headers/TypeMetadataHeaderProtocol.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Metadata/Headers/TypeMetadataLayoutPrefix.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Metadata/Headers/TypeMetadataLayoutPrefix.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Metadata/Headers/TypeMetadataLayoutPrefixLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Metadata/Headers/TypeMetadataLayoutPrefixLayout.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Metadata/Headers/TypeMetadataLayoutPrefixProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Metadata/Headers/TypeMetadataLayoutPrefixProtocol.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Metadata/HeapMetadataLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Metadata/HeapMetadataLayout.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Metadata/HeapMetadataProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Metadata/HeapMetadataProtocol.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Metadata/Metadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Metadata/Metadata.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Metadata/MetadataAccessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Metadata/MetadataAccessor.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Metadata/MetadataBounds.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Metadata/MetadataBounds.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Metadata/MetadataBoundsLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Metadata/MetadataBoundsLayout.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Metadata/MetadataBoundsProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Metadata/MetadataBoundsProtocol.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Metadata/MetadataInitialization/ForeignMetadataInitialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Metadata/MetadataInitialization/ForeignMetadataInitialization.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Metadata/MetadataInitialization/SingletonMetadataInitialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Metadata/MetadataInitialization/SingletonMetadataInitialization.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Metadata/MetadataKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Metadata/MetadataKind.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Metadata/MetadataLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Metadata/MetadataLayout.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Metadata/MetadataProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Metadata/MetadataProtocol.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Metadata/MetadataRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Metadata/MetadataRequest.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Metadata/MetadataResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Metadata/MetadataResponse.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Metadata/MetadataState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Metadata/MetadataState.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Metadata/MetadataWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Metadata/MetadataWrapper.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Metadata/MetatypeMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Metadata/MetatypeMetadata.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Metadata/MetatypeMetadataLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Metadata/MetatypeMetadataLayout.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Metadata/SingletonMetadataPointer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Metadata/SingletonMetadataPointer.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Module/ModuleContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Module/ModuleContext.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Module/ModuleContextDescriptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Module/ModuleContextDescriptor.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Module/ModuleContextDescriptorLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Module/ModuleContextDescriptorLayout.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Module/ModuleContextDescriptorProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Module/ModuleContextDescriptorProtocol.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/OpaqueType/OpaqueMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/OpaqueType/OpaqueMetadata.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/OpaqueType/OpaqueType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/OpaqueType/OpaqueType.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/OpaqueType/OpaqueTypeDescriptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/OpaqueType/OpaqueTypeDescriptor.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/OpaqueType/OpaqueTypeDescriptorLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/OpaqueType/OpaqueTypeDescriptorLayout.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/OpaqueType/OpaqueTypeDescriptorProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/OpaqueType/OpaqueTypeDescriptorProtocol.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Protocol/Invertible/InvertibleProtocolKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Protocol/Invertible/InvertibleProtocolKind.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Protocol/Invertible/InvertibleProtocolSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Protocol/Invertible/InvertibleProtocolSet.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Protocol/Invertible/InvertibleProtocolsRequirementCount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Protocol/Invertible/InvertibleProtocolsRequirementCount.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Protocol/ObjC/ObjCProtocolPrefix.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Protocol/ObjC/ObjCProtocolPrefix.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Protocol/ObjC/RelativeObjCProtocolPrefix.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Protocol/ObjC/RelativeObjCProtocolPrefix.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Protocol/Protocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Protocol/Protocol.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Protocol/ProtocolClassConstraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Protocol/ProtocolClassConstraint.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Protocol/ProtocolContextDescriptorFlags.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Protocol/ProtocolContextDescriptorFlags.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Protocol/ProtocolDescriptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Protocol/ProtocolDescriptor.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Protocol/ProtocolDescriptorFlags.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Protocol/ProtocolDescriptorFlags.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Protocol/ProtocolDescriptorLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Protocol/ProtocolDescriptorLayout.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Protocol/ProtocolDescriptorProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Protocol/ProtocolDescriptorProtocol.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Protocol/ProtocolDescriptorRef.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Protocol/ProtocolDescriptorRef.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Protocol/ProtocolDescriptorWithObjCInterop.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Protocol/ProtocolDescriptorWithObjCInterop.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Protocol/ProtocolDispatchStrategy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Protocol/ProtocolDispatchStrategy.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Protocol/ProtocolRequirement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Protocol/ProtocolRequirement.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Protocol/ProtocolRequirementFlags.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Protocol/ProtocolRequirementFlags.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Protocol/ProtocolRequirementKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Protocol/ProtocolRequirementKind.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Protocol/ProtocolWitnessTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Protocol/ProtocolWitnessTable.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Protocol/ResilientWitness.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Protocol/ResilientWitness.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Protocol/ResilientWitnessesHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Protocol/ResilientWitnessesHeader.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Protocol/SpecialProtocolKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Protocol/SpecialProtocolKind.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/ProtocolConformance/ProtocolConformance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/ProtocolConformance/ProtocolConformance.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/ProtocolConformance/ProtocolConformanceDescriptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/ProtocolConformance/ProtocolConformanceDescriptor.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/ProtocolConformance/ProtocolConformanceFlags.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/ProtocolConformance/ProtocolConformanceFlags.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/TupleType/TupleTypeMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/TupleType/TupleTypeMetadata.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/TupleType/TupleTypeMetadataElementLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/TupleType/TupleTypeMetadataElementLayout.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/TupleType/TupleTypeMetadataLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/TupleType/TupleTypeMetadataLayout.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Class/Class.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Class/Class.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Class/ClassDescriptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Class/ClassDescriptor.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Class/ClassDescriptorLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Class/ClassDescriptorLayout.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Class/ClassFlags.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Class/ClassFlags.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Class/ExtraClassDescriptorFlags.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Class/ExtraClassDescriptorFlags.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Class/Metadata/AnyClassMetadata/AnyClassMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Class/Metadata/AnyClassMetadata/AnyClassMetadata.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Class/Metadata/AnyClassMetadata/AnyClassMetadataLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Class/Metadata/AnyClassMetadata/AnyClassMetadataLayout.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Class/Metadata/AnyClassMetadata/AnyClassMetadataProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Class/Metadata/AnyClassMetadata/AnyClassMetadataProtocol.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Class/Metadata/AnyClassMetadataObjCInterop/AnyClassMetadataObjCInterop.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Class/Metadata/AnyClassMetadataObjCInterop/AnyClassMetadataObjCInterop.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Class/Metadata/AnyClassMetadataObjCInterop/AnyClassMetadataObjCInteropLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Class/Metadata/AnyClassMetadataObjCInterop/AnyClassMetadataObjCInteropLayout.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Class/Metadata/AnyClassMetadataObjCInterop/AnyClassMetadataObjCInteropProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Class/Metadata/AnyClassMetadataObjCInterop/AnyClassMetadataObjCInteropProtocol.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Class/Metadata/Bounds/ClassMetadataBounds.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Class/Metadata/Bounds/ClassMetadataBounds.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Class/Metadata/Bounds/ClassMetadataBoundsLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Class/Metadata/Bounds/ClassMetadataBoundsLayout.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Class/Metadata/Bounds/ClassMetadataBoundsProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Class/Metadata/Bounds/ClassMetadataBoundsProtocol.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Class/Metadata/Bounds/StoredClassMetadataBounds.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Class/Metadata/Bounds/StoredClassMetadataBounds.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Class/Metadata/ClassMetadata/ClassMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Class/Metadata/ClassMetadata/ClassMetadata.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Class/Metadata/ClassMetadata/ClassMetadataLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Class/Metadata/ClassMetadata/ClassMetadataLayout.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Class/Metadata/ClassMetadata/ClassMetadataProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Class/Metadata/ClassMetadata/ClassMetadataProtocol.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Class/Metadata/ClassMetadataObjCInterop/ClassMetadataObjCInterop.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Class/Metadata/ClassMetadataObjCInterop/ClassMetadataObjCInterop.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Class/Metadata/ClassMetadataObjCInterop/ClassMetadataObjCInteropLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Class/Metadata/ClassMetadataObjCInterop/ClassMetadataObjCInteropLayout.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Class/Metadata/ClassMetadataObjCInterop/ClassMetadataObjCInteropProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Class/Metadata/ClassMetadataObjCInterop/ClassMetadataObjCInteropProtocol.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Class/Metadata/FinalClassMetadataLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Class/Metadata/FinalClassMetadataLayout.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Class/Metadata/FinalClassMetadataProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Class/Metadata/FinalClassMetadataProtocol.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Class/Metadata/ObjCClassWrapperMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Class/Metadata/ObjCClassWrapperMetadata.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Class/Method/MethodDefaultOverrideDescriptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Class/Method/MethodDefaultOverrideDescriptor.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Class/Method/MethodDefaultOverrideTableHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Class/Method/MethodDefaultOverrideTableHeader.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Class/Method/MethodDescriptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Class/Method/MethodDescriptor.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Class/Method/MethodDescriptorFlags.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Class/Method/MethodDescriptorFlags.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Class/Method/MethodDescriptorKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Class/Method/MethodDescriptorKind.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Class/Method/MethodDescriptorWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Class/Method/MethodDescriptorWrapper.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Class/Method/MethodImplementationPointer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Class/Method/MethodImplementationPointer.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Class/Method/MethodOverrideDescriptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Class/Method/MethodOverrideDescriptor.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Class/Method/OverrideTableHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Class/Method/OverrideTableHeader.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Class/Method/VTableDescriptorHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Class/Method/VTableDescriptorHeader.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Class/Resilient/ObjCResilientClassStubInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Class/Resilient/ObjCResilientClassStubInfo.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Class/Resilient/ResilientSuperclass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Class/Resilient/ResilientSuperclass.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Enum/Enum.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Enum/Enum.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Enum/EnumDescriptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Enum/EnumDescriptor.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Enum/EnumDescriptorLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Enum/EnumDescriptorLayout.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Enum/EnumFunctions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Enum/EnumFunctions.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Enum/Metadata/EnumMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Enum/Metadata/EnumMetadata.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Enum/Metadata/EnumMetadataLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Enum/Metadata/EnumMetadataLayout.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Enum/Metadata/EnumMetadataProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Enum/Metadata/EnumMetadataProtocol.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Enum/MultiPayloadEnum/MultiPayloadEnumDescriptor.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Struct/Struct.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Struct/Struct.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Struct/StructDescriptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Struct/StructDescriptor.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Struct/StructDescriptorLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Struct/StructDescriptorLayout.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Struct/StructMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Struct/StructMetadata.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Struct/StructMetadataLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Struct/StructMetadataLayout.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/Struct/StructMetadataProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/Struct/StructMetadataProtocol.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/TypeContextDescriptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/TypeContextDescriptor.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/TypeContextDescriptorFlags.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/TypeContextDescriptorFlags.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/TypeContextDescriptorLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/TypeContextDescriptorLayout.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/TypeContextDescriptorProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/TypeContextDescriptorProtocol.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/TypeContextDescriptorWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/TypeContextDescriptorWrapper.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/TypeContextWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/TypeContextWrapper.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/TypeReference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/TypeReference.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/Type/TypeReferenceKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/Type/TypeReferenceKind.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/ValueWitnessTable/ValueWitnessFlags.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/ValueWitnessTable/ValueWitnessFlags.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Models/ValueWitnessTable/ValueWitnessTable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Models/ValueWitnessTable/ValueWitnessTable.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Pointer/ContextPointer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Pointer/ContextPointer.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Pointer/RelativePointers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Pointer/RelativePointers.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Pointer/RelativeProtocolDescriptorPointer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Pointer/RelativeProtocolDescriptorPointer.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Protocols/FlagSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Protocols/FlagSet.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Protocols/MachOSwiftSectionRepresentableWithCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Protocols/MachOSwiftSectionRepresentableWithCache.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Protocols/RuntimeProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Protocols/RuntimeProtocol.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Protocols/SwiftSectionRepresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Protocols/SwiftSectionRepresentable.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Protocols/TopLevelDescriptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Protocols/TopLevelDescriptor.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Protocols/TopLevelType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Protocols/TopLevelType.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Utils/AnyLocatableLayoutWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Utils/AnyLocatableLayoutWrapper.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Utils/MachOSwiftSectionError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Utils/MachOSwiftSectionError.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Utils/MachOSwiftSectionName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Utils/MachOSwiftSectionName.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Utils/PtrAuth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Utils/PtrAuth.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Utils/ResolvableLocatableLayoutWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Utils/ResolvableLocatableLayoutWrapper.swift -------------------------------------------------------------------------------- /Sources/MachOSwiftSection/Utils/RuntimeLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSwiftSection/Utils/RuntimeLayout.swift -------------------------------------------------------------------------------- /Sources/MachOSymbolPointers/SymbolOrElementPointer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSymbolPointers/SymbolOrElementPointer.swift -------------------------------------------------------------------------------- /Sources/MachOSymbols/DemangledSymbol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSymbols/DemangledSymbol.swift -------------------------------------------------------------------------------- /Sources/MachOSymbols/MachO+Symbol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSymbols/MachO+Symbol.swift -------------------------------------------------------------------------------- /Sources/MachOSymbols/Symbol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSymbols/Symbol.swift -------------------------------------------------------------------------------- /Sources/MachOSymbols/SymbolIndexStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSymbols/SymbolIndexStore.swift -------------------------------------------------------------------------------- /Sources/MachOSymbols/SymbolOrElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSymbols/SymbolOrElement.swift -------------------------------------------------------------------------------- /Sources/MachOSymbols/Symbols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOSymbols/Symbols.swift -------------------------------------------------------------------------------- /Sources/MachOTestingSupport/DemangleOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOTestingSupport/DemangleOptions.swift -------------------------------------------------------------------------------- /Sources/MachOTestingSupport/DumpableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOTestingSupport/DumpableTests.swift -------------------------------------------------------------------------------- /Sources/MachOTestingSupport/DyldCacheTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOTestingSupport/DyldCacheTests.swift -------------------------------------------------------------------------------- /Sources/MachOTestingSupport/DyldSharedCachePath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOTestingSupport/DyldSharedCachePath.swift -------------------------------------------------------------------------------- /Sources/MachOTestingSupport/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOTestingSupport/Extensions.swift -------------------------------------------------------------------------------- /Sources/MachOTestingSupport/MachOFileName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOTestingSupport/MachOFileName.swift -------------------------------------------------------------------------------- /Sources/MachOTestingSupport/MachOFileTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOTestingSupport/MachOFileTests.swift -------------------------------------------------------------------------------- /Sources/MachOTestingSupport/MachOImageName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOTestingSupport/MachOImageName.swift -------------------------------------------------------------------------------- /Sources/MachOTestingSupport/MachOImageTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOTestingSupport/MachOImageTests.swift -------------------------------------------------------------------------------- /Sources/MachOTestingSupport/SwiftStdlibDemangle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOTestingSupport/SwiftStdlibDemangle.swift -------------------------------------------------------------------------------- /Sources/MachOTestingSupport/URL+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOTestingSupport/URL+.swift -------------------------------------------------------------------------------- /Sources/MachOTestingSupport/XcodeMachOFileName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOTestingSupport/XcodeMachOFileName.swift -------------------------------------------------------------------------------- /Sources/MachOTestingSupport/XcodeMachOFileTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/MachOTestingSupport/XcodeMachOFileTests.swift -------------------------------------------------------------------------------- /Sources/Semantic/Components/AnyComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Semantic/Components/AnyComponent.swift -------------------------------------------------------------------------------- /Sources/Semantic/Components/Argument.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Semantic/Components/Argument.swift -------------------------------------------------------------------------------- /Sources/Semantic/Components/Comment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Semantic/Components/Comment.swift -------------------------------------------------------------------------------- /Sources/Semantic/Components/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Semantic/Components/Error.swift -------------------------------------------------------------------------------- /Sources/Semantic/Components/FunctionDeclaration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Semantic/Components/FunctionDeclaration.swift -------------------------------------------------------------------------------- /Sources/Semantic/Components/FunctionName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Semantic/Components/FunctionName.swift -------------------------------------------------------------------------------- /Sources/Semantic/Components/Keyword.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Semantic/Components/Keyword.swift -------------------------------------------------------------------------------- /Sources/Semantic/Components/MemberDeclaration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Semantic/Components/MemberDeclaration.swift -------------------------------------------------------------------------------- /Sources/Semantic/Components/MemberName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Semantic/Components/MemberName.swift -------------------------------------------------------------------------------- /Sources/Semantic/Components/Numeric.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Semantic/Components/Numeric.swift -------------------------------------------------------------------------------- /Sources/Semantic/Components/Other.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Semantic/Components/Other.swift -------------------------------------------------------------------------------- /Sources/Semantic/Components/Standard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Semantic/Components/Standard.swift -------------------------------------------------------------------------------- /Sources/Semantic/Components/TypeDeclaration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Semantic/Components/TypeDeclaration.swift -------------------------------------------------------------------------------- /Sources/Semantic/Components/TypeName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Semantic/Components/TypeName.swift -------------------------------------------------------------------------------- /Sources/Semantic/Components/Variable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Semantic/Components/Variable.swift -------------------------------------------------------------------------------- /Sources/Semantic/SemanticString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Semantic/SemanticString.swift -------------------------------------------------------------------------------- /Sources/Semantic/SemanticStringBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Semantic/SemanticStringBuilder.swift -------------------------------------------------------------------------------- /Sources/Semantic/SemanticStringComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Semantic/SemanticStringComponent.swift -------------------------------------------------------------------------------- /Sources/Semantic/SemanticType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Semantic/SemanticType.swift -------------------------------------------------------------------------------- /Sources/SwiftDump/ClassHierarchyDumper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftDump/ClassHierarchyDumper.swift -------------------------------------------------------------------------------- /Sources/SwiftDump/DemangleResolver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftDump/DemangleResolver.swift -------------------------------------------------------------------------------- /Sources/SwiftDump/Dumpable/AssociatedType+Dumpable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftDump/Dumpable/AssociatedType+Dumpable.swift -------------------------------------------------------------------------------- /Sources/SwiftDump/Dumpable/Class+Dumpable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftDump/Dumpable/Class+Dumpable.swift -------------------------------------------------------------------------------- /Sources/SwiftDump/Dumpable/Enum+Dumpable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftDump/Dumpable/Enum+Dumpable.swift -------------------------------------------------------------------------------- /Sources/SwiftDump/Dumpable/Protocol+Dumpable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftDump/Dumpable/Protocol+Dumpable.swift -------------------------------------------------------------------------------- /Sources/SwiftDump/Dumpable/ProtocolConformance+Dumpable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftDump/Dumpable/ProtocolConformance+Dumpable.swift -------------------------------------------------------------------------------- /Sources/SwiftDump/Dumpable/Struct+Dumpable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftDump/Dumpable/Struct+Dumpable.swift -------------------------------------------------------------------------------- /Sources/SwiftDump/Dumper/AssociatedTypeDumper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftDump/Dumper/AssociatedTypeDumper.swift -------------------------------------------------------------------------------- /Sources/SwiftDump/Dumper/ClassDumper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftDump/Dumper/ClassDumper.swift -------------------------------------------------------------------------------- /Sources/SwiftDump/Dumper/EnumDumper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftDump/Dumper/EnumDumper.swift -------------------------------------------------------------------------------- /Sources/SwiftDump/Dumper/ExtensionDumper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftDump/Dumper/ExtensionDumper.swift -------------------------------------------------------------------------------- /Sources/SwiftDump/Dumper/ProtocolConformanceDumper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftDump/Dumper/ProtocolConformanceDumper.swift -------------------------------------------------------------------------------- /Sources/SwiftDump/Dumper/ProtocolDumper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftDump/Dumper/ProtocolDumper.swift -------------------------------------------------------------------------------- /Sources/SwiftDump/Dumper/StructDumper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftDump/Dumper/StructDumper.swift -------------------------------------------------------------------------------- /Sources/SwiftDump/DumperConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftDump/DumperConfiguration.swift -------------------------------------------------------------------------------- /Sources/SwiftDump/Extensions/ContextDescriptorWrapper+Dump.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftDump/Extensions/ContextDescriptorWrapper+Dump.swift -------------------------------------------------------------------------------- /Sources/SwiftDump/Extensions/GenericContext+Dump.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftDump/Extensions/GenericContext+Dump.swift -------------------------------------------------------------------------------- /Sources/SwiftDump/Extensions/Keyword+Swift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftDump/Extensions/Keyword+Swift.swift -------------------------------------------------------------------------------- /Sources/SwiftDump/Extensions/Node+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftDump/Extensions/Node+.swift -------------------------------------------------------------------------------- /Sources/SwiftDump/Extensions/OpaqueType+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftDump/Extensions/OpaqueType+.swift -------------------------------------------------------------------------------- /Sources/SwiftDump/Extensions/ResilientSuperclass+Dump.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftDump/Extensions/ResilientSuperclass+Dump.swift -------------------------------------------------------------------------------- /Sources/SwiftDump/Extensions/SemanticString+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftDump/Extensions/SemanticString+.swift -------------------------------------------------------------------------------- /Sources/SwiftDump/Extensions/String+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftDump/Extensions/String+.swift -------------------------------------------------------------------------------- /Sources/SwiftDump/Extensions/TypeWrapper+Dumper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftDump/Extensions/TypeWrapper+Dumper.swift -------------------------------------------------------------------------------- /Sources/SwiftDump/MetadataFinder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftDump/MetadataFinder.swift -------------------------------------------------------------------------------- /Sources/SwiftDump/MetadataReader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftDump/MetadataReader.swift -------------------------------------------------------------------------------- /Sources/SwiftDump/PrimitiveTypeMapping.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftDump/PrimitiveTypeMapping.swift -------------------------------------------------------------------------------- /Sources/SwiftDump/PrimitiveTypeMappingCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftDump/PrimitiveTypeMappingCache.swift -------------------------------------------------------------------------------- /Sources/SwiftDump/Protocols/ConformedDumpable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftDump/Protocols/ConformedDumpable.swift -------------------------------------------------------------------------------- /Sources/SwiftDump/Protocols/ConformedDumper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftDump/Protocols/ConformedDumper.swift -------------------------------------------------------------------------------- /Sources/SwiftDump/Protocols/Dumpable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftDump/Protocols/Dumpable.swift -------------------------------------------------------------------------------- /Sources/SwiftDump/Protocols/Dumper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftDump/Protocols/Dumper.swift -------------------------------------------------------------------------------- /Sources/SwiftDump/Protocols/NamedDumpable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftDump/Protocols/NamedDumpable.swift -------------------------------------------------------------------------------- /Sources/SwiftDump/Protocols/NamedDumper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftDump/Protocols/NamedDumper.swift -------------------------------------------------------------------------------- /Sources/SwiftDump/Protocols/TypedDumper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftDump/Protocols/TypedDumper.swift -------------------------------------------------------------------------------- /Sources/SwiftIndex/SwiftIndex.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | -------------------------------------------------------------------------------- /Sources/SwiftInterface/Components/Definitions/Accessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftInterface/Components/Definitions/Accessor.swift -------------------------------------------------------------------------------- /Sources/SwiftInterface/Components/Definitions/Definition+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftInterface/Components/Definitions/Definition+.swift -------------------------------------------------------------------------------- /Sources/SwiftInterface/Components/Definitions/Definition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftInterface/Components/Definitions/Definition.swift -------------------------------------------------------------------------------- /Sources/SwiftInterface/Components/Definitions/DefinitionBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftInterface/Components/Definitions/DefinitionBuilder.swift -------------------------------------------------------------------------------- /Sources/SwiftInterface/Components/Definitions/ExtensionDefinition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftInterface/Components/Definitions/ExtensionDefinition.swift -------------------------------------------------------------------------------- /Sources/SwiftInterface/Components/Definitions/FieldDefinition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftInterface/Components/Definitions/FieldDefinition.swift -------------------------------------------------------------------------------- /Sources/SwiftInterface/Components/Definitions/FunctionDefinition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftInterface/Components/Definitions/FunctionDefinition.swift -------------------------------------------------------------------------------- /Sources/SwiftInterface/Components/Definitions/ProtocolDefinition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftInterface/Components/Definitions/ProtocolDefinition.swift -------------------------------------------------------------------------------- /Sources/SwiftInterface/Components/Definitions/SubscriptDefinition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftInterface/Components/Definitions/SubscriptDefinition.swift -------------------------------------------------------------------------------- /Sources/SwiftInterface/Components/Definitions/TypeDefinition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftInterface/Components/Definitions/TypeDefinition.swift -------------------------------------------------------------------------------- /Sources/SwiftInterface/Components/Definitions/VariableDefinition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftInterface/Components/Definitions/VariableDefinition.swift -------------------------------------------------------------------------------- /Sources/SwiftInterface/Components/Kinds/AccessorKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftInterface/Components/Kinds/AccessorKind.swift -------------------------------------------------------------------------------- /Sources/SwiftInterface/Components/Kinds/ExtensionKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftInterface/Components/Kinds/ExtensionKind.swift -------------------------------------------------------------------------------- /Sources/SwiftInterface/Components/Kinds/FunctionKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftInterface/Components/Kinds/FunctionKind.swift -------------------------------------------------------------------------------- /Sources/SwiftInterface/Components/Kinds/TypeKind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftInterface/Components/Kinds/TypeKind.swift -------------------------------------------------------------------------------- /Sources/SwiftInterface/Components/Names/DefinitionName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftInterface/Components/Names/DefinitionName.swift -------------------------------------------------------------------------------- /Sources/SwiftInterface/Components/Names/ExtensionName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftInterface/Components/Names/ExtensionName.swift -------------------------------------------------------------------------------- /Sources/SwiftInterface/Components/Names/ProtocolName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftInterface/Components/Names/ProtocolName.swift -------------------------------------------------------------------------------- /Sources/SwiftInterface/Components/Names/TypeName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftInterface/Components/Names/TypeName.swift -------------------------------------------------------------------------------- /Sources/SwiftInterface/DependencyPath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftInterface/DependencyPath.swift -------------------------------------------------------------------------------- /Sources/SwiftInterface/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftInterface/Extensions.swift -------------------------------------------------------------------------------- /Sources/SwiftInterface/NodePrintables/BoundGenericNodePrintable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftInterface/NodePrintables/BoundGenericNodePrintable.swift -------------------------------------------------------------------------------- /Sources/SwiftInterface/NodePrintables/DependentGenericNodePrintable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftInterface/NodePrintables/DependentGenericNodePrintable.swift -------------------------------------------------------------------------------- /Sources/SwiftInterface/NodePrintables/FunctionTypeNodePrintable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftInterface/NodePrintables/FunctionTypeNodePrintable.swift -------------------------------------------------------------------------------- /Sources/SwiftInterface/NodePrintables/InterfaceNodePrintable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftInterface/NodePrintables/InterfaceNodePrintable.swift -------------------------------------------------------------------------------- /Sources/SwiftInterface/NodePrintables/NodePrintable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftInterface/NodePrintables/NodePrintable.swift -------------------------------------------------------------------------------- /Sources/SwiftInterface/NodePrintables/NodePrintableDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftInterface/NodePrintables/NodePrintableDelegate.swift -------------------------------------------------------------------------------- /Sources/SwiftInterface/NodePrintables/TypeNodePrintable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftInterface/NodePrintables/TypeNodePrintable.swift -------------------------------------------------------------------------------- /Sources/SwiftInterface/NodePrinter/FunctionNodePrinter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftInterface/NodePrinter/FunctionNodePrinter.swift -------------------------------------------------------------------------------- /Sources/SwiftInterface/NodePrinter/SubscriptNodePrinter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftInterface/NodePrinter/SubscriptNodePrinter.swift -------------------------------------------------------------------------------- /Sources/SwiftInterface/NodePrinter/TypeNodePrinter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftInterface/NodePrinter/TypeNodePrinter.swift -------------------------------------------------------------------------------- /Sources/SwiftInterface/NodePrinter/VariableNodePrinter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftInterface/NodePrinter/VariableNodePrinter.swift -------------------------------------------------------------------------------- /Sources/SwiftInterface/SwiftInterfaceBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftInterface/SwiftInterfaceBuilder.swift -------------------------------------------------------------------------------- /Sources/SwiftInterface/SwiftInterfaceBuilderConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftInterface/SwiftInterfaceBuilderConfiguration.swift -------------------------------------------------------------------------------- /Sources/SwiftInterface/SwiftInterfaceBuilderDependencies.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftInterface/SwiftInterfaceBuilderDependencies.swift -------------------------------------------------------------------------------- /Sources/SwiftInterface/SwiftInterfaceBuilderExtraDataProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftInterface/SwiftInterfaceBuilderExtraDataProvider.swift -------------------------------------------------------------------------------- /Sources/SwiftInterface/SwiftInterfaceBuilderOpaqueTypeProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftInterface/SwiftInterfaceBuilderOpaqueTypeProvider.swift -------------------------------------------------------------------------------- /Sources/SwiftInterface/SwiftInterfaceEvents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftInterface/SwiftInterfaceEvents.swift -------------------------------------------------------------------------------- /Sources/SwiftInterface/SwiftInterfaceEventsHandlers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftInterface/SwiftInterfaceEventsHandlers.swift -------------------------------------------------------------------------------- /Sources/SwiftInterface/SwiftInterfaceIndexer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/SwiftInterface/SwiftInterfaceIndexer.swift -------------------------------------------------------------------------------- /Sources/TypeIndexing/APINodesManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/TypeIndexing/APINodesManager.swift -------------------------------------------------------------------------------- /Sources/TypeIndexing/ObjCInterfaceIndexer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/TypeIndexing/ObjCInterfaceIndexer.swift -------------------------------------------------------------------------------- /Sources/TypeIndexing/SDKIndexer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/TypeIndexing/SDKIndexer.swift -------------------------------------------------------------------------------- /Sources/TypeIndexing/SDKPlatform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/TypeIndexing/SDKPlatform.swift -------------------------------------------------------------------------------- /Sources/TypeIndexing/SourceKitManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/TypeIndexing/SourceKitManager.swift -------------------------------------------------------------------------------- /Sources/TypeIndexing/Subprocess.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/TypeIndexing/Subprocess.swift -------------------------------------------------------------------------------- /Sources/TypeIndexing/SwiftInterfaceBuilderTypeNameProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/TypeIndexing/SwiftInterfaceBuilderTypeNameProvider.swift -------------------------------------------------------------------------------- /Sources/TypeIndexing/SwiftInterfaceParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/TypeIndexing/SwiftInterfaceParser.swift -------------------------------------------------------------------------------- /Sources/TypeIndexing/SwiftModule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/TypeIndexing/SwiftModule.swift -------------------------------------------------------------------------------- /Sources/TypeIndexing/TypeDatabase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/TypeIndexing/TypeDatabase.swift -------------------------------------------------------------------------------- /Sources/Utilities/AsyncExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Utilities/AsyncExtensions.swift -------------------------------------------------------------------------------- /Sources/Utilities/GlobalUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Utilities/GlobalUtilities.swift -------------------------------------------------------------------------------- /Sources/Utilities/Macros/Layout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Utilities/Macros/Layout.swift -------------------------------------------------------------------------------- /Sources/Utilities/MemoryPressureMonitor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Utilities/MemoryPressureMonitor.swift -------------------------------------------------------------------------------- /Sources/Utilities/OffsetEnumeratedSequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Utilities/OffsetEnumeratedSequence.swift -------------------------------------------------------------------------------- /Sources/Utilities/OrFunctions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Utilities/OrFunctions.swift -------------------------------------------------------------------------------- /Sources/Utilities/StringBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Utilities/StringBuilder.swift -------------------------------------------------------------------------------- /Sources/Utilities/SubstitutionMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Utilities/SubstitutionMap.swift -------------------------------------------------------------------------------- /Sources/Utilities/_PtrAuth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/Utilities/_PtrAuth.swift -------------------------------------------------------------------------------- /Sources/UtilitiesC/PtrAuthWrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/UtilitiesC/PtrAuthWrapper.c -------------------------------------------------------------------------------- /Sources/UtilitiesC/include/PtrAuthWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/UtilitiesC/include/PtrAuthWrapper.h -------------------------------------------------------------------------------- /Sources/swift-section/Architecture.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/swift-section/Architecture.swift -------------------------------------------------------------------------------- /Sources/swift-section/Commands/DumpCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/swift-section/Commands/DumpCommand.swift -------------------------------------------------------------------------------- /Sources/swift-section/Commands/InterfaceCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/swift-section/Commands/InterfaceCommand.swift -------------------------------------------------------------------------------- /Sources/swift-section/Commands/SwiftSectionCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/swift-section/Commands/SwiftSectionCommand.swift -------------------------------------------------------------------------------- /Sources/swift-section/DemangleOptionGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/swift-section/DemangleOptionGroup.swift -------------------------------------------------------------------------------- /Sources/swift-section/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/swift-section/Extensions.swift -------------------------------------------------------------------------------- /Sources/swift-section/IgnoreCoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/swift-section/IgnoreCoding.swift -------------------------------------------------------------------------------- /Sources/swift-section/MachOOptionGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/swift-section/MachOOptionGroup.swift -------------------------------------------------------------------------------- /Sources/swift-section/SemanticColorScheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/swift-section/SemanticColorScheme.swift -------------------------------------------------------------------------------- /Sources/swift-section/SwiftSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/swift-section/SwiftSection.swift -------------------------------------------------------------------------------- /Sources/swift-section/SwiftSectionCommandError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Sources/swift-section/SwiftSectionCommandError.swift -------------------------------------------------------------------------------- /Tests/DemanglingTests/DemangleAdditionalTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Tests/DemanglingTests/DemangleAdditionalTests.swift -------------------------------------------------------------------------------- /Tests/DemanglingTests/DemangleSwiftProjectDerivedTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Tests/DemanglingTests/DemangleSwiftProjectDerivedTests.swift -------------------------------------------------------------------------------- /Tests/DemanglingTests/NodeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Tests/DemanglingTests/NodeTests.swift -------------------------------------------------------------------------------- /Tests/MachOSwiftSectionTests/AssociatedTypeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Tests/MachOSwiftSectionTests/AssociatedTypeTests.swift -------------------------------------------------------------------------------- /Tests/MachOSwiftSectionTests/LayoutTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Tests/MachOSwiftSectionTests/LayoutTests.swift -------------------------------------------------------------------------------- /Tests/MachOSwiftSectionTests/MangledTypeNameTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Tests/MachOSwiftSectionTests/MangledTypeNameTests.swift -------------------------------------------------------------------------------- /Tests/MachOSwiftSectionTests/MetadataAccessorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Tests/MachOSwiftSectionTests/MetadataAccessorTests.swift -------------------------------------------------------------------------------- /Tests/MachOSwiftSectionTests/MetadataFinderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Tests/MachOSwiftSectionTests/MetadataFinderTests.swift -------------------------------------------------------------------------------- /Tests/MachOSwiftSectionTests/OpaqueTypeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Tests/MachOSwiftSectionTests/OpaqueTypeTests.swift -------------------------------------------------------------------------------- /Tests/MachOSwiftSectionTests/PrimitiveTypeMappingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Tests/MachOSwiftSectionTests/PrimitiveTypeMappingTests.swift -------------------------------------------------------------------------------- /Tests/MachOSwiftSectionTests/ProtocolGenericContextTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Tests/MachOSwiftSectionTests/ProtocolGenericContextTests.swift -------------------------------------------------------------------------------- /Tests/MachOSwiftSectionTests/ProtocolRequirementSignatureTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Tests/MachOSwiftSectionTests/ProtocolRequirementSignatureTests.swift -------------------------------------------------------------------------------- /Tests/MachOSwiftSectionTests/SymbolIndexStoreTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Tests/MachOSwiftSectionTests/SymbolIndexStoreTests.swift -------------------------------------------------------------------------------- /Tests/MachOSwiftSectionTests/TypeContextDescriptorFlagsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Tests/MachOSwiftSectionTests/TypeContextDescriptorFlagsTests.swift -------------------------------------------------------------------------------- /Tests/MachOSwiftSectionTests/TypeMangledNameTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Tests/MachOSwiftSectionTests/TypeMangledNameTests.swift -------------------------------------------------------------------------------- /Tests/MachOSymbolsTests/DyldCacheSymbolRemangleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Tests/MachOSymbolsTests/DyldCacheSymbolRemangleTests.swift -------------------------------------------------------------------------------- /Tests/MachOSymbolsTests/DyldCacheSymbolSimpleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Tests/MachOSymbolsTests/DyldCacheSymbolSimpleTests.swift -------------------------------------------------------------------------------- /Tests/MachOSymbolsTests/DyldCacheSymbolTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Tests/MachOSymbolsTests/DyldCacheSymbolTests.swift -------------------------------------------------------------------------------- /Tests/MachOSymbolsTests/ExternalSymbolTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Tests/MachOSymbolsTests/ExternalSymbolTests.swift -------------------------------------------------------------------------------- /Tests/MachOSymbolsTests/XcodeMachOFilesSymbolDemangleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Tests/MachOSymbolsTests/XcodeMachOFilesSymbolDemangleTests.swift -------------------------------------------------------------------------------- /Tests/Projects/SymbolTests/SymbolTests.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Tests/Projects/SymbolTests/SymbolTests.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Tests/Projects/SymbolTests/SymbolTests.xcodeproj/xcshareddata/xcschemes/SymbolTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Tests/Projects/SymbolTests/SymbolTests.xcodeproj/xcshareddata/xcschemes/SymbolTests.xcscheme -------------------------------------------------------------------------------- /Tests/Projects/SymbolTests/SymbolTests/SymbolTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Tests/Projects/SymbolTests/SymbolTests/SymbolTests.swift -------------------------------------------------------------------------------- /Tests/Projects/SymbolTests/SymbolTestsCore/SymbolTestsCore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Tests/Projects/SymbolTests/SymbolTestsCore/SymbolTestsCore.swift -------------------------------------------------------------------------------- /Tests/Projects/SymbolTests/SymbolTestsHelper/SymbolTestsHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Tests/Projects/SymbolTests/SymbolTestsHelper/SymbolTestsHelper.swift -------------------------------------------------------------------------------- /Tests/SwiftDumpTests/ClassHierarchyDumpTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Tests/SwiftDumpTests/ClassHierarchyDumpTests.swift -------------------------------------------------------------------------------- /Tests/SwiftDumpTests/DyldCacheDumpTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Tests/SwiftDumpTests/DyldCacheDumpTests.swift -------------------------------------------------------------------------------- /Tests/SwiftDumpTests/MachOFileDumpTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Tests/SwiftDumpTests/MachOFileDumpTests.swift -------------------------------------------------------------------------------- /Tests/SwiftDumpTests/MachOImageDumpTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Tests/SwiftDumpTests/MachOImageDumpTests.swift -------------------------------------------------------------------------------- /Tests/SwiftDumpTests/XcodeMachOFileDumpTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Tests/SwiftDumpTests/XcodeMachOFileDumpTests.swift -------------------------------------------------------------------------------- /Tests/SwiftInterfaceTests/NodePrinterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Tests/SwiftInterfaceTests/NodePrinterTests.swift -------------------------------------------------------------------------------- /Tests/SwiftInterfaceTests/SwiftInterfaceBuilderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Tests/SwiftInterfaceTests/SwiftInterfaceBuilderTests.swift -------------------------------------------------------------------------------- /Tests/TypeIndexingTests/APINodesManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Tests/TypeIndexingTests/APINodesManagerTests.swift -------------------------------------------------------------------------------- /Tests/TypeIndexingTests/SDKIndexerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Tests/TypeIndexingTests/SDKIndexerTests.swift -------------------------------------------------------------------------------- /Tests/TypeIndexingTests/SourceKitManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Tests/TypeIndexingTests/SourceKitManagerTests.swift -------------------------------------------------------------------------------- /Tests/TypeIndexingTests/SwiftInterfaceParserTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MxIris-Reverse-Engineering/MachOSwiftSection/HEAD/Tests/TypeIndexingTests/SwiftInterfaceParserTests.swift --------------------------------------------------------------------------------