Search Unity

  1. Megacity Metro Demo now available. Download now.
    Dismiss Notice
  2. Unity support for visionOS is now available. Learn more in our blog post.
    Dismiss Notice

understanding crash report

Discussion in 'Editor & General Support' started by Seraphim-Whiteless, Jul 30, 2020.

  1. Seraphim-Whiteless

    Seraphim-Whiteless

    Joined:
    Jun 23, 2014
    Posts:
    197
    hi everyone!

    loaded dSYM file and txt crash file from apple store

    using instructions to symbolicate it from there

    Code (CSharp):
    1. Thread 0 name:  Dispatch queue: com.apple.main-thread
    2. Thread 0:
    3. 0   libc++.1.dylib                    0x00000001b31c7a1c 0x1b318a000 + 252444
    4. 1   monsterfarm                       0x0000000102531aa8 0x100d1c000 + 25254568
    5. 2   monsterfarm                       0x0000000102531940 0x100d1c000 + 25254208
    6. 3   monsterfarm                       0x0000000102531f58 0x100d1c000 + 25255768
    7. 4   monsterfarm                       0x000000010253cc54 0x100d1c000 + 25300052
    8.  
    having a result
    Code (CSharp):
    1. atos --arch arm64 -o monsterfarm -l 0x1b311f000 0x00000001b31468b8
    2. Nullable_1_get_Value_m8ED77F1776BBC65874AF9D0ED769FF7B6B918DA2_AdjustorThunk (in monsterfarm) (Generics31.cpp:22924)
    or

    Code (CSharp):
    1. atos --arch arm64 -o monsterfarm -l 0x100d1c000 0x0000000102531aa8
    2. dense_hashtable<std::__1::pair<KeyWrapper<Il2CppGenericParameter const*> const, MonoGenericParameterInfo const*>, KeyWrapper<Il2CppGenericParameter const*>, il2cpp::utils::PointerHash<Il2CppGenericParameter const>, dense_hash_map<KeyWrapper<Il2CppGenericParameter const*>, MonoGenericParameterInfo const*, il2cpp::utils::PointerHash<Il2CppGenericParameter const>, KeyWrapper<Il2CppGenericParameter const*>::EqualsComparer<std::__1::equal_to<Il2CppGenericParameter const*> >, std::__1::allocator<std::__1::pair<KeyWrapper<Il2CppGenericParameter const*> const, MonoGenericParameterInfo const*> > >::SelectKey, KeyWrapper<Il2CppGenericParameter const*>::EqualsComparer<std::__1::equal_to<Il2CppGenericParameter const*> >, std::__1::allocator<std::__1::pair<KeyWrapper<Il2CppGenericParameter const*> const, MonoGenericParameterInfo const*> > >::find(KeyWrapper<Il2CppGenericParameter const*> const&) (in monsterfarm) (densehashtable.h:710)
    is it IL2CPP address?
    how can i convert it to address in my scripts?