gitextract_uw9a1g60/ ├── .github/ │ ├── FUNDING.yml │ └── ISSUE_TEMPLATE/ │ └── bug_report.md ├── .gitignore ├── LICENSE ├── README.md ├── README_EN.md ├── docs/ │ └── _config.yml └── hybridclr/ ├── CommonDef.cpp ├── CommonDef.h ├── Il2CppCompatibleDef.cpp ├── Il2CppCompatibleDef.h ├── Runtime.cpp ├── Runtime.h ├── RuntimeApi.cpp ├── RuntimeApi.h ├── RuntimeConfig.cpp ├── RuntimeConfig.h ├── generated/ │ ├── AssemblyManifest.cpp │ ├── MethodBridge.cpp │ └── UnityVersion.h ├── interpreter/ │ ├── Engine.cpp │ ├── Engine.h │ ├── InstrinctDef.h │ ├── Instruction.cpp │ ├── Instruction.h │ ├── Interpreter.cpp │ ├── Interpreter.h │ ├── InterpreterDefs.cpp │ ├── InterpreterDefs.h │ ├── InterpreterModule.cpp │ ├── InterpreterModule.h │ ├── InterpreterUtil.cpp │ ├── InterpreterUtil.h │ ├── Interpreter_Execute.cpp │ ├── MemoryUtil.h │ ├── MethodBridge.cpp │ └── MethodBridge.h ├── metadata/ │ ├── AOTHomologousImage.cpp │ ├── AOTHomologousImage.h │ ├── Assembly.cpp │ ├── Assembly.h │ ├── BlobReader.h │ ├── ClassFieldLayoutCalculator.cpp │ ├── ClassFieldLayoutCalculator.h │ ├── Coff.h │ ├── ConsistentAOTHomologousImage.cpp │ ├── ConsistentAOTHomologousImage.h │ ├── CustomAttributeDataWriter.h │ ├── Image.cpp │ ├── Image.h │ ├── InterpreterImage.cpp │ ├── InterpreterImage.h │ ├── MetadataDef.h │ ├── MetadataModule.cpp │ ├── MetadataModule.h │ ├── MetadataPool.cpp │ ├── MetadataPool.h │ ├── MetadataReader.h │ ├── MetadataUtil.cpp │ ├── MetadataUtil.h │ ├── MethodBodyCache.cpp │ ├── MethodBodyCache.h │ ├── Opcodes.cpp │ ├── Opcodes.h │ ├── PDBImage.cpp │ ├── PDBImage.h │ ├── RawImage.cpp │ ├── RawImage.h │ ├── RawImageBase.cpp │ ├── RawImageBase.h │ ├── SuperSetAOTHomologousImage.cpp │ ├── SuperSetAOTHomologousImage.h │ ├── Tables.h │ ├── VTableSetup.cpp │ └── VTableSetup.h └── transform/ ├── BasicBlockSpliter.cpp ├── BasicBlockSpliter.h ├── TemporaryMemoryArena.cpp ├── TemporaryMemoryArena.h ├── Transform.cpp ├── Transform.h ├── TransformContext.cpp ├── TransformContext.h ├── TransformContext_CallCommon.cpp ├── TransformContext_Instinct.cpp ├── TransformModule.cpp └── TransformModule.h